Remove final uses of 'cl' in lisp/net
[emacs.git] / doc / misc / message.texi
blob1ef67fe0cb217f11f850e07a53fa57f22bdaaa26
1 \input texinfo                  @c -*-texinfo-*-
3 @include gnus-overrides.texi
5 @setfilename ../../info/message.info
6 @settitle Message Manual
7 @include docstyle.texi
8 @synindex fn cp
9 @synindex vr cp
10 @synindex pg cp
11 @copying
12 This file documents Message, the Emacs message composition mode.
14 Copyright @copyright{} 1996--2018 Free Software Foundation, Inc.
16 @quotation
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.3 or
19 any later version published by the Free Software Foundation; with no
20 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual'',
21 and with the Back-Cover Texts as in (a) below.  A copy of the license
22 is included in the section entitled ``GNU Free Documentation License''.
24 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
25 modify this GNU manual.''
26 @end quotation
27 @end copying
29 @dircategory Emacs network features
30 @direntry
31 * Message: (message).           Mail and news composition mode that
32                                   goes with Gnus.
33 @end direntry
34 @iftex
35 @finalout
36 @end iftex
38 @titlepage
39 @ifset WEBHACKDEVEL
40 @title Message Manual (DEVELOPMENT VERSION)
41 @end ifset
42 @ifclear WEBHACKDEVEL
43 @title Message Manual
44 @end ifclear
46 @author by Lars Magne Ingebrigtsen
47 @page
49 @vskip 0pt plus 1filll
50 @insertcopying
51 @end titlepage
53 @summarycontents
54 @contents
56 @node Top
57 @top Message
59 @ifnottex
60 @insertcopying
61 @end ifnottex
63 All message composition from Gnus (both mail and news) takes place in
64 Message mode buffers.
66 @menu
67 * Interface::         Setting up message buffers.
68 * Commands::          Commands you can execute in message mode buffers.
69 * Variables::         Customizing the message buffers.
70 * Appendices::        More technical things.
71 * GNU Free Documentation License:: The license for this documentation.
72 * Index::             Variable, function and concept index.
73 * Key Index::         List of Message mode keys.
74 @end menu
76 @c Adjust ../Makefile.in if you change the following lines:
77 Message is distributed with Gnus.  The Gnus distribution
79 corresponding to this manual is Gnus v5.13
82 @node Interface
83 @chapter Interface
85 When a program (or a person) wants to respond to a message---reply,
86 follow up, forward, cancel---the program (or person) should just put
87 point in the buffer where the message is and call the required command.
88 @code{Message} will then pop up a new @code{message} mode buffer with
89 appropriate headers filled out, and the user can edit the message before
90 sending it.
92 @menu
93 * New Mail Message::     Editing a brand new mail message.
94 * New News Message::     Editing a brand new news message.
95 * Reply::                Replying via mail.
96 * Wide Reply::           Responding to all people via mail.
97 * Followup::             Following up via news.
98 * Canceling News::       Canceling a news article.
99 * Superseding::          Superseding a message.
100 * Forwarding::           Forwarding a message via news or mail.
101 * Resending::            Resending a mail message.
102 * Bouncing::             Bouncing a mail message.
103 * Mailing Lists::        Send mail to mailing lists.
104 @end menu
106 You can customize the Message Mode tool bar, see @kbd{M-x
107 customize-apropos RET message-tool-bar}.  This feature is only available
108 in Emacs.
110 @node New Mail Message
111 @section New Mail Message
113 @findex message-mail
114 The @code{message-mail} command pops up a new message buffer.
116 Two optional parameters are accepted: The first will be used as the
117 @code{To} header and the second as the @code{Subject} header.  If these
118 are @code{nil}, those two headers will be empty.
121 @node New News Message
122 @section New News Message
124 @findex message-news
125 The @code{message-news} command pops up a new message buffer.
127 This function accepts two optional parameters.  The first will be used
128 as the @code{Newsgroups} header and the second as the @code{Subject}
129 header.  If these are @code{nil}, those two headers will be empty.
132 @node Reply
133 @section Reply
135 @findex message-reply
136 The @code{message-reply} function pops up a message buffer that's a
137 reply to the message in the current buffer.
139 @vindex message-reply-to-function
140 Message uses the normal methods to determine where replies are to go
141 (@pxref{Responses}), but you can change the behavior to suit your needs
142 by fiddling with the @code{message-reply-to-function} variable.
144 If you want the replies to go to the @code{Sender} instead of the
145 @code{From}, you could do something like this:
147 @lisp
148 (setq message-reply-to-function
149       (lambda ()
150        (cond ((equal (mail-fetch-field "from") "somebody")
151                (list (cons 'To (mail-fetch-field "sender"))))
152              (t
153               nil))))
154 @end lisp
156 This function will be called narrowed to the head of the article that is
157 being replied to.
159 As you can see, this function should return a list.  In this case, it
160 returns @code{((To . "Whom"))} if it has an opinion as to what the To
161 header should be.  If it does not, it should just return @code{nil}, and
162 the normal methods for determining the To header will be used.
164 Each list element should be a cons, where the @sc{car} should be the
165 name of a header (e.g., @code{Cc}) and the @sc{cdr} should be the header
166 value (e.g., @samp{larsi@@ifi.uio.no}).  All these headers will be
167 inserted into the head of the outgoing mail.
170 @node Wide Reply
171 @section Wide Reply
173 @findex message-wide-reply
174 The @code{message-wide-reply} pops up a message buffer that's a wide
175 reply to the message in the current buffer.  A @dfn{wide reply} is a
176 reply that goes out to all people listed in the @code{To}, @code{From}
177 (or @code{Reply-to}) and @code{Cc} headers.
179 @vindex message-wide-reply-to-function
180 Message uses the normal methods to determine where wide replies are to go,
181 but you can change the behavior to suit your needs by fiddling with the
182 @code{message-wide-reply-to-function}.  It is used in the same way as
183 @code{message-reply-to-function} (@pxref{Reply}).
185 @vindex message-dont-reply-to-names
186 Addresses that match the @code{message-dont-reply-to-names} regular
187 expression (or list of regular expressions or a predicate function)
188 will be removed from the @code{Cc} header.  A value of @code{nil} means
189 to exclude only your email address.
191 @vindex message-prune-recipient-rules
192 @code{message-prune-recipient-rules} is used to prune the addresses
193 used when doing a wide reply.  It's meant to be used to remove
194 duplicate addresses and the like.  It's a list of lists, where the
195 first element is a regexp to match the address to trigger the rule,
196 and the second is a regexp that will be expanded based on the first,
197 to match addresses to be pruned.
199 It's complicated to explain, but it's easy to use.
201 For instance, if you get an email from @samp{foo@@example.org}, but
202 @samp{foo@@zot.example.org} is also in the @code{Cc} list, then your
203 wide reply will go out to both these addresses, since they are unique.
205 To avoid this, do something like the following:
207 @lisp
208 (setq message-prune-recipient-rules
209       '(("^\\([^@@]+\\)@@\\(.*\\)" "\\1@@.*[.]\\2")))
210 @end lisp
212 If, for instance, you want all wide replies that involve messages from
213 @samp{cvs@@example.org} to go to that address, and nowhere else (i.e.,
214 remove all other recipients if @samp{cvs@@example.org} is in the
215 recipient list:
217 @lisp
218 (setq message-prune-recipient-rules
219       '(("cvs@@example.org" ".")))
220 @end lisp
222 @vindex message-wide-reply-confirm-recipients
223 If @code{message-wide-reply-confirm-recipients} is non-@code{nil} you
224 will be asked to confirm that you want to reply to multiple
225 recipients.  The default is @code{nil}.
227 @node Followup
228 @section Followup
230 @findex message-followup
231 The @code{message-followup} command pops up a message buffer that's a
232 followup to the message in the current buffer.
234 @vindex message-followup-to-function
235 Message uses the normal methods to determine where followups are to go,
236 but you can change the behavior to suit your needs by fiddling with the
237 @code{message-followup-to-function}.  It is used in the same way as
238 @code{message-reply-to-function} (@pxref{Reply}).
240 @vindex message-use-followup-to
241 The @code{message-use-followup-to} variable says what to do about
242 @code{Followup-To} headers.  If it is @code{use}, always use the value.
243 If it is @code{ask} (which is the default), ask whether to use the
244 value.  If it is @code{t}, use the value unless it is @samp{poster}.  If
245 it is @code{nil}, don't use the value.
248 @node Canceling News
249 @section Canceling News
251 @findex message-cancel-news
252 The @code{message-cancel-news} command cancels the article in the
253 current buffer.
255 @vindex message-cancel-message
256 The value of @code{message-cancel-message} is inserted in the body of
257 the cancel message.  The default is @samp{I am canceling my own
258 article.}.
260 @cindex Cancel Locks
261 @vindex message-insert-canlock
262 @cindex canlock
263 When Message posts news messages, it inserts @code{Cancel-Lock}
264 headers by default.  This is a cryptographic header that ensures that
265 only you can cancel your own messages, which is nice.  The downside
266 is that if you lose your @file{.emacs} file (which is where Gnus
267 stores the secret cancel lock password (which is generated
268 automatically the first time you use this feature)), you won't be
269 able to cancel your message.  If you want to manage a password yourself,
270 you can put something like the following in your @file{~/.gnus.el} file:
272 @lisp
273 (setq canlock-password "geheimnis"
274       canlock-password-for-verify canlock-password)
275 @end lisp
277 Whether to insert the header or not is controlled by the
278 @code{message-insert-canlock} variable.
280 Not many news servers respect the @code{Cancel-Lock} header yet, but
281 this is expected to change in the future.
284 @node Superseding
285 @section Superseding
287 @findex message-supersede
288 The @code{message-supersede} command pops up a message buffer that will
289 supersede the message in the current buffer.
291 @vindex message-ignored-supersedes-headers
292 Headers matching the @code{message-ignored-supersedes-headers} are
293 removed before popping up the new message buffer.  The default is@*
294 @samp{^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|@*
295 ^Received:\\|^X-From-Line:\\|^X-Trace:\\|^X-Complaints-To:\\|@*
296 Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|@*
297 ^X-Complaints-To:\\|^Cancel-Lock:\\|^Cancel-Key:\\|^X-Hashcash:\\|@*
298 ^X-Payment:\\|^Approved:}.
302 @node Forwarding
303 @section Forwarding
305 @findex message-forward
306 The @code{message-forward} command pops up a message buffer to forward
307 the message in the current buffer.  If given a prefix, forward using
308 news.
310 @table @code
311 @item message-forward-ignored-headers
312 @vindex message-forward-ignored-headers
313 In non-@code{nil}, all headers that match this regexp will be deleted
314 when forwarding a message.
316 @item message-forward-included-headers
317 @vindex message-forward-included-headers
318 In non-@code{nil}, only headers that match this regexp will be kept
319 when forwarding a message.
321 @item message-make-forward-subject-function
322 @vindex message-make-forward-subject-function
323 A list of functions that are called to generate a subject header for
324 forwarded messages.  The subject generated by the previous function is
325 passed into each successive function.
327 The provided functions are:
329 @table @code
330 @item message-forward-subject-author-subject
331 @findex message-forward-subject-author-subject
332 Source of article (author or newsgroup), in brackets followed by the
333 subject.
335 @item message-forward-subject-fwd
336 Subject of article with @samp{Fwd:} prepended to it.
337 @end table
339 @item message-wash-forwarded-subjects
340 @vindex message-wash-forwarded-subjects
341 If this variable is @code{t}, the subjects of forwarded messages have
342 the evidence of previous forwards (such as @samp{Fwd:}, @samp{Re:},
343 @samp{(fwd)}) removed before the new subject is
344 constructed.  The default value is @code{nil}.
346 @item message-forward-as-mime
347 @vindex message-forward-as-mime
348 If this variable is @code{t} (the default), forwarded messages are
349 included as inline @acronym{MIME} RFC822 parts.  If it's @code{nil}, forwarded
350 messages will just be copied inline to the new message, like previous,
351 non @acronym{MIME}-savvy versions of Gnus would do.
353 @item message-forward-before-signature
354 @vindex message-forward-before-signature
355 If non-@code{nil}, put forwarded message before signature, else after.
357 @end table
360 @node Resending
361 @section Resending
363 @findex message-resend
364 The @code{message-resend} command will prompt the user for an address
365 and resend the message in the current buffer to that address.
367 @vindex message-ignored-resent-headers
368 Headers that match the @code{message-ignored-resent-headers} regexp will
369 be removed before sending the message.
372 @node Bouncing
373 @section Bouncing
375 @findex message-bounce
376 The @code{message-bounce} command will, if the current buffer contains a
377 bounced mail message, pop up a message buffer stripped of the bounce
378 information.  A @dfn{bounced message} is typically a mail you've sent
379 out that has been returned by some @code{mailer-daemon} as
380 undeliverable.
382 @vindex message-ignored-bounced-headers
383 Headers that match the @code{message-ignored-bounced-headers} regexp
384 will be removed before popping up the buffer.  The default is
385 @samp{^\\(Received\\|Return-Path\\|Delivered-To\\):}.
388 @node Mailing Lists
389 @section Mailing Lists
391 @cindex Mail-Followup-To
392 Sometimes while posting to mailing lists, the poster needs to direct
393 followups to the post to specific places.  The Mail-Followup-To (MFT)
394 was created to enable just this.  Three example scenarios where this is
395 useful:
397 @itemize @bullet
398 @item
399 A mailing list poster can use MFT to express that responses should be
400 sent to just the list, and not the poster as well.  This will happen
401 if the poster is already subscribed to the list.
403 @item
404 A mailing list poster can use MFT to express that responses should be
405 sent to the list and the poster as well.  This will happen if the poster
406 is not subscribed to the list.
408 @item
409 If a message is posted to several mailing lists, MFT may also be used
410 to direct the following discussion to one list only, because
411 discussions that are spread over several lists tend to be fragmented
412 and very difficult to follow.
414 @end itemize
416 Gnus honors the MFT header in other's messages (i.e., while following
417 up to someone else's post) and also provides support for generating
418 sensible MFT headers for outgoing messages as well.
420 @c @menu
421 @c * Honoring an MFT post::        What to do when one already exists
422 @c * Composing with a MFT header:: Creating one from scratch.
423 @c @end menu
425 @c @node Composing with a MFT header
426 @subsection  Composing a correct MFT header automagically
428 The first step in getting Gnus to automagically generate a MFT header
429 in posts you make is to give Gnus a list of the mailing lists
430 addresses you are subscribed to.  You can do this in more than one
431 way.  The following variables would come in handy.
433 @table @code
435 @vindex message-subscribed-addresses
436 @item message-subscribed-addresses
437 This should be a list of addresses the user is subscribed to.  Its
438 default value is @code{nil}.  Example:
439 @lisp
440 (setq message-subscribed-addresses
441       '("ding@@gnus.org" "bing@@noose.org"))
442 @end lisp
444 @vindex message-subscribed-regexps
445 @item message-subscribed-regexps
446 This should be a list of regexps denoting the addresses of mailing
447 lists subscribed to.  Default value is @code{nil}.  Example: If you
448 want to achieve the same result as above:
449 @lisp
450 (setq message-subscribed-regexps
451       '("\\(ding@@gnus\\)\\|\\(bing@@noose\\)\\.org")
452 @end lisp
454 @vindex message-subscribed-address-functions
455 @item message-subscribed-address-functions
456 This can be a list of functions to be called (one at a time!!) to
457 determine the value of MFT headers.  It is advisable that these
458 functions not take any arguments.  Default value is @code{nil}.
460 There is a pre-defined function in Gnus that is a good candidate for
461 this variable.  @code{gnus-find-subscribed-addresses} is a function
462 that returns a list of addresses corresponding to the groups that have
463 the @code{subscribed} (@pxref{Group Parameters, ,Group Parameters,
464 gnus, The Gnus Manual}) group parameter set to a non-@code{nil} value.
465 This is how you would do it.
467 @lisp
468 (setq message-subscribed-address-functions
469       '(gnus-find-subscribed-addresses))
470 @end lisp
472 @vindex message-subscribed-address-file
473 @item message-subscribed-address-file
474 You might be one organized human freak and have a list of addresses of
475 all subscribed mailing lists in a separate file!  Then you can just
476 set this variable to the name of the file and life would be good.
478 @end table
480 You can use one or more of the above variables.  All their values are
481 ``added'' in some way that works :-)
483 Now you are all set.  Just start composing a message as you normally do.
484 And just send it; as always.  Just before the message is sent out, Gnus'
485 MFT generation thingy kicks in and checks if the message already has a
486 MFT field.  If there is one, it is left alone.  (Except if it's empty;
487 in that case, the field is removed and is not replaced with an
488 automatically generated one.  This lets you disable MFT generation on a
489 per-message basis.)  If there is none, then the list of recipient
490 addresses (in the To: and Cc: headers) is checked to see if one of them
491 is a list address you are subscribed to.  If none of them is a list
492 address, then no MFT is generated; otherwise, a MFT is added to the
493 other headers and set to the value of all addresses in To: and Cc:
495 @kindex C-c C-f C-a
496 @findex message-generate-unsubscribed-mail-followup-to
497 @kindex C-c C-f C-m
498 @findex message-goto-mail-followup-to
499 Hm.  ``So'', you ask, ``what if I send an email to a list I am not
500 subscribed to?  I want my MFT to say that I want an extra copy.''  (This
501 is supposed to be interpreted by others the same way as if there were no
502 MFT, but you can use an explicit MFT to override someone else's
503 to-address group parameter.)  The function
504 @code{message-generate-unsubscribed-mail-followup-to} might come in
505 handy.  It is bound to @kbd{C-c C-f C-a} by default.  In any case, you
506 can insert a MFT of your own choice; @kbd{C-c C-f C-m}
507 (@code{message-goto-mail-followup-to}) will help you get started.
509 @c @node Honoring an MFT post
510 @subsection Honoring an MFT post
512 @vindex message-use-mail-followup-to
513 When you followup to a post on a mailing list, and the post has a MFT
514 header, Gnus' action will depend on the value of the variable
515 @code{message-use-mail-followup-to}.  This variable can be one of:
517 @table @code
518 @item use
519  Always honor MFTs.  The To: and Cc: headers in your followup will be
520  derived from the MFT header of the original post.  This is the default.
522 @item nil
523  Always dishonor MFTs (just ignore the darned thing)
525 @item ask
526 Gnus will prompt you for an action.
528 @end table
530 It is considered good netiquette to honor MFT, as it is assumed the
531 fellow who posted a message knows where the followups need to go
532 better than you do.
534 @node Commands
535 @chapter Commands
537 @menu
538 * Buffer Entry::        Commands after entering a Message buffer.
539 * Header Commands::     Commands for moving headers or changing headers.
540 * Movement::            Moving around in message buffers.
541 * Insertion::           Inserting things into message buffers.
542 * MIME::                @acronym{MIME} considerations.
543 * IDNA::                Non-@acronym{ASCII} domain name considerations.
544 * Security::            Signing and encrypting messages.
545 * Various Commands::    Various things.
546 * Sending::             Actually sending the message.
547 * Mail Aliases::        How to use mail aliases.
548 * Spelling::            Having Emacs check your spelling.
549 @end menu
552 @node Buffer Entry
553 @section Buffer Entry
554 @cindex undo
555 @kindex C-_
557 You most often end up in a Message buffer when responding to some other
558 message of some sort.  Message does lots of handling of quoted text, and
559 may remove signatures, reformat the text, or the like---depending on
560 which used settings you're using.  Message usually gets things right,
561 but sometimes it stumbles.  To help the user unwind these stumblings,
562 Message sets the undo boundary before each major automatic action it
563 takes.  If you press the undo key (usually located at @kbd{C-_}) a few
564 times, you will get back the un-edited message you're responding to.
567 @node Header Commands
568 @section Header Commands
570 @subsection Commands for moving to headers
572 These following commands move to the header in question.  If it doesn't
573 exist, it will be inserted.
575 @table @kbd
577 @item C-c ?
578 @kindex C-c ?
579 @findex describe-mode
580 Describe the message mode.
582 @item C-c C-f C-t
583 @kindex C-c C-f C-t
584 @findex message-goto-to
585 Go to the @code{To} header (@code{message-goto-to}).
587 @item C-c C-f C-o
588 @kindex C-c C-f C-o
589 @findex message-goto-from
590 Go to the @code{From} header (@code{message-goto-from}).  (The ``o''
591 in the key binding is for Originator.)
593 @item C-c C-f C-b
594 @kindex C-c C-f C-b
595 @findex message-goto-bcc
596 Go to the @code{Bcc} header (@code{message-goto-bcc}).
598 @item C-c C-f C-w
599 @kindex C-c C-f C-w
600 @findex message-goto-fcc
601 Go to the @code{Fcc} header (@code{message-goto-fcc}).
603 @item C-c C-f C-c
604 @kindex C-c C-f C-c
605 @findex message-goto-cc
606 Go to the @code{Cc} header (@code{message-goto-cc}).
608 @item C-c C-f C-s
609 @kindex C-c C-f C-s
610 @findex message-goto-subject
611 Go to the @code{Subject} header (@code{message-goto-subject}).
613 @item C-c C-f C-r
614 @kindex C-c C-f C-r
615 @findex message-goto-reply-to
616 Go to the @code{Reply-To} header (@code{message-goto-reply-to}).
618 @item C-c C-f C-n
619 @kindex C-c C-f C-n
620 @findex message-goto-newsgroups
621 Go to the @code{Newsgroups} header (@code{message-goto-newsgroups}).
623 @item C-c C-f C-d
624 @kindex C-c C-f C-d
625 @findex message-goto-distribution
626 Go to the @code{Distribution} header (@code{message-goto-distribution}).
628 @item C-c C-f C-f
629 @kindex C-c C-f C-f
630 @findex message-goto-followup-to
631 Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
633 @item C-c C-f C-k
634 @kindex C-c C-f C-k
635 @findex message-goto-keywords
636 Go to the @code{Keywords} header (@code{message-goto-keywords}).
638 @item C-c C-f C-u
639 @kindex C-c C-f C-u
640 @findex message-goto-summary
641 Go to the @code{Summary} header (@code{message-goto-summary}).
643 @item C-c C-f C-i
644 @kindex C-c C-f C-i
645 @findex message-insert-or-toggle-importance
646 This inserts the @samp{Importance:} header with a value of
647 @samp{high}.  This header is used to signal the importance of the
648 message to the receiver.  If the header is already present in the
649 buffer, it cycles between the three valid values according to RFC
650 1376: @samp{low}, @samp{normal} and @samp{high}.
652 @item C-c C-f C-a
653 @kindex C-c C-f C-a
654 @findex message-generate-unsubscribed-mail-followup-to
655 Insert a reasonable @samp{Mail-Followup-To:} header
656 (@pxref{Mailing Lists}) in a post to an
657 unsubscribed list.  When making original posts to a mailing list you are
658 not subscribed to, you have to type in a @samp{Mail-Followup-To:} header
659 by hand.  The contents, usually, are the addresses of the list and your
660 own address.  This function inserts such a header automatically.  It
661 fetches the contents of the @samp{To:} header in the current mail
662 buffer, and appends the current @code{user-mail-address}.
664 If the optional argument @code{include-cc} is non-@code{nil}, the
665 addresses in the @samp{Cc:} header are also put into the
666 @samp{Mail-Followup-To:} header.
668 @end table
670 @subsection  Commands to change headers
672 @table @kbd
674 @item C-c C-o
675 @kindex C-c C-o
676 @findex message-sort-headers
677 @vindex message-header-format-alist
678 Sort headers according to @code{message-header-format-alist}
679 (@code{message-sort-headers}).
681 @item C-c C-t
682 @kindex C-c C-t
683 @findex message-insert-to
684 Insert a @code{To} header that contains the @code{Reply-To} or
685 @code{From} header of the message you're following up
686 (@code{message-insert-to}).
688 @item C-c C-n
689 @kindex C-c C-n
690 @findex message-insert-newsgroups
691 Insert a @code{Newsgroups} header that reflects the @code{Followup-To}
692 or @code{Newsgroups} header of the article you're replying to
693 (@code{message-insert-newsgroups}).
695 @item C-c C-l
696 @kindex C-c C-l
697 @findex message-to-list-only
698 Send a message to the list only.  Remove all addresses but the list
699 address from @code{To:} and @code{Cc:} headers.
701 @item C-c M-n
702 @kindex C-c M-n
703 @findex message-insert-disposition-notification-to
704 Insert a request for a disposition
705 notification.  (@code{message-insert-disposition-notification-to}).
706 This means that if the recipient supports RFC 2298 she might send you a
707 notification that she received the message.
709 @item M-x message-insert-importance-high
710 @kindex M-x message-insert-importance-high
711 @findex message-insert-importance-high
712 @cindex Importance
713 Insert an @samp{Importance} header with a value of @samp{high},
714 deleting headers if necessary.
716 @item M-x message-insert-importance-low
717 @kindex M-x message-insert-importance-low
718 @findex message-insert-importance-low
719 @cindex Importance
720 Insert an @samp{Importance} header with a value of @samp{low}, deleting
721 headers if necessary.
723 @item C-c C-f s
724 @kindex C-c C-f s
725 @findex message-change-subject
726 @cindex Subject
727 Change the current @samp{Subject} header.  Ask for new @samp{Subject}
728 header and append @samp{(was: <Old Subject>)}.  The old subject can be
729 stripped on replying, see @code{message-subject-trailing-was-query}
730 (@pxref{Message Headers}).
732 @item C-c C-f x
733 @kindex C-c C-f x
734 @findex message-cross-post-followup-to
735 @vindex message-cross-post-default
736 @vindex message-cross-post-note-function
737 @cindex X-Post
738 @cindex cross-post
739 Set up the @samp{FollowUp-To} header with a target newsgroup for a
740 cross-post, add that target newsgroup to the @samp{Newsgroups} header if
741 it is not a member of @samp{Newsgroups}, and insert a note in the body.
742 If @code{message-cross-post-default} is @code{nil} or if this command is
743 called with a prefix-argument, only the @samp{FollowUp-To} header will
744 be set but the target newsgroup will not be added to the
745 @samp{Newsgroups} header.  The function to insert a note is controlled
746 by the @code{message-cross-post-note-function} variable.
748 @item C-c C-f t
749 @kindex C-c C-f t
750 @findex message-reduce-to-to-cc
751 Replace contents of @samp{To} header with contents of @samp{Cc}
752 header (or the @samp{Bcc} header, if there is no @samp{Cc} header).
754 @item C-c C-f w
755 @kindex C-c C-f w
756 @findex message-insert-wide-reply
757 Insert @samp{To} and @samp{Cc} headers as if you were doing a wide
758 reply even if the message was not made for a wide reply first.
760 @item C-c C-f a
761 @kindex C-c C-f a
762 @findex message-add-archive-header
763 @vindex message-archive-header
764 @vindex message-archive-note
765 @cindex X-No-Archive
766 Insert @samp{X-No-Archive: Yes} in the header and a note in the body.
767 The header and the note can be customized using
768 @code{message-archive-header} and @code{message-archive-note}.  When
769 called with a prefix argument, ask for a text to insert.  If you don't
770 want the note in the body, set @code{message-archive-note} to
771 @code{nil}.
773 @end table
776 @node Movement
777 @section Movement
779 @table @kbd
780 @item C-c C-b
781 @kindex C-c C-b
782 @findex message-goto-body
783 Move to the beginning of the body of the message
784 (@code{message-goto-body}).
786 @item C-c C-i
787 @kindex C-c C-i
788 @findex message-goto-signature
789 Move to the signature of the message (@code{message-goto-signature}).
791 @item C-a
792 @kindex C-a
793 @findex message-beginning-of-line
794 @vindex message-beginning-of-line
795 If at beginning of header value, go to beginning of line, else go to
796 beginning of header value.  (The header value comes after the header
797 name and the colon.)  This behavior can be disabled by toggling
798 the variable @code{message-beginning-of-line}.
800 @end table
803 @node Insertion
804 @section Insertion
806 @table @kbd
808 @item C-c C-y
809 @kindex C-c C-y
810 @findex message-yank-original
811 Yank the message that's being replied to into the message buffer
812 (@code{message-yank-original}).
814 @item C-c C-M-y
815 @kindex C-c C-M-y
816 @findex message-yank-buffer
817 Prompt for a buffer name and yank the contents of that buffer into the
818 message buffer (@code{message-yank-buffer}).
820 @item C-c C-q
821 @kindex C-c C-q
822 @findex message-fill-yanked-message
823 Fill the yanked message (@code{message-fill-yanked-message}).  Warning:
824 Can severely mess up the yanked text if its quoting conventions are
825 strange.  You'll quickly get a feel for when it's safe, though.  Anyway,
826 just remember that @kbd{C-x u} (@code{undo}) is available and you'll be
827 all right.
829 @item C-c C-w
830 @kindex C-c C-w
831 @findex message-insert-signature
832 Insert a signature at the end of the buffer
833 (@code{message-insert-signature}).
835 @item C-c M-h
836 @kindex C-c M-h
837 @findex message-insert-headers
838 Insert the message headers (@code{message-insert-headers}).
840 @item C-c M-m
841 @kindex C-c M-m
842 @findex message-mark-inserted-region
843 Mark some region in the current article with enclosing tags.  See
844 @code{message-mark-insert-begin} and @code{message-mark-insert-end}.
845 When called with a prefix argument, use slrn style verbatim marks
846 (@samp{#v+} and @samp{#v-}).
848 @item C-c M-f
849 @kindex C-c M-f
850 @findex message-mark-insert-file
851 Insert a file in the current article with enclosing tags.
852 See @code{message-mark-insert-begin} and @code{message-mark-insert-end}.
853 When called with a prefix argument, use slrn style verbatim marks
854 (@samp{#v+} and @samp{#v-}).
856 @end table
859 @node MIME
860 @section MIME
861 @cindex MML
862 @cindex MIME
863 @cindex multipart
864 @cindex attachment
866 Message is a @acronym{MIME}-compliant posting agent.  The user generally
867 doesn't have to do anything to make the @acronym{MIME} happen---Message will
868 automatically add the @code{Content-Type} and
869 @code{Content-Transfer-Encoding} headers.
871 @findex mml-attach-file
872 @kindex C-c C-a
873 The most typical thing users want to use the multipart things in
874 @acronym{MIME} for is to add ``attachments'' to mail they send out.
875 This can be done with the @kbd{C-c C-a} command (@kbd{M-x mml-attach-file}),
876 which will prompt for a file name and a @acronym{MIME} type.
878 @vindex mml-dnd-protocol-alist
879 @vindex mml-dnd-attach-options
880 If your Emacs supports drag and drop, you can also drop the file in the
881 Message buffer.  The variable @code{mml-dnd-protocol-alist} specifies
882 what kind of action is done when you drop a file into the Message
883 buffer.  The variable @code{mml-dnd-attach-options} controls which
884 @acronym{MIME} options you want to specify when dropping a file.  If it
885 is a list, valid members are @code{type}, @code{description} and
886 @code{disposition}.  @code{disposition} implies @code{type}.  If it is
887 @code{nil}, don't ask for options.  If it is @code{t}, ask the user
888 whether or not to specify options.
890 You can also create arbitrarily complex multiparts using the @acronym{MML}
891 language (@pxref{Composing, , Composing, emacs-mime, The Emacs MIME
892 Manual}).
894 @node IDNA
895 @section IDNA
896 @cindex IDNA
897 @cindex internationalized domain names
898 @cindex non-ascii domain names
900 @acronym{IDNA} is a standard way to encode non-@acronym{ASCII} domain
901 names into a readable @acronym{ASCII} string.  The details can be
902 found in RFC 3490.
904 Message is a @acronym{IDNA}-compliant posting agent.  The user
905 generally doesn't have to do anything to make the @acronym{IDNA}
906 happen---Message will encode non-@acronym{ASCII} domain names in @code{From},
907 @code{To}, and @code{Cc} headers automatically.
909 Until @acronym{IDNA} becomes more well known, Message queries you
910 whether @acronym{IDNA} encoding of the domain name really should
911 occur.  Some users might not be aware that domain names can contain
912 non-@acronym{ASCII} now, so this gives them a safety net if they accidentally
913 typed a non-@acronym{ASCII} domain name.
915 @vindex message-use-idna
916 The @code{message-use-idna} variable control whether @acronym{IDNA} is
917 used.  If the variable is @code{nil} no @acronym{IDNA} encoding will
918 ever happen, if it is set to the symbol @code{ask} the user will be
919 queried, and if set to @code{t} (which is the default if @acronym{IDNA}
920 is fully available) @acronym{IDNA} encoding happens automatically.
922 @findex message-idna-to-ascii-rhs
923 If you want to experiment with the @acronym{IDNA} encoding, you can
924 invoke @kbd{M-x message-idna-to-ascii-rhs RET} in the message buffer
925 to have the non-@acronym{ASCII} domain names encoded while you edit
926 the message.
928 Note that you must have @uref{https://www.gnu.org/software/libidn/, GNU
929 Libidn} installed in order to use this functionality.
931 @node Security
932 @section Security
933 @cindex Security
934 @cindex S/MIME
935 @cindex PGP
936 @cindex PGP/MIME
937 @cindex sign
938 @cindex encrypt
939 @cindex secure
941 By default, e-mails are transmitted without any protection around the
942 Internet, which implies that they can be read and changed by lots of
943 different parties.  In particular, they are analyzed under bulk
944 surveillance, which violates basic human rights.  To defend those
945 rights, digital self-defense is necessary (in addition to legal
946 changes), and encryption and digital signatures are powerful
947 techniques for self-defense.  In essence, encryption ensures that
948 only the intended recipient will be able to read a message, while
949 digital signatures make sure that modifications to messages can be
950 detected by the recipient.
952 Nowadays, there are two major incompatible e-mail encryption
953 standards, namely @acronym{OpenPGP} and @acronym{S/MIME}.  Both of
954 these standards are implemented by the @uref{https://www.gnupg.org/,
955 GNU Privacy Guard (GnuPG)}, which needs to be installed as external
956 software in addition to GNU Emacs.  Before you can start to encrypt,
957 decrypt, and sign messages, you need to create a so-called key-pair,
958 which consists of a private key and a public key.  Your @emph{public} key
959 (also known as @emph{certificate}, in particular with @acronym{S/MIME}), is
960 used by others (a) to encrypt messages intended for you and (b) to verify
961 digital signatures created by you.  In contrast, you use your @emph{private}
962 key (a) to decrypt messages and (b) to sign messages.  (You may want to
963 think of your public key as an open safe that you offer to others such
964 that they can deposit messages and lock the door, while your private
965 key corresponds to the opening combination for the safe.)
967 Thus, you need to perform the following steps for e-mail encryption,
968 typically outside Emacs.  See, for example, the
969 @uref{https://www.gnupg.org/gph/en/manual.html, The GNU Privacy
970 Handbook} for details covering the standard @acronym{OpenPGP} with
971 @acronym{GnuPG}.
972 @enumerate
973 @item
974 Install GnuPG.
975 @item
976 Create a key-pair for your own e-mail address.
977 @item
978 Distribute your public key, e.g., via upload to key servers.
979 @item
980 Import the public keys for the recipients to which you want to send
981 encrypted e-mails.
982 @end enumerate
984 Whether to use the standard @acronym{OpenPGP} or @acronym{S/MIME} is
985 beyond the scope of this documentation.  Actually, you can use one
986 standard for one set of recipients and the other standard for
987 different recipients (depending their preferences or capabilities).
989 In case you are not familiar with all those acronyms: The standard
990 @acronym{OpenPGP} is also called @acronym{PGP} (Pretty Good Privacy).
991 The command line tools offered by @acronym{GnuPG} for
992 @acronym{OpenPGP} are called @command{gpg} and @command{gpg2}, while
993 the one for @acronym{S/MIME} is called @command{gpgsm}.  An
994 alternative, but discouraged, tool for @acronym{S/MIME} is
995 @command{openssl}.  To make matters worse, e-mail messages can be
996 formed in two different ways with @acronym{OpenPGP}, namely
997 @acronym{PGP} (RFC 1991/4880) and @acronym{PGP/MIME} (RFC 2015/3156).
999 The good news, however, is the following: In GNU Emacs, Message
1000 supports all those variants, comes with reasonable defaults that can
1001 be customized according to your needs, and invokes the proper command
1002 line tools behind the scenes for encryption, decryption, as well as
1003 creation and verification of digital signatures.
1005 Message uses the @acronym{MML} language for the creation of signed
1006 and/or encrypted messages as explained in the following.
1009 @menu
1010 * Signing and encryption::      Signing and encrypting commands.
1011 * Using S/MIME::                Using S/MIME
1012 * Using OpenPGP::               Using OpenPGP
1013 * Passphrase caching::          How to cache passphrases
1014 * PGP Compatibility::           Compatibility with older implementations
1015 * Encrypt-to-self::             Reading your own encrypted messages
1016 * Bcc Warning::                 Do not use encryption with Bcc headers
1017 @end menu
1019 @node Signing and encryption
1020 @subsection Signing and encrypting commands
1022 Instructing @acronym{MML} to perform security operations on a
1023 @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for
1024 signing and the @kbd{C-c C-m c} key map for encryption, as follows.
1025 @table @kbd
1027 @item C-c C-m s s
1028 @kindex C-c C-m s s
1029 @findex mml-secure-message-sign-smime
1031 Digitally sign current message using @acronym{S/MIME}.
1033 @item C-c C-m s o
1034 @kindex C-c C-m s o
1035 @findex mml-secure-message-sign-pgp
1037 Digitally sign current message using @acronym{PGP}.
1039 @item C-c C-m s p
1040 @kindex C-c C-m s p
1041 @findex mml-secure-message-sign-pgpmime
1043 Digitally sign current message using @acronym{PGP/MIME}.
1045 @item C-c C-m c s
1046 @kindex C-c C-m c s
1047 @findex mml-secure-message-encrypt-smime
1049 Digitally encrypt current message using @acronym{S/MIME}.
1051 @item C-c C-m c o
1052 @kindex C-c C-m c o
1053 @findex mml-secure-message-encrypt-pgp
1055 Digitally encrypt current message using @acronym{PGP}.
1057 @item C-c C-m c p
1058 @kindex C-c C-m c p
1059 @findex mml-secure-message-encrypt-pgpmime
1061 Digitally encrypt current message using @acronym{PGP/MIME}.
1063 @item C-c C-m C-n
1064 @kindex C-c C-m C-n
1065 @findex mml-unsecure-message
1066 Remove security related @acronym{MML} tags from message.
1068 @end table
1070 These commands do not immediately sign or encrypt the message, they
1071 merely insert the proper @acronym{MML} secure tag to instruct the
1072 @acronym{MML} engine to perform that operation when the message is
1073 actually sent.  They may perform other operations too, such as locating
1074 and retrieving a @acronym{S/MIME} certificate of the person you wish to
1075 send encrypted mail to.  When the mml parsing engine converts your
1076 @acronym{MML} into a properly encoded @acronym{MIME} message, the secure
1077 tag will be replaced with either a part or a multipart tag.  If your
1078 message contains other mml parts, a multipart tag will be used; if no
1079 other parts are present in your message a single part tag will be used.
1080 This way, message mode will do the Right Thing (TM) with
1081 signed/encrypted multipart messages.
1083 Since signing and especially encryption often is used when sensitive
1084 information is sent, you may want to have some way to ensure that your
1085 mail is actually signed or encrypted.  After invoking the above
1086 sign/encrypt commands, it is possible to preview the raw article by
1087 using @kbd{C-u C-c RET P} (@code{mml-preview}).  Then you can
1088 verify that your long rant about what your ex-significant other or
1089 whomever actually did with that funny looking person at that strange
1090 party the other night, actually will be sent encrypted.
1092 @emph{Note!}  Neither @acronym{PGP/MIME} nor @acronym{S/MIME} encrypt/signs
1093 RFC822 headers.  They only operate on the @acronym{MIME} object.  Keep this
1094 in mind before sending mail with a sensitive Subject line.
1096 By default, when encrypting a message, Gnus will use the
1097 ``signencrypt'' mode, which means the message is both signed and
1098 encrypted.  If you would like to disable this for a particular
1099 message, give the @code{mml-secure-message-encrypt-*} command a prefix
1100 argument, e.g., @kbd{C-u C-c C-m c p}.
1102 Actually using the security commands above is not very difficult.  At
1103 least not compared with making sure all involved programs talk with each
1104 other properly.  Thus, we now describe what external libraries or
1105 programs are required to make things work, and some small general hints.
1107 @node Using S/MIME
1108 @subsection Using S/MIME
1110 @acronym{S/MIME} requires an external implementation, such as
1111 @uref{https://www.gnupg.org/, GNU Privacy Guard} or
1112 @uref{https://www.openssl.org/, OpenSSL}.  The default Emacs interface
1113 to the S/MIME implementation is EasyPG (@pxref{Top,,EasyPG Assistant
1114 User's Manual, epa, EasyPG Assistant User's Manual}), which has been
1115 included in Emacs since version 23 and which relies on the command
1116 line tool @command{gpgsm} provided by @acronym{GnuPG}.  That tool
1117 implements certificate management, including certificate revocation
1118 and expiry, while such tasks need to be performed manually, if OpenSSL
1119 is used.
1121 The choice between EasyPG and OpenSSL is controlled by the variable
1122 @code{mml-smime-use}, which needs to be set to the value @code{epg}
1123 for EasyPG.  Depending on your version of Emacs that value may be the
1124 default; if not, you can either customize that variable or place the
1125 following line in your @file{.emacs} file (that line needs to be
1126 placed above other code related to message/gnus/encryption):
1128 @lisp
1129 (require 'epg)
1130 @end lisp
1132 Moreover, you may want to customize the variables
1133 @code{mml-default-encrypt-method} and
1134 @code{mml-default-sign-method} to the string @code{"smime"}.
1136 That's all if you want to use S/MIME with EasyPG, and that's the
1137 recommended way of using S/MIME with Message.
1139 If you think about using OpenSSL instead of EasyPG, please read the
1140 BUGS section in the manual for the @command{smime} command coming with
1141 OpenSSL first.  If you still want to use OpenSSL, the following
1142 applies.
1144 @emph{Note!}  The remainder of this section assumes you have a basic
1145 familiarity with modern cryptography, @acronym{S/MIME}, various PKCS
1146 standards, OpenSSL and so on.
1148 The @acronym{S/MIME} support in Message (and @acronym{MML}) can use
1149 OpenSSL@.  OpenSSL performs the actual @acronym{S/MIME} sign/encrypt
1150 operations.  OpenSSL can be found at @uref{http://www.openssl.org/}.
1151 OpenSSL 0.9.6 and later should work.  Version 0.9.5a cannot extract mail
1152 addresses from certificates, and it insert a spurious CR character into
1153 @acronym{MIME} separators so you may wish to avoid it if you would like
1154 to avoid being regarded as someone who send strange mail.  (Although by
1155 sending @acronym{S/MIME} messages you've probably already lost that
1156 contest.)
1158 To be able to send encrypted mail, a personal certificate is not
1159 required.  Message (@acronym{MML}) need a certificate for the person to whom you
1160 wish to communicate with though.  You're asked for this when you type
1161 @kbd{C-c C-m c s}.  Currently there are two ways to retrieve this
1162 certificate, from a local file or from DNS@.  If you chose a local
1163 file, it need to contain a X.509 certificate in @acronym{PEM} format.
1164 If you chose DNS, you're asked for the domain name where the
1165 certificate is stored, the default is a good guess.  To my belief,
1166 Message (@acronym{MML}) is the first mail agent in the world to support
1167 retrieving @acronym{S/MIME} certificates from DNS, so you're not
1168 likely to find very many certificates out there.  At least there
1169 should be one, stored at the domain @code{simon.josefsson.org}.  LDAP
1170 is a more popular method of distributing certificates, support for it
1171 is planned.  (Meanwhile, you can use @code{ldapsearch} from the
1172 command line to retrieve a certificate into a file and use it.)
1174 As for signing messages, OpenSSL can't perform signing operations
1175 without some kind of configuration.  Especially, you need to tell it
1176 where your private key and your certificate is stored.  @acronym{MML}
1177 uses an Emacs interface to OpenSSL, aptly named @code{smime.el}, and it
1178 contain a @code{custom} group used for this configuration.  So, try
1179 @kbd{M-x customize-group RET smime RET} and look around.
1181 Currently there is no support for talking to a CA (or RA) to create
1182 your own certificate.  None is planned either.  You need to do this
1183 manually with OpenSSL or using some other program.  I used Netscape
1184 and got a free @acronym{S/MIME} certificate from one of the big CA's on the
1185 net.  Netscape is able to export your private key and certificate in
1186 PKCS #12 format.  Use OpenSSL to convert this into a plain X.509
1187 certificate in PEM format as follows.
1189 @example
1190 $ openssl pkcs12 -in ns.p12 -clcerts -nodes > key+cert.pem
1191 @end example
1193 The @file{key+cert.pem} file should be pointed to from the
1194 @code{smime-keys} variable.  You should now be able to send signed mail.
1196 @emph{Note!}  Your private key is now stored unencrypted in the file,
1197 so take care in handling it.  Storing encrypted keys on the disk are
1198 supported, and Gnus will ask you for a passphrase before invoking
1199 OpenSSL@.  Read the OpenSSL documentation for how to achieve this.  If
1200 you use unencrypted keys (e.g., if they are on a secure storage, or if
1201 you are on a secure single user machine) simply press @code{RET} at
1202 the passphrase prompt.
1204 @node Using OpenPGP
1205 @subsection Using OpenPGP
1207 Use of OpenPGP requires an external software, such
1208 as @uref{https://www.gnupg.org/, GNU Privacy Guard}.  Pre-OpenPGP
1209 implementations such as PGP 2.x and PGP 5.x are also supported.  The
1210 default Emacs interface to the PGP implementation is EasyPG
1211 (@pxref{Top,,EasyPG Assistant User's Manual, epa, EasyPG Assistant
1212 User's Manual}), but PGG (@pxref{Top, ,PGG, pgg, PGG Manual}) and
1213 Mailcrypt are also supported.  @xref{PGP Compatibility}.
1215 As stated earlier, messages encrypted with OpenPGP can be formatted
1216 according to two different standards, namely @acronym{PGP} or
1217 @acronym{PGP/MIME}.  The variables
1218 @code{mml-default-encrypt-method} and
1219 @code{mml-default-sign-method} determine which variant to prefer,
1220 @acronym{PGP/MIME} by default.
1222 @node Passphrase caching
1223 @subsection Passphrase caching
1225 @cindex gpg-agent
1226 Message with EasyPG internally calls GnuPG (the @command{gpg} or
1227 @command{gpgsm} command) to perform
1228 data encryption, and in certain cases (decrypting or signing for
1229 example), @command{gpg}/@command{gpgsm} requires user's passphrase.
1230 Currently the recommended way to supply your passphrase is to use the
1231 @command{gpg-agent} program.
1233 In particular, the @command{gpg-agent} program supports passphrase
1234 caching so that you do not need to enter your passphrase for every
1235 decryption/sign operation.  @xref{Agent Options, , , gnupg, Using the
1236 GNU Privacy Guard}.
1238 How to use @command{gpg-agent} in Emacs depends on your version of
1239 GnuPG.  With GnuPG version 2.1, @command{gpg-agent} is started
1240 automatically if necessary.  With older versions you may need to run
1241 the following command from the shell before starting Emacs.
1243 @example
1244 eval `gpg-agent --daemon`
1245 @end example
1247 This will invoke @command{gpg-agent} and set the environment variable
1248 @code{GPG_AGENT_INFO} to allow @command{gpg} to communicate with it.
1249 It might be good idea to put this command in your @file{.xsession} or
1250 @file{.bash_profile}.  @xref{Invoking GPG-AGENT, , , gnupg, Using the
1251 GNU Privacy Guard}.
1253 Once your @command{gpg-agent} is set up, it will ask you for a
1254 passphrase as needed for @command{gpg}.  Under the X Window System,
1255 you will see a new passphrase input dialog appear.  The dialog is
1256 provided by PIN Entry (the @command{pinentry} command), reasonably
1257 recent versions of which can also cooperate with Emacs on a text
1258 console.  If that does not work, you may need to put a passphrase into
1259 gpg-agent's cache beforehand.  The following command does the trick.
1261 @example
1262 gpg --use-agent --sign < /dev/null > /dev/null
1263 @end example
1265 @node PGP Compatibility
1266 @subsection Compatibility with older implementations
1268 @vindex gpg-temp-directory
1269 Note, if you are using the @code{gpg.el} you must make sure that the
1270 directory specified by @code{gpg-temp-directory} have permissions
1271 0700.
1273 Creating your own key is described in detail in the documentation of
1274 your PGP implementation, so we refer to it.
1276 If you have imported your old PGP 2.x key into GnuPG, and want to send
1277 signed and encrypted messages to your fellow PGP 2.x users, you'll
1278 discover that the receiver cannot understand what you send. One
1279 solution is to use PGP 2.x instead (e.g., if you use @code{pgg}, set
1280 @code{pgg-default-scheme} to @code{pgp}). You could also convince your
1281 fellow PGP 2.x users to convert to GnuPG@.
1282 @vindex mml-signencrypt-style-alist
1283 As a final workaround, you can make the sign and encryption work in
1284 two steps; separately sign, then encrypt a message.  If you would like
1285 to change this behavior you can customize the
1286 @code{mml-signencrypt-style-alist} variable.  For example:
1288 @lisp
1289 (setq mml-signencrypt-style-alist '(("smime" separate)
1290                                     ("pgp" separate)
1291                                     ("pgpauto" separate)
1292                                     ("pgpmime" separate)))
1293 @end lisp
1295 This causes to sign and encrypt in two passes, thus generating a
1296 message that can be understood by PGP version 2.
1298 (Refer to @uref{http://www.gnupg.org/gph/en/pgp2x.html} for more
1299 information about the problem.)
1301 @node Encrypt-to-self
1302 @subsection Encrypt-to-self
1304 By default, messages are encrypted to all recipients (@code{To},
1305 @code{Cc}, @code{Bcc} headers).  Thus, you will not be able to decrypt
1306 your own messages.  To make sure that messages are also encrypted to
1307 your own key(s), several alternative solutions exist:
1308 @enumerate
1309 @item
1310 Use the @code{encrypt-to} option in the file @file{gpg.conf} (for
1311 OpenPGP) or @file{gpgsm.conf} (for @acronym{S/MIME} with EasyPG).
1312 @xref{Invoking GPG, , , gnupg, Using the GNU Privacy Guard}, or
1313 @xref{Invoking GPGSM, , , gnupg, Using the GNU Privacy Guard}.
1314 @item
1315 Include your own e-mail address (for which you created a key-pair)
1316 among the recipients.
1317 @item
1318 Customize the variable @code{mml-secure-openpgp-encrypt-to-self} (for
1319 OpenPGP) or @code{mml-secure-smime-encrypt-to-self} (for
1320 @acronym{S/MIME} with EasyPG).
1321 @end enumerate
1323 @node Bcc Warning
1324 @subsection Bcc Warning
1326 The @code{Bcc} header is meant to hide recipients of messages.
1327 However, when encrypted messages are used, the e-mail addresses of all
1328 @code{Bcc}-headers are given away to all recipients without
1329 warning, which is a bug.
1330 @vindex mml-secure-safe-bcc-list
1331 But now Message got to warn if @code{Bcc} recipients are found in an
1332 encrypted message when you are just about to send it.  If you are sure
1333 those @code{Bcc} addresses are safe to expose, set the
1334 @code{mml-secure-safe-bcc-list} variable, that is a list of e-mail
1335 addresses.  See
1336 @uref{https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18718}.
1339 @node Various Commands
1340 @section Various Commands
1342 @table @kbd
1344 @item C-c C-r
1345 @kindex C-c C-r
1346 @findex message-caesar-buffer-body
1347 Caesar rotate (aka. rot13) the current message
1348 (@code{message-caesar-buffer-body}).  If narrowing is in effect, just
1349 rotate the visible portion of the buffer.  A numerical prefix says how
1350 many places to rotate the text.  The default is 13.
1352 @item C-c C-e
1353 @kindex C-c C-e
1354 @findex message-elide-region
1355 @vindex message-elide-ellipsis
1356 Elide the text between point and mark (@code{message-elide-region}).
1357 The text is killed and replaced with the contents of the variable
1358 @code{message-elide-ellipsis}.  The default value is to use an ellipsis
1359 (@samp{[...]}).
1361 This is a format-spec string, and you can use @samp{%l} to say how
1362 many lines were removed, and @samp{%c} to say how many characters were
1363 removed.
1365 @item C-c M-k
1366 @kindex C-c M-k
1367 @findex message-kill-address
1368 Kill the address under point.
1370 @item C-c C-z
1371 @kindex C-c C-z
1372 @findex message-kill-to-signature
1373 Kill all the text up to the signature, or if that's missing, up to the
1374 end of the message (@code{message-kill-to-signature}).
1376 @item C-c C-v
1377 @kindex C-c C-v
1378 @findex message-delete-not-region
1379 Delete all text in the body of the message that is outside the region
1380 (@code{message-delete-not-region}).
1382 @item M-RET
1383 @kindex M-RET
1384 @findex message-newline-and-reformat
1385 Insert four newlines, and then reformat if inside quoted text.
1387 Here's an example:
1389 @example
1390 > This is some quoted text.  And here's more quoted text.
1391 @end example
1393 If point is before @samp{And} and you press @kbd{M-RET}, you'll get:
1395 @example
1396 > This is some quoted text.
1400 > And here's more quoted text.
1401 @end example
1403 @samp{*} says where point will be placed.
1405 @item C-c M-r
1406 @kindex C-c M-r
1407 @findex message-rename-buffer
1408 Rename the buffer (@code{message-rename-buffer}).  If given a prefix,
1409 prompt for a new buffer name.
1411 @item TAB
1412 @kindex TAB
1413 @findex message-tab
1414 @vindex message-tab-body-function
1415 If @code{message-tab-body-function} is non-@code{nil}, execute the
1416 function it specifies.  Otherwise use the function bound to @kbd{TAB} in
1417 @code{text-mode-map} or @code{global-map}.
1419 @end table
1422 @node Sending
1423 @section Sending
1425 @table @kbd
1426 @item C-c C-c
1427 @kindex C-c C-c
1428 @findex message-send-and-exit
1429 Send the message and bury the current buffer
1430 (@code{message-send-and-exit}).
1432 @item C-c C-s
1433 @kindex C-c C-s
1434 @findex message-send
1435 Send the message (@code{message-send}).
1437 @item C-c C-d
1438 @kindex C-c C-d
1439 @findex message-dont-send
1440 Bury the message buffer and exit (@code{message-dont-send}).
1442 @item C-c C-k
1443 @kindex C-c C-k
1444 @findex message-kill-buffer
1445 Kill the message buffer and exit (@code{message-kill-buffer}).
1447 @end table
1451 @node Mail Aliases
1452 @section Mail Aliases
1453 @cindex mail aliases
1454 @cindex aliases
1455 @cindex completion
1456 @cindex ecomplete
1458 @vindex message-mail-alias-type
1459 The @code{message-mail-alias-type} variable controls what type of mail
1460 alias expansion to use.  Currently two forms are supported:
1461 @code{mailabbrev} and @code{ecomplete}.  If this variable is
1462 @code{nil}, no mail alias expansion will be performed.
1464 @code{mailabbrev} works by parsing the @file{/etc/mailrc} and
1465 @file{~/.mailrc} files.  These files look like:
1467 @example
1468 alias lmi "Lars Magne Ingebrigtsen <larsi@@ifi.uio.no>"
1469 alias ding "ding@@ifi.uio.no (ding mailing list)"
1470 @end example
1472 After adding lines like this to your @file{~/.mailrc} file, you should
1473 be able to just write @samp{lmi} in the @code{To} or @code{Cc} (and so
1474 on) headers and press @kbd{SPC} to expand the alias.
1476 No expansion will be performed upon sending of the message---all
1477 expansions have to be done explicitly.
1479 If you're using @code{ecomplete}, all addresses from @code{To} and
1480 @code{Cc} headers will automatically be put into the
1481 @file{~/.ecompleterc} file.  When you enter text in the @code{To} and
1482 @code{Cc} headers, @code{ecomplete} will check out the values stored
1483 there and ``electrically'' say what completions are possible.  To
1484 choose one of these completions, use the @kbd{M-n} command to move
1485 down to the list.  Use @kbd{@key{DOWN}} or @kbd{M-n} and
1486 @kbd{@key{UP}} or @kbd{M-p} to move down and up the list, and
1487 @kbd{@key{RET}} to choose a completion.
1489 The @code{ecomplete-sort-predicate} variable controls how
1490 @code{ecomplete} matches are sorted.
1492 @node Spelling
1493 @section Spelling
1494 @cindex spelling
1495 @findex ispell-message
1497 There are two popular ways to have Emacs spell-check your messages:
1498 @code{ispell} and @code{flyspell}.  @code{ispell} is the older and
1499 probably more popular package.  You typically first write the message,
1500 and then run the entire thing through @code{ispell} and fix all the
1501 typos.  To have this happen automatically when you send a message, put
1502 something like the following in your @file{.emacs} file:
1504 @lisp
1505 (add-hook 'message-send-hook 'ispell-message)
1506 @end lisp
1508 @vindex ispell-message-dictionary-alist
1509 If you're in the habit of writing in different languages, this can be
1510 controlled by the @code{ispell-message-dictionary-alist} variable:
1512 @lisp
1513 (setq ispell-message-dictionary-alist
1514       '(("^Newsgroups:.*\\bde\\." . "deutsch8")
1515         (".*" . "default")))
1516 @end lisp
1518 @code{ispell} depends on having the external @samp{ispell} command
1519 installed.
1521 The other popular method is using @code{flyspell}.  This package checks
1522 your spelling while you're writing, and marks any mis-spelled words in
1523 various ways.
1525 To use @code{flyspell}, put something like the following in your
1526 @file{.emacs} file:
1528 @lisp
1529 (defun my-message-setup-routine ()
1530   (flyspell-mode 1))
1531 (add-hook 'message-setup-hook 'my-message-setup-routine)
1532 @end lisp
1534 @code{flyspell} depends on having the external @samp{ispell} command
1535 installed.
1538 @node Variables
1539 @chapter Variables
1541 @menu
1542 * Message Headers::             General message header stuff.
1543 * Mail Headers::                Customizing mail headers.
1544 * Mail Variables::              Other mail variables.
1545 * News Headers::                Customizing news headers.
1546 * News Variables::              Other news variables.
1547 * Insertion Variables::         Customizing how things are inserted.
1548 * Various Message Variables::   Other message variables.
1549 * Sending Variables::           Variables for sending.
1550 * Message Buffers::             How Message names its buffers.
1551 * Message Actions::             Actions to be performed when exiting.
1552 @end menu
1555 @node Message Headers
1556 @section Message Headers
1558 Message is quite aggressive on the message generation front.  It has to
1559 be---it's a combined news and mail agent.  To be able to send combined
1560 messages, it has to generate all headers itself (instead of letting the
1561 mail/news system do it) to ensure that mail and news copies of messages
1562 look sufficiently similar.
1564 @table @code
1566 @item message-generate-headers-first
1567 @vindex message-generate-headers-first
1568 If @code{t}, generate all required headers before starting to
1569 compose the message.  This can also be a list of headers to generate:
1571 @lisp
1572 (setq message-generate-headers-first
1573       '(References))
1574 @end lisp
1576 @vindex message-required-headers
1577 The variables @code{message-required-headers},
1578 @code{message-required-mail-headers} and
1579 @code{message-required-news-headers} specify which headers are
1580 required.
1582 Note that some headers will be removed and re-generated before posting,
1583 because of the variable @code{message-deletable-headers} (see below).
1585 @item message-draft-headers
1586 @vindex message-draft-headers
1587 When running Message from Gnus, the message buffers are associated
1588 with a draft group.  @code{message-draft-headers} says which headers
1589 should be generated when a draft is written to the draft group.
1591 @item message-from-style
1592 @vindex message-from-style
1593 Specifies how @code{From} headers should look.  There are four valid
1594 values:
1596 @table @code
1597 @item nil
1598 Just the address---@samp{king@@grassland.com}.
1600 @item parens
1601 @samp{king@@grassland.com (Elvis Parsley)}.
1603 @item angles
1604 @samp{Elvis Parsley <king@@grassland.com>}.
1606 @item default
1607 Look like @code{angles} if that doesn't require quoting, and
1608 @code{parens} if it does.  If even @code{parens} requires quoting, use
1609 @code{angles} anyway.
1611 @end table
1613 @item message-deletable-headers
1614 @vindex message-deletable-headers
1615 Headers in this list that were previously generated by Message will be
1616 deleted before posting.  Let's say you post an article.  Then you decide
1617 to post it again to some other group, you naughty boy, so you jump back
1618 to the @file{*post-buf*} buffer, edit the @code{Newsgroups} line, and
1619 ship it off again.  By default, this variable makes sure that the old
1620 generated @code{Message-ID} is deleted, and a new one generated.  If
1621 this isn't done, the entire empire would probably crumble, anarchy would
1622 prevail, and cats would start walking on two legs and rule the world.
1623 Allegedly.
1625 @item message-default-headers
1626 @vindex message-default-headers
1627 Header lines to be inserted in outgoing messages before you edit the
1628 message, so you can edit or delete their lines. If set to a string, it
1629 is directly inserted. If set to a function, it is called and its
1630 result is inserted.
1632 @item message-subject-re-regexp
1633 @vindex message-subject-re-regexp
1634 @cindex Aw
1635 @cindex Sv
1636 @cindex Re
1637 Responses to messages have subjects that start with @samp{Re: }.  This
1638 is @emph{not} an abbreviation of the English word ``response'', but is
1639 Latin, and means ``in response to''.  Some illiterate nincompoops have
1640 failed to grasp this fact, and have ``internationalized'' their software
1641 to use abominations like @samp{Aw: } (``antwort'') or @samp{Sv: }
1642 (``svar'') instead, which is meaningless and evil.  However, you may
1643 have to deal with users that use these evil tools, in which case you may
1644 set this variable to a regexp that matches these prefixes.  Myself, I
1645 just throw away non-compliant mail.
1647 Here's an example of a value to deal with these headers when
1648 responding to a message:
1650 @lisp
1651 (setq message-subject-re-regexp
1652       (concat
1653        "^[ \t]*"
1654          "\\("
1655            "\\("
1656              "[Aa][Nn][Tt][Ww]\\.?\\|"     ; antw
1657              "[Aa][Ww]\\|"                 ; aw
1658              "[Ff][Ww][Dd]?\\|"            ; fwd
1659              "[Oo][Dd][Pp]\\|"             ; odp
1660              "[Rr][Ee]\\|"                 ; re
1661              "[Rr][\311\351][Ff]\\.?\\|"   ; ref
1662              "[Ss][Vv]"                    ; sv
1663            "\\)"
1664            "\\(\\[[0-9]*\\]\\)"
1665            "*:[ \t]*"
1666          "\\)"
1667        "*[ \t]*"
1668        ))
1669 @end lisp
1671 @item message-subject-trailing-was-query
1672 @vindex message-subject-trailing-was-query
1673 @vindex message-subject-trailing-was-ask-regexp
1674 @vindex message-subject-trailing-was-regexp
1675 Controls what to do with trailing @samp{(was: <old subject>)} in subject
1676 lines.  If @code{nil}, leave the subject unchanged.  If it is the symbol
1677 @code{ask}, query the user what to do.  In this case, the subject is
1678 matched against @code{message-subject-trailing-was-ask-regexp}.  If
1679 @code{message-subject-trailing-was-query} is @code{t}, always strip the
1680 trailing old subject.  In this case,
1681 @code{message-subject-trailing-was-regexp} is used.
1683 @item message-alternative-emails
1684 @vindex message-alternative-emails
1685 Regexp or predicate function matching alternative email addresses.
1686 The first address in the To, Cc or From headers of the original
1687 article matching this variable is used as the From field of outgoing
1688 messages, replacing the default From value.
1690 For example, if you have two secondary email addresses john@@home.net
1691 and john.doe@@work.com and want to use them in the From field when
1692 composing a reply to a message addressed to one of them, you could set
1693 this variable like this:
1695 @lisp
1696 (setq message-alternative-emails
1697       (regexp-opt '("john@@home.net" "john.doe@@work.com")))
1698 @end lisp
1700 This variable has precedence over posting styles and anything that runs
1701 off @code{message-setup-hook}.
1703 @item message-allow-no-recipients
1704 @vindex message-allow-no-recipients
1705 Specifies what to do when there are no recipients other than
1706 @code{Gcc} or @code{Fcc}.  If it is @code{always}, the posting is
1707 allowed.  If it is @code{never}, the posting is not allowed.  If it is
1708 @code{ask} (the default), you are prompted.
1710 @item message-hidden-headers
1711 @vindex message-hidden-headers
1712 A regexp, a list of regexps, or a list where the first element is
1713 @code{not} and the rest are regexps.  It says which headers to keep
1714 hidden when composing a message.
1716 @lisp
1717 (setq message-hidden-headers
1718       '(not "From" "Subject" "To" "Cc" "Newsgroups"))
1719 @end lisp
1721 Headers are hidden using narrowing, you can use @kbd{M-x widen} to
1722 expose them in the buffer.
1724 @item message-header-synonyms
1725 @vindex message-header-synonyms
1726 A list of lists of header synonyms.  E.g., if this list contains a
1727 member list with elements @code{Cc} and @code{To}, then
1728 @code{message-carefully-insert-headers} will not insert a @code{To}
1729 header when the message is already @code{Cc}ed to the recipient.
1731 @end table
1734 @node Mail Headers
1735 @section Mail Headers
1737 @table @code
1738 @item message-required-mail-headers
1739 @vindex message-required-mail-headers
1740 @xref{News Headers}, for the syntax of this variable.  It is
1741 @code{(From Subject Date (optional . In-Reply-To) Message-ID
1742 (optional . User-Agent))} by default.
1744 @item message-ignored-mail-headers
1745 @vindex message-ignored-mail-headers
1746 Regexp of headers to be removed before mailing.  The default is@*
1747 @samp{^[GF]cc:\\|^Resent-Fcc:\\|^Xref:\\|^X-Draft-From:\\|@*
1748 ^X-Gnus-Agent-Meta-Information:}.
1750 @item message-default-mail-headers
1751 @vindex message-default-mail-headers
1752 This string is inserted at the end of the headers in all message
1753 buffers that are initialized as mail.
1755 @item message-generate-hashcash
1756 @vindex message-generate-hashcash
1757 Variable that indicates whether @samp{X-Hashcash} headers
1758 should be computed for the message.  @xref{Hashcash, ,Hashcash,gnus,
1759 The Gnus Manual}.  If @code{opportunistic}, only generate the headers
1760 when it doesn't lead to the user having to wait.
1762 @end table
1765 @node Mail Variables
1766 @section Mail Variables
1768 @table @code
1769 @item message-send-mail-function
1770 @vindex message-send-mail-function
1771 @findex message-send-mail-function
1772 @findex message-send-mail-with-sendmail
1773 @findex message-send-mail-with-mh
1774 @findex message-send-mail-with-qmail
1775 @findex message-smtpmail-send-it
1776 @findex smtpmail-send-it
1777 @findex feedmail-send-it
1778 @findex message-send-mail-with-mailclient
1779 Function used to send the current buffer as mail.  The default is
1780 @code{message-send-mail-with-sendmail}, or @code{smtpmail-send-it}
1781 according to the system.  Other valid values include
1782 @code{message-send-mail-with-mailclient},
1783 @code{message-send-mail-with-mh}, @code{message-send-mail-with-qmail},
1784 @code{message-smtpmail-send-it} and @code{feedmail-send-it}.
1786 The function
1787 @code{message-send-mail-with-sendmail} pipes your article to the
1788 @code{sendmail} binary for further queuing and sending.  When your local
1789 system is not configured for sending mail using @code{sendmail}, and you
1790 have access to a remote @acronym{SMTP} server, you can set
1791 @code{message-send-mail-function} to @code{smtpmail-send-it} and make
1792 sure to setup the @code{smtpmail} package correctly.  An example:
1794 @lisp
1795 (setq message-send-mail-function 'smtpmail-send-it
1796       smtpmail-default-smtp-server "YOUR SMTP HOST")
1797 @end lisp
1799 To the thing similar to this, there is
1800 @code{message-smtpmail-send-it}.  It is useful if your @acronym{ISP}
1801 requires the @acronym{POP}-before-@acronym{SMTP} authentication.
1802 @xref{POP before SMTP, , POP before SMTP, gnus, The Gnus Manual}.
1804 @cindex X-Message-SMTP-Method
1805 If you have a complex @acronym{SMTP} setup, and want some messages to
1806 go via one mail server, and other messages to go through another, you
1807 can use the @samp{X-Message-SMTP-Method} header.  These are the
1808 supported values:
1810 @table @samp
1811 @item smtpmail
1813 @example
1814 X-Message-SMTP-Method: smtp smtp.fsf.org 587
1815 @end example
1817 This will send the message via @samp{smtp.fsf.org}, using port 587.
1819 @example
1820 X-Message-SMTP-Method: smtp smtp.fsf.org 587 other-user
1821 @end example
1823 This is the same as the above, but uses @samp{other-user} as the user
1824 name when authenticating.  This is handy if you have several
1825 @acronym{SMTP} accounts on the same server.
1827 @item sendmail
1829 @example
1830 X-Message-SMTP-Method: sendmail
1831 @end example
1833 This will send the message via the locally installed sendmail/exim/etc
1834 installation.
1836 @end table
1838 @item message-mh-deletable-headers
1839 @vindex message-mh-deletable-headers
1840 Most versions of MH doesn't like being fed messages that contain the
1841 headers in this variable.  If this variable is non-@code{nil} (which is
1842 the default), these headers will be removed before mailing when sending
1843 messages via MH@.  Set it to @code{nil} if your MH can handle these
1844 headers.
1846 @item message-qmail-inject-program
1847 @vindex message-qmail-inject-program
1848 @cindex qmail
1849 Location of the qmail-inject program.
1851 @item message-qmail-inject-args
1852 @vindex message-qmail-inject-args
1853 Arguments passed to qmail-inject programs.
1854 This should be a list of strings, one string for each argument.  It
1855 may also be a function.
1857 E.g., if you wish to set the envelope sender address so that bounces
1858 go to the right place or to deal with listserv's usage of that address, you
1859 might set this variable to @code{'("-f" "you@@some.where")}.
1861 @item message-sendmail-f-is-evil
1862 @vindex message-sendmail-f-is-evil
1863 @cindex sendmail
1864 Non-@code{nil} means don't add @samp{-f username} to the sendmail
1865 command line.  Doing so would be even more evil than leaving it out.
1867 @item message-sendmail-envelope-from
1868 @vindex message-sendmail-envelope-from
1869 When @code{message-sendmail-f-is-evil} is @code{nil}, this specifies
1870 the address to use in the @acronym{SMTP} envelope.  If it is
1871 @code{nil}, use @code{user-mail-address}.  If it is the symbol
1872 @code{header}, use the @samp{From} header of the message.
1874 @item message-mailer-swallows-blank-line
1875 @vindex message-mailer-swallows-blank-line
1876 Set this to non-@code{nil} if the system's mailer runs the header and
1877 body together.  (This problem exists on SunOS 4 when sendmail is run
1878 in remote mode.)  The value should be an expression to test whether
1879 the problem will actually occur.
1881 @item message-send-mail-partially-limit
1882 @vindex message-send-mail-partially-limit
1883 @cindex split large message
1884 The limitation of messages sent as message/partial.  The lower bound
1885 of message size in characters, beyond which the message should be sent
1886 in several parts.  If it is @code{nil} (which is the default), the
1887 size is unlimited.
1889 @end table
1892 @node News Headers
1893 @section News Headers
1895 @vindex message-required-news-headers
1896 @code{message-required-news-headers} a list of header symbols.  These
1897 headers will either be automatically generated, or, if that's
1898 impossible, they will be prompted for.  The following symbols are valid:
1900 @table @code
1902 @item From
1903 @cindex From
1904 @findex user-full-name
1905 @findex user-mail-address
1906 This required header will be filled out with the result of the
1907 @code{message-make-from} function, which depends on the
1908 @code{message-from-style}, @code{user-full-name},
1909 @code{user-mail-address} variables.
1911 @item Subject
1912 @cindex Subject
1913 This required header will be prompted for if not present already.
1915 @item Newsgroups
1916 @cindex Newsgroups
1917 This required header says which newsgroups the article is to be posted
1918 to.  If it isn't present already, it will be prompted for.
1920 @item Organization
1921 @cindex organization
1922 @vindex message-user-organization
1923 @vindex message-user-organization-file
1924 This optional header will be filled out depending on the
1925 @code{message-user-organization} variable.
1926 @code{message-user-organization-file} will be used if this variable is
1927 @code{t}.  This variable can also be a string (in which case this string
1928 will be used), or it can be a function (which will be called with no
1929 parameters and should return a string to be used).
1931 @item Lines
1932 @cindex Lines
1933 This optional header will be computed by Message.
1935 @item Message-ID
1936 @cindex Message-ID
1937 @vindex message-user-fqdn
1938 @vindex mail-host-address
1939 @vindex user-mail-address
1940 @findex system-name
1941 @cindex Sun
1942 @cindex i-did-not-set--mail-host-address--so-tickle-me
1943 This required header will be generated by Message.  A unique ID will be
1944 created based on the date, time, user name (for the local part) and the
1945 domain part.  For the domain part, message will look (in this order) at
1946 @code{message-user-fqdn}, @code{system-name}, @code{mail-host-address}
1947 and @code{message-user-mail-address} (i.e., @code{user-mail-address})
1948 until a probably valid fully qualified domain name (FQDN) was found.
1950 @item User-Agent
1951 @cindex User-Agent
1952 This optional header will be filled out according to the
1953 @code{message-newsreader} local variable.
1955 @item In-Reply-To
1956 This optional header is filled out using the @code{Date} and @code{From}
1957 header of the article being replied to.
1959 @item Expires
1960 @cindex Expires
1961 @vindex message-expires
1962 This extremely optional header will be inserted according to the
1963 @code{message-expires} variable.  It is highly deprecated and shouldn't
1964 be used unless you know what you're doing.
1966 @item Distribution
1967 @cindex Distribution
1968 @vindex message-distribution-function
1969 This optional header is filled out according to the
1970 @code{message-distribution-function} variable.  It is a deprecated and
1971 much misunderstood header.
1973 @item Path
1974 @cindex path
1975 @vindex message-user-path
1976 This extremely optional header should probably never be used.
1977 However, some @emph{very} old servers require that this header is
1978 present.  @code{message-user-path} further controls how this
1979 @code{Path} header is to look.  If it is @code{nil}, use the server name
1980 as the leaf node.  If it is a string, use the string.  If it is neither
1981 a string nor @code{nil}, use the user name only.  However, it is highly
1982 unlikely that you should need to fiddle with this variable at all.
1983 @end table
1985 @cindex Mime-Version
1986 In addition, you can enter conses into this list.  The @sc{car} of this cons
1987 should be a symbol.  This symbol's name is the name of the header, and
1988 the @sc{cdr} can either be a string to be entered verbatim as the value of
1989 this header, or it can be a function to be called.  This function should
1990 take no arguments, and return a string to be inserted.  For
1991 instance, if you want to insert @code{Mime-Version: 1.0}, you should
1992 enter @code{(Mime-Version . "1.0")} into the list.
1994 If the list contains a cons where the @sc{car} of the cons is
1995 @code{optional}, the @sc{cdr} of this cons will only be inserted if it is
1996 non-@code{nil}.
1998 If you want to delete an entry from this list, the following Lisp
1999 snippet might be useful.  Adjust accordingly if you want to remove
2000 another element.
2002 @lisp
2003 (setq message-required-news-headers
2004       (delq 'Message-ID message-required-news-headers))
2005 @end lisp
2007 Other variables for customizing outgoing news articles:
2009 @table @code
2011 @item message-syntax-checks
2012 @vindex message-syntax-checks
2013 Controls what syntax checks should not be performed on outgoing posts.
2014 To disable checking of long signatures, for instance, add
2016 @lisp
2017 (signature . disabled)
2018 @end lisp
2020 to this list.
2022 Valid checks are:
2024 @table @code
2025 @item approved
2026 @cindex approved
2027 Check whether the article has an @code{Approved} header, which is
2028 something only moderators should include.
2029 @item continuation-headers
2030 Check whether there are continuation header lines that don't begin with
2031 whitespace.
2032 @item control-chars
2033 Check for invalid characters.
2034 @item empty
2035 Check whether the article is empty.
2036 @item existing-newsgroups
2037 Check whether the newsgroups mentioned in the @code{Newsgroups} and
2038 @code{Followup-To} headers exist.
2039 @item from
2040 Check whether the @code{From} header seems nice.
2041 @item illegible-text
2042 Check whether there is any non-printable character in the body.
2043 @item invisible-text
2044 Check whether there is any invisible text in the buffer.
2045 @item long-header-lines
2046 Check for too long header lines.
2047 @item long-lines
2048 @cindex long lines
2049 Check for too long lines in the body.
2050 @item message-id
2051 Check whether the @code{Message-ID} looks syntactically ok.
2052 @item multiple-headers
2053 Check for the existence of multiple equal headers.
2054 @item new-text
2055 Check whether there is any new text in the messages.
2056 @item newsgroups
2057 Check whether the @code{Newsgroups} header exists and is not empty.
2058 @item quoting-style
2059 Check whether text follows last quoted portion.
2060 @item repeated-newsgroups
2061 Check whether the @code{Newsgroups} and @code{Followup-to} headers
2062 contains repeated group names.
2063 @item reply-to
2064 Check whether the @code{Reply-To} header looks ok.
2065 @item sender
2066 @cindex Sender
2067 Insert a new @code{Sender} header if the @code{From} header looks odd.
2068 @item sendsys
2069 @cindex sendsys
2070 Check for the existence of version and sendsys commands.
2071 @item shoot
2072 Check whether the domain part of the @code{Message-ID} header looks ok.
2073 @item shorten-followup-to
2074 Check whether to add a @code{Followup-to} header to shorten the number
2075 of groups to post to.
2076 @item signature
2077 Check the length of the signature.
2078 @item size
2079 Check for excessive size.
2080 @item subject
2081 Check whether the @code{Subject} header exists and is not empty.
2082 @item subject-cmsg
2083 Check the subject for commands.
2084 @item valid-newsgroups
2085 Check whether the @code{Newsgroups} and @code{Followup-to} headers
2086 are valid syntactically.
2087 @end table
2089 All these conditions are checked by default, except for @code{sender}
2090 for which the check is disabled by default if
2091 @code{message-insert-canlock} is non-@code{nil} (@pxref{Canceling News}).
2093 @item message-ignored-news-headers
2094 @vindex message-ignored-news-headers
2095 Regexp of headers to be removed before posting.  The default is@*
2096 @samp{^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:\\|@*
2097 ^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:}.
2099 @item message-default-news-headers
2100 @vindex message-default-news-headers
2101 This string is inserted at the end of the headers in all message
2102 buffers that are initialized as news.
2104 @end table
2107 @node News Variables
2108 @section News Variables
2110 @table @code
2111 @item message-send-news-function
2112 @vindex message-send-news-function
2113 Function used to send the current buffer as news.  The default is
2114 @code{message-send-news}.
2116 @item message-post-method
2117 @vindex message-post-method
2118 Gnusish @dfn{select method} (see the Gnus manual for details) used for
2119 posting a prepared news message.
2121 @end table
2124 @node Insertion Variables
2125 @section Insertion Variables
2127 @table @code
2128 @item message-cite-style
2129 @vindex message-cite-style
2130 The overall style to be used when replying to messages. This controls
2131 things like where the reply should be put relative to the original,
2132 how the citation is formatted, where the signature goes, etc.
2134 Value is either @code{nil} (no variable overrides) or a let-style list
2135 of pairs @code{(VARIABLE VALUE)} to override default values.
2137 See @code{gnus-posting-styles} to set this variable for specific
2138 groups. Presets to impersonate popular mail agents are available in the
2139 @code{message-cite-style-*} variables.
2141 @item message-cite-reply-position
2142 @vindex message-cite-reply-position
2143 Where the reply should be positioned. Available styles are
2144 @code{traditional} to reply inline, @code{above} for top-posting, and
2145 @code{below} for bottom-posting
2147 @item message-ignored-cited-headers
2148 @vindex message-ignored-cited-headers
2149 All headers that match this regexp will be removed from yanked
2150 messages.  The default is @samp{.}, which means that all headers will be
2151 removed.
2153 @item message-cite-prefix-regexp
2154 @vindex message-cite-prefix-regexp
2155 Regexp matching the longest possible citation prefix on a line.
2157 @item message-citation-line-function
2158 @vindex message-citation-line-function
2159 @cindex attribution line
2160 Function called to insert the citation line.  The default is
2161 @code{message-insert-citation-line}, which will lead to citation lines
2162 that look like:
2164 @example
2165 Hallvard B Furuseth <h.b.furuseth@@usit.uio.no> writes:
2166 @end example
2168 @c FIXME: Add 'message-insert-formatted-citation-line' and
2169 @c 'message-citation-line-format'.
2171 Point will be at the beginning of the body of the message when this
2172 function is called.
2174 Note that Gnus provides a feature where clicking on @samp{writes:} hides the
2175 cited text.  If you change the citation line too much, readers of your
2176 messages will have to adjust their Gnus, too.  See the variable
2177 @code{gnus-cite-attribution-suffix}.  @xref{Article Highlighting, ,
2178 Article Highlighting, gnus, The Gnus Manual}, for details.
2180 @item message-yank-prefix
2181 @vindex message-yank-prefix
2182 @cindex yanking
2183 @cindex quoting
2184 When you are replying to or following up an article, you normally want
2185 to quote the person you are answering.  Inserting quoted text is done by
2186 @dfn{yanking}, and each line you yank will have
2187 @code{message-yank-prefix} prepended to it (except for quoted lines
2188 which use @code{message-yank-cited-prefix} and empty lines which use
2189 @code{message-yank-empty-prefix}).  The default is @samp{> }.
2191 @item message-yank-cited-prefix
2192 @vindex message-yank-cited-prefix
2193 @cindex yanking
2194 @cindex cited
2195 @cindex quoting
2196 When yanking text from an article which contains already cited text,
2197 each line will be prefixed with the contents of this variable.  The
2198 default is @samp{>}.  See also @code{message-yank-prefix}.
2200 @item message-yank-empty-prefix
2201 @vindex message-yank-empty-prefix
2202 @cindex yanking
2203 @cindex quoting
2204 When yanking text from an article, each empty line will be prefixed with
2205 the contents of this variable.  The default is @samp{>}.  You can set
2206 this variable to an empty string to split the cited text into paragraphs
2207 automatically.  See also @code{message-yank-prefix}.
2209 @item message-indentation-spaces
2210 @vindex message-indentation-spaces
2211 Number of spaces to indent yanked messages.
2213 @item message-cite-function
2214 @vindex message-cite-function
2215 @findex message-cite-original
2216 @findex message-cite-original-without-signature
2217 Function for citing an original message.  The default is
2218 @code{message-cite-original}, which simply inserts the original message
2219 and prepends @samp{> } to each line.
2220 @code{message-cite-original-without-signature} does the same, but elides
2221 the signature.
2223 @item message-indent-citation-function
2224 @vindex message-indent-citation-function
2225 Function for modifying a citation just inserted in the mail buffer.
2226 This can also be a list of functions.  Each function can find the
2227 citation between @code{(point)} and @code{(mark t)}.  And each function
2228 should leave point and mark around the citation text as modified.
2230 @item message-mark-insert-begin
2231 @vindex message-mark-insert-begin
2232 String to mark the beginning of some inserted text.
2234 @item message-mark-insert-end
2235 @vindex message-mark-insert-end
2236 String to mark the end of some inserted text.
2238 @item message-signature
2239 @vindex message-signature
2240 String to be inserted at the end of the message buffer.  If @code{t}
2241 (which is the default), the @code{message-signature-file} file will be
2242 inserted instead.  If a function, the result from the function will be
2243 used instead.  If a form, the result from the form will be used instead.
2244 If this variable is @code{nil}, no signature will be inserted at all.
2246 @item message-signature-file
2247 @vindex message-signature-file
2248 File containing the signature to be inserted at the end of the buffer.
2249 If a path is specified, the value of
2250 @code{message-signature-directory} is ignored, even if set.
2251 The default is @file{~/.signature}.
2253 @item message-signature-directory
2254 @vindex message-signature-directory
2255 Name of directory containing signature files.  Comes in handy if you
2256 have many such files, handled via Gnus posting styles for instance.
2257 If @code{nil} (the default), @code{message-signature-file} is expected
2258 to specify the directory if needed.
2261 @item message-signature-insert-empty-line
2262 @vindex message-signature-insert-empty-line
2263 If @code{t} (the default value) an empty line is inserted before the
2264 signature separator.
2266 @end table
2268 Note that RFC1036bis says that a signature should be preceded by the three
2269 characters @samp{-- } on a line by themselves.  This is to make it
2270 easier for the recipient to automatically recognize and process the
2271 signature.  So don't remove those characters, even though you might feel
2272 that they ruin your beautiful design, like, totally.
2274 Also note that no signature should be more than four lines long.
2275 Including @acronym{ASCII} graphics is an efficient way to get
2276 everybody to believe that you are silly and have nothing important to
2277 say.
2280 @node Various Message Variables
2281 @section Various Message Variables
2283 @table @code
2284 @item message-default-charset
2285 @vindex message-default-charset
2286 @cindex charset
2287 Symbol naming a @acronym{MIME} charset.  Non-@acronym{ASCII} characters
2288 in messages are assumed to be encoded using this charset.  The default
2289 is @code{iso-8859-1} on non-@sc{mule} Emacsen; otherwise @code{nil},
2290 which means ask the user.  (This variable is used only on non-@sc{mule}
2291 Emacsen.)  @xref{Charset Translation, , Charset Translation, emacs-mime,
2292 Emacs MIME Manual}, for details on the @sc{mule}-to-@acronym{MIME}
2293 translation process.
2295 @item message-fill-column
2296 @vindex message-fill-column
2297 @cindex auto-fill
2298 Local value for the column beyond which automatic line-wrapping should
2299 happen for message buffers.  If non-@code{nil} (the default), also turn on
2300 auto-fill in message buffers.
2302 @item message-signature-separator
2303 @vindex message-signature-separator
2304 Regexp matching the signature separator.  It is @samp{^-- *$} by
2305 default.
2307 @item mail-header-separator
2308 @vindex mail-header-separator
2309 String used to separate the headers from the body.  It is @samp{--text
2310 follows this line--} by default.
2312 @item message-directory
2313 @vindex message-directory
2314 Directory used by many mailish things.  The default is @file{~/Mail/}.
2315 All other mail file variables are derived from @code{message-directory}.
2317 @item message-auto-save-directory
2318 @vindex message-auto-save-directory
2319 Directory where Message auto-saves buffers if Gnus isn't running.  If
2320 @code{nil}, Message won't auto-save.  The default is @file{~/Mail/drafts/}.
2322 @item message-signature-setup-hook
2323 @vindex message-signature-setup-hook
2324 Hook run when initializing the message buffer.  It is run after the
2325 headers have been inserted but before the signature has been inserted.
2327 @item message-setup-hook
2328 @vindex message-setup-hook
2329 Hook run as the last thing when the message buffer has been initialized,
2330 but before yanked text is inserted.
2332 @item message-header-setup-hook
2333 @vindex message-header-setup-hook
2334 Hook called narrowed to the headers after initializing the headers.
2336 For instance, if you're running Gnus and wish to insert a
2337 @samp{Mail-Copies-To} header in all your news articles and all messages
2338 you send to mailing lists, you could do something like the following:
2340 @lisp
2341 (defun my-message-header-setup-hook ()
2342   (let ((group (or gnus-newsgroup-name "")))
2343     (when (or (message-fetch-field "newsgroups")
2344               (gnus-group-find-parameter group 'to-address)
2345               (gnus-group-find-parameter group 'to-list))
2346       (insert "Mail-Copies-To: never\n"))))
2348 (add-hook 'message-header-setup-hook
2349           'my-message-header-setup-hook)
2350 @end lisp
2352 @item message-send-hook
2353 @vindex message-send-hook
2354 Hook run before sending messages.
2356 If you want to add certain headers before sending, you can use the
2357 @code{message-add-header} function in this hook.  For instance:
2358 @findex message-add-header
2360 @lisp
2361 (add-hook 'message-send-hook 'my-message-add-content)
2362 (defun my-message-add-content ()
2363   (message-add-header "X-In-No-Sense: Nonsense")
2364   (message-add-header "X-Whatever: no"))
2365 @end lisp
2367 This function won't add the header if the header is already present.
2369 @item message-send-mail-hook
2370 @vindex message-send-mail-hook
2371 Hook run before sending mail messages.  This hook is run very late:
2372 just before the message is actually sent as mail.
2374 @item message-send-news-hook
2375 @vindex message-send-news-hook
2376 Hook run before sending news messages.  This hook is run very late:
2377 just before the message is actually sent as news.
2379 @item message-sent-hook
2380 @vindex message-sent-hook
2381 Hook run after sending messages.
2383 @item message-cancel-hook
2384 @vindex message-cancel-hook
2385 Hook run when canceling news articles.
2387 @item message-mode-syntax-table
2388 @vindex message-mode-syntax-table
2389 Syntax table used in message mode buffers.
2391 @item message-cite-articles-with-x-no-archive
2392 @vindex message-cite-articles-with-x-no-archive
2393 If non-@code{nil}, don't strip quoted text from articles that have
2394 @samp{X-No-Archive} set.  Even if this variable isn't set, you can
2395 undo the stripping by hitting the @code{undo} keystroke.
2397 @item message-strip-special-text-properties
2398 @vindex message-strip-special-text-properties
2399 Emacs has a number of special text properties which can break message
2400 composing in various ways.  If this option is set, message will strip
2401 these properties from the message composition buffer.  However, some
2402 packages requires these properties to be present in order to work.  If
2403 you use one of these packages, turn this option off, and hope the
2404 message composition doesn't break too bad.
2406 @item message-send-method-alist
2407 @vindex message-send-method-alist
2408 @findex message-mail-p
2409 @findex message-news-p
2410 @findex message-send-via-mail
2411 @findex message-send-via-news
2412 Alist of ways to send outgoing messages.  Each element has the form:
2414 @lisp
2415 (@var{type} @var{predicate} @var{function})
2416 @end lisp
2418 @table @var
2419 @item type
2420 A symbol that names the method.
2422 @item predicate
2423 A function called without any parameters to determine whether the
2424 message is a message of type @var{type}.  The function will be called in
2425 the buffer where the message is.
2427 @item function
2428 A function to be called if @var{predicate} returns non-@code{nil}.
2429 @var{function} is called with one parameter---the prefix.
2430 @end table
2432 The default is:
2434 @lisp
2435 ((news message-news-p message-send-via-news)
2436  (mail message-mail-p message-send-via-mail))
2437 @end lisp
2439 The @code{message-news-p} function returns non-@code{nil} if the message
2440 looks like news, and the @code{message-send-via-news} function sends the
2441 message according to the @code{message-send-news-function} variable
2442 (@pxref{News Variables}).  The @code{message-mail-p} function returns
2443 non-@code{nil} if the message looks like mail, and the
2444 @code{message-send-via-mail} function sends the message according to the
2445 @code{message-send-mail-function} variable (@pxref{Mail Variables}).
2447 All the elements in this alist will be tried in order, so a message
2448 containing both a valid @samp{Newsgroups} header and a valid @samp{To}
2449 header, for example, will be sent as news, and then as mail.
2450 @end table
2454 @node Sending Variables
2455 @section Sending Variables
2457 @table @code
2459 @item message-fcc-handler-function
2460 @vindex message-fcc-handler-function
2461 A function called to save outgoing articles.  This function will be
2462 called with the name of the file to store the article in.  The default
2463 function is @code{message-output} which saves in Unix mailbox format.
2465 @item message-courtesy-message
2466 @vindex message-courtesy-message
2467 When sending combined messages, this string is inserted at the start of
2468 the mailed copy.  If the string contains the format spec @samp{%s}, the
2469 newsgroups the article has been posted to will be inserted there.  If
2470 this variable is @code{nil}, no such courtesy message will be added.
2471 The default value is @samp{"The following message is a courtesy copy of
2472 an article\\nthat has been posted to %s as well.\\n\\n"}.
2474 @item message-fcc-externalize-attachments
2475 @vindex message-fcc-externalize-attachments
2476 If @code{nil}, attach files as normal parts in Fcc copies; if it is
2477 non-@code{nil}, attach local files as external parts.
2479 @item message-interactive
2480 @vindex message-interactive
2481 If non-@code{nil} wait for and display errors when sending a message;
2482 if @code{nil} let the mailer mail back a message to report errors.
2484 @item message-confirm-send
2485 @vindex message-confirm-send
2486 When non-@code{nil}, Gnus will ask for confirmation when sending a
2487 message.
2489 @end table
2492 @node Message Buffers
2493 @section Message Buffers
2495 Message will generate new buffers with unique buffer names when you
2496 request a message buffer.  When you send the message, the buffer isn't
2497 normally killed off.  Its name is changed and a certain number of old
2498 message buffers are kept alive.
2500 @table @code
2501 @item message-generate-new-buffers
2502 @vindex message-generate-new-buffers
2503 Controls whether to create a new message buffer to compose a message.
2504 Valid values include:
2506 @table @code
2507 @item nil
2508 Generate the buffer name in the Message way (e.g., *mail*, *news*, *mail
2509 to whom*, *news on group*, etc.)@: and continue editing in the existing
2510 buffer of that name.  If there is no such buffer, it will be newly
2511 created.
2513 @item unique
2514 @item t
2515 Create the new buffer with the name generated in the Message way.
2517 @item unsent
2518 Similar to @code{unique} but the buffer name begins with "*unsent ".
2520 @item standard
2521 Similar to @code{nil} but the buffer name is simpler like *mail
2522 message*.
2523 @end table
2524 @table @var
2525 @item function
2526 If this is a function, call that function with three parameters: The
2527 type, the To address and the group name (any of these may be
2528 @code{nil}).  The function should return the new buffer name.
2529 @end table
2531 The default value is @code{unsent}.
2533 @item message-max-buffers
2534 @vindex message-max-buffers
2535 This variable says how many old message buffers to keep.  If there are
2536 more message buffers than this, the oldest buffer will be killed.  The
2537 default is 10.  If this variable is @code{nil}, no old message buffers
2538 will ever be killed.
2540 @item message-send-rename-function
2541 @vindex message-send-rename-function
2542 After sending a message, the buffer is renamed from, for instance,
2543 @samp{*reply to Lars*} to @samp{*sent reply to Lars*}.  If you don't
2544 like this, set this variable to a function that renames the buffer in a
2545 manner you like.  If you don't want to rename the buffer at all, you can
2546 say:
2548 @lisp
2549 (setq message-send-rename-function 'ignore)
2550 @end lisp
2552 @item message-kill-buffer-on-exit
2553 @findex message-kill-buffer-on-exit
2554 If non-@code{nil}, kill the buffer immediately on exit.
2556 @end table
2559 @node Message Actions
2560 @section Message Actions
2562 When Message is being used from a news/mail reader, the reader is likely
2563 to want to perform some task after the message has been sent.  Perhaps
2564 return to the previous window configuration or mark an article as
2565 replied.
2567 @vindex message-kill-actions
2568 @vindex message-postpone-actions
2569 @vindex message-exit-actions
2570 @vindex message-send-actions
2571 The user may exit from the message buffer in various ways.  The most
2572 common is @kbd{C-c C-c}, which sends the message and exits.  Other
2573 possibilities are @kbd{C-c C-s} which just sends the message, @kbd{C-c
2574 C-d} which postpones the message editing and buries the message buffer,
2575 and @kbd{C-c C-k} which kills the message buffer.  Each of these actions
2576 have lists associated with them that contains actions to be executed:
2577 @code{message-send-actions}, @code{message-exit-actions},
2578 @code{message-postpone-actions}, and @code{message-kill-actions}.
2580 Message provides a function to interface with these lists:
2581 @code{message-add-action}.  The first parameter is the action to be
2582 added, and the rest of the arguments are which lists to add this action
2583 to.  Here's an example from Gnus:
2585 @lisp
2586   (message-add-action
2587    `(set-window-configuration ,(current-window-configuration))
2588    'exit 'postpone 'kill)
2589 @end lisp
2591 This restores the Gnus window configuration when the message buffer is
2592 killed, postponed or exited.
2594 An @dfn{action} can be either: a normal function, or a list where the
2595 @sc{car} is a function and the @sc{cdr} is the list of arguments, or
2596 a form to be @code{eval}ed.
2599 @node Appendices
2600 @chapter Appendices
2602 @menu
2603 * Responses::          Standard rules for determining where responses go.
2604 @end menu
2607 @node Responses
2608 @section Responses
2610 To determine where a message is to go, the following algorithm is used
2611 by default.
2613 @table @dfn
2614 @item reply
2615 A @dfn{reply} is when you want to respond @emph{just} to the person who
2616 sent the message via mail.  There will only be one recipient.  To
2617 determine who the recipient will be, the following headers are
2618 consulted, in turn:
2620 @table @code
2621 @item Reply-To
2623 @item From
2624 @end table
2627 @item wide reply
2628 A @dfn{wide reply} is a mail response that includes @emph{all} entities
2629 mentioned in the message you are responding to.  All mailboxes from the
2630 following headers will be concatenated to form the outgoing
2631 @code{To}/@code{Cc} headers:
2633 @table @code
2634 @item From
2635 (unless there's a @code{Reply-To}, in which case that is used instead).
2637 @item Cc
2639 @item To
2640 @end table
2642 If a @code{Mail-Copies-To} header is present, it will also be included
2643 in the list of mailboxes.  If this header is @samp{never}, that means
2644 that the @code{From} (or @code{Reply-To}) mailbox will be suppressed.
2647 @item followup
2648 A @dfn{followup} is a response sent via news.  The following headers
2649 (listed in order of precedence) determine where the response is to be
2650 sent:
2652 @table @code
2654 @item Followup-To
2656 @item Newsgroups
2658 @end table
2660 If a @code{Mail-Copies-To} header is present, it will be used as the
2661 basis of the new @code{Cc} header, except if this header is
2662 @samp{never}.
2664 @end table
2667 @node GNU Free Documentation License
2668 @chapter GNU Free Documentation License
2669 @include doclicense.texi
2671 @node Index
2672 @chapter Index
2673 @printindex cp
2675 @node Key Index
2676 @chapter Key Index
2677 @printindex ky
2679 @bye
2681 @c End: