diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-08-31 23:30:11 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-08-31 23:30:11 +0000 |
commit | a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e (patch) | |
tree | c6ff73d6dd647d8affe4ddd1674395325b0d4b37 /doc/misc/message.texi | |
parent | 2cdd366f840d28efb582bd5a12f2cc8f5d7d7bf1 (diff) | |
download | emacs-a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e.tar.gz emacs-a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e.tar.bz2 emacs-a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e.zip |
message.texi: Fix some syntax errors in the last check-in; by Lars Magne Ingebrigtsen <larsi@gnus.org>.
Diffstat (limited to 'doc/misc/message.texi')
-rw-r--r-- | doc/misc/message.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/misc/message.texi b/doc/misc/message.texi index fb39107d3a8..8374ed05223 100644 --- a/doc/misc/message.texi +++ b/doc/misc/message.texi @@ -192,26 +192,26 @@ to match addresses to be pruned. It's complicated to explain, but it's easy to use. -For instance, if you get an email from @samp{foo@example.org}, but -@samp{foo@zot.example.org} is also in the @code{Cc} list, then your +For instance, if you get an email from @samp{foo@@example.org}, but +@samp{foo@@zot.example.org} is also in the @code{Cc} list, then your wide reply will go out to both these addresses, since they are unique. To avoid this, do something like the following: -@code +@lisp (setq message-prune-recipient-rules '(("^\\([^@]+\\)@\\(.*\\)" "\\1@.*[.]\\2"))) -@end code +@end lisp If, for instance, you want all wide replies that involve messages from -@samp{cvs@example.org} to go to that address, and nowhere else (i.e., -remove all other recipients if @samp{cvs@example.org} is in the +@samp{cvs@@example.org} to go to that address, and nowhere else (i.e., +remove all other recipients if @samp{cvs@@example.org} is in the recipient list: -@code +@lisp (setq message-prune-recipient-rules '(("cvs@example.org" "."))) -@end code +@end lisp @vindex message-wide-reply-confirm-recipients If @code{message-wide-reply-confirm-recipients} is non-@code{nil} you |