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