* gnus.texi (Mail): Move explanation of
[gnus] / texi / message.texi
1 \input texinfo                  @c -*-texinfo-*-
2
3 @setfilename message
4 @settitle Message (Oort) Manual
5 @synindex fn cp
6 @synindex vr cp
7 @synindex pg cp
8 @dircategory Emacs
9 @direntry
10 * Message: (message).   Mail and news composition mode that goes with Gnus.
11 @end direntry
12 @iftex
13 @finalout
14 @end iftex
15 @setchapternewpage odd
16
17 @ifnottex
18
19 This file documents Message, the Emacs message composition mode.
20
21 Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
22
23 Permission is granted to copy, distribute and/or modify this document
24 under the terms of the GNU Free Documentation License, Version 1.1 or
25 any later version published by the Free Software Foundation; with no
26 Invariant Sections, with the Front-Cover texts being ``A GNU
27 Manual'', and with the Back-Cover Texts as in (a) below.  A copy of the
28 license is included in the section entitled ``GNU Free Documentation
29 License'' in the Emacs manual.
30
31 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
32 this GNU Manual, like GNU software.  Copies published by the Free
33 Software Foundation raise funds for GNU development.''
34
35 This document is part of a collection distributed under the GNU Free
36 Documentation License.  If you want to distribute this document
37 separately from the collection, you can do so by adding a copy of the
38 license to the document, as described in section 6 of the license.
39 @end ifnottex
40
41 @tex
42
43 @titlepage
44 @title Message (Oort) Manual
45
46 @author by Lars Magne Ingebrigtsen
47 @page
48
49 @vskip 0pt plus 1filll
50 Copyright @copyright{} 1996, 1997, 1998, 1999, 2000 
51      Free Software Foundation, Inc.
52
53 Permission is granted to copy, distribute and/or modify this document
54 under the terms of the GNU Free Documentation License, Version 1.1 or
55 any later version published by the Free Software Foundation; with the
56 Invariant Sections being none, with the Front-Cover texts being ``A GNU
57 Manual'', and with the Back-Cover Texts as in (a) below.  A copy of the
58 license is included in the section entitled ``GNU Free Documentation
59 License'' in the Emacs manual.
60
61 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
62 this GNU Manual, like GNU software.  Copies published by the Free
63 Software Foundation raise funds for GNU development.''
64
65 This document is part of a collection distributed under the GNU Free
66 Documentation License.  If you want to distribute this document
67 separately from the collection, you can do so by adding a copy of the
68 license to the document, as described in section 6 of the license.
69 @end titlepage
70 @page
71
72 @end tex
73
74 @node Top
75 @top Message
76
77 All message composition from Gnus (both mail and news) takes place in
78 Message mode buffers.
79
80 @menu
81 * Interface::         Setting up message buffers.
82 * Commands::          Commands you can execute in message mode buffers.
83 * Variables::         Customizing the message buffers.
84 * Compatibility::     Making Message backwards compatible.
85 * Appendices::        More technical things.
86 * Index::             Variable, function and concept index.
87 * Key Index::         List of Message mode keys.
88 @end menu
89
90 This manual corresponds to Oort Message.   Message is distributed with
91 the Gnus distribution bearing the same version number as this manual.
92
93
94 @node Interface
95 @chapter Interface
96
97 When a program (or a person) wants to respond to a message -- reply,
98 follow up, forward, cancel -- the program (or person) should just put
99 point in the buffer where the message is and call the required command.
100 @code{Message} will then pop up a new @code{message} mode buffer with
101 appropriate headers filled out, and the user can edit the message before
102 sending it.
103
104 @menu
105 * New Mail Message::     Editing a brand new mail message.
106 * New News Message::     Editing a brand new news message.
107 * Reply::                Replying via mail.
108 * Wide Reply::           Responding to all people via mail.
109 * Followup::             Following up via news.
110 * Canceling News::       Canceling a news article.
111 * Superseding::          Superseding a message.
112 * Forwarding::           Forwarding a message via news or mail.
113 * Resending::            Resending a mail message.
114 * Bouncing::             Bouncing a mail message.
115 @end menu
116
117
118 @node New Mail Message
119 @section New Mail Message
120
121 @findex message-mail
122 The @code{message-mail} command pops up a new message buffer.
123
124 Two optional parameters are accepted: The first will be used as the
125 @code{To} header and the second as the @code{Subject} header.  If these
126 are @code{nil}, those two headers will be empty.
127
128
129 @node New News Message
130 @section New News Message
131
132 @findex message-news
133 The @code{message-news} command pops up a new message buffer.
134
135 This function accepts two optional parameters.  The first will be used
136 as the @code{Newsgroups} header and the second as the @code{Subject}
137 header.  If these are @code{nil}, those two headers will be empty.
138
139
140 @node Reply
141 @section Reply
142
143 @findex message-reply
144 The @code{message-reply} function pops up a message buffer that's a
145 reply to the message in the current buffer.
146
147 @vindex message-reply-to-function
148 Message uses the normal methods to determine where replies are to go
149 (@pxref{Responses}), but you can change the behavior to suit your needs
150 by fiddling with the @code{message-reply-to-function} variable.
151
152 If you want the replies to go to the @code{Sender} instead of the
153 @code{From}, you could do something like this:
154
155 @lisp
156 (setq message-reply-to-function
157       (lambda ()
158        (cond ((equal (mail-fetch-field "from") "somebody")
159                (list (cons 'To (mail-fetch-field "sender"))))
160              (t
161               nil))))
162 @end lisp
163
164 This function will be called narrowed to the head of the article that is
165 being replied to.
166
167 As you can see, this function should return a string if it has an
168 opinion as to what the To header should be.  If it does not, it should
169 just return @code{nil}, and the normal methods for determining the To
170 header will be used.
171
172 This function can also return a list.  In that case, each list element
173 should be a cons, where the car should be the name of an header
174 (eg. @code{Cc}) and the cdr should be the header value
175 (eg. @samp{larsi@@ifi.uio.no}).  All these headers will be inserted into
176 the head of the outgoing mail.
177
178
179 @node Wide Reply
180 @section Wide Reply
181
182 @findex message-wide-reply
183 The @code{message-wide-reply} pops up a message buffer that's a wide
184 reply to the message in the current buffer.  A @dfn{wide reply} is a
185 reply that goes out to all people listed in the @code{To}, @code{From}
186 (or @code{Reply-to}) and @code{Cc} headers.
187
188 @vindex message-wide-reply-to-function
189 Message uses the normal methods to determine where wide replies are to go,
190 but you can change the behavior to suit your needs by fiddling with the
191 @code{message-wide-reply-to-function}.  It is used in the same way as
192 @code{message-reply-to-function} (@pxref{Reply}).
193
194 @findex message-dont-reply-to-names
195 Addresses that match the @code{message-dont-reply-to-names} regular
196 expression will be removed from the @code{Cc} header.
197
198
199 @node Followup
200 @section Followup
201
202 @findex message-followup
203 The @code{message-followup} command pops up a message buffer that's a
204 followup to the message in the current buffer.
205
206 @vindex message-followup-to-function
207 Message uses the normal methods to determine where followups are to go,
208 but you can change the behavior to suit your needs by fiddling with the
209 @code{message-followup-to-function}.  It is used in the same way as
210 @code{message-reply-to-function} (@pxref{Reply}).
211
212 @vindex message-use-followup-to
213 The @code{message-use-followup-to} variable says what to do about
214 @code{Followup-To} headers.  If it is @code{use}, always use the value.
215 If it is @code{ask} (which is the default), ask whether to use the
216 value.  If it is @code{t}, use the value unless it is @samp{poster}.  If
217 it is @code{nil}, don't use the value.
218
219
220 @node Canceling News
221 @section Canceling News
222
223 @findex message-cancel-news
224 The @code{message-cancel-news} command cancels the article in the
225 current buffer.
226
227
228 @node Superseding
229 @section Superseding
230
231 @findex message-supersede
232 The @code{message-supersede} command pops up a message buffer that will
233 supersede the message in the current buffer.
234
235 @vindex message-ignored-supersedes-headers
236 Headers matching the @code{message-ignored-supersedes-headers} are
237 removed before popping up the new message buffer.  The default is@*
238 @samp{^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|@*
239 ^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:}.
240
241
242
243 @node Forwarding
244 @section Forwarding
245
246 @findex message-forward
247 The @code{message-forward} command pops up a message buffer to forward
248 the message in the current buffer.  If given a prefix, forward using
249 news.
250
251 @table @code
252 @item message-forward-ignored-headers
253 @vindex message-forward-ignored-headers
254 All headers that match this regexp will be deleted when forwarding a message.
255
256 @item message-make-forward-subject-function
257 @vindex message-make-forward-subject-function
258 A list of functions that are called to generate a subject header for
259 forwarded messages.  The subject generated by the previous function is
260 passed into each successive function.
261
262 The provided functions are:
263
264 @table @code
265 @item message-forward-subject-author-subject
266 @findex message-forward-subject-author-subject
267 Source of article (author or newsgroup), in brackets followed by the
268 subject.
269
270 @item message-forward-subject-fwd
271 Subject of article with @samp{Fwd:} prepended to it.
272 @end table
273
274 @item message-wash-forwarded-subjects
275 @vindex message-wash-forwarded-subjects
276 If this variable is @code{t}, the subjects of forwarded messages have
277 the evidence of previous forwards (such as @samp{Fwd:}, @samp{Re:},
278 @samp{(fwd)}) removed before the new subject is
279 constructed.  The default value is @code{nil}.
280
281 @item message-forward-as-mime
282 @vindex message-forward-as-mime
283 If this variable is @code{t} (the default), forwarded messages are
284 included as inline MIME RFC822 parts.  If it's @code{nil}, forwarded
285 messages will just be copied inline to the new message, like previous,
286 non MIME-savvy versions of gnus would do.
287 @end table
288
289
290 @node Resending
291 @section Resending
292
293 @findex message-resend
294 The @code{message-resend} command will prompt the user for an address
295 and resend the message in the current buffer to that address.
296
297 @vindex message-ignored-resent-headers
298 Headers that match the @code{message-ignored-resent-headers} regexp will
299 be removed before sending the message.  The default is
300 @samp{^Return-receipt}.
301
302
303 @node Bouncing
304 @section Bouncing
305
306 @findex message-bounce
307 The @code{message-bounce} command will, if the current buffer contains a
308 bounced mail message, pop up a message buffer stripped of the bounce
309 information.  A @dfn{bounced message} is typically a mail you've sent
310 out that has been returned by some @code{mailer-daemon} as
311 undeliverable.
312
313 @vindex message-ignored-bounced-headers
314 Headers that match the @code{message-ignored-bounced-headers} regexp
315 will be removed before popping up the buffer.  The default is
316 @samp{^\\(Received\\|Return-Path\\):}.
317
318
319 @node Commands
320 @chapter Commands
321
322 @menu
323 * Buffer Entry::        Commands after entering a Message buffer.
324 * Header Commands::     Commands for moving to headers.
325 * Movement::            Moving around in message buffers.
326 * Insertion::           Inserting things into message buffers.
327 * MIME::                @sc{mime} considerations.
328 * Security::            Signing and encrypting messages.
329 * Various Commands::    Various things.
330 * Sending::             Actually sending the message.
331 * Mail Aliases::        How to use mail aliases.
332 * Spelling::            Having Emacs check your spelling.
333 @end menu
334
335
336 @node Buffer Entry
337 @section Buffer Entry
338 @cindex undo
339 @kindex C-_
340
341 You most often end up in a Message buffer when responding to some other
342 message of some sort.  Message does lots of handling of quoted text, and
343 may remove signatures, reformat the text, or the like---depending on
344 which used settings you're using.  Message usually gets things right,
345 but sometimes it stumbles.  To help the user unwind these stumblings,
346 Message sets the undo boundary before each major automatic action it
347 takes.  If you press the undo key (usually located at @kbd{C-_}) a few
348 times, you will get back the un-edited message you're responding to.
349
350
351 @node Header Commands
352 @section Header Commands
353
354 All these commands move to the header in question.  If it doesn't exist,
355 it will be inserted.
356
357 @table @kbd
358
359 @item C-c ?
360 @kindex C-c ?
361 @findex message-goto-to
362 Describe the message mode.
363
364 @item C-c C-f C-t
365 @kindex C-c C-f C-t
366 @findex message-goto-to
367 Go to the @code{To} header (@code{message-goto-to}).
368
369 @item C-c C-f C-b
370 @kindex C-c C-f C-b
371 @findex message-goto-bcc
372 Go to the @code{Bcc} header (@code{message-goto-bcc}).
373
374 @item C-c C-f C-f
375 @kindex C-c C-f C-f
376 @findex message-goto-fcc
377 Go to the @code{Fcc} header (@code{message-goto-fcc}).
378
379 @item C-c C-f C-c
380 @kindex C-c C-f C-c
381 @findex message-goto-cc
382 Go to the @code{Cc} header (@code{message-goto-cc}).
383
384 @item C-c C-f C-s
385 @kindex C-c C-f C-s
386 @findex message-goto-subject
387 Go to the @code{Subject} header (@code{message-goto-subject}).
388
389 @item C-c C-f C-r
390 @kindex C-c C-f C-r
391 @findex message-goto-reply-to
392 Go to the @code{Reply-To} header (@code{message-goto-reply-to}).
393
394 @item C-c C-f C-n
395 @kindex C-c C-f C-n
396 @findex message-goto-newsgroups
397 Go to the @code{Newsgroups} header (@code{message-goto-newsgroups}).
398
399 @item C-c C-f C-d
400 @kindex C-c C-f C-d
401 @findex message-goto-distribution
402 Go to the @code{Distribution} header (@code{message-goto-distribution}).
403
404 @item C-c C-f C-o
405 @kindex C-c C-f C-o
406 @findex message-goto-followup-to
407 Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
408
409 @item C-c C-f C-k
410 @kindex C-c C-f C-k
411 @findex message-goto-keywords
412 Go to the @code{Keywords} header (@code{message-goto-keywords}).
413
414 @item C-c C-f C-u
415 @kindex C-c C-f C-u
416 @findex message-goto-summary
417 Go to the @code{Summary} header (@code{message-goto-summary}).
418
419 @end table
420
421
422 @node Movement
423 @section Movement
424
425 @table @kbd
426 @item C-c C-b
427 @kindex C-c C-b
428 @findex message-goto-body
429 Move to the beginning of the body of the message
430 (@code{message-goto-body}).
431
432 @item C-c C-i
433 @kindex C-c C-i
434 @findex message-goto-signature
435 Move to the signature of the message (@code{message-goto-signature}).
436
437 @end table
438
439
440 @node Insertion
441 @section Insertion
442
443 @table @kbd
444
445 @item C-c C-y
446 @kindex C-c C-y
447 @findex message-yank-original
448 Yank the message that's being replied to into the message buffer
449 (@code{message-yank-original}).
450
451 @item C-c M-C-y
452 @kindex C-c M-C-y
453 @findex message-yank-buffer
454 Prompt for a buffer name and yank the contents of that buffer into the
455 message buffer (@code{message-yank-buffer}).
456
457 @item C-c C-q
458 @kindex C-c C-q
459 @findex message-fill-yanked-message
460 Fill the yanked message (@code{message-fill-yanked-message}).  Warning:
461 Can severely mess up the yanked text if its quoting conventions are
462 strange.  You'll quickly get a feel for when it's safe, though.  Anyway,
463 just remember that @kbd{C-x u} (@code{undo}) is available and you'll be
464 all right.
465
466 @item C-c C-w
467 @kindex C-c C-w
468 @findex message-insert-signature
469 Insert a signature at the end of the buffer
470 (@code{message-insert-signature}).
471
472 @item C-c M-h
473 @kindex C-c M-h
474 @findex message-insert-headers
475 Insert the message headers (@code{message-insert-headers}).
476
477 @end table
478
479 @table @code
480 @item message-ignored-cited-headers
481 @vindex message-ignored-cited-headers
482 All headers that match this regexp will be removed from yanked
483 messages.  The default is @samp{.}, which means that all headers will be
484 removed.
485
486 @item message-cite-prefix-regexp
487 @vindex message-cite-prefix-regexp
488 Regexp matching the longest possible citation prefix on a line.
489
490 @item message-citation-line-function
491 @vindex message-citation-line-function
492 Function called to insert the citation line.  The default is
493 @code{message-insert-citation-line}, which will lead to citation lines
494 that look like:
495
496 @example
497 Hallvard B Furuseth <h.b.furuseth@@usit.uio.no> writes:
498 @end example
499
500 Point will be at the beginning of the body of the message when this
501 function is called.
502
503 @item message-yank-prefix
504 @vindex message-yank-prefix
505 @cindex yanking
506 @cindex quoting
507 When you are replying to or following up an article, you normally want
508 to quote the person you are answering.  Inserting quoted text is done by
509 @dfn{yanking}, and each quoted line you yank will have
510 @code{message-yank-prefix} prepended to it.  The default is @samp{> }.
511
512 @item message-indentation-spaces
513 @vindex message-indentation-spaces
514 Number of spaces to indent yanked messages.
515
516 @item message-cite-function
517 @vindex message-cite-function
518 @findex message-cite-original
519 @findex sc-cite-original
520 @findex message-cite-original-without-signature
521 @cindex Supercite
522 Function for citing an original message.  The default is
523 @code{message-cite-original}, which simply inserts the original message
524 and prepends @samp{> } to each line.
525 @code{message-cite-original-without-signature} does the same, but elides
526 the signature.  You can also set it to @code{sc-cite-original} to use
527 Supercite.
528
529 @item message-indent-citation-function
530 @vindex message-indent-citation-function
531 Function for modifying a citation just inserted in the mail buffer.
532 This can also be a list of functions.  Each function can find the
533 citation between @code{(point)} and @code{(mark t)}.  And each function
534 should leave point and mark around the citation text as modified.
535
536 @item message-signature
537 @vindex message-signature
538 String to be inserted at the end of the message buffer.  If @code{t}
539 (which is the default), the @code{message-signature-file} file will be
540 inserted instead.  If a function, the result from the function will be
541 used instead.  If a form, the result from the form will be used instead.
542 If this variable is @code{nil}, no signature will be inserted at all.
543
544 @item message-signature-file
545 @vindex message-signature-file
546 File containing the signature to be inserted at the end of the buffer.
547 The default is @samp{~/.signature}.
548
549 @end table
550
551 Note that RFC1036bis says that a signature should be preceded by the three
552 characters @samp{-- } on a line by themselves.  This is to make it
553 easier for the recipient to automatically recognize and process the
554 signature.  So don't remove those characters, even though you might feel
555 that they ruin your beautiful design, like, totally.
556
557 Also note that no signature should be more than four lines long.
558 Including ASCII graphics is an efficient way to get everybody to believe
559 that you are silly and have nothing important to say.
560
561
562 @node MIME
563 @section MIME
564 @cindex MML
565 @cindex MIME
566 @cindex multipart
567 @cindex attachment
568
569 Message is a @sc{mime}-compliant posting agent.  The user generally
570 doesn't have to do anything to make the @sc{mime} happen---Message will
571 automatically add the @code{Content-Type} and
572 @code{Content-Transfer-Encoding} headers.
573
574 The most typical thing users want to use the multipart things in
575 @sc{mime} for is to add ``attachments'' to mail they send out.  This can
576 be done with the @code{C-c C-a} command, which will prompt for a file
577 name and a @sc{mime} type.
578
579 You can also create arbitrarily complex multiparts using the MML
580 language (@pxref{Composing, , Composing, emacs-mime, The Emacs MIME
581 Manual}).
582
583 @node Security
584 @section Security
585 @cindex Security
586 @cindex S/MIME
587 @cindex PGP/MIME
588 @cindex sign
589 @cindex encrypt
590
591 Using the MML language, Message is able to create digitally signed and
592 digitally encrypted messages.  Message (or rather MML) currently support
593 PGP/MIME and S/MIME.  Instructing MML to perform security operations on
594 a MIME part is done using the @code{M-m s} key map for signing and the
595 @code{M-m c} key map for encryption, as follows.
596
597 @table @kbd
598
599 @item M-m s s
600 @kindex M-m s s
601 @findex mml-secure-sign-smime
602
603 Digitally sign current MIME part using S/MIME.
604
605 @item M-m s p
606 @kindex M-m s p
607 @findex mml-secure-sign-pgp
608
609 Digitally sign current MIME part using PGP/MIME.
610
611 @item M-m c s
612 @kindex M-m c s
613 @findex mml-secure-encrypt-smime
614
615 Digitally encrypt current MIME part using S/MIME.
616
617 @item M-m c p
618 @kindex M-m c p
619 @findex mml-secure-encrypt-pgpmime
620
621 Digitally encrypt current MIME part using PGP/MIME.
622
623 @end table
624
625 These commands do not immediately sign or encrypt the message, they
626 merely insert proper MML tags to instruct the MML engine to perform that
627 operation when the message is actually sent.  They may perform other
628 operations too, such as locating and retrieving a S/MIME certificate of
629 the person you wish to send encrypted mail to.
630
631 Since signing and especially encryption often is used when sensitive
632 information is sent, you may want to have some way to ensure that your
633 mail is actually signed or encrypted.  After invoking the above
634 sign/encrypt commands, it is possible to preview the raw article by
635 using @code{C-u M-m P} (@code{mml-preview}).  Then you can verify that
636 your long rant about what your ex-significant other or whomever actually
637 did with that funny looking person at that strange party the other
638 night, actually will be sent encrypted.
639
640 @emph{Note!}  Neither PGP/MIME nor S/MIME encrypt/signs RFC822 headers.
641 They only operate on the MIME object.  Keep this in mind before sending
642 mail with a sensitive Subject line.
643
644 Actually using the security commands above is not very difficult.  At
645 least not compared with making sure all involved programs talk with each
646 other properly.  Thus, we now describe what external libraries or
647 programs are required to make things work, and some small general hints.
648
649 @subsection Using S/MIME
650
651 @emph{Note!}  This section assume you have a basic familiarity with
652 modern cryptography, S/MIME, various PKCS standards, OpenSSL and so on.
653
654 The S/MIME support in Message (and MML) require OpenSSL.  OpenSSL
655 perform the actual S/MIME sign/encrypt operations.  OpenSSL can be found
656 at @code{http://www.openssl.org/}.  OpenSSL 0.9.5a and later should
657 work.  However, version 0.9.5a insert a spurious CR character into MIME
658 separators so you may wish to avoid it if you would like to avoid being
659 regarded as someone who send strange mail. (Although by sending S/MIME
660 messages you've probably already lost that contest.)
661
662 To be able to send encrypted mail, a personal certificate is not
663 required.  Message (MML) need a certificate for the person to whom you
664 wish to communicate with though.  You're asked for this when you type
665 @code{M-m c s}.  Currently there are two ways to retrieve this
666 certificate, from a local file or from DNS.  If you chose a local file,
667 it need to contain a X.509 certificate in PEM format.  If you chose DNS,
668 you're asked for the domain name where the certificate is stored, the
669 default is a good guess.  To my belief, Message (MML) is the first mail
670 agent in the world to support retrieving S/MIME certificates from DNS,
671 so you're not likely to find very many certificates out there.  At least
672 there should be one, stored at the domain @code{simon.josefsson.org}.
673 LDAP is a more popular method of distributing certificates, support for
674 it is planned.  (Meanwhile, you can use @code{ldapsearch} from the
675 command line to retrieve a certificate into a file and use it.)
676
677 As for signing messages, OpenSSL can't perform signing operations
678 without some kind of configuration.  Especially, you need to tell it
679 where your private key and your certificate is stored.  MML uses an
680 Emacs interface to OpenSSL, aptly named @code{smime.el}, and it contain
681 a @code{custom} group used for this configuration.  So, try @code{M-x
682 customize-group RET smime RET} and look around.
683
684 Currently there is no support for talking to a CA (or RA) to create your
685 own certificate.  None is planned either.  You need to do this manually
686 with OpenSSL or using some other program.  I used Netscape and got a
687 free S/MIME certificate from one of the big CA's on the net.  Netscape
688 is able to export your private key and certificate in PKCS #12 format.
689 Use OpenSSL to convert this into a plain X.509 certificate in PEM format
690 as follows.
691
692 @example
693 $ openssl pkcs12 -in ns.p12 -clcerts -nodes > key+cert.pem
694 @end example
695
696 The @code{key+cert.pem} file should be pointed to from the
697 @code{smime-keys} variable.  You should now be able to send signed mail.
698
699 @emph{Note!}  Your private key is store unencrypted in the file, so take
700 care in handling it.
701
702 @subsection Using PGP/MIME
703
704 PGP/MIME require an external OpenPGP implementation, such as GNU Privacy
705 Guard (@code{http://www.gnupg.org/}.  It also require a Emacs interface
706 to it, such as Mailcrypt (available from
707 @code{http://www.nb.net/~lbudney/linux/software/mailcrypt.html}) or
708 Florian Weimer's @code{gpg.el}.
709
710 Creating your own OpenPGP key is described in detail in the
711 documentation of your OpenPGP implementation, so we refer to it.
712
713 @node Various Commands
714 @section Various Commands
715
716 @table @kbd
717
718 @item C-c C-r
719 @kindex C-c C-r
720 @findex message-caesar-buffer-body
721 Caesar rotate (aka. rot13) the current message
722 (@code{message-caesar-buffer-body}).  If narrowing is in effect, just
723 rotate the visible portion of the buffer.  A numerical prefix says how
724 many places to rotate the text.  The default is 13.
725
726 @item C-c C-e
727 @kindex C-c C-e
728 @findex message-elide-region
729 Elide the text between point and mark (@code{message-elide-region}).
730 The text is killed and replaced with the contents of the variable
731 @code{message-elide-ellipsis}. The default value is to use an ellipsis
732 (@samp{[...]}).
733
734 @item C-c C-z
735 @kindex C-c C-x
736 @findex message-kill-to-signature
737 Kill all the text up to the signature, or if that's missing, up to the
738 end of the message (@code{message-kill-to-signature}).
739
740 @item C-c C-v
741 @kindex C-c C-v
742 @findex message-delete-not-region
743 Delete all text in the body of the message that is outside the region
744 (@code{message-delete-not-region}).
745
746 @item M-RET
747 @kindex M-RET
748 @kindex message-newline-and-reformat
749 Insert four newlines, and then reformat if inside quoted text.
750
751 Here's an example:
752
753 @example
754 > This is some quoted text.  And here's more quoted text.
755 @end example
756
757 If point is before @samp{And} and you press @kbd{M-RET}, you'll get:
758
759 @example
760 > This is some quoted text.
761
762 *
763
764 > And here's more quoted text.
765 @end example
766
767 @samp{*} says where point will be placed.
768
769 @item C-c C-t
770 @kindex C-c C-t
771 @findex message-insert-to
772 Insert a @code{To} header that contains the @code{Reply-To} or
773 @code{From} header of the message you're following up
774 (@code{message-insert-to}).
775
776 @item C-c C-n
777 @kindex C-c C-n
778 @findex message-insert-newsgroups
779 Insert a @code{Newsgroups} header that reflects the @code{Followup-To}
780 or @code{Newsgroups} header of the article you're replying to
781 (@code{message-insert-newsgroups}).
782
783 @item C-c M-r
784 @kindex C-c M-r
785 @findex message-rename-buffer
786 Rename the buffer (@code{message-rename-buffer}).  If given a prefix,
787 prompt for a new buffer name.
788
789 @end table
790
791
792 @node Sending
793 @section Sending
794
795 @table @kbd
796 @item C-c C-c
797 @kindex C-c C-c
798 @findex message-send-and-exit
799 Send the message and bury the current buffer
800 (@code{message-send-and-exit}).
801
802 @item C-c C-s
803 @kindex C-c C-s
804 @findex message-send
805 Send the message (@code{message-send}).
806
807 @item C-c C-d
808 @kindex C-c C-d
809 @findex message-dont-send
810 Bury the message buffer and exit (@code{message-dont-send}).
811
812 @item C-c C-k
813 @kindex C-c C-k
814 @findex message-kill-buffer
815 Kill the message buffer and exit (@code{message-kill-buffer}).
816
817 @end table
818
819
820
821 @node Mail Aliases
822 @section Mail Aliases
823 @cindex mail aliases
824 @cindex aliases
825
826 @vindex message-mail-alias-type
827 The @code{message-mail-alias-type} variable controls what type of mail
828 alias expansion to use.  Currently only one form is supported---Message
829 uses @code{mailabbrev} to handle mail aliases.  If this variable is
830 @code{nil}, no mail alias expansion will be performed.
831
832 @code{mailabbrev} works by parsing the @file{/etc/mailrc} and
833 @file{~/.mailrc} files.  These files look like:
834
835 @example
836 alias lmi "Lars Magne Ingebrigtsen <larsi@@ifi.uio.no>"
837 alias ding "ding@@ifi.uio.no (ding mailing list)"
838 @end example
839
840 After adding lines like this to your @file{~/.mailrc} file, you should
841 be able to just write @samp{lmi} in the @code{To} or @code{Cc} (and so
842 on) headers and press @kbd{SPC} to expand the alias.
843
844 No expansion will be performed upon sending of the message---all
845 expansions have to be done explicitly.
846
847
848 @node Spelling
849 @section Spelling
850 @cindex spelling
851 @findex ispell-message
852
853 There are two popular ways to have Emacs spell-check your messages:
854 @code{ispell} and @code{flyspell}.  @code{ispell} is the older and
855 probably more popular package.  You typically first write the message,
856 and then run the entire thing through @code{ispell} and fix all the
857 typos.  To have this happen automatically when you send a message, put
858 something like the following in your @file{.emacs} file:
859
860 @lisp
861 (add-hook 'message-send-hook 'ispell-message)
862 @end lisp
863
864 @vindex ispell-message-dictionary-alist
865 If you're in the habit of writing in different languages, this can be
866 controlled by the @code{ispell-message-dictionary-alist} variable:
867
868 @lisp
869 (setq ispell-message-dictionary-alist
870       '(("^Newsgroups:.*\\bde\\." . "deutsch8")
871         (".*" . "default")))
872 @end lisp
873
874 @code{ispell} depends on having the external @samp{ispell} command
875 installed.
876
877 The other popular method is using @code{flyspell}.  This package checks
878 your spelling while you're writing, and marks any mis-spelled words in
879 various ways.
880
881 To use @code{flyspell}, put something like the following in your
882 @file{.emacs} file:
883
884 @lisp
885 (defun my-message-setup-routine ()
886   (flyspell-mode 1))
887 (add-hook 'message-setup-hook 'my-message-setup-routine)
888 @end lisp
889
890 @code{flyspell} depends on having the external @samp{ispell} command
891 installed.
892
893
894 @node Variables
895 @chapter Variables
896
897 @menu
898 * Message Headers::             General message header stuff.
899 * Mail Headers::                Customizing mail headers.
900 * Mail Variables::              Other mail variables.
901 * News Headers::                Customizing news headers.
902 * News Variables::              Other news variables.
903 * Various Message Variables::   Other message variables.
904 * Sending Variables::           Variables for sending.
905 * Message Buffers::             How Message names its buffers.
906 * Message Actions::             Actions to be performed when exiting.
907 @end menu
908
909
910 @node Message Headers
911 @section Message Headers
912
913 Message is quite aggressive on the message generation front.  It has to
914 be -- it's a combined news and mail agent.  To be able to send combined
915 messages, it has to generate all headers itself (instead of letting the
916 mail/news system do it) to ensure that mail and news copies of messages
917 look sufficiently similar.
918
919 @table @code
920
921 @item message-generate-headers-first
922 @vindex message-generate-headers-first
923 If non-@code{nil}, generate all headers before starting to compose the
924 message.
925
926 @item message-from-style
927 @vindex message-from-style
928 Specifies how @code{From} headers should look.  There are four valid
929 values:
930
931 @table @code
932 @item nil
933 Just the address -- @samp{king@@grassland.com}.
934
935 @item parens
936 @samp{king@@grassland.com (Elvis Parsley)}.
937
938 @item angles
939 @samp{Elvis Parsley <king@@grassland.com>}.
940
941 @item default
942 Look like @code{angles} if that doesn't require quoting, and
943 @code{parens} if it does.  If even @code{parens} requires quoting, use
944 @code{angles} anyway.
945
946 @end table
947
948 @item message-deletable-headers
949 @vindex message-deletable-headers
950 Headers in this list that were previously generated by Message will be
951 deleted before posting.  Let's say you post an article.  Then you decide
952 to post it again to some other group, you naughty boy, so you jump back
953 to the @code{*post-buf*} buffer, edit the @code{Newsgroups} line, and
954 ship it off again.  By default, this variable makes sure that the old
955 generated @code{Message-ID} is deleted, and a new one generated.  If
956 this isn't done, the entire empire would probably crumble, anarchy would
957 prevail, and cats would start walking on two legs and rule the world.
958 Allegedly.
959
960 @item message-default-headers
961 @vindex message-default-headers
962 This string is inserted at the end of the headers in all message
963 buffers.
964
965 @item message-subject-re-regexp
966 @vindex message-subject-re-regexp
967 Responses to messages have subjects that start with @samp{Re: }.  This
968 is @emph{not} an abbreviation of the English word ``response'', but is
969 Latin, and means ``in response to''.  Some illiterate nincompoops have
970 failed to grasp this fact, and have ``internationalized'' their software
971 to use abonimations like @samp{Aw: } (``antwort'') or @samp{Sv: }
972 (``svar'') instead, which is meaningless and evil.  However, you may
973 have to deal with users that use these evil tools, in which case you may
974 set this variable to a regexp that matches these prefixes.  Myself, I
975 just throw away non-compliant mail.
976
977 @item message-alternative-emails
978 @vindex message-alternative-emails
979 A regexp to match the alternative email addresses.  The first matched
980 address (not primary one) is used in the @code{From} field.
981
982 @end table
983
984
985 @node Mail Headers
986 @section Mail Headers
987
988 @table @code
989 @item message-required-mail-headers
990 @vindex message-required-mail-headers
991 @xref{News Headers}, for the syntax of this variable.  It is
992 @code{(From Date Subject (optional . In-Reply-To) Message-ID Lines
993 (optional . X-Mailer))} by default.
994
995 @item message-ignored-mail-headers
996 @vindex message-ignored-mail-headers
997 Regexp of headers to be removed before mailing.  The default is
998 @samp{^[GF]cc:\\|^Resent-Fcc:}.
999
1000 @item message-default-mail-headers
1001 @vindex message-default-mail-headers
1002 This string is inserted at the end of the headers in all message
1003 buffers that are initialized as mail.
1004
1005 @end table
1006
1007
1008 @node Mail Variables
1009 @section Mail Variables
1010
1011 @table @code
1012 @item message-send-mail-function
1013 @vindex message-send-mail-function
1014 Function used to send the current buffer as mail.  The default is
1015 @code{message-send-mail-with-sendmail}.   If you prefer using MH
1016 instead, set this variable to @code{message-send-mail-with-mh}.
1017
1018 @item message-mh-deletable-headers
1019 @vindex message-mh-deletable-headers
1020 Most versions of MH doesn't like being fed messages that contain the
1021 headers in this variable.  If this variable is non-@code{nil} (which is
1022 the default), these headers will be removed before mailing when sending
1023 messages via MH.  Set it to @code{nil} if your MH can handle these
1024 headers.
1025
1026 @item message-send-mail-partially-limit
1027 @vindex message-send-mail-partially-limit
1028 The limitation of messages sent as message/partial.
1029 The lower bound of message size in characters, beyond which the message 
1030 should be sent in several parts. If it is nil, the size is unlimited.
1031
1032 @end table
1033
1034
1035 @node News Headers
1036 @section News Headers
1037
1038 @vindex message-required-news-headers
1039 @code{message-required-news-headers} a list of header symbols.  These
1040 headers will either be automatically generated, or, if that's
1041 impossible, they will be prompted for.  The following symbols are valid:
1042
1043 @table @code
1044
1045 @item From
1046 @cindex From
1047 @findex user-full-name
1048 @findex user-mail-address
1049 This required header will be filled out with the result of the
1050 @code{message-make-from} function, which depends on the
1051 @code{message-from-style}, @code{user-full-name},
1052 @code{user-mail-address} variables.
1053
1054 @item Subject
1055 @cindex Subject
1056 This required header will be prompted for if not present already.
1057
1058 @item Newsgroups
1059 @cindex Newsgroups
1060 This required header says which newsgroups the article is to be posted
1061 to.  If it isn't present already, it will be prompted for.
1062
1063 @item Organization
1064 @cindex organization
1065 This optional header will be filled out depending on the
1066 @code{message-user-organization} variable.
1067 @code{message-user-organization-file} will be used if this variable is
1068 @code{t}.  This variable can also be a string (in which case this string
1069 will be used), or it can be a function (which will be called with no
1070 parameters and should return a string to be used).
1071
1072 @item Lines
1073 @cindex Lines
1074 This optional header will be computed by Message.
1075
1076 @item Message-ID
1077 @cindex Message-ID
1078 @vindex mail-host-address
1079 @findex system-name
1080 @cindex Sun
1081 This required header will be generated by Message.  A unique ID will be
1082 created based on the date, time, user name and system name.  Message
1083 will use @code{system-name} to determine the name of the system.  If
1084 this isn't a fully qualified domain name (FQDN), Message will use
1085 @code{mail-host-address} as the FQDN of the machine.
1086
1087 @item X-Newsreader
1088 @cindex X-Newsreader
1089 This optional header will be filled out according to the
1090 @code{message-newsreader} local variable.
1091
1092 @item X-Mailer
1093 This optional header will be filled out according to the
1094 @code{message-mailer} local variable, unless there already is an
1095 @code{X-Newsreader} header present.
1096
1097 @item In-Reply-To
1098 This optional header is filled out using the @code{Date} and @code{From}
1099 header of the article being replied to.
1100
1101 @item Expires
1102 @cindex Expires
1103 This extremely optional header will be inserted according to the
1104 @code{message-expires} variable.  It is highly deprecated and shouldn't
1105 be used unless you know what you're doing.
1106
1107 @item Distribution
1108 @cindex Distribution
1109 This optional header is filled out according to the
1110 @code{message-distribution-function} variable.  It is a deprecated and
1111 much misunderstood header.
1112
1113 @item Path
1114 @cindex path
1115 This extremely optional header should probably never be used.
1116 However, some @emph{very} old servers require that this header is
1117 present.  @code{message-user-path} further controls how this
1118 @code{Path} header is to look.  If it is @code{nil}, use the server name
1119 as the leaf node.  If it is a string, use the string.  If it is neither
1120 a string nor @code{nil}, use the user name only.  However, it is highly
1121 unlikely that you should need to fiddle with this variable at all.
1122 @end table
1123
1124 @findex yow
1125 @cindex Mime-Version
1126 In addition, you can enter conses into this list.  The car of this cons
1127 should be a symbol.  This symbol's name is the name of the header, and
1128 the cdr can either be a string to be entered verbatim as the value of
1129 this header, or it can be a function to be called.  This function should
1130 return a string to be inserted.  For instance, if you want to insert
1131 @code{Mime-Version: 1.0}, you should enter @code{(Mime-Version . "1.0")}
1132 into the list.  If you want to insert a funny quote, you could enter
1133 something like @code{(X-Yow . yow)} into the list.  The function
1134 @code{yow} will then be called without any arguments.
1135
1136 If the list contains a cons where the car of the cons is
1137 @code{optional}, the cdr of this cons will only be inserted if it is
1138 non-@code{nil}.
1139
1140 Other variables for customizing outgoing news articles:
1141
1142 @table @code
1143
1144 @item message-syntax-checks
1145 @vindex message-syntax-checks
1146 Controls what syntax checks should not be performed on outgoing posts.
1147 To disable checking of long signatures, for instance, add
1148
1149 @lisp
1150 (signature . disabled)
1151 @end lisp
1152
1153 to this list.
1154
1155 Valid checks are:
1156
1157 @table @code
1158 @item subject-cmsg
1159 Check the subject for commands.
1160 @item sender
1161 @cindex Sender
1162 Insert a new @code{Sender} header if the @code{From} header looks odd.
1163 @item multiple-headers
1164 Check for the existence of multiple equal headers.
1165 @item sendsys
1166 @cindex sendsys
1167 Check for the existence of version and sendsys commands.
1168 @item message-id
1169 Check whether the @code{Message-ID} looks ok.
1170 @item from
1171 Check whether the @code{From} header seems nice.
1172 @item long-lines
1173 @cindex long lines
1174 Check for too long lines.
1175 @item control-chars
1176 Check for invalid characters.
1177 @item size
1178 Check for excessive size.
1179 @item new-text
1180 Check whether there is any new text in the messages.
1181 @item signature
1182 Check the length of the signature.
1183 @item approved
1184 @cindex approved
1185 Check whether the article has an @code{Approved} header, which is
1186 something only moderators should include.
1187 @item empty
1188 Check whether the article is empty.
1189 @item invisible-text
1190 Check whether there is any invisible text in the buffer.
1191 @item empty-headers
1192 Check whether any of the headers are empty.
1193 @item existing-newsgroups
1194 Check whether the newsgroups mentioned in the @code{Newsgroups} and
1195 @code{Followup-To} headers exist.
1196 @item valid-newsgroups
1197 Check whether the @code{Newsgroups} and @code{Followup-to} headers
1198 are valid syntactically.
1199 @item repeated-newsgroups
1200 Check whether the @code{Newsgroups} and @code{Followup-to} headers
1201 contains repeated group names.
1202 @item shorten-followup-to
1203 Check whether to add a @code{Followup-to} header to shorten the number
1204 of groups to post to.
1205 @end table
1206
1207 All these conditions are checked by default.
1208
1209 @item message-ignored-news-headers
1210 @vindex message-ignored-news-headers
1211 Regexp of headers to be removed before posting.  The default is@*
1212 @samp{^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:}.
1213
1214 @item message-default-news-headers
1215 @vindex message-default-news-headers
1216 This string is inserted at the end of the headers in all message
1217 buffers that are initialized as news.
1218
1219 @end table
1220
1221
1222 @node News Variables
1223 @section News Variables
1224
1225 @table @code
1226 @item message-send-news-function
1227 @vindex message-send-news-function
1228 Function used to send the current buffer as news.  The default is
1229 @code{message-send-news}.
1230
1231 @item message-post-method
1232 @vindex message-post-method
1233 Gnusish @dfn{select method} (see the Gnus manual for details) used for
1234 posting a prepared news message.
1235
1236 @end table
1237
1238
1239 @node Various Message Variables
1240 @section Various Message Variables
1241
1242 @table @code
1243 @item message-default-charset
1244 @vindex message-default-charset
1245 @cindex charset
1246 Symbol naming a @sc{mime} charset.  Non-ASCII characters in messages are
1247 assumed to be encoded using this charset.  The default is @code{nil},
1248 which means ask the user.  (This variable is used only on non-@sc{mule}
1249 Emacsen.  
1250 @xref{Charset Translation, , Charset Translation, emacs-mime, 
1251       Emacs MIME Manual}, for details on the @sc{mule}-to-@sc{mime}
1252 translation process.
1253
1254 @item message-signature-separator
1255 @vindex message-signature-separator
1256 Regexp matching the signature separator.  It is @samp{^-- *$} by
1257 default.
1258
1259 @item mail-header-separator
1260 @vindex mail-header-separator
1261 String used to separate the headers from the body.  It is @samp{--text
1262 follows this line--} by default.
1263
1264 @item message-directory
1265 @vindex message-directory
1266 Directory used by many mailey things.  The default is @file{~/Mail/}.
1267
1268 @item message-signature-setup-hook
1269 @vindex message-signature-setup-hook
1270 Hook run when initializing the message buffer.  It is run after the
1271 headers have been inserted but before the signature has been inserted.
1272
1273 @item message-setup-hook
1274 @vindex message-setup-hook
1275 Hook run as the last thing when the message buffer has been initialized,
1276 but before yanked text is inserted.
1277
1278 @item message-header-setup-hook
1279 @vindex message-header-setup-hook
1280 Hook called narrowed to the headers after initializing the headers.
1281
1282 For instance, if you're running Gnus and wish to insert a
1283 @samp{Mail-Copies-To} header in all your news articles and all messages
1284 you send to mailing lists, you could do something like the following:
1285
1286 @lisp
1287 (defun my-message-header-setup-hook ()
1288   (let ((group (or gnus-newsgroup-name "")))
1289     (when (or (message-fetch-field "newsgroups")
1290               (gnus-group-find-parameter group 'to-address)
1291               (gnus-group-find-parameter group 'to-list))
1292       (insert "Mail-Copies-To: never\n"))))
1293
1294 (add-hook 'message-header-setup-hook
1295           'my-message-header-setup-hook)
1296 @end lisp
1297
1298 @item message-send-hook
1299 @vindex message-send-hook
1300 Hook run before sending messages.
1301
1302 If you want to add certain headers before sending, you can use the
1303 @code{message-add-header} function in this hook.  For instance:
1304 @findex message-add-header
1305
1306 @lisp
1307 (add-hook 'message-send-hook 'my-message-add-content)
1308 (defun my-message-add-content ()
1309   (message-add-header
1310    "X-In-No-Sense: Nonsense"
1311    "X-Whatever: no"))
1312 @end lisp
1313
1314 This function won't add the header if the header is already present.
1315
1316 @item message-send-mail-hook
1317 @vindex message-send-mail-hook
1318 Hook run before sending mail messages.
1319
1320 @item message-send-news-hook
1321 @vindex message-send-news-hook
1322 Hook run before sending news messages.
1323
1324 @item message-sent-hook
1325 @vindex message-sent-hook
1326 Hook run after sending messages.
1327
1328 @item message-mode-syntax-table
1329 @vindex message-mode-syntax-table
1330 Syntax table used in message mode buffers.
1331
1332 @item message-send-method-alist
1333 @vindex message-send-method-alist
1334
1335 Alist of ways to send outgoing messages.  Each element has the form
1336
1337 @lisp
1338 (TYPE PREDICATE FUNCTION)
1339 @end lisp
1340
1341 @table @var
1342 @item type
1343 A symbol that names the method.
1344
1345 @item predicate
1346 A function called without any parameters to determine whether the
1347 message is a message of type @var{type}.
1348
1349 @item function
1350 A function to be called if @var{predicate} returns non-@code{nil}.
1351 @var{function} is called with one parameter -- the prefix.
1352 @end table
1353
1354 @lisp
1355 ((news message-news-p message-send-via-news)
1356  (mail message-mail-p message-send-via-mail))
1357 @end lisp
1358
1359
1360
1361 @end table
1362
1363
1364
1365 @node Sending Variables
1366 @section Sending Variables
1367
1368 @table @code
1369
1370 @item message-fcc-handler-function
1371 @vindex message-fcc-handler-function
1372 A function called to save outgoing articles.  This function will be
1373 called with the name of the file to store the article in.  The default
1374 function is @code{message-output} which saves in Unix mailbox format.
1375
1376 @item message-courtesy-message
1377 @vindex message-courtesy-message
1378 When sending combined messages, this string is inserted at the start of
1379 the mailed copy.  If the string contains the format spec @samp{%s}, the
1380 newsgroups the article has been posted to will be inserted there.  If
1381 this variable is @code{nil}, no such courtesy message will be added.
1382 The default value is @samp{"The following message is a courtesy copy of
1383 an article\nthat has been posted to %s as well.\n\n"}.
1384
1385 @end table
1386
1387
1388 @node Message Buffers
1389 @section Message Buffers
1390
1391 Message will generate new buffers with unique buffer names when you
1392 request a message buffer.  When you send the message, the buffer isn't
1393 normally killed off.  Its name is changed and a certain number of old
1394 message buffers are kept alive.
1395
1396 @table @code
1397 @item message-generate-new-buffers
1398 @vindex message-generate-new-buffers
1399 If non-@code{nil}, generate new buffers.  The default is @code{t}.  If
1400 this is a function, call that function with three parameters: The type,
1401 the to address and the group name.  (Any of these may be @code{nil}.)
1402 The function should return the new buffer name.
1403
1404 @item message-max-buffers
1405 @vindex message-max-buffers
1406 This variable says how many old message buffers to keep.  If there are
1407 more message buffers than this, the oldest buffer will be killed.  The
1408 default is 10.  If this variable is @code{nil}, no old message buffers
1409 will ever be killed.
1410
1411 @item message-send-rename-function
1412 @vindex message-send-rename-function
1413 After sending a message, the buffer is renamed from, for instance,
1414 @samp{*reply to Lars*} to @samp{*sent reply to Lars*}.  If you don't
1415 like this, set this variable to a function that renames the buffer in a
1416 manner you like.  If you don't want to rename the buffer at all, you can
1417 say:
1418
1419 @lisp
1420 (setq message-send-rename-function 'ignore)
1421 @end lisp
1422
1423 @item message-kill-buffer-on-exit
1424 @findex message-kill-buffer-on-exit
1425 If non-@code{nil}, kill the buffer immediately on exit.
1426
1427 @end table
1428
1429
1430 @node Message Actions
1431 @section Message Actions
1432
1433 When Message is being used from a news/mail reader, the reader is likely
1434 to want to perform some task after the message has been sent.  Perhaps
1435 return to the previous window configuration or mark an article as
1436 replied.
1437
1438 @vindex message-kill-actions
1439 @vindex message-postpone-actions
1440 @vindex message-exit-actions
1441 @vindex message-send-actions
1442 The user may exit from the message buffer in various ways.  The most
1443 common is @kbd{C-c C-c}, which sends the message and exits.  Other
1444 possibilities are @kbd{C-c C-s} which just sends the message, @kbd{C-c
1445 C-d} which postpones the message editing and buries the message buffer,
1446 and @kbd{C-c C-k} which kills the message buffer.  Each of these actions
1447 have lists associated with them that contains actions to be executed:
1448 @code{message-send-actions}, @code{message-exit-actions},
1449 @code{message-postpone-actions}, and @code{message-kill-actions}.
1450
1451 Message provides a function to interface with these lists:
1452 @code{message-add-action}.  The first parameter is the action to be
1453 added, and the rest of the arguments are which lists to add this action
1454 to.  Here's an example from Gnus:
1455
1456 @lisp
1457   (message-add-action
1458    `(set-window-configuration ,(current-window-configuration))
1459    'exit 'postpone 'kill)
1460 @end lisp
1461
1462 This restores the Gnus window configuration when the message buffer is
1463 killed, postponed or exited.
1464
1465 An @dfn{action} can be either: a normal function, or a list where the
1466 @code{car} is a function and the @code{cdr} is the list of arguments, or
1467 a form to be @code{eval}ed.
1468
1469
1470 @node Compatibility
1471 @chapter Compatibility
1472 @cindex compatibility
1473
1474 Message uses virtually only its own variables---older @code{mail-}
1475 variables aren't consulted.  To force Message to take those variables
1476 into account, you can put the following in your @code{.emacs} file:
1477
1478 @lisp
1479 (require 'messcompat)
1480 @end lisp
1481
1482 This will initialize many Message variables from the values in the
1483 corresponding mail variables.
1484
1485
1486 @node Appendices
1487 @chapter Appendices
1488
1489 @menu
1490 * Responses::          Standard rules for determining where responses go.
1491 @end menu
1492
1493
1494 @node Responses
1495 @section Responses
1496
1497 To determine where a message is to go, the following algorithm is used
1498 by default.
1499
1500 @table @dfn
1501 @item reply
1502 A @dfn{reply} is when you want to respond @emph{just} to the person who
1503 sent the message via mail.  There will only be one recipient.  To
1504 determine who the recipient will be, the following headers are
1505 consulted, in turn:
1506
1507 @table @code
1508 @item Reply-To
1509
1510 @item From
1511 @end table
1512
1513
1514 @item wide reply
1515 A @dfn{wide reply} is a mail response that includes @emph{all} entities
1516 mentioned in the message you are responded to.  All mailboxes from the
1517 following headers will be concatenated to form the outgoing
1518 @code{To}/@code{Cc} headers:
1519
1520 @table @code
1521 @item From
1522 (unless there's a @code{Reply-To}, in which case that is used instead).
1523
1524 @item Cc
1525
1526 @item To
1527 @end table
1528
1529 If a @code{Mail-Copies-To} header is present, it will also be included
1530 in the list of mailboxes.  If this header is @samp{never}, that means
1531 that the @code{From} (or @code{Reply-To}) mailbox will be suppressed.
1532
1533
1534 @item followup
1535 A @dfn{followup} is a response sent via news.  The following headers
1536 (listed in order of precedence) determine where the response is to be
1537 sent:
1538
1539 @table @code
1540
1541 @item Followup-To
1542
1543 @item Newsgroups
1544
1545 @end table
1546
1547 If a @code{Mail-Copies-To} header is present, it will be used as the
1548 basis of the new @code{Cc} header, except if this header is
1549 @samp{never}.
1550
1551 @end table
1552
1553
1554
1555 @node Index
1556 @chapter Index
1557 @printindex cp
1558
1559 @node Key Index
1560 @chapter Key Index
1561 @printindex ky
1562
1563 @summarycontents
1564 @contents
1565 @bye
1566
1567 @c End: