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