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