(Reply): `message-reply-to-function' should return a list.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 6 Jan 2005 03:14:33 +0000 (03:14 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 6 Jan 2005 03:14:33 +0000 (03:14 +0000)
 Suggested by ARISAWA Akihiro.

texi/ChangeLog
texi/message.texi

index 97e8a44..a5ad712 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.texi (Reply): `message-reply-to-function' should return
+       a list.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.co.jp>.
+
 2005-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * Makefile.in (.texi): Use LC_ALL instead of LANG.
index cdef227..366dd0d 100644 (file)
@@ -146,16 +146,15 @@ If you want the replies to go to the @code{Sender} instead of the
 This function will be called narrowed to the head of the article that is
 being replied to.
 
-As you can see, this function should return a string if it has an
-opinion as to what the To header should be.  If it does not, it should
-just return @code{nil}, and the normal methods for determining the To
-header will be used.
-
-This function can also return a list.  In that case, each list element
-should be a cons, where the @sc{car} should be the name of a header
-(e.g. @code{Cc}) and the @sc{cdr} should be the header value
-(e.g. @samp{larsi@@ifi.uio.no}).  All these headers will be inserted into
-the head of the outgoing mail.
+As you can see, this function should return a list.  In this case, it
+returns @code{((To . "Whom"))} if it has an opinion as to what the To
+header should be.  If it does not, it should just return @code{nil}, and
+the normal methods for determining the To header will be used.
+
+Each list element should be a cons, where the @sc{car} should be the
+name of a header (e.g. @code{Cc}) and the @sc{cdr} should be the header
+value (e.g. @samp{larsi@@ifi.uio.no}).  All these headers will be
+inserted into the head of the outgoing mail.
 
 
 @node Wide Reply