*** empty log message ***
[gnus] / texi / message.texi
index e70a7b0..294692f 100644 (file)
@@ -1,6 +1,6 @@
 \input texinfo                  @c -*-texinfo-*-
 
-@setfilename message.info
+@setfilename message
 @settitle Message Manual
 @synindex fn cp
 @synindex vr cp
@@ -169,7 +169,9 @@ the head of the outgoing mail.
 
 @findex message-wide-reply
 The @code{message-wide-reply} pops up a message buffer that's a wide
-reply to the message in the current buffer.
+reply to the message in the current buffer.  A @dfn{wide reply} is a
+reply that goes out to all people listed in the @code{To}, @code{From}
+and @code{Cc} headers.
 
 @vindex message-wide-reply-to-function
 Message uses the normal methods to determine where wide replies are to go,
@@ -277,7 +279,9 @@ be removed before sending the message.  The default is
 @findex message-bounce
 The @code{message-bounce} command will, if the current buffer contains a
 bounced mail message, pop up a message buffer stripped of the bounce
-information.
+information.  A @dfn{bounced message} is typically a mail you've sent
+out that has been returned by some @code{mailer-daemon} as
+undeliverable. 
 
 @vindex message-ignored-bounced-headers
 Headers that match the @code{message-ignored-bounced-headers} regexp
@@ -440,10 +444,10 @@ Number of spaces to indent yanked messages.
 @vindex message-cite-function
 @findex message-cite-original
 @findex sc-cite-original
-@cindex SuperCite
+@cindex Supercite
 Function for citing an original message.  The default is
 @code{message-cite-original}.  You can also set it to
-@code{sc-cite-original} to use SuperCite.
+@code{sc-cite-original} to use Supercite.
 
 @item message-indent-citation-function
 @vindex message-indent-citation-function
@@ -805,8 +809,11 @@ Check whether any of the headers are empty.
 Check whether the newsgroups mentioned in the Newsgroups and 
 Followup-To headers exist.
 @item valid-newsgroups
-Check whether the @code{Newsgroups} and @code{Followup-To} headers
-are valid syntactially.
+Check whether the @code{Newsgroups} and @code{Followup-to} headers
+are valid syntactically.
+@item shorten-followup-to
+Check whether to add a @code{Followup-to} header to shorten the number
+of groups to post to.
 @end table
 
 All these conditions are checked by default.
@@ -905,8 +912,11 @@ function is @code{rmail-output} which saves in Unix mailbox format.
 @item message-courtesy-message
 @vindex message-courtesy-message
 When sending combined messages, this string is inserted at the start of
-the mailed copy.  If this variable is @code{nil}, no such courtesy
-message will be added.
+the mailed copy.  If the string contains the format spec @samp{%s}, the
+newsgroups the article has been posted to will be inserted there.  If
+this variable is @code{nil}, no such courtesy message will be added.
+The default value is @samp{"The following message is a courtesy copy of
+an article\nthat has been posted to %s as well.\n\n"}. 
 
 @end table
 
@@ -921,16 +931,31 @@ message buffers are kept alive.
 
 @table @code
 @item message-generate-new-buffers
-@findex message-generate-new-buffers
-If non-@code{nil}, generate new buffers.  The default is @code{t}.
+@vindex message-generate-new-buffers
+If non-@code{nil}, generate new buffers.  The default is @code{t}.  If
+this is a function, call that function with three parameters: The type,
+the to address and the group name.  (Any of these may be @code{nil}.)
+The function should return the new buffer name.
 
 @item message-max-buffers
-@findex message-max-buffers
+@vindex message-max-buffers
 This variable says how many old message buffers to keep.  If there are
 more message buffers than this, the oldest buffer will be killed.  The
 default is 10.  If this variable is @code{nil}, no old message buffers
 will ever be killed.
 
+@item message-send-rename-function
+@vindex message-send-rename-function
+After sending a message, the buffer is renamed from, for instance,
+@samp{*reply to Lars*} to @samp{*sent reply to Lars*}.  If you don't
+like this, set this variable to a function that renames the buffer in a
+manner you like.  If you don't want to rename the buffer at all, you can
+say:
+
+@lisp
+(setq message-send-rename-function 'ignore)
+@end lisp
+
 @item message-kill-buffer-on-exit
 @findex message-kill-buffer-on-exit
 If non-@code{nil}, kill the buffer immediately on exit.