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