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