X-Git-Url: https://cgit.sxemacs.org/?a=blobdiff_plain;f=texi%2Fmessage.texi;h=83acd94c240fbf03674e14b97fe985d92d8eea11;hb=dd27cde1803352334f1eb8a3ede97bd886397396;hp=946305337a7e93d34b55ddcf38f833349a48cdf0;hpb=c40c4e8cac18748c3d37189913a4784e2c94060a;p=gnus diff --git a/texi/message.texi b/texi/message.texi index 946305337..83acd94c2 100644 --- a/texi/message.texi +++ b/texi/message.texi @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @setfilename message -@settitle Message 5.4.43 Manual +@settitle Message 0.2 Manual @synindex fn cp @synindex vr cp @synindex pg cp @@ -39,7 +39,7 @@ into another language, under the above conditions for modified versions. @tex @titlepage -@title Message 5.4.43 Manual +@title Message 0.2 Manual @author by Lars Magne Ingebrigtsen @page @@ -79,7 +79,7 @@ buffers. * Key Index:: List of Message mode keys. @end menu -This manual corresponds to Message 5.4.43. Message is distributed with +This manual corresponds to Message 0.2. Message is distributed with the Gnus distribution bearing the same version number as this manual has. @@ -176,7 +176,7 @@ the head of the outgoing mail. The @code{message-wide-reply} pops up a message buffer that's a wide 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. +(or @code{Reply-to}) and @code{Cc} headers. @vindex message-wide-reply-to-function Message uses the normal methods to determine where wide replies are to go, @@ -567,7 +567,12 @@ Kill the message buffer and exit (@code{message-kill-buffer}). @cindex mail aliases @cindex aliases -Message uses @code{mailabbrev} to handle mail aliases. +@vindex message-mail-alias-type +The @code{message-mail-alias-type} variable controls what type of mail +alias expansion to use. Currently only one form is supported---Message +uses @code{mailabbrev} to handle mail aliases. If this variable is +@code{nil}, no mail alias expansion will be performed. + @code{mailabbrev} works by parsing the @file{/etc/mailrc} and @file{~/.mailrc} files. These files look like: @@ -858,6 +863,9 @@ Check whether the newsgroups mentioned in the @code{Newsgroups} and @item valid-newsgroups Check whether the @code{Newsgroups} and @code{Followup-to} headers are valid syntactically. +@item repeated-newsgroups +Check whether the @code{Newsgroups} and @code{Followup-to} headers +contains repeated group names. @item shorten-followup-to Check whether to add a @code{Followup-to} header to shorten the number of groups to post to. @@ -923,7 +931,8 @@ headers have been inserted but before the signature has been inserted. @item message-setup-hook @vindex message-setup-hook -Hook run as the last thing when the message buffer has been initialized. +Hook run as the last thing when the message buffer has been initialized, +but before yanked text is inserted. @item message-header-setup-hook @vindex message-header-setup-hook @@ -979,6 +988,35 @@ Hook run after sending messages. @vindex message-mode-syntax-table Syntax table used in message mode buffers. +@item message-send-method-alist +@vindex message-send-method-alist + +Alist of ways to send outgoing messages. Each element has the form + +@lisp +(TYPE PREDICATE FUNCTION) +@end lisp + +@table @var +@item type +A symbol that names the method. + +@item predicate +A function called without any parameters to determine whether the +message is a message of type @var{type}. + +@item function +A function to be called if @var{predicate} returns non-@code{nil}. +@var{function} is called with one parameter -- the prefix. +@end table + +@lisp +((news message-news-p message-send-via-news) + (mail message-mail-p message-send-via-mail)) +@end lisp + + + @end table