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