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