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