*** empty log message ***
[gnus] / texi / message.texi
1 \input texinfo                  @c -*-texinfo-*-
2
3 @setfilename message
4 @settitle Message Manual
5 @synindex fn cp
6 @synindex vr cp
7 @synindex pg cp
8 @iftex
9 @finalout
10 @end iftex
11 @setchapternewpage odd
12
13 @ifinfo
14
15 This file documents Messa, the Emacs message composition mode.
16
17 Copyright (C) 1996 Free Software Foundation, Inc.
18
19 Permission is granted to make and distribute verbatim copies of
20 this manual provided the copyright notice and this permission notice
21 are preserved on all copies.
22
23 @ignore
24 Permission is granted to process this file through Tex and print the
25 results, provided the printed document carries copying permission
26 notice identical to this one except for the removal of this paragraph
27 (this paragraph not being relevant to the printed manual).
28
29 @end ignore
30 Permission is granted to copy and distribute modified versions of this
31 manual under the conditions for verbatim copying, provided also that the
32 entire resulting derived work is distributed under the terms of a
33 permission notice identical to this one.
34
35 Permission is granted to copy and distribute translations of this manual
36 into another language, under the above conditions for modified versions.
37 @end ifinfo
38
39 @tex
40
41 @titlepage
42 @title Message Manual
43
44 @author by Lars Magne Ingebrigtsen
45 @page
46
47 @vskip 0pt plus 1filll
48 Copyright @copyright{} 1996 Free Software Foundation, Inc. 
49
50 Permission is granted to make and distribute verbatim copies of
51 this manual provided the copyright notice and this permission notice
52 are preserved on all copies.
53
54 Permission is granted to copy and distribute modified versions of this
55 manual under the conditions for verbatim copying, provided that the
56 entire resulting derived work is distributed under the terms of a
57 permission notice identical to this one.
58
59 Permission is granted to copy and distribute translations of this manual
60 into another language, under the above conditions for modified versions.
61
62 @end titlepage
63 @page
64
65 @end tex
66
67 @node Top
68 @top Message
69
70 All message composition (both mail and news) takes place in Message mode
71 buffers.
72
73 @menu
74 * Interface::         Setting up message buffers.
75 * Commands::          Commands you can execute in message mode buffers.
76 * Variables::         Customizing the message buffers.
77 * Index::             Variable, function and concept index.
78 * Key Index::         List of Message mode keys.
79 @end menu
80
81
82 @node Interface
83 @chapter Interface
84
85 When a program (or a person) wants to respond to a message -- reply,
86 follow up, forward, cancel -- the program (or person) should just put
87 point in the buffer where the message is and call the required command.
88 @code{Message} will then pop up a new @code{message} mode buffer with
89 appropriate headers filled out, and the user can edit the message before
90 sending it.
91
92 @menu
93 * New Mail Message::     Editing a brand new mail message.
94 * New News Message::     Editing a brand new news message.
95 * Reply::                Replying via mail.
96 * Wide Reply::           Responding to all people via mail.
97 * Followup::             Following up via news.
98 * Canceling News::       Canceling a news article.
99 * Superseding::          Superseding a message.
100 * Forwarding::           Forwarding a message via news or mail.
101 * Resending::            Resending a mail message.
102 * Bouncing::             Bouncing a mail message.
103 @end menu
104
105
106 @node New Mail Message
107 @section New Mail Message
108
109 @findex message-mail
110 The @code{message-mail} command pops up a new message buffer.  
111
112 Two optional parameters are accepted: The first will be used as the
113 @code{To} header and the second as the @code{Subject} header.  If these
114 aren't present, those two headers will be empty.
115
116
117 @node New News Message
118 @section New News Message
119
120 @findex message-news
121 The @code{message-news} command pops up a new message buffer.  
122
123 This function accepts two optional parameters.  The first will be used
124 as the @code{Newsgroups} header and the second as the @code{Subject}
125 header.  If these aren't present, those two headers will be empty.
126
127
128 @node Reply
129 @section Reply
130
131 @findex message-reply
132 The @code{message-reply} function pops up a message buffer that's a
133 reply to the message in the current buffer.
134
135 @vindex message-reply-to-function
136 Message uses the normal methods to determine where replies are to go,
137 but you can change the behavior to suit your needs by fiddling with the
138 @code{message-reply-to-function} variable.
139
140 If you want the replies to go to the @code{Sender} instead of the
141 @code{From}, you could do something like this:
142
143 @lisp
144 (setq message-reply-to-function
145       (lambda ()
146        (cond ((equal (mail-fetch-field "from") "somebody")
147                (mail-fetch-field "sender"))     
148              (t 
149               nil))))
150 @end lisp
151
152 This function will be called narrowed to the head of the article that is
153 being replied to.
154
155 As you can see, this function should return a string if it has an
156 opinion as to what the To header should be.  If it does not, it should
157 just return @code{nil}, and the normal methods for determining the To
158 header will be used.
159
160 This function can also return a list.  In that case, each list element
161 should be a cons, where the car should be the name of an header
162 (eg. @code{Cc}) and the cdr should be the header value
163 (eg. @samp{larsi@@ifi.uio.no}).  All these headers will be inserted into
164 the head of the outgoing mail. 
165
166
167 @node Wide Reply
168 @section Wide Reply
169
170 @findex message-wide-reply
171 The @code{message-wide-reply} pops up a message buffer that's a wide
172 reply to the message in the current buffer.  A @dfn{wide reply} is a
173 reply that goes out to all people listed in the @code{To}, @code{From}
174 and @code{Cc} headers.
175
176 @vindex message-wide-reply-to-function
177 Message uses the normal methods to determine where wide replies are to go,
178 but you can change the behavior to suit your needs by fiddling with the
179 @code{message-wide-reply-to-function}.  It is used in the same way as
180 @code{message-reply-to-function} (@pxref{Reply}). 
181
182 @findex rmail-dont-reply-to-names
183 Addresses that match the @code{rmail-dont-reply-to-names} regular
184 expression will be removed from the @code{Cc} header.
185
186
187 @node Followup
188 @section Followup
189
190 @findex message-followup
191 The @code{message-followup} command pops up a message buffer that's a
192 followup to the message in the current buffer.
193
194 @vindex message-followup-to-function
195 Message uses the normal methods to determine where followups are to go,
196 but you can change the behavior to suit your needs by fiddling with the
197 @code{message-followup-to-function}.  It is used in the same way as
198 @code{message-reply-to-function} (@pxref{Reply}).
199
200 @vindex message-use-followup-to
201 The @code{message-use-followup-to} variable says what to do about
202 @code{Followup-To} headers.  If it is @code{use}, always use the value.
203 If it is @code{ask} (which is the default), ask whether to use the
204 value.  If it is @code{t}, use the value unless it is @samp{poster}.  If
205 it is @code{nil}, don't use the value.
206
207
208 @node Canceling News
209 @section Canceling News
210
211 @findex message-cancel-news
212 The @code{message-cancel-news} command cancels the article in the
213 current buffer.
214
215
216 @node Superseding
217 @section Superseding
218
219 @findex message-supersede
220 The @code{message-supersede} command pops up a message buffer that will
221 supersede the message in the current buffer.
222
223 @vindex message-ignored-supersedes-headers
224 Headers matching the @code{message-ignored-supersedes-headers} are
225 removed before popping up the new message buffer.  The default is@*
226 @samp{^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|@*
227 ^Received:\\|^X-From-Line:\\|Return-Path:}.
228
229
230
231 @node Forwarding
232 @section Forwarding
233
234 @findex message-forward
235 The @code{message-forward} command pops up a message buffer to forward
236 the message in the current buffer.  If given a prefix, forward using
237 news.
238
239 @table @code
240 @item message-forward-start-separator
241 @vindex message-forward-start-separator
242 Delimiter inserted before forwarded messages.  The default is@*
243 @samp{------- Start of forwarded message -------\n}. 
244
245 @vindex message-forward-end-separator
246 @item message-forward-end-separator
247 @vindex message-forward-end-separator
248 Delimiter inserted after forwarded messages.  The default is@*
249 @samp{------- End of forwarded message -------\n}. 
250
251 @item message-signature-before-forwarded-message
252 @vindex message-signature-before-forwarded-message
253 If this variable is @code{t}, which it is by default, your personal
254 signature will be inserted before the forwarded message.  If not, the
255 forwarded message will be inserted first in the new mail.
256
257 @item message-included-forward-headers
258 @vindex message-included-forward-headers
259 Regexp matching header lines to be included in forwarded messages.  
260
261 @end table
262
263
264 @node Resending
265 @section Resending
266
267 @findex message-resend
268 The @code{message-resend} command will prompt the user for an address
269 and resend the message in the current buffer to that address.
270
271 @vindex message-ignored-resent-headers
272 Headers that match the @code{message-ignored-resent-headers} regexp will
273 be removed before sending the message.  The default is
274 @samp{^Return-receipt}. 
275
276
277 @node Bouncing
278 @section Bouncing
279
280 @findex message-bounce
281 The @code{message-bounce} command will, if the current buffer contains a
282 bounced mail message, pop up a message buffer stripped of the bounce
283 information.  A @dfn{bounced message} is typically a mail you've sent
284 out that has been returned by some @code{mailer-daemon} as
285 undeliverable. 
286
287 @vindex message-ignored-bounced-headers
288 Headers that match the @code{message-ignored-bounced-headers} regexp
289 will be removed before popping up the buffer.  The default is
290 @samp{^Received:}. 
291
292
293 @node Commands
294 @chapter Commands
295
296 @menu
297 * Header Commands::     Commands for moving to headers.
298 * Movement::            Moving around in message buffers.
299 * Insertion::           Inserting things into message buffers.
300 * Various Commands::    Various things.
301 * Sending::             Actually sending the message.
302 @end menu
303
304
305 @node Header Commands
306 @section Header Commands
307
308 All these commands move to the header in question.  If it doesn't exist,
309 it will be inserted.
310
311 @table @kbd
312
313 @item C-c ?
314 @kindex C-c ?
315 @findex message-goto-to
316 Describe the message mode.
317
318 @item C-c C-f C-t
319 @kindex C-c C-f C-t 
320 @findex message-goto-to
321 Go to the @code{To} header (@code{message-goto-to}).
322
323 @item C-c C-f C-b
324 @kindex C-c C-f C-b 
325 @findex message-goto-bcc
326 Go to the @code{Bcc} header (@code{message-goto-bcc}).
327
328 @item C-c C-f C-f
329 @kindex C-c C-f C-f 
330 @findex message-goto-fcc
331 Go to the @code{Fcc} header (@code{message-goto-fcc}).
332
333 @item C-c C-f C-c
334 @kindex C-c C-f C-c 
335 @findex message-goto-cc
336 Go to the @code{Cc} header (@code{message-goto-cc}).
337
338 @item C-c C-f C-s
339 @kindex C-c C-f C-s 
340 @findex message-goto-subject
341 Go to the @code{Subject} header (@code{message-goto-subject}).
342
343 @item C-c C-f C-r
344 @kindex C-c C-f C-r 
345 @findex message-goto-reply-to
346 Go to the @code{Reply-To} header (@code{message-goto-reply-to}).
347
348 @item C-c C-f C-n
349 @kindex C-c C-f C-n 
350 @findex message-goto-newsgroups
351 Go to the @code{Newsgroups} header (@code{message-goto-newsgroups}).
352
353 @item C-c C-f C-d
354 @kindex C-c C-f C-d 
355 @findex message-goto-distribution
356 Go to the @code{Distribution} header (@code{message-goto-distribution}).
357
358 @item C-c C-f C-o
359 @kindex C-c C-f C-o 
360 @findex message-goto-followup-to
361 Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
362
363 @item C-c C-f C-k
364 @kindex C-c C-f C-k 
365 @findex message-goto-keywords
366 Go to the @code{Keywords} header (@code{message-goto-keywords}).
367
368 @item C-c C-f C-u
369 @kindex C-c C-f C-u 
370 @findex message-goto-summary
371 Go to the @code{Summary} header (@code{message-goto-summary}).
372
373 @end table
374
375
376 @node Movement
377 @section Movement
378
379 @table @kbd
380 @item C-c C-b
381 @kindex C-c C-b 
382 @findex message-goto-body
383 Move to the beginning of the body of the message
384 (@code{message-goto-body}). 
385
386 @item C-c C-i
387 @kindex C-c C-i 
388 @findex message-goto-signature
389 Move to the signature of the message (@code{message-goto-signature}).
390
391 @end table
392
393
394 @node Insertion
395 @section Insertion
396
397 @table @kbd
398
399 @item C-c C-y
400 @kindex C-c C-y 
401 @findex message-yank-original
402 Yank the message that's being replied to into the message buffer
403 (@code{message-yank-original}). 
404
405 @item C-c C-q
406 @kindex C-c C-q 
407 @findex message-fill-yanked-message
408 Fill the yanked message (@code{message-fill-yanked-message}). 
409
410 @item C-c C-w
411 @kindex C-c C-w 
412 @findex message-insert-signature
413 Insert a signature at the end of the buffer
414 (@code{message-insert-signature}).  
415
416 @end table
417
418 @table @code
419 @item message-ignored-cited-headers
420 @vindex message-ignored-cited-headers
421 All headers that match this regexp will be removed from yanked
422 messages.  The default is @samp{.}, which means that all headers will be
423 removed.
424
425 @item message-citation-line-function
426 @vindex message-citation-line-function
427 Function called to insert the citation line.  The default is
428 @code{message-insert-citation-line}. 
429
430 @item message-yank-prefix
431 @vindex message-yank-prefix
432 @cindex yanking
433 @cindex quoting
434 When you are replying to or following up an article, you normally want
435 to quote the person you are answering.  Inserting quoted text is done by
436 @dfn{yanking}, and each quoted line you yank will have
437 @code{message-yank-prefix} prepended to it.  The default is @samp{> }.
438 If it is @code{nil}, just indent the message.
439
440 @item message-indentation-spaces
441 @vindex message-indentation-spaces
442 Number of spaces to indent yanked messages.
443
444 @item message-cite-function
445 @vindex message-cite-function
446 @findex message-cite-original
447 @findex sc-cite-original
448 @cindex Supercite
449 Function for citing an original message.  The default is
450 @code{message-cite-original}.  You can also set it to
451 @code{sc-cite-original} to use Supercite.
452
453 @item message-indent-citation-function
454 @vindex message-indent-citation-function
455 Function for modifying a citation just inserted in the mail buffer.
456 This can also be a list of functions.  Each function can find the
457 citation between @code{(point)} and @code{(mark t)}.  And each function
458 should leave point and mark around the citation text as modified.
459
460 @item message-signature
461 @vindex message-signature
462 String to be inserted at the end of the message buffer.  If @code{t}
463 (which is the default), the @code{message-signature-file} file will be
464 inserted instead.  If a function, the result from the function will be
465 used instead.  If a form, the result from the form will be used instead.
466 If this variable is @code{nil}, no signature will be inserted at all.
467
468 @item message-signature-file
469 @vindex message-signature-file
470 File containing the signature to be inserted at the end of the buffer.
471 The default is @samp{~/.signature}.
472
473 @end table
474
475 Note that RFC1036 says that a signature should be preceded by the three
476 characters @samp{-- } on a line by themselves.  This is to make it
477 easier for the recipient to automatically recognize and process the
478 signature.  So don't remove those characters, even though you might feel
479 that they ruin your beautiful design, like, totally.
480
481 Also note that no signature should be more than four lines long.
482 Including ASCII graphics is an efficient way to get everybody to believe
483 that you are silly and have nothing important to say.
484
485
486
487 @node Various Commands
488 @section Various Commands
489
490 @table @kbd
491
492 @item C-c C-r
493 @kindex C-c C-r 
494 @findex message-caesar-buffer-body
495 Caesar rotate (aka. rot13) the current message
496 (@code{message-caesar-buffer-body}).  If narrowing is in effect, just
497 rotate the visible portion of the buffer.  A numerical prefix says how
498 many places to rotate the text.  The default is 13.
499
500 @item C-c C-t
501 @kindex C-c C-t 
502 @findex message-insert-to
503 Insert a @code{To} header that contains the @code{Reply-To} or
504 @code{From} header of the message you're following up
505 (@code{message-insert-to}). 
506
507 @item C-c C-n
508 @kindex C-c C-n 
509 @findex message-insert-newsgroups
510 Insert a @code{Newsgroups} header that reflects the @code{Followup-To}
511 or @code{Newsgroups} header of the article you're replying to
512 (@code{message-insert-newsgroups}).
513
514 @item C-c M-r
515 @kindex C-c M-r
516 @findex message-rename-buffer
517 Rename the buffer (@code{message-rename-buffer}).  If given a prefix,
518 prompt for a new buffer name.
519
520 @end table
521
522
523 @node Sending
524 @section Sending
525
526 @table @kbd
527 @item C-c C-c
528 @kindex C-c C-c 
529 @findex message-send-and-exit
530 Send the message and bury the current buffer
531 (@code{message-send-and-exit}). 
532
533 @item C-c C-s
534 @kindex C-c C-s 
535 @findex message-send
536 Send the message (@code{message-send}). 
537
538 @item C-c C-d
539 @kindex C-c C-d
540 @findex message-dont-send
541 Bury the message buffer and exit (@code{message-dont-send}).
542
543 @item C-c C-k
544 @kindex C-c C-k
545 @findex message-kill-buffer
546 Kill the message buffer and exit (@code{message-kill-buffer}).
547
548 @end table
549
550
551 @node Variables
552 @chapter Variables
553
554 @menu
555 * Message Headers::             General message header stuff.
556 * Mail Headers::                Customizing mail headers.
557 * Mail Variables::              Other mail variables.
558 * News Headers::                Customizing news headers.
559 * News Variables::              Other news variables.
560 * Various Message Variables::   Other message variables.
561 * Sending Variables::           Variables for sending.
562 * Message Buffers::             How Message names its buffers.
563 * Message Actions::             Actions to be performed when exiting.
564 @end menu
565
566
567 @node Message Headers
568 @section Message Headers
569
570 Message is quite aggressive on the message generation front.  It has
571 to be -- it's a combined news and mail agent.  To be able to send
572 combined messages, it has to generate all headers itself to ensure that
573 mail and news copies of messages look sufficiently similar.
574
575 @table @code
576
577 @item message-generate-headers-first
578 @vindex message-generate-headers-first
579 If non-@code{nil}, generate all headers before starting to compose the
580 message.  
581
582 @item message-from-style
583 @vindex message-from-style
584 Specifies how @code{From} headers should look.  There are four legal
585 values:
586
587 @table @code
588 @item nil
589 Just the address -- @samp{king@@grassland.com}.
590
591 @item parens
592 @samp{king@@grassland.com (Elvis Parsley)}.
593
594 @item angles
595 @samp{Elvis Parsley <king@@grassland.com>}.
596
597 @item default
598 Look like @code{angles} if that doesn't require quoting, and
599 @code{parens} if it does.  If even @code{parens} requires quoting, use
600 @code{angles} anyway.
601
602 @end table
603
604 @item message-deletable-headers
605 @vindex message-deletable-headers
606 Headers in this list that were previously generated by Message will be
607 deleted before posting.  Let's say you post an article.  Then you decide
608 to post it again to some other group, you naughty boy, so you jump back
609 to the @code{*post-buf*} buffer, edit the @code{Newsgroups} line, and
610 ship it off again.  By default, this variable makes sure that the old
611 generated @code{Message-ID} is deleted, and a new one generated.  If
612 this isn't done, the entire empire would probably crumble, anarchy would
613 prevail, and cats would start walking on two legs and rule the world.
614 Allegedly.  
615
616 @item message-default-headers
617 @vindex message-default-headers
618 This string is inserted at the end of the headers in all message
619 buffers.
620
621 @end table
622
623
624 @node Mail Headers
625 @section Mail Headers
626
627 @table @code
628 @item message-required-mail-headers
629 @vindex message-required-mail-headers
630 @xref{News Headers}, for the syntax of this variable.  It is
631 @code{(From Date Subject (optional . In-Reply-To) Message-ID Lines
632 (optional . X-Mailer))} by default.
633
634 @item message-ignored-mail-headers
635 @vindex message-ignored-mail-headers
636 Regexp of headers to be removed before mailing.  The default is
637 @samp{^Gcc:\\|^Fcc:}. 
638
639 @item message-default-mail-headers
640 @vindex message-default-mail-headers
641 This string is inserted at the end of the headers in all message
642 buffers that are initialized as mail.
643
644 @end table
645
646
647 @node Mail Variables
648 @section Mail Variables 
649
650 @table @code
651 @item message-send-mail-function
652 @vindex message-send-mail-function
653 Function used to send the current buffer as mail.  The default is
654 @code{message-send-mail-with-sendmail}.   If you prefer using MH
655 instead, set this variable to @code{message-send-mail-with-mh}.
656
657 @end table
658
659
660 @node News Headers
661 @section News Headers
662
663 @vindex message-required-news-headers
664 @code{message-required-news-headers} a list of header symbols.  These
665 headers will either be automatically generated, or, if that's
666 impossible, they will be prompted for.  The following symbols are legal:
667
668 @table @code
669
670 @item From
671 @cindex From
672 @findex user-full-name
673 @findex user-mail-address
674 This required header will be filled out with the result of the
675 @code{message-make-from} function, which depends on the
676 @code{message-from-style}, @code{user-full-name},
677 @code{user-mail-address} variables.
678
679 @item Subject
680 @cindex Subject
681 This required header will be prompted for if not present already. 
682
683 @item Newsgroups
684 @cindex Newsgroups
685 This required header says which newsgroups the article is to be posted
686 to.  If it isn't present already, it will be prompted for.
687
688 @item Organization
689 @cindex organization
690 This optional header will be filled out depending on the
691 @code{message-user-organization} variable.
692 @code{message-user-organization-file} will be used if that variable is
693 @code{t}.
694
695 @item Lines
696 @cindex Lines
697 This optional header will be computed by Message.
698
699 @item Message-ID
700 @cindex Message-ID
701 @vindex mail-host-address
702 @findex system-name
703 @cindex Sun
704 This required header will be generated by Message.  A unique ID will be
705 created based on the date, time, user name and system name.  Message will
706 use @code{mail-host-address} as the fully qualified domain name (FQDN)
707 of the machine if that variable is defined.  If not, it will use
708 @code{system-name}, which doesn't report a FQDN on some machines --
709 notably Suns.
710
711 @item X-Newsreader
712 @cindex X-Newsreader
713 This optional header will be filled out according to the
714 @code{message-newsreader} local variable.
715
716 @item X-Mailer
717 This optional header will be filled out according to the
718 @code{message-mailer} local variable, unless there already is an
719 @code{X-Newsreader} header present.
720
721 @item In-Reply-To
722 This optional header is filled out using the @code{Date} and @code{From}
723 header of the article being replied to.
724
725 @item Expires
726 @cindex Expires
727 This extremely optional header will be inserted according to the
728 @code{message-expires} variable.  It is highly deprecated and shouldn't
729 be used unless you know what you're doing.
730
731 @item Distribution
732 @cindex Distribution
733 This optional header is filled out according to the
734 @code{message-distribution-function} variable.  It is a deprecated and
735 much misunderstood header.
736
737 @item Path
738 @cindex path
739 This extremely optional header should probably never be used.
740 However, some @emph{very} old servers require that this header is
741 present.  @code{message-user-path} further controls how this
742 @code{Path} header is to look.  If it is @code{nil}, use the server name
743 as the leaf node.  If it is a string, use the string.  If it is neither
744 a string nor @code{nil}, use the user name only.  However, it is highly
745 unlikely that you should need to fiddle with this variable at all.
746 @end table
747
748 @findex yow
749 @cindex Mime-Version
750 In addition, you can enter conses into this list.  The car of this cons
751 should be a symbol.  This symbol's name is the name of the header, and
752 the cdr can either be a string to be entered verbatim as the value of
753 this header, or it can be a function to be called.  This function should
754 return a string to be inserted.  For instance, if you want to insert
755 @code{Mime-Version: 1.0}, you should enter @code{(Mime-Version . "1.0")}
756 into the list.  If you want to insert a funny quote, you could enter
757 something like @code{(X-Yow . yow)} into the list.  The function
758 @code{yow} will then be called without any arguments.
759
760 If the list contains a cons where the car of the cons is
761 @code{optional}, the cdr of this cons will only be inserted if it is
762 non-@code{nil}.
763
764 Other variables for customizing outgoing news articles:
765
766 @table @code
767
768 @item message-syntax-checks
769 @vindex message-syntax-checks
770 If non-@code{nil}, Message will attempt to check the legality of the
771 headers, as well as some other stuff, before posting.  You can control
772 the granularity of the check by adding or removing elements from this
773 list.  Legal elements are:
774
775 @table @code
776 @item subject-cmsg 
777 Check the subject for commands.
778 @item sender
779 @cindex Sender
780 Insert a new @code{Sender} header if the @code{From} header looks odd. 
781 @item multiple-headers 
782 Check for the existence of multiple equal headers.
783 @item sendsys 
784 @cindex sendsys
785 Check for the existence of version and sendsys commands.
786 @item message-id
787 Check whether the @code{Message-ID} looks ok.
788 @item from
789 Check whether the @code{From} header seems nice.
790 @item long-lines 
791 @cindex long lines
792 Check for too long lines.
793 @item control-chars
794 Check for illegal characters.
795 @item size
796 Check for excessive size.
797 @item new-text
798 Check whether there is any new text in the messages.
799 @item signature
800 Check the length of the signature.
801 @item approved
802 @cindex approved
803 Check whether the article has an @code{Approved} header, which is
804 something only moderators should include.
805 @item empty
806 Check whether the article is empty.
807 @item empty-headers
808 Check whether any of the headers are empty.
809 @item existing-newsgroups
810 Check whether the newsgroups mentioned in the @code{Newsgroups} and 
811 @code{Followup-To} headers exist.
812 @item valid-newsgroups
813 Check whether the @code{Newsgroups} and @code{Followup-to} headers
814 are valid syntactically.
815 @item shorten-followup-to
816 Check whether to add a @code{Followup-to} header to shorten the number
817 of groups to post to.
818 @end table
819
820 All these conditions are checked by default.
821
822 @item message-ignored-news-headers
823 @vindex message-ignored-news-headers
824 Regexp of headers to be removed before posting.  The default is@*
825 @samp{^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:}.
826
827 @item message-default-news-headers
828 @vindex message-default-news-headers
829 This string is inserted at the end of the headers in all message
830 buffers that are initialized as news.
831
832 @end table
833
834
835 @node News Variables
836 @section News Variables
837
838 @table @code
839 @item message-send-news-function
840 @vindex message-send-news-function
841 Function used to send the current buffer as news.  The default is
842 @code{message-send-news}. 
843
844 @item message-post-method
845 @vindex message-post-method
846 Method used for posting a prepared news message.
847
848 @end table
849
850
851 @node Various Message Variables
852 @section Various Message Variables
853
854 @table @code
855 @item message-signature-separator
856 @vindex message-signature-separator
857 Regexp matching the signature separator.  It is @samp{^-- *$} by
858 default. 
859
860 @item mail-header-separator
861 @vindex mail-header-separator
862 String used to separate the headers from the body.  It is @samp{--text
863 follows this line--} by default.
864
865 @item message-directory
866 @vindex message-directory
867 Directory used by many mailey things.  The default is @file{~/Mail/}. 
868
869 @item message-autosave-directory
870 @vindex message-autosave-directory
871 Directory where message buffers will be autosaved to.
872
873 @item message-signature-setup-hook
874 @vindex message-signature-setup-hook
875 Hook run when initializing the message buffer.  It is run after the
876 headers have been inserted but before the signature has been inserted. 
877
878 @item message-setup-hook
879 @vindex message-setup-hook
880 Hook run as the last thing when the message buffer has been initialized.
881
882 @item message-header-setup-hook
883 @vindex message-header-setup-hook
884 Hook called narrowed to the headers after initializing the headers. 
885
886 @item message-send-hook
887 @vindex message-send-hook
888 Hook run before sending messages.
889
890 @item message-send-mail-hook
891 @vindex message-send-mail-hook
892 Hook run before sending mail messages.
893
894 @item message-send-news-hook
895 @vindex message-send-news-hook
896 Hook run before sending news messages.
897
898 @item message-sent-hook
899 @vindex message-sent-hook
900 Hook run after sending messages.
901
902 @item message-mode-syntax-table
903 @vindex message-mode-syntax-table
904 Syntax table used in message mode buffers.
905
906 @end table
907
908
909
910 @node Sending Variables
911 @section Sending Variables
912
913 @table @code
914
915 @item message-fcc-handler-function 
916 @vindex message-fcc-handler-function 
917 A function called to save outgoing articles.  This function will be
918 called with the name of the file to store the article in. The default
919 function is @code{rmail-output} which saves in Unix mailbox format.
920
921 @item message-courtesy-message
922 @vindex message-courtesy-message
923 When sending combined messages, this string is inserted at the start of
924 the mailed copy.  If the string contains the format spec @samp{%s}, the
925 newsgroups the article has been posted to will be inserted there.  If
926 this variable is @code{nil}, no such courtesy message will be added.
927 The default value is @samp{"The following message is a courtesy copy of
928 an article\nthat has been posted to %s as well.\n\n"}. 
929
930 @end table
931
932
933 @node Message Buffers
934 @section Message Buffers
935
936 Message will generate new buffers with unique buffer names when you
937 request a message buffer.  When you send the message, the buffer isn't
938 normally killed off.  Its name is changed and a certain number of old
939 message buffers are kept alive.
940
941 @table @code
942 @item message-generate-new-buffers
943 @vindex message-generate-new-buffers
944 If non-@code{nil}, generate new buffers.  The default is @code{t}.  If
945 this is a function, call that function with three parameters: The type,
946 the to address and the group name.  (Any of these may be @code{nil}.)
947 The function should return the new buffer name.
948
949 @item message-max-buffers
950 @vindex message-max-buffers
951 This variable says how many old message buffers to keep.  If there are
952 more message buffers than this, the oldest buffer will be killed.  The
953 default is 10.  If this variable is @code{nil}, no old message buffers
954 will ever be killed.
955
956 @item message-send-rename-function
957 @vindex message-send-rename-function
958 After sending a message, the buffer is renamed from, for instance,
959 @samp{*reply to Lars*} to @samp{*sent reply to Lars*}.  If you don't
960 like this, set this variable to a function that renames the buffer in a
961 manner you like.  If you don't want to rename the buffer at all, you can
962 say:
963
964 @lisp
965 (setq message-send-rename-function 'ignore)
966 @end lisp
967
968 @item message-kill-buffer-on-exit
969 @findex message-kill-buffer-on-exit
970 If non-@code{nil}, kill the buffer immediately on exit.
971
972 @end table
973
974
975 @node Message Actions
976 @section Message Actions
977
978 When Message is being used from a news/mail reader, the reader is likely
979 to want to perform some task after the message has been sent.  Perhaps
980 return to the previous window configuration or mark an article as
981 replied.  
982
983 @vindex message-kill-actions
984 @vindex message-postpone-actions
985 @vindex message-exit-actions
986 @vindex message-send-actions
987 The user may exit from the message buffer in various ways.  The most
988 common is @kbd{C-c C-c}, which sends the message and exits.  Other
989 possibilities are @kbd{C-c C-s} which just sends the message, @kbd{C-c
990 C-d} which postpones the message editing and buries the message buffer,
991 and @kbd{C-c C-k} which kills the message buffer.  Each of these actions
992 have lists associated with them that contains actions to be executed:
993 @code{message-send-actions}, @code{message-exit-actions},
994 @code{message-postpone-actions}, and @code{message-kill-actions}.  
995
996 Message provides a function to interface with these lists:
997 @code{message-add-action}.  The first parameter is the action to be
998 added, and the rest of the arguments are which lists to add this action
999 to.  Here's an example from Gnus:
1000
1001 @lisp
1002   (message-add-action
1003    `(set-window-configuration ,(current-window-configuration))
1004    'exit 'postpone 'kill)
1005 @end lisp
1006
1007 This restores the Gnus window configuration when the message buffer is
1008 killed, postponed or exited.
1009
1010 An @dfn{action} can be either: a normal function, or a list where the
1011 @code{car} is a function and the @code{cdr} is the list of arguments, or
1012 a form to be @code{eval}ed.
1013
1014 @node Index
1015 @chapter Index
1016 @printindex cp
1017
1018 @node Key Index
1019 @chapter Key Index
1020 @printindex ky
1021
1022 @summarycontents
1023 @contents
1024 @bye
1025
1026 @c End: