Merge remote branch 'origin/no-gnus'
[gnus] / texi / message.texi
1 \input texinfo                  @c -*-texinfo-*-
2
3 @include gnus-overrides.texi
4
5 @setfilename message
6 @settitle Message Manual
7 @synindex fn cp
8 @synindex vr cp
9 @synindex pg cp
10 @copying
11 This file documents Message, the Emacs message composition mode.
12
13 Copyright @copyright{} 1996-2012 Free Software Foundation, Inc.
14
15 @quotation
16 Permission is granted to copy, distribute and/or modify this document
17 under the terms of the GNU Free Documentation License, Version 1.3 or
18 any later version published by the Free Software Foundation; with no
19 Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
20 and with the Back-Cover Texts as in (a) below.  A copy of the license
21 is included in the section entitled ``GNU Free Documentation License''.
22
23 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
24 modify this GNU manual.  Buying copies from the FSF supports it in
25 developing GNU and promoting software freedom.''
26 @end quotation
27 @end copying
28
29 @dircategory Emacs network features
30 @direntry
31 * Message: (message).           Mail and news composition mode that
32                                   goes with Gnus.
33 @end direntry
34 @iftex
35 @finalout
36 @end iftex
37
38 @titlepage
39 @ifset WEBHACKDEVEL
40 @title Message Manual (DEVELOPMENT VERSION)
41 @end ifset
42 @ifclear WEBHACKDEVEL
43 @title Message Manual
44 @end ifclear
45
46 @author by Lars Magne Ingebrigtsen
47 @page
48
49 @vskip 0pt plus 1filll
50 @insertcopying
51 @end titlepage
52
53 @summarycontents
54 @contents
55
56 @node Top
57 @top Message
58
59 @ifnottex
60 @insertcopying
61 @end ifnottex
62
63 All message composition from Gnus (both mail and news) takes place in
64 Message mode buffers.
65
66 @menu
67 * Interface::         Setting up message buffers.
68 * Commands::          Commands you can execute in message mode buffers.
69 * Variables::         Customizing the message buffers.
70 * Compatibility::     Making Message backwards compatible.
71 * Appendices::        More technical things.
72 * GNU Free Documentation License:: The license for this documentation.
73 * Index::             Variable, function and concept index.
74 * Key Index::         List of Message mode keys.
75 @end menu
76
77 @c Adjust ../Makefile.in if you change the following lines:
78 Message is distributed with Gnus.  The Gnus distribution
79 @c
80 corresponding to this manual is Ma Gnus v0.4
81
82
83 @node Interface
84 @chapter Interface
85
86 When a program (or a person) wants to respond to a message---reply,
87 follow up, forward, cancel---the program (or person) should just put
88 point in the buffer where the message is and call the required command.
89 @code{Message} will then pop up a new @code{message} mode buffer with
90 appropriate headers filled out, and the user can edit the message before
91 sending it.
92
93 @menu
94 * New Mail Message::     Editing a brand new mail message.
95 * New News Message::     Editing a brand new news message.
96 * Reply::                Replying via mail.
97 * Wide Reply::           Responding to all people via mail.
98 * Followup::             Following up via news.
99 * Canceling News::       Canceling a news article.
100 * Superseding::          Superseding a message.
101 * Forwarding::           Forwarding a message via news or mail.
102 * Resending::            Resending a mail message.
103 * Bouncing::             Bouncing a mail message.
104 * Mailing Lists::        Send mail to mailing lists.
105 @end menu
106
107 You can customize the Message Mode tool bar, see @kbd{M-x
108 customize-apropos RET message-tool-bar}.  This feature is only available
109 in Emacs.
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 are @code{nil}, 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 are @code{nil}, 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 (@pxref{Responses}), but you can change the behavior to suit your needs
143 by fiddling with the @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                (list (cons 'To (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 list.  In this case, it
161 returns @code{((To . "Whom"))} if it has an opinion as to what the To
162 header should be.  If it does not, it should just return @code{nil}, and
163 the normal methods for determining the To header will be used.
164
165 Each list element should be a cons, where the @sc{car} should be the
166 name of a header (e.g. @code{Cc}) and the @sc{cdr} should be the header
167 value (e.g. @samp{larsi@@ifi.uio.no}).  All these headers will be
168 inserted into the head of the outgoing mail.
169
170
171 @node Wide Reply
172 @section Wide Reply
173
174 @findex message-wide-reply
175 The @code{message-wide-reply} pops up a message buffer that's a wide
176 reply to the message in the current buffer.  A @dfn{wide reply} is a
177 reply that goes out to all people listed in the @code{To}, @code{From}
178 (or @code{Reply-to}) and @code{Cc} headers.
179
180 @vindex message-wide-reply-to-function
181 Message uses the normal methods to determine where wide replies are to go,
182 but you can change the behavior to suit your needs by fiddling with the
183 @code{message-wide-reply-to-function}.  It is used in the same way as
184 @code{message-reply-to-function} (@pxref{Reply}).
185
186 @vindex message-dont-reply-to-names
187 Addresses that match the @code{message-dont-reply-to-names} regular
188 expression (or list of regular expressions) will be removed from the
189 @code{Cc} header. A value of @code{nil} means exclude your name only.
190
191 @vindex message-prune-recipient-rules
192 @code{message-prune-recipient-rules} is used to prune the addresses
193 used when doing a wide reply.  It's meant to be used to remove
194 duplicate addresses and the like.  It's a list of lists, where the
195 first element is a regexp to match the address to trigger the rule,
196 and the second is a regexp that will be expanded based on the first,
197 to match addresses to be pruned.
198
199 It's complicated to explain, but it's easy to use.
200
201 For instance, if you get an email from @samp{foo@@example.org}, but
202 @samp{foo@@zot.example.org} is also in the @code{Cc} list, then your
203 wide reply will go out to both these addresses, since they are unique.
204
205 To avoid this, do something like the following:
206
207 @lisp
208 (setq message-prune-recipient-rules
209       '(("^\\([^@@]+\\)@@\\(.*\\)" "\\1@@.*[.]\\2")))
210 @end lisp
211
212 If, for instance, you want all wide replies that involve messages from
213 @samp{cvs@@example.org} to go to that address, and nowhere else (i.e.,
214 remove all other recipients if @samp{cvs@@example.org} is in the
215 recipient list:
216
217 @lisp
218 (setq message-prune-recipient-rules
219       '(("cvs@@example.org" ".")))
220 @end lisp
221
222 @vindex message-wide-reply-confirm-recipients
223 If @code{message-wide-reply-confirm-recipients} is non-@code{nil} you
224 will be asked to confirm that you want to reply to multiple
225 recipients.  The default is @code{nil}.
226
227 @node Followup
228 @section Followup
229
230 @findex message-followup
231 The @code{message-followup} command pops up a message buffer that's a
232 followup to the message in the current buffer.
233
234 @vindex message-followup-to-function
235 Message uses the normal methods to determine where followups are to go,
236 but you can change the behavior to suit your needs by fiddling with the
237 @code{message-followup-to-function}.  It is used in the same way as
238 @code{message-reply-to-function} (@pxref{Reply}).
239
240 @vindex message-use-followup-to
241 The @code{message-use-followup-to} variable says what to do about
242 @code{Followup-To} headers.  If it is @code{use}, always use the value.
243 If it is @code{ask} (which is the default), ask whether to use the
244 value.  If it is @code{t}, use the value unless it is @samp{poster}.  If
245 it is @code{nil}, don't use the value.
246
247
248 @node Canceling News
249 @section Canceling News
250
251 @findex message-cancel-news
252 The @code{message-cancel-news} command cancels the article in the
253 current buffer.
254
255 @vindex message-cancel-message
256 The value of @code{message-cancel-message} is inserted in the body of
257 the cancel message.  The default is @samp{I am canceling my own
258 article.}.
259
260 @cindex Cancel Locks
261 @vindex message-insert-canlock
262 @cindex canlock
263 When Message posts news messages, it inserts @code{Cancel-Lock}
264 headers by default.  This is a cryptographic header that ensures that
265 only you can cancel your own messages, which is nice.  The downside
266 is that if you lose your @file{.emacs} file (which is where Gnus
267 stores the secret cancel lock password (which is generated
268 automatically the first time you use this feature)), you won't be
269 able to cancel your message.  If you want to manage a password yourself,
270 you can put something like the following in your @file{~/.gnus.el} file:
271
272 @lisp
273 (setq canlock-password "geheimnis"
274       canlock-password-for-verify canlock-password)
275 @end lisp
276
277 Whether to insert the header or not is controlled by the
278 @code{message-insert-canlock} variable.
279
280 Not many news servers respect the @code{Cancel-Lock} header yet, but
281 this is expected to change in the future.
282
283
284 @node Superseding
285 @section Superseding
286
287 @findex message-supersede
288 The @code{message-supersede} command pops up a message buffer that will
289 supersede the message in the current buffer.
290
291 @vindex message-ignored-supersedes-headers
292 Headers matching the @code{message-ignored-supersedes-headers} are
293 removed before popping up the new message buffer.  The default is@*
294 @samp{^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|@*
295 ^Received:\\|^X-From-Line:\\|^X-Trace:\\|^X-Complaints-To:\\|@*
296 Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|@*
297 ^X-Complaints-To:\\|^Cancel-Lock:\\|^Cancel-Key:\\|^X-Hashcash:\\|@*
298 ^X-Payment:\\|^Approved:}.
299
300
301
302 @node Forwarding
303 @section Forwarding
304
305 @findex message-forward
306 The @code{message-forward} command pops up a message buffer to forward
307 the message in the current buffer.  If given a prefix, forward using
308 news.
309
310 @table @code
311 @item message-forward-ignored-headers
312 @vindex message-forward-ignored-headers
313 All headers that match this regexp will be deleted when forwarding a message.
314
315 @item message-make-forward-subject-function
316 @vindex message-make-forward-subject-function
317 A list of functions that are called to generate a subject header for
318 forwarded messages.  The subject generated by the previous function is
319 passed into each successive function.
320
321 The provided functions are:
322
323 @table @code
324 @item message-forward-subject-author-subject
325 @findex message-forward-subject-author-subject
326 Source of article (author or newsgroup), in brackets followed by the
327 subject.
328
329 @item message-forward-subject-fwd
330 Subject of article with @samp{Fwd:} prepended to it.
331 @end table
332
333 @item message-wash-forwarded-subjects
334 @vindex message-wash-forwarded-subjects
335 If this variable is @code{t}, the subjects of forwarded messages have
336 the evidence of previous forwards (such as @samp{Fwd:}, @samp{Re:},
337 @samp{(fwd)}) removed before the new subject is
338 constructed.  The default value is @code{nil}.
339
340 @item message-forward-as-mime
341 @vindex message-forward-as-mime
342 If this variable is @code{t} (the default), forwarded messages are
343 included as inline @acronym{MIME} RFC822 parts.  If it's @code{nil}, forwarded
344 messages will just be copied inline to the new message, like previous,
345 non @acronym{MIME}-savvy versions of Gnus would do.
346
347 @item message-forward-before-signature
348 @vindex message-forward-before-signature
349 If non-@code{nil}, put forwarded message before signature, else after.
350
351 @end table
352
353
354 @node Resending
355 @section Resending
356
357 @findex message-resend
358 The @code{message-resend} command will prompt the user for an address
359 and resend the message in the current buffer to that address.
360
361 @vindex message-ignored-resent-headers
362 Headers that match the @code{message-ignored-resent-headers} regexp will
363 be removed before sending the message.
364
365
366 @node Bouncing
367 @section Bouncing
368
369 @findex message-bounce
370 The @code{message-bounce} command will, if the current buffer contains a
371 bounced mail message, pop up a message buffer stripped of the bounce
372 information.  A @dfn{bounced message} is typically a mail you've sent
373 out that has been returned by some @code{mailer-daemon} as
374 undeliverable.
375
376 @vindex message-ignored-bounced-headers
377 Headers that match the @code{message-ignored-bounced-headers} regexp
378 will be removed before popping up the buffer.  The default is
379 @samp{^\\(Received\\|Return-Path\\|Delivered-To\\):}.
380
381
382 @node Mailing Lists
383 @section Mailing Lists
384
385 @cindex Mail-Followup-To
386 Sometimes while posting to mailing lists, the poster needs to direct
387 followups to the post to specific places.  The Mail-Followup-To (MFT)
388 was created to enable just this.  Three example scenarios where this is
389 useful:
390
391 @itemize @bullet
392 @item
393 A mailing list poster can use MFT to express that responses should be
394 sent to just the list, and not the poster as well.  This will happen
395 if the poster is already subscribed to the list.
396
397 @item
398 A mailing list poster can use MFT to express that responses should be
399 sent to the list and the poster as well.  This will happen if the poster
400 is not subscribed to the list.
401
402 @item
403 If a message is posted to several mailing lists, MFT may also be used
404 to direct the following discussion to one list only, because
405 discussions that are spread over several lists tend to be fragmented
406 and very difficult to follow.
407
408 @end itemize
409
410 Gnus honors the MFT header in other's messages (i.e. while following
411 up to someone else's post) and also provides support for generating
412 sensible MFT headers for outgoing messages as well.
413
414 @c @menu
415 @c * Honoring an MFT post::        What to do when one already exists
416 @c * Composing with a MFT header:: Creating one from scratch.
417 @c @end menu
418
419 @c @node Composing with a MFT header
420 @subsection  Composing a correct MFT header automagically
421
422 The first step in getting Gnus to automagically generate a MFT header
423 in posts you make is to give Gnus a list of the mailing lists
424 addresses you are subscribed to.  You can do this in more than one
425 way.  The following variables would come in handy.
426
427 @table @code
428
429 @vindex message-subscribed-addresses
430 @item message-subscribed-addresses
431 This should be a list of addresses the user is subscribed to.  Its
432 default value is @code{nil}.  Example:
433 @lisp
434 (setq message-subscribed-addresses
435       '("ding@@gnus.org" "bing@@noose.org"))
436 @end lisp
437
438 @vindex message-subscribed-regexps
439 @item message-subscribed-regexps
440 This should be a list of regexps denoting the addresses of mailing
441 lists subscribed to.  Default value is @code{nil}.  Example: If you
442 want to achieve the same result as above:
443 @lisp
444 (setq message-subscribed-regexps
445       '("\\(ding@@gnus\\)\\|\\(bing@@noose\\)\\.org")
446 @end lisp
447
448 @vindex message-subscribed-address-functions
449 @item message-subscribed-address-functions
450 This can be a list of functions to be called (one at a time!!) to
451 determine the value of MFT headers.  It is advisable that these
452 functions not take any arguments.  Default value is @code{nil}.
453
454 There is a pre-defined function in Gnus that is a good candidate for
455 this variable.  @code{gnus-find-subscribed-addresses} is a function
456 that returns a list of addresses corresponding to the groups that have
457 the @code{subscribed} (@pxref{Group Parameters, ,Group Parameters,
458 gnus, The Gnus Manual}) group parameter set to a non-@code{nil} value.
459 This is how you would do it.
460
461 @lisp
462 (setq message-subscribed-address-functions
463       '(gnus-find-subscribed-addresses))
464 @end lisp
465
466 @vindex message-subscribed-address-file
467 @item message-subscribed-address-file
468 You might be one organized human freak and have a list of addresses of
469 all subscribed mailing lists in a separate file!  Then you can just
470 set this variable to the name of the file and life would be good.
471
472 @end table
473
474 You can use one or more of the above variables.  All their values are
475 ``added'' in some way that works :-)
476
477 Now you are all set.  Just start composing a message as you normally do.
478 And just send it; as always.  Just before the message is sent out, Gnus'
479 MFT generation thingy kicks in and checks if the message already has a
480 MFT field.  If there is one, it is left alone.  (Except if it's empty -
481 in that case, the field is removed and is not replaced with an
482 automatically generated one.  This lets you disable MFT generation on a
483 per-message basis.)  If there is none, then the list of recipient
484 addresses (in the To: and Cc: headers) is checked to see if one of them
485 is a list address you are subscribed to.  If none of them is a list
486 address, then no MFT is generated; otherwise, a MFT is added to the
487 other headers and set to the value of all addresses in To: and Cc:
488
489 @kindex C-c C-f C-a
490 @findex message-generate-unsubscribed-mail-followup-to
491 @kindex C-c C-f C-m
492 @findex message-goto-mail-followup-to
493 Hm.  ``So'', you ask, ``what if I send an email to a list I am not
494 subscribed to?  I want my MFT to say that I want an extra copy.''  (This
495 is supposed to be interpreted by others the same way as if there were no
496 MFT, but you can use an explicit MFT to override someone else's
497 to-address group parameter.)  The function
498 @code{message-generate-unsubscribed-mail-followup-to} might come in
499 handy.  It is bound to @kbd{C-c C-f C-a} by default.  In any case, you
500 can insert a MFT of your own choice; @kbd{C-c C-f C-m}
501 (@code{message-goto-mail-followup-to}) will help you get started.
502
503 @c @node Honoring an MFT post
504 @subsection Honoring an MFT post
505
506 @vindex message-use-mail-followup-to
507 When you followup to a post on a mailing list, and the post has a MFT
508 header, Gnus' action will depend on the value of the variable
509 @code{message-use-mail-followup-to}.  This variable can be one of:
510
511 @table @code
512 @item use
513  Always honor MFTs.  The To: and Cc: headers in your followup will be
514  derived from the MFT header of the original post.  This is the default.
515
516 @item nil
517  Always dishonor MFTs (just ignore the darned thing)
518
519 @item ask
520 Gnus will prompt you for an action.
521
522 @end table
523
524 It is considered good netiquette to honor MFT, as it is assumed the
525 fellow who posted a message knows where the followups need to go
526 better than you do.
527
528 @node Commands
529 @chapter Commands
530
531 @menu
532 * Buffer Entry::        Commands after entering a Message buffer.
533 * Header Commands::     Commands for moving headers or changing headers.
534 * Movement::            Moving around in message buffers.
535 * Insertion::           Inserting things into message buffers.
536 * MIME::                @acronym{MIME} considerations.
537 * IDNA::                Non-@acronym{ASCII} domain name considerations.
538 * Security::            Signing and encrypting messages.
539 * Various Commands::    Various things.
540 * Sending::             Actually sending the message.
541 * Mail Aliases::        How to use mail aliases.
542 * Spelling::            Having Emacs check your spelling.
543 @end menu
544
545
546 @node Buffer Entry
547 @section Buffer Entry
548 @cindex undo
549 @kindex C-_
550
551 You most often end up in a Message buffer when responding to some other
552 message of some sort.  Message does lots of handling of quoted text, and
553 may remove signatures, reformat the text, or the like---depending on
554 which used settings you're using.  Message usually gets things right,
555 but sometimes it stumbles.  To help the user unwind these stumblings,
556 Message sets the undo boundary before each major automatic action it
557 takes.  If you press the undo key (usually located at @kbd{C-_}) a few
558 times, you will get back the un-edited message you're responding to.
559
560
561 @node Header Commands
562 @section Header Commands
563
564 @subsection Commands for moving to headers
565
566 These following commands move to the header in question.  If it doesn't
567 exist, it will be inserted.
568
569 @table @kbd
570
571 @item C-c ?
572 @kindex C-c ?
573 @findex describe-mode
574 Describe the message mode.
575
576 @item C-c C-f C-t
577 @kindex C-c C-f C-t
578 @findex message-goto-to
579 Go to the @code{To} header (@code{message-goto-to}).
580
581 @item C-c C-f C-o
582 @kindex C-c C-f C-o
583 @findex message-goto-from
584 Go to the @code{From} header (@code{message-goto-from}).  (The ``o''
585 in the key binding is for Originator.)
586
587 @item C-c C-f C-b
588 @kindex C-c C-f C-b
589 @findex message-goto-bcc
590 Go to the @code{Bcc} header (@code{message-goto-bcc}).
591
592 @item C-c C-f C-w
593 @kindex C-c C-f C-w
594 @findex message-goto-fcc
595 Go to the @code{Fcc} header (@code{message-goto-fcc}).
596
597 @item C-c C-f C-c
598 @kindex C-c C-f C-c
599 @findex message-goto-cc
600 Go to the @code{Cc} header (@code{message-goto-cc}).
601
602 @item C-c C-f C-s
603 @kindex C-c C-f C-s
604 @findex message-goto-subject
605 Go to the @code{Subject} header (@code{message-goto-subject}).
606
607 @item C-c C-f C-r
608 @kindex C-c C-f C-r
609 @findex message-goto-reply-to
610 Go to the @code{Reply-To} header (@code{message-goto-reply-to}).
611
612 @item C-c C-f C-n
613 @kindex C-c C-f C-n
614 @findex message-goto-newsgroups
615 Go to the @code{Newsgroups} header (@code{message-goto-newsgroups}).
616
617 @item C-c C-f C-d
618 @kindex C-c C-f C-d
619 @findex message-goto-distribution
620 Go to the @code{Distribution} header (@code{message-goto-distribution}).
621
622 @item C-c C-f C-f
623 @kindex C-c C-f C-f
624 @findex message-goto-followup-to
625 Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
626
627 @item C-c C-f C-k
628 @kindex C-c C-f C-k
629 @findex message-goto-keywords
630 Go to the @code{Keywords} header (@code{message-goto-keywords}).
631
632 @item C-c C-f C-u
633 @kindex C-c C-f C-u
634 @findex message-goto-summary
635 Go to the @code{Summary} header (@code{message-goto-summary}).
636
637 @item C-c C-f C-i
638 @kindex C-c C-f C-i
639 @findex message-insert-or-toggle-importance
640 This inserts the @samp{Importance:} header with a value of
641 @samp{high}.  This header is used to signal the importance of the
642 message to the receiver.  If the header is already present in the
643 buffer, it cycles between the three valid values according to RFC
644 1376: @samp{low}, @samp{normal} and @samp{high}.
645
646 @item C-c C-f C-a
647 @kindex C-c C-f C-a
648 @findex message-generate-unsubscribed-mail-followup-to
649 Insert a reasonable @samp{Mail-Followup-To:} header
650 (@pxref{Mailing Lists}) in a post to an
651 unsubscribed list.  When making original posts to a mailing list you are
652 not subscribed to, you have to type in a @samp{Mail-Followup-To:} header
653 by hand.  The contents, usually, are the addresses of the list and your
654 own address.  This function inserts such a header automatically.  It
655 fetches the contents of the @samp{To:} header in the current mail
656 buffer, and appends the current @code{user-mail-address}.
657
658 If the optional argument @code{include-cc} is non-@code{nil}, the
659 addresses in the @samp{Cc:} header are also put into the
660 @samp{Mail-Followup-To:} header.
661
662 @end table
663
664 @subsection  Commands to change headers
665
666 @table @kbd
667
668 @item C-c C-o
669 @kindex C-c C-o
670 @findex message-sort-headers
671 @vindex message-header-format-alist
672 Sort headers according to @code{message-header-format-alist}
673 (@code{message-sort-headers}).
674
675 @item C-c C-t
676 @kindex C-c C-t
677 @findex message-insert-to
678 Insert a @code{To} header that contains the @code{Reply-To} or
679 @code{From} header of the message you're following up
680 (@code{message-insert-to}).
681
682 @item C-c C-n
683 @kindex C-c C-n
684 @findex message-insert-newsgroups
685 Insert a @code{Newsgroups} header that reflects the @code{Followup-To}
686 or @code{Newsgroups} header of the article you're replying to
687 (@code{message-insert-newsgroups}).
688
689 @item C-c C-l
690 @kindex C-c C-l
691 @findex message-to-list-only
692 Send a message to the list only.  Remove all addresses but the list
693 address from @code{To:} and @code{Cc:} headers.
694
695 @item C-c M-n
696 @kindex C-c M-n
697 @findex message-insert-disposition-notification-to
698 Insert a request for a disposition
699 notification.  (@code{message-insert-disposition-notification-to}).
700 This means that if the recipient supports RFC 2298 she might send you a
701 notification that she received the message.
702
703 @item M-x message-insert-importance-high
704 @kindex M-x message-insert-importance-high
705 @findex message-insert-importance-high
706 @cindex Importance
707 Insert an @samp{Importance} header with a value of @samp{high},
708 deleting headers if necessary.
709
710 @item M-x message-insert-importance-low
711 @kindex M-x message-insert-importance-low
712 @findex message-insert-importance-low
713 @cindex Importance
714 Insert an @samp{Importance} header with a value of @samp{low}, deleting
715 headers if necessary.
716
717 @item C-c C-f s
718 @kindex C-c C-f s
719 @findex message-change-subject
720 @cindex Subject
721 Change the current @samp{Subject} header.  Ask for new @samp{Subject}
722 header and append @samp{(was: <Old Subject>)}.  The old subject can be
723 stripped on replying, see @code{message-subject-trailing-was-query}
724 (@pxref{Message Headers}).
725
726 @item C-c C-f x
727 @kindex C-c C-f x
728 @findex message-cross-post-followup-to
729 @vindex message-cross-post-default
730 @vindex message-cross-post-note-function
731 @cindex X-Post
732 @cindex cross-post
733 Set up the @samp{FollowUp-To} header with a target newsgroup for a
734 cross-post, add that target newsgroup to the @samp{Newsgroups} header if
735 it is not a member of @samp{Newsgroups}, and insert a note in the body.
736 If @code{message-cross-post-default} is @code{nil} or if this command is
737 called with a prefix-argument, only the @samp{FollowUp-To} header will
738 be set but the target newsgroup will not be added to the
739 @samp{Newsgroups} header.  The function to insert a note is controlled
740 by the @code{message-cross-post-note-function} variable.
741
742 @item C-c C-f t
743 @kindex C-c C-f t
744 @findex message-reduce-to-to-cc
745 Replace contents of @samp{To} header with contents of @samp{Cc} or
746 @samp{Bcc} header.  (Iff @samp{Cc} header is not present, @samp{Bcc}
747 header will be used instead.)
748
749 @item C-c C-f w
750 @kindex C-c C-f w
751 @findex message-insert-wide-reply
752 Insert @samp{To} and @samp{Cc} headers as if you were doing a wide
753 reply even if the message was not made for a wide reply first.
754
755 @item C-c C-f a
756 @kindex C-c C-f a
757 @findex message-add-archive-header
758 @vindex message-archive-header
759 @vindex message-archive-note
760 @cindex X-No-Archive
761 Insert @samp{X-No-Archive: Yes} in the header and a note in the body.
762 The header and the note can be customized using
763 @code{message-archive-header} and @code{message-archive-note}.  When
764 called with a prefix argument, ask for a text to insert.  If you don't
765 want the note in the body, set @code{message-archive-note} to
766 @code{nil}.
767
768 @end table
769
770
771 @node Movement
772 @section Movement
773
774 @table @kbd
775 @item C-c C-b
776 @kindex C-c C-b
777 @findex message-goto-body
778 Move to the beginning of the body of the message
779 (@code{message-goto-body}).
780
781 @item C-c C-i
782 @kindex C-c C-i
783 @findex message-goto-signature
784 Move to the signature of the message (@code{message-goto-signature}).
785
786 @item C-a
787 @kindex C-a
788 @findex message-beginning-of-line
789 @vindex message-beginning-of-line
790 If at beginning of header value, go to beginning of line, else go to
791 beginning of header value.  (The header value comes after the header
792 name and the colon.)  This behavior can be disabled by toggling
793 the variable @code{message-beginning-of-line}.
794
795 @end table
796
797
798 @node Insertion
799 @section Insertion
800
801 @table @kbd
802
803 @item C-c C-y
804 @kindex C-c C-y
805 @findex message-yank-original
806 Yank the message that's being replied to into the message buffer
807 (@code{message-yank-original}).
808
809 @item C-c C-M-y
810 @kindex C-c C-M-y
811 @findex message-yank-buffer
812 Prompt for a buffer name and yank the contents of that buffer into the
813 message buffer (@code{message-yank-buffer}).
814
815 @item C-c C-q
816 @kindex C-c C-q
817 @findex message-fill-yanked-message
818 Fill the yanked message (@code{message-fill-yanked-message}).  Warning:
819 Can severely mess up the yanked text if its quoting conventions are
820 strange.  You'll quickly get a feel for when it's safe, though.  Anyway,
821 just remember that @kbd{C-x u} (@code{undo}) is available and you'll be
822 all right.
823
824 @item C-c C-w
825 @kindex C-c C-w
826 @findex message-insert-signature
827 Insert a signature at the end of the buffer
828 (@code{message-insert-signature}).
829
830 @item C-c M-h
831 @kindex C-c M-h
832 @findex message-insert-headers
833 Insert the message headers (@code{message-insert-headers}).
834
835 @item C-c M-m
836 @kindex C-c M-m
837 @findex message-mark-inserted-region
838 Mark some region in the current article with enclosing tags.  See
839 @code{message-mark-insert-begin} and @code{message-mark-insert-end}.
840 When called with a prefix argument, use slrn style verbatim marks
841 (@samp{#v+} and @samp{#v-}).
842
843 @item C-c M-f
844 @kindex C-c M-f
845 @findex message-mark-insert-file
846 Insert a file in the current article with enclosing tags.
847 See @code{message-mark-insert-begin} and @code{message-mark-insert-end}.
848 When called with a prefix argument, use slrn style verbatim marks
849 (@samp{#v+} and @samp{#v-}).
850
851 @end table
852
853
854 @node MIME
855 @section MIME
856 @cindex MML
857 @cindex MIME
858 @cindex multipart
859 @cindex attachment
860
861 Message is a @acronym{MIME}-compliant posting agent.  The user generally
862 doesn't have to do anything to make the @acronym{MIME} happen---Message will
863 automatically add the @code{Content-Type} and
864 @code{Content-Transfer-Encoding} headers.
865
866 @findex mml-attach-file
867 @kindex C-c C-a
868 The most typical thing users want to use the multipart things in
869 @acronym{MIME} for is to add ``attachments'' to mail they send out.
870 This can be done with the @kbd{C-c C-a} command (@kbd{M-x mml-attach-file}),
871 which will prompt for a file name and a @acronym{MIME} type.
872
873 @vindex mml-dnd-protocol-alist
874 @vindex mml-dnd-attach-options
875 If your Emacs supports drag and drop, you can also drop the file in the
876 Message buffer.  The variable @code{mml-dnd-protocol-alist} specifies
877 what kind of action is done when you drop a file into the Message
878 buffer.  The variable @code{mml-dnd-attach-options} controls which
879 @acronym{MIME} options you want to specify when dropping a file.  If it
880 is a list, valid members are @code{type}, @code{description} and
881 @code{disposition}.  @code{disposition} implies @code{type}.  If it is
882 @code{nil}, don't ask for options.  If it is @code{t}, ask the user
883 whether or not to specify options.
884
885 You can also create arbitrarily complex multiparts using the @acronym{MML}
886 language (@pxref{Composing, , Composing, emacs-mime, The Emacs MIME
887 Manual}).
888
889 @node IDNA
890 @section IDNA
891 @cindex IDNA
892 @cindex internationalized domain names
893 @cindex non-ascii domain names
894
895 @acronym{IDNA} is a standard way to encode non-@acronym{ASCII} domain
896 names into a readable @acronym{ASCII} string.  The details can be
897 found in RFC 3490.
898
899 Message is a @acronym{IDNA}-compliant posting agent.  The user
900 generally doesn't have to do anything to make the @acronym{IDNA}
901 happen---Message will encode non-@acronym{ASCII} domain names in @code{From},
902 @code{To}, and @code{Cc} headers automatically.
903
904 Until @acronym{IDNA} becomes more well known, Message queries you
905 whether @acronym{IDNA} encoding of the domain name really should
906 occur.  Some users might not be aware that domain names can contain
907 non-@acronym{ASCII} now, so this gives them a safety net if they accidentally
908 typed a non-@acronym{ASCII} domain name.
909
910 @vindex message-use-idna
911 The @code{message-use-idna} variable control whether @acronym{IDNA} is
912 used.  If the variable is @code{nil} no @acronym{IDNA} encoding will
913 ever happen, if it is set to the symbol @code{ask} the user will be
914 queried, and if set to @code{t} (which is the default if @acronym{IDNA}
915 is fully available) @acronym{IDNA} encoding happens automatically.
916
917 @findex message-idna-to-ascii-rhs
918 If you want to experiment with the @acronym{IDNA} encoding, you can
919 invoke @kbd{M-x message-idna-to-ascii-rhs RET} in the message buffer
920 to have the non-@acronym{ASCII} domain names encoded while you edit
921 the message.
922
923 Note that you must have @uref{http://www.gnu.org/software/libidn/, GNU
924 Libidn} installed in order to use this functionality.
925
926 @node Security
927 @section Security
928 @cindex Security
929 @cindex S/MIME
930 @cindex PGP
931 @cindex PGP/MIME
932 @cindex sign
933 @cindex encrypt
934 @cindex secure
935
936 Using the @acronym{MML} language, Message is able to create digitally
937 signed and digitally encrypted messages.  Message (or rather
938 @acronym{MML}) currently support @acronym{PGP} (RFC 1991),
939 @acronym{PGP/MIME} (RFC 2015/3156) and @acronym{S/MIME}.
940
941 @menu
942 * Signing and encryption::      Signing and encrypting commands.
943 * Using S/MIME::                Using S/MIME
944 * Using PGP/MIME::              Using PGP/MIME
945 * PGP Compatibility::           Compatibility with older implementations
946 @end menu
947
948 @node Signing and encryption
949 @subsection Signing and encrypting commands
950
951 Instructing @acronym{MML} to perform security operations on a
952 @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for
953 signing and the @kbd{C-c C-m c} key map for encryption, as follows.
954 @table @kbd
955
956 @item C-c C-m s s
957 @kindex C-c C-m s s
958 @findex mml-secure-message-sign-smime
959
960 Digitally sign current message using @acronym{S/MIME}.
961
962 @item C-c C-m s o
963 @kindex C-c C-m s o
964 @findex mml-secure-message-sign-pgp
965
966 Digitally sign current message using @acronym{PGP}.
967
968 @item C-c C-m s p
969 @kindex C-c C-m s p
970 @findex mml-secure-message-sign-pgpmime
971
972 Digitally sign current message using @acronym{PGP/MIME}.
973
974 @item C-c C-m c s
975 @kindex C-c C-m c s
976 @findex mml-secure-message-encrypt-smime
977
978 Digitally encrypt current message using @acronym{S/MIME}.
979
980 @item C-c C-m c o
981 @kindex C-c C-m c o
982 @findex mml-secure-message-encrypt-pgp
983
984 Digitally encrypt current message using @acronym{PGP}.
985
986 @item C-c C-m c p
987 @kindex C-c C-m c p
988 @findex mml-secure-message-encrypt-pgpmime
989
990 Digitally encrypt current message using @acronym{PGP/MIME}.
991
992 @item C-c C-m C-n
993 @kindex C-c C-m C-n
994 @findex mml-unsecure-message
995 Remove security related @acronym{MML} tags from message.
996
997 @end table
998
999 These commands do not immediately sign or encrypt the message, they
1000 merely insert the proper @acronym{MML} secure tag to instruct the
1001 @acronym{MML} engine to perform that operation when the message is
1002 actually sent.  They may perform other operations too, such as locating
1003 and retrieving a @acronym{S/MIME} certificate of the person you wish to
1004 send encrypted mail to.  When the mml parsing engine converts your
1005 @acronym{MML} into a properly encoded @acronym{MIME} message, the secure
1006 tag will be replaced with either a part or a multipart tag.  If your
1007 message contains other mml parts, a multipart tag will be used; if no
1008 other parts are present in your message a single part tag will be used.
1009 This way, message mode will do the Right Thing (TM) with
1010 signed/encrypted multipart messages.
1011
1012 Since signing and especially encryption often is used when sensitive
1013 information is sent, you may want to have some way to ensure that your
1014 mail is actually signed or encrypted.  After invoking the above
1015 sign/encrypt commands, it is possible to preview the raw article by
1016 using @kbd{C-u C-c RET P} (@code{mml-preview}).  Then you can
1017 verify that your long rant about what your ex-significant other or
1018 whomever actually did with that funny looking person at that strange
1019 party the other night, actually will be sent encrypted.
1020
1021 @emph{Note!}  Neither @acronym{PGP/MIME} nor @acronym{S/MIME} encrypt/signs
1022 RFC822 headers.  They only operate on the @acronym{MIME} object.  Keep this
1023 in mind before sending mail with a sensitive Subject line.
1024
1025 By default, when encrypting a message, Gnus will use the
1026 ``signencrypt'' mode, which means the message is both signed and
1027 encrypted.  If you would like to disable this for a particular
1028 message, give the @code{mml-secure-message-encrypt-*} command a prefix
1029 argument, e.g., @kbd{C-u C-c C-m c p}.
1030
1031 Actually using the security commands above is not very difficult.  At
1032 least not compared with making sure all involved programs talk with each
1033 other properly.  Thus, we now describe what external libraries or
1034 programs are required to make things work, and some small general hints.
1035
1036 @node Using S/MIME
1037 @subsection Using S/MIME
1038
1039 @emph{Note!}  This section assume you have a basic familiarity with
1040 modern cryptography, @acronym{S/MIME}, various PKCS standards, OpenSSL and
1041 so on.
1042
1043 The @acronym{S/MIME} support in Message (and @acronym{MML}) require
1044 OpenSSL.  OpenSSL performs the actual @acronym{S/MIME} sign/encrypt
1045 operations.  OpenSSL can be found at @uref{http://www.openssl.org/}.
1046 OpenSSL 0.9.6 and later should work.  Version 0.9.5a cannot extract mail
1047 addresses from certificates, and it insert a spurious CR character into
1048 @acronym{MIME} separators so you may wish to avoid it if you would like
1049 to avoid being regarded as someone who send strange mail.  (Although by
1050 sending @acronym{S/MIME} messages you've probably already lost that
1051 contest.)
1052
1053 To be able to send encrypted mail, a personal certificate is not
1054 required.  Message (@acronym{MML}) need a certificate for the person to whom you
1055 wish to communicate with though.  You're asked for this when you type
1056 @kbd{C-c C-m c s}.  Currently there are two ways to retrieve this
1057 certificate, from a local file or from DNS.  If you chose a local
1058 file, it need to contain a X.509 certificate in @acronym{PEM} format.
1059 If you chose DNS, you're asked for the domain name where the
1060 certificate is stored, the default is a good guess.  To my belief,
1061 Message (@acronym{MML}) is the first mail agent in the world to support
1062 retrieving @acronym{S/MIME} certificates from DNS, so you're not
1063 likely to find very many certificates out there.  At least there
1064 should be one, stored at the domain @code{simon.josefsson.org}.  LDAP
1065 is a more popular method of distributing certificates, support for it
1066 is planned.  (Meanwhile, you can use @code{ldapsearch} from the
1067 command line to retrieve a certificate into a file and use it.)
1068
1069 As for signing messages, OpenSSL can't perform signing operations
1070 without some kind of configuration.  Especially, you need to tell it
1071 where your private key and your certificate is stored.  @acronym{MML}
1072 uses an Emacs interface to OpenSSL, aptly named @code{smime.el}, and it
1073 contain a @code{custom} group used for this configuration.  So, try
1074 @kbd{M-x customize-group RET smime RET} and look around.
1075
1076 Currently there is no support for talking to a CA (or RA) to create
1077 your own certificate.  None is planned either.  You need to do this
1078 manually with OpenSSL or using some other program.  I used Netscape
1079 and got a free @acronym{S/MIME} certificate from one of the big CA's on the
1080 net.  Netscape is able to export your private key and certificate in
1081 PKCS #12 format.  Use OpenSSL to convert this into a plain X.509
1082 certificate in PEM format as follows.
1083
1084 @example
1085 $ openssl pkcs12 -in ns.p12 -clcerts -nodes > key+cert.pem
1086 @end example
1087
1088 The @file{key+cert.pem} file should be pointed to from the
1089 @code{smime-keys} variable.  You should now be able to send signed mail.
1090
1091 @emph{Note!}  Your private key is now stored unencrypted in the file,
1092 so take care in handling it.  Storing encrypted keys on the disk are
1093 supported, and Gnus will ask you for a passphrase before invoking
1094 OpenSSL.  Read the OpenSSL documentation for how to achieve this.  If
1095 you use unencrypted keys (e.g., if they are on a secure storage, or if
1096 you are on a secure single user machine) simply press @code{RET} at
1097 the passphrase prompt.
1098
1099 @node Using PGP/MIME
1100 @subsection Using PGP/MIME
1101
1102 @acronym{PGP/MIME} requires an external OpenPGP implementation, such
1103 as @uref{http://www.gnupg.org/, GNU Privacy Guard}. Pre-OpenPGP
1104 implementations such as PGP 2.x and PGP 5.x are also supported. One
1105 Emacs interface to the PGP implementations, PGG (@pxref{Top, ,PGG,
1106 pgg, PGG Manual}), is included, but Mailcrypt is also supported.
1107 @xref{PGP Compatibility}.
1108
1109 @cindex gpg-agent
1110 Message internally calls GnuPG (the @command{gpg} command) to perform
1111 data encryption, and in certain cases (decrypting or signing for
1112 example), @command{gpg} requires user's passphrase.  Currently the
1113 recommended way to supply your passphrase to @command{gpg} is to use the
1114 @command{gpg-agent} program.
1115
1116 To use @command{gpg-agent} in Emacs, you need to run the following
1117 command from the shell before starting Emacs.
1118
1119 @example
1120 eval `gpg-agent --daemon`
1121 @end example
1122
1123 This will invoke @command{gpg-agent} and set the environment variable
1124 @code{GPG_AGENT_INFO} to allow @command{gpg} to communicate with it.
1125 It might be good idea to put this command in your @file{.xsession} or
1126 @file{.bash_profile}.  @xref{Invoking GPG-AGENT, , , gnupg, Using the
1127 GNU Privacy Guard}.
1128
1129 Once your @command{gpg-agent} is set up, it will ask you for a
1130 passphrase as needed for @command{gpg}.  Under the X Window System,
1131 you will see a new passphrase input dialog appear.  The dialog is
1132 provided by PIN Entry (the @command{pinentry} command), and as of
1133 version 0.7.2, @command{pinentry} cannot cooperate with Emacs on a
1134 single tty.  So, if you are using a text console, you may need to put
1135 a passphrase into gpg-agent's cache beforehand.  The following command
1136 does the trick.
1137
1138 @example
1139 gpg --use-agent --sign < /dev/null > /dev/null
1140 @end example
1141
1142 The Lisp variable @code{pgg-gpg-use-agent} controls whether to use
1143 @command{gpg-agent}.  See also @xref{Caching passphrase, , , pgg, The
1144 PGG Manual}.
1145
1146
1147 @node PGP Compatibility
1148 @subsection Compatibility with older implementations
1149
1150 @vindex gpg-temp-directory
1151 Note, if you are using the @code{gpg.el} you must make sure that the
1152 directory specified by @code{gpg-temp-directory} have permissions
1153 0700.
1154
1155 Creating your own key is described in detail in the documentation of
1156 your PGP implementation, so we refer to it.
1157
1158 If you have imported your old PGP 2.x key into GnuPG, and want to send
1159 signed and encrypted messages to your fellow PGP 2.x users, you'll
1160 discover that the receiver cannot understand what you send. One
1161 solution is to use PGP 2.x instead (i.e., if you use @code{pgg}, set
1162 @code{pgg-default-scheme} to @code{pgp}). You could also convince your
1163 fellow PGP 2.x users to convert to GnuPG.
1164 @vindex mml-signencrypt-style-alist
1165 As a final workaround, you can make the sign and encryption work in
1166 two steps; separately sign, then encrypt a message.  If you would like
1167 to change this behavior you can customize the
1168 @code{mml-signencrypt-style-alist} variable.  For example:
1169
1170 @lisp
1171 (setq mml-signencrypt-style-alist '(("smime" separate)
1172                                     ("pgp" separate)
1173                                     ("pgpauto" separate)
1174                                     ("pgpmime" separate)))
1175 @end lisp
1176
1177 This causes to sign and encrypt in two passes, thus generating a
1178 message that can be understood by PGP version 2.
1179
1180 (Refer to @uref{http://www.gnupg.org/gph/en/pgp2x.html} for more
1181 information about the problem.)
1182
1183 @node Various Commands
1184 @section Various Commands
1185
1186 @table @kbd
1187
1188 @item C-c C-r