17ad1329d07a5f88a46378e3d444cd04fd877b08
[gnus] / lisp / message.el
1 ;;; message.el --- composing mail and news messages
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Keywords: mail, news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This mode provides mail-sending facilities from within Emacs.  It
27 ;; consists mainly of large chunks of code from the sendmail.el,
28 ;; gnus-msg.el and rnewspost.el files.
29
30 ;;; Code:
31
32 (require 'cl)
33 (require 'mailheader)
34 (require 'rmail)
35 (require 'nnheader)
36 (require 'timezone)
37 (require 'easymenu)
38 (require 'custom)
39 (if (string-match "XEmacs\\|Lucid" emacs-version)
40     (require 'mail-abbrevs)
41   (require 'mailabbrev))
42
43 (defgroup message '((user-mail-address custom-variable)
44                     (user-full-name custom-variable))
45   "Mail and news message composing."
46   :link '(custom-manual "(message)Top")
47   :group 'mail
48   :group 'news)
49
50 (put 'user-mail-address 'custom-type 'string)
51 (put 'user-full-name 'custom-type 'string)
52
53 (defgroup message-various nil
54   "Various Message Variables"
55   :link '(custom-manual "(message)Various Message Variables")
56   :group 'message)
57
58 (defgroup message-buffers nil
59   "Message Buffers"
60   :link '(custom-manual "(message)Message Buffers")
61   :group 'message)
62
63 (defgroup message-sending nil
64   "Message Sending"
65   :link '(custom-manual "(message)Sending Variables")
66   :group 'message)
67
68 (defgroup message-interface nil
69   "Message Interface"
70   :link '(custom-manual "(message)Interface")
71   :group 'message)
72
73 (defgroup message-forwarding nil
74   "Message Forwarding"
75   :link '(custom-manual "(message)Forwarding")
76   :group 'message-interface)
77
78 (defgroup message-insertion nil
79   "Message Insertion"
80   :link '(custom-manual "(message)Insertion")
81   :group 'message)
82
83 (defgroup message-headers nil
84   "Message Headers"
85   :link '(custom-manual "(message)Message Headers")
86   :group 'message)
87
88 (defgroup message-news nil
89   "Composing News Messages"
90   :group 'message)
91
92 (defgroup message-mail nil
93   "Composing Mail Messages"
94   :group 'message)
95
96 (defgroup message-faces nil
97   "Faces used for message composing."
98   :group 'message
99   :group 'faces)
100
101 (defcustom message-directory "~/Mail/"
102   "*Directory from which all other mail file variables are derived."
103   :group 'message-various
104   :type 'directory)
105
106 (defcustom message-max-buffers 10
107   "*How many buffers to keep before starting to kill them off."
108   :group 'message-buffers
109   :type 'integer)
110
111 (defcustom message-send-rename-function nil
112   "Function called to rename the buffer after sending it."
113   :group 'message-buffers
114   :type 'function)
115
116 (defcustom message-fcc-handler-function 'message-output
117   "*A function called to save outgoing articles.
118 This function will be called with the name of the file to store the
119 article in.  The default function is `message-output' which saves in Unix
120 mailbox format."
121   :type '(radio (function-item message-output)
122                 (function :tag "Other"))
123   :group 'message-sending)
124
125 (defcustom message-courtesy-message
126   "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
127   "*This is inserted at the start of a mailed copy of a posted message.
128 If the string contains the format spec \"%s\", the Newsgroups
129 the article has been posted to will be inserted there.
130 If this variable is nil, no such courtesy message will be added."
131   :group 'message-sending
132   :type 'string)
133
134 (defcustom message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):"
135   "*Regexp that matches headers to be removed in resent bounced mail."
136   :group 'message-interface
137   :type 'regexp)
138
139 ;;;###autoload
140 (defcustom message-from-style 'default
141   "*Specifies how \"From\" headers look.
142
143 If `nil', they contain just the return address like:
144         king@grassland.com
145 If `parens', they look like:
146         king@grassland.com (Elvis Parsley)
147 If `angles', they look like:
148         Elvis Parsley <king@grassland.com>
149
150 Otherwise, most addresses look like `angles', but they look like
151 `parens' if `angles' would need quoting and `parens' would not."
152   :type '(choice (const :tag "simple" nil)
153                  (const parens)
154                  (const angles)
155                  (const default))
156   :group 'message-headers)
157
158 (defcustom message-syntax-checks nil
159   ;; Guess this one shouldn't be easy to customize...
160   "Controls what syntax checks should not be performed on outgoing posts.
161 To disable checking of long signatures, for instance, add
162  `(signature . disabled)' to this list.
163
164 Don't touch this variable unless you really know what you're doing.
165
166 Checks include subject-cmsg multiple-headers sendsys message-id from
167 long-lines control-chars size new-text redirected-followup signature
168 approved sender empty empty-headers message-id from subject
169 shorten-followup-to existing-newsgroups."
170   :group 'message-news)
171
172 (defcustom message-required-news-headers
173   '(From Newsgroups Subject Date Message-ID
174          (optional . Organization) Lines
175          (optional . X-Newsreader))
176   "Headers to be generated or prompted for when posting an article.
177 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
178 Message-ID.  Organization, Lines, In-Reply-To, Expires, and
179 X-Newsreader are optional.  If don't you want message to insert some
180 header, remove it from this list."
181   :group 'message-news
182   :group 'message-headers
183   :type '(repeat sexp))
184
185 (defcustom message-required-mail-headers
186   '(From Subject Date (optional . In-Reply-To) Message-ID Lines
187          (optional . X-Mailer))
188   "Headers to be generated or prompted for when mailing a message.
189 RFC822 required that From, Date, To, Subject and Message-ID be
190 included.  Organization, Lines and X-Mailer are optional."
191   :group 'message-mail
192   :group 'message-headers
193   :type '(repeat sexp))
194
195 (defcustom message-deletable-headers '(Message-ID Date Lines)
196   "Headers to be deleted if they already exist and were generated by message previously."
197   :group 'message-headers
198   :type 'sexp)
199
200 (defcustom message-ignored-news-headers
201   "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
202   "*Regexp of headers to be removed unconditionally before posting."
203   :group 'message-news
204   :group 'message-headers
205   :type 'regexp)
206
207 (defcustom message-ignored-mail-headers "^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
208   "*Regexp of headers to be removed unconditionally before mailing."
209   :group 'message-mail
210   :group 'message-headers
211   :type 'regexp)
212
213 (defcustom message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:"
214   "*Header lines matching this regexp will be deleted before posting.
215 It's best to delete old Path and Date headers before posting to avoid
216 any confusion."
217   :group 'message-interface
218   :type 'regexp)
219
220 ;;;###autoload
221 (defcustom message-signature-separator "^-- *$"
222   "Regexp matching the signature separator."
223   :type 'regexp
224   :group 'message-various)
225
226 (defcustom message-elide-elipsis "\n[...]\n\n"
227   "*The string which is inserted for elided text.")
228
229 (defcustom message-interactive nil
230   "Non-nil means when sending a message wait for and display errors.
231 nil means let mailer mail back a message to report errors."
232   :group 'message-sending
233   :group 'message-mail
234   :type 'boolean)
235
236 (defcustom message-generate-new-buffers t
237   "*Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
238 If this is a function, call that function with three parameters:  The type,
239 the to address and the group name.  (Any of these may be nil.)  The function
240 should return the new buffer name."
241   :group 'message-buffers
242   :type '(choice (const :tag "off" nil)
243                  (const :tag "on" t)
244                  (function fun)))
245
246 (defcustom message-kill-buffer-on-exit nil
247   "*Non-nil means that the message buffer will be killed after sending a message."
248   :group 'message-buffers
249   :type 'boolean)
250
251 (defvar gnus-local-organization)
252 (defcustom message-user-organization
253   (or (and (boundp 'gnus-local-organization)
254            (stringp gnus-local-organization)
255            gnus-local-organization)
256       (getenv "ORGANIZATION")
257       t)
258   "*String to be used as an Organization header.
259 If t, use `message-user-organization-file'."
260   :group 'message-headers
261   :type '(choice string
262                  (const :tag "consult file" t)))
263
264 ;;;###autoload
265 (defcustom message-user-organization-file "/usr/lib/news/organization"
266   "*Local news organization file."
267   :type 'file
268   :group 'message-headers)
269
270 (defcustom message-autosave-directory "~/"
271   ; (concat (file-name-as-directory message-directory) "drafts/")
272   "*Directory where message autosaves buffers.
273 If nil, message won't autosave."
274   :group 'message-buffers
275   :type 'directory)
276
277 (defcustom message-forward-start-separator
278   "------- Start of forwarded message -------\n"
279   "*Delimiter inserted before forwarded messages."
280   :group 'message-forwarding
281   :type 'string)
282
283 (defcustom message-forward-end-separator
284   "------- End of forwarded message -------\n"
285   "*Delimiter inserted after forwarded messages."
286   :group 'message-forwarding
287   :type 'string)
288
289 (defcustom message-signature-before-forwarded-message t
290   "*If non-nil, put the signature before any included forwarded message."
291   :group 'message-forwarding
292   :type 'boolean)
293
294 (defcustom message-included-forward-headers
295   "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:"
296   "*Regexp matching headers to be included in forwarded messages."
297   :group 'message-forwarding
298   :type 'regexp)
299
300 (defcustom message-ignored-resent-headers "^Return-receipt"
301   "*All headers that match this regexp will be deleted when resending a message."
302   :group 'message-interface
303   :type 'regexp)
304
305 (defcustom message-ignored-cited-headers "."
306   "*Delete these headers from the messages you yank."
307   :group 'message-insertion
308   :type 'regexp)
309
310 (defcustom message-cancel-message "I am canceling my own article."
311   "Message to be inserted in the cancel message."
312   :group 'message-interface
313   :type 'string)
314
315 ;; Useful to set in site-init.el
316 ;;;###autoload
317 (defcustom message-send-mail-function 'message-send-mail-with-sendmail
318   "Function to call to send the current buffer as mail.
319 The headers should be delimited by a line whose contents match the
320 variable `mail-header-separator'.
321
322 Legal values include `message-send-mail-with-sendmail' (the default),
323 `message-send-mail-with-mh' and `message-send-mail-with-qmail'."
324   :type '(radio (function-item message-send-mail-with-sendmail)
325                 (function-item message-send-mail-with-mh)
326                 (function-item message-send-mail-with-qmail)
327                 (function :tag "Other"))
328   :group 'message-sending
329   :group 'message-mail)
330
331 (defcustom message-send-news-function 'message-send-news
332   "Function to call to send the current buffer as news.
333 The headers should be delimited by a line whose contents match the
334 variable `mail-header-separator'."
335   :group 'message-sending
336   :group 'message-news
337   :type 'function)
338
339 (defcustom message-reply-to-function nil
340   "Function that should return a list of headers.
341 This function should pick out addresses from the To, Cc, and From headers
342 and respond with new To and Cc headers."
343   :group 'message-interface
344   :type 'function)
345
346 (defcustom message-wide-reply-to-function nil
347   "Function that should return a list of headers.
348 This function should pick out addresses from the To, Cc, and From headers
349 and respond with new To and Cc headers."
350   :group 'message-interface
351   :type 'function)
352
353 (defcustom message-followup-to-function nil
354   "Function that should return a list of headers.
355 This function should pick out addresses from the To, Cc, and From headers
356 and respond with new To and Cc headers."
357   :group 'message-interface
358   :type 'function)
359
360 (defcustom message-use-followup-to 'ask
361   "*Specifies what to do with Followup-To header.
362 If nil, always ignore the header.  If it is t, use its value, but
363 query before using the \"poster\" value.  If it is the symbol `ask',
364 always query the user whether to use the value.  If it is the symbol
365 `use', always use the value."
366   :group 'message-interface
367   :type '(choice (const :tag "ignore" nil)
368                  (const use)
369                  (const ask)))
370
371 ;; stuff relating to broken sendmail in MMDF
372 (defcustom message-sendmail-f-is-evil nil
373   "*Non-nil means that \"-f username\" should not be added to the sendmail
374 command line, because it is even more evil than leaving it out."
375   :group 'message-sending
376   :type 'boolean)
377
378 ;; qmail-related stuff
379 (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject"
380   "Location of the qmail-inject program."
381   :group 'message-sending
382   :type 'file)
383
384 (defcustom message-qmail-inject-args nil
385   "Arguments passed to qmail-inject programs.
386 This should be a list of strings, one string for each argument.
387
388 For e.g., if you wish to set the envelope sender address so that bounces
389 go to the right place or to deal with listserv's usage of that address, you
390 might set this variable to '(\"-f\" \"you@some.where\")."
391   :group 'message-sending
392   :type '(repeat string))
393
394 (defvar gnus-post-method)
395 (defvar gnus-select-method)
396 (defcustom message-post-method
397   (cond ((and (boundp 'gnus-post-method)
398               gnus-post-method)
399          gnus-post-method)
400         ((boundp 'gnus-select-method)
401          gnus-select-method)
402         (t '(nnspool "")))
403   "Method used to post news."
404   :group 'message-news
405   :group 'message-sending
406   ;; This should be the `gnus-select-method' widget, but that might
407   ;; create a dependence to `gnus.el'.
408   :type 'sexp)
409
410 (defcustom message-generate-headers-first nil
411   "*If non-nil, generate all possible headers before composing."
412   :group 'message-headers
413   :type 'boolean)
414
415 (defcustom message-setup-hook nil
416   "Normal hook, run each time a new outgoing message is initialized.
417 The function `message-setup' runs this hook."
418   :group 'message-various
419   :type 'hook)
420
421 (defcustom message-signature-setup-hook nil
422   "Normal hook, run each time a new outgoing message is initialized.
423 It is run after the headers have been inserted and before
424 the signature is inserted."
425   :group 'message-various
426   :type 'hook)
427
428 (defcustom message-mode-hook nil
429   "Hook run in message mode buffers."
430   :group 'message-various
431   :type 'hook)
432
433 (defcustom message-header-hook nil
434   "Hook run in a message mode buffer narrowed to the headers."
435   :group 'message-various
436   :type 'hook)
437
438 (defcustom message-header-setup-hook nil
439   "Hook called narrowed to the headers when setting up a message
440 buffer."
441   :group 'message-various
442   :type 'hook)
443
444 ;;;###autoload
445 (defcustom message-citation-line-function 'message-insert-citation-line
446   "*Function called to insert the \"Whomever writes:\" line."
447   :type 'function
448   :group 'message-insertion)
449
450 ;;;###autoload
451 (defcustom message-yank-prefix "> "
452   "*Prefix inserted on the lines of yanked messages.
453 nil means use indentation."
454   :type 'string
455   :group 'message-insertion)
456
457 (defcustom message-indentation-spaces 3
458   "*Number of spaces to insert at the beginning of each cited line.
459 Used by `message-yank-original' via `message-yank-cite'."
460   :group 'message-insertion
461   :type 'integer)
462
463 ;;;###autoload
464 (defcustom message-cite-function
465   (if (and (boundp 'mail-citation-hook)
466            mail-citation-hook)
467       mail-citation-hook
468     'message-cite-original)
469   "*Function for citing an original message."
470   :type '(radio (function-item message-cite-original)
471                 (function-item sc-cite-original)
472                 (function :tag "Other"))
473   :group 'message-insertion)
474
475 ;;;###autoload
476 (defcustom message-indent-citation-function 'message-indent-citation
477   "*Function for modifying a citation just inserted in the mail buffer.
478 This can also be a list of functions.  Each function can find the
479 citation between (point) and (mark t).  And each function should leave
480 point and mark around the citation text as modified."
481   :type 'function
482   :group 'message-insertion)
483
484 (defvar message-abbrevs-loaded nil)
485
486 ;;;###autoload
487 (defcustom message-signature t
488   "*String to be inserted at the end of the message buffer.
489 If t, the `message-signature-file' file will be inserted instead.
490 If a function, the result from the function will be used instead.
491 If a form, the result from the form will be used instead."
492   :type 'sexp
493   :group 'message-insertion)
494
495 ;;;###autoload
496 (defcustom message-signature-file "~/.signature"
497   "*File containing the text inserted at end of message buffer."
498   :type 'file
499   :group 'message-insertion)
500
501 (defcustom message-distribution-function nil
502   "*Function called to return a Distribution header."
503   :group 'message-news
504   :group 'message-headers
505   :type 'function)
506
507 (defcustom message-expires 14
508   "Number of days before your article expires."
509   :group 'message-news
510   :group 'message-headers
511   :link '(custom-manual "(message)News Headers")
512   :type 'integer)
513
514 (defcustom message-user-path nil
515   "If nil, use the NNTP server name in the Path header.
516 If stringp, use this; if non-nil, use no host name (user name only)."
517   :group 'message-news
518   :group 'message-headers
519   :link '(custom-manual "(message)News Headers")
520   :type '(choice (const :tag "nntp" nil)
521                  (string :tag "name")
522                  (sexp :tag "none" :format "%t" t)))
523
524 (defvar message-reply-buffer nil)
525 (defvar message-reply-headers nil)
526 (defvar message-newsreader nil)
527 (defvar message-mailer nil)
528 (defvar message-sent-message-via nil)
529 (defvar message-checksum nil)
530 (defvar message-send-actions nil
531   "A list of actions to be performed upon successful sending of a message.")
532 (defvar message-exit-actions nil
533   "A list of actions to be performed upon exiting after sending a message.")
534 (defvar message-kill-actions nil
535   "A list of actions to be performed before killing a message buffer.")
536 (defvar message-postpone-actions nil
537   "A list of actions to be performed after postponing a message.")
538
539 (defcustom message-default-headers ""
540   "*A string containing header lines to be inserted in outgoing messages.
541 It is inserted before you edit the message, so you can edit or delete
542 these lines."
543   :group 'message-headers
544   :type 'string)
545
546 (defcustom message-default-mail-headers ""
547   "*A string of header lines to be inserted in outgoing mails."
548   :group 'message-headers
549   :group 'message-mail
550   :type 'string)
551
552 (defcustom message-default-news-headers ""
553   "*A string of header lines to be inserted in outgoing news
554 articles."
555   :group 'message-headers
556   :group 'message-news
557   :type 'string)
558
559 ;; Note: could use /usr/ucb/mail instead of sendmail;
560 ;; options -t, and -v if not interactive.
561 (defcustom message-mailer-swallows-blank-line
562   (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
563                          system-configuration)
564            (file-readable-p "/etc/sendmail.cf")
565            (let ((buffer (get-buffer-create " *temp*")))
566              (unwind-protect
567                  (save-excursion
568                    (set-buffer buffer)
569                    (insert-file-contents "/etc/sendmail.cf")
570                    (goto-char (point-min))
571                    (let ((case-fold-search nil))
572                      (re-search-forward "^OR\\>" nil t)))
573                (kill-buffer buffer))))
574       ;; According to RFC822, "The field-name must be composed of printable
575       ;; ASCII characters (i. e., characters that have decimal values between
576       ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
577       ;; space, or colon.
578       '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
579   "Set this non-nil if the system's mailer runs the header and body together.
580 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
581 The value should be an expression to test whether the problem will
582 actually occur."
583   :group 'message-sending
584   :type 'sexp)
585
586 (ignore-errors
587   (define-mail-user-agent 'message-user-agent
588     'message-mail 'message-send-and-exit
589     'message-kill-buffer 'message-send-hook))
590
591 (defvar message-mh-deletable-headers '(Message-ID Date Lines Sender)
592   "If non-nil, delete the deletable headers before feeding to mh.")
593
594 (defvar message-send-method-alist
595   '((news message-news-p message-send-via-news)
596     (mail message-mail-p message-send-via-mail))
597   "Alist of ways to send outgoing messages.
598 Each element has the form
599
600   \(TYPE PREDICATE FUNCTION)
601
602 where TYPE is a symbol that names the method; PREDICATE is a function
603 called without any parameters to determine whether the message is
604 a message of type TYPE; and FUNCTION is a function to be called if
605 PREDICATE returns non-nil.  FUNCTION is called with one parameter --
606 the prefix.")
607
608 (defvar message-mail-alias-type 'abbrev
609   "*What alias expansion type to use in Message buffers.
610 The default is `abbrev', which uses mailabbrev.  nil switches
611 mail aliases off.")
612
613 ;;; Internal variables.
614 ;;; Well, not really internal.
615
616 (defvar message-mode-syntax-table
617   (let ((table (copy-syntax-table text-mode-syntax-table)))
618     (modify-syntax-entry ?% ". " table)
619     table)
620   "Syntax table used while in Message mode.")
621
622 (defvar message-mode-abbrev-table text-mode-abbrev-table
623   "Abbrev table used in Message mode buffers.
624 Defaults to `text-mode-abbrev-table'.")
625 (defgroup message-headers nil
626   "Message headers."
627   :link '(custom-manual "(message)Variables")
628   :group 'message)
629
630 (defface message-header-to-face
631   '((((class color)
632       (background dark))
633      (:foreground "green2" :bold t))
634     (((class color)
635       (background light))
636      (:foreground "MidnightBlue" :bold t))
637     (t
638      (:bold t :italic t)))
639   "Face used for displaying From headers."
640   :group 'message-faces)
641
642 (defface message-header-cc-face
643   '((((class color)
644       (background dark))
645      (:foreground "green4" :bold t))
646     (((class color)
647       (background light))
648      (:foreground "MidnightBlue"))
649     (t
650      (:bold t)))
651   "Face used for displaying Cc headers."
652   :group 'message-faces)
653
654 (defface message-header-subject-face
655   '((((class color)
656       (background dark))
657      (:foreground "green3"))
658     (((class color)
659       (background light))
660      (:foreground "navy blue" :bold t))
661     (t
662      (:bold t)))
663   "Face used for displaying subject headers."
664   :group 'message-faces)
665
666 (defface message-header-newsgroups-face
667   '((((class color)
668       (background dark))
669      (:foreground "yellow" :bold t :italic t))
670     (((class color)
671       (background light))
672      (:foreground "blue4" :bold t :italic t))
673     (t
674      (:bold t :italic t)))
675   "Face used for displaying newsgroups headers."
676   :group 'message-faces)
677
678 (defface message-header-other-face
679   '((((class color)
680       (background dark))
681      (:foreground "red4"))
682     (((class color)
683       (background light))
684      (:foreground "steel blue"))
685     (t
686      (:bold t :italic t)))
687   "Face used for displaying newsgroups headers."
688   :group 'message-faces)
689
690 (defface message-header-name-face
691   '((((class color)
692       (background dark))
693      (:foreground "DarkGreen"))
694     (((class color)
695       (background light))
696      (:foreground "cornflower blue"))
697     (t
698      (:bold t)))
699   "Face used for displaying header names."
700   :group 'message-faces)
701
702 (defface message-header-xheader-face
703   '((((class color)
704       (background dark))
705      (:foreground "blue"))
706     (((class color)
707       (background light))
708      (:foreground "blue"))
709     (t
710      (:bold t)))
711   "Face used for displaying X-Header headers."
712   :group 'message-faces)
713
714 (defface message-separator-face
715   '((((class color)
716       (background dark))
717      (:foreground "blue4"))
718     (((class color)
719       (background light))
720      (:foreground "brown"))
721     (t
722      (:bold t)))
723   "Face used for displaying the separator."
724   :group 'message-faces)
725
726 (defface message-cited-text-face
727   '((((class color)
728       (background dark))
729      (:foreground "red"))
730     (((class color)
731       (background light))
732      (:foreground "red"))
733     (t
734      (:bold t)))
735   "Face used for displaying cited text names."
736   :group 'message-faces)
737
738 (defvar message-font-lock-keywords
739   (let* ((cite-prefix "A-Za-z")
740          (cite-suffix (concat cite-prefix "0-9_.@-"))
741          (content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)"))
742     `((,(concat "^\\([Tt]o:\\)" content)
743        (1 'message-header-name-face)
744        (2 'message-header-to-face nil t))
745       (,(concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content)
746        (1 'message-header-name-face)
747        (2 'message-header-cc-face nil t))
748       (,(concat "^\\([Ss]ubject:\\)" content)
749        (1 'message-header-name-face)
750        (2 'message-header-subject-face nil t))
751       (,(concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content)
752        (1 'message-header-name-face)
753        (2 'message-header-newsgroups-face nil t))
754       (,(concat "^\\([A-Z][^: \n\t]+:\\)" content)
755        (1 'message-header-name-face)
756        (2 'message-header-other-face nil t))
757       (,(concat "^\\(X-[A-Za-z0-9-]+\\|In-Reply-To\\):" content)
758        (1 'message-header-name-face)
759        (2 'message-header-name-face))
760       (,(concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
761        1 'message-separator-face)
762       (,(concat "^[ \t]*"
763                 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
764                 "[>|}].*")
765        (0 'message-cited-text-face))))
766   "Additional expressions to highlight in Message mode.")
767
768 (defvar message-face-alist
769   '((bold . bold-region)
770     (underline . underline-region)
771     (default . (lambda (b e)
772                  (unbold-region b e)
773                  (ununderline-region b e))))
774   "Alist of mail and news faces for facemenu.
775 The cdr of ech entry is a function for applying the face to a region.")
776
777 (defcustom message-send-hook nil
778   "Hook run before sending messages."
779   :group 'message-various
780   :options '(ispell-message)
781   :type 'hook)
782
783 (defcustom message-send-mail-hook nil
784   "Hook run before sending mail messages."
785   :group 'message-various
786   :type 'hook)
787
788 (defcustom message-send-news-hook nil
789   "Hook run before sending news messages."
790   :group 'message-various
791   :type 'hook)
792
793 (defcustom message-sent-hook nil
794   "Hook run after sending messages."
795   :group 'message-various
796   :type 'hook)
797
798 ;;; Internal variables.
799
800 (defvar message-buffer-list nil)
801 (defvar message-this-is-news nil)
802 (defvar message-this-is-mail nil)
803
804 ;; Byte-compiler warning
805 (defvar gnus-active-hashtb)
806 (defvar gnus-read-active-file)
807
808 ;;; Regexp matching the delimiter of messages in UNIX mail format
809 ;;; (UNIX From lines), minus the initial ^.
810 (defvar message-unix-mail-delimiter
811   (let ((time-zone-regexp
812          (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
813                  "\\|[-+]?[0-9][0-9][0-9][0-9]"
814                  "\\|"
815                  "\\) *")))
816     (concat
817      "From "
818
819      ;; Username, perhaps with a quoted section that can contain spaces.
820      "\\("
821      "[^ \n]*"
822      "\\(\\|\".*\"[^ \n]*\\)"
823      "\\|<[^<>\n]+>"
824      "\\)  ?"
825
826      ;; The time the message was sent.
827      "\\([^ \n]*\\) *"                  ; day of the week
828      "\\([^ ]*\\) *"                    ; month
829      "\\([0-9]*\\) *"                   ; day of month
830      "\\([0-9:]*\\) *"                  ; time of day
831
832      ;; Perhaps a time zone, specified by an abbreviation, or by a
833      ;; numeric offset.
834      time-zone-regexp
835
836      ;; The year.
837      " [0-9][0-9]\\([0-9]*\\) *"
838
839      ;; On some systems the time zone can appear after the year, too.
840      time-zone-regexp
841
842      ;; Old uucp cruft.
843      "\\(remote from .*\\)?"
844
845      "\n")))
846
847 (defvar message-unsent-separator
848   (concat "^ *---+ +Unsent message follows +---+ *$\\|"
849           "^ *---+ +Returned message +---+ *$\\|"
850           "^Start of returned message$\\|"
851           "^ *---+ +Original message +---+ *$\\|"
852           "^ *--+ +begin message +--+ *$\\|"
853           "^ *---+ +Original message follows +---+ *$\\|"
854           "^|? *---+ +Message text follows: +---+ *|?$")
855   "A regexp that matches the separator before the text of a failed message.")
856
857 (defvar message-header-format-alist
858   `((Newsgroups)
859     (To . message-fill-address)
860     (Cc . message-fill-address)
861     (Subject)
862     (In-Reply-To)
863     (Fcc)
864     (Bcc)
865     (Date)
866     (Organization)
867     (Distribution)
868     (Lines)
869     (Expires)
870     (Message-ID)
871     (References)
872     (X-Mailer)
873     (X-Newsreader))
874   "Alist used for formatting headers.")
875
876 (eval-and-compile
877   (autoload 'message-setup-toolbar "messagexmas")
878   (autoload 'mh-send-letter "mh-comp")
879   (autoload 'gnus-point-at-eol "gnus-util")
880   (autoload 'gnus-point-at-bol "gnus-util")
881   (autoload 'gnus-output-to-mail "gnus-util")
882   (autoload 'gnus-output-to-rmail "gnus-util")
883   (autoload 'mail-abbrev-in-expansion-header-p "mailabbrev"))
884
885 \f
886
887 ;;;
888 ;;; Utility functions.
889 ;;;
890
891 (defmacro message-y-or-n-p (question show &rest text)
892   "Ask QUESTION, displaying the rest of the arguments in a temp. buffer if SHOW"
893   `(message-talkative-question 'y-or-n-p ,question ,show ,@text))
894
895 ;; Delete the current line (and the next N lines.);
896 (defmacro message-delete-line (&optional n)
897   `(delete-region (progn (beginning-of-line) (point))
898                   (progn (forward-line ,(or n 1)) (point))))
899
900 (defun message-tokenize-header (header &optional separator)
901   "Split HEADER into a list of header elements.
902 \",\" is used as the separator."
903   (if (not header)
904       nil
905     (let ((regexp (format "[%s]+" (or separator ",")))
906           (beg 1)
907           (first t)
908           quoted elems paren)
909       (save-excursion
910         (message-set-work-buffer)
911         (insert header)
912         (goto-char (point-min))
913         (while (not (eobp))
914           (if first
915               (setq first nil)
916             (forward-char 1))
917           (cond ((and (> (point) beg)
918                       (or (eobp)
919                           (and (looking-at regexp)
920                                (not quoted)
921                                (not paren))))
922                  (push (buffer-substring beg (point)) elems)
923                  (setq beg (match-end 0)))
924                 ((= (following-char) ?\")
925                  (setq quoted (not quoted)))
926                 ((and (= (following-char) ?\()
927                       (not quoted))
928                  (setq paren t))
929                 ((and (= (following-char) ?\))
930                       (not quoted))
931                  (setq paren nil))))
932         (nreverse elems)))))
933
934 (defun message-mail-file-mbox-p (file)
935   "Say whether FILE looks like a Unix mbox file."
936   (when (and (file-exists-p file)
937              (file-readable-p file)
938              (file-regular-p file))
939     (nnheader-temp-write nil
940       (nnheader-insert-file-contents file)
941       (goto-char (point-min))
942       (looking-at message-unix-mail-delimiter))))
943
944 (defun message-fetch-field (header &optional not-all)
945   "The same as `mail-fetch-field', only remove all newlines."
946   (let ((value (mail-fetch-field header nil (not not-all))))
947     (when value
948       (nnheader-replace-chars-in-string value ?\n ? ))))
949
950 (defun message-add-header (&rest headers)
951   "Add the HEADERS to the message header, skipping those already present."
952   (while headers
953     (let (hclean)
954       (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers))
955         (error "Invalid header `%s'" (car headers)))
956       (setq hclean (match-string 1 (car headers)))
957     (save-restriction
958       (message-narrow-to-headers)
959       (unless (re-search-forward (concat "^" (regexp-quote hclean) ":") nil t)
960         (insert (car headers) ?\n))))
961     (setq headers (cdr headers))))
962
963 (defun message-fetch-reply-field (header)
964   "Fetch FIELD from the message we're replying to."
965   (when (and message-reply-buffer
966              (buffer-name message-reply-buffer))
967     (save-excursion
968       (set-buffer message-reply-buffer)
969       (message-fetch-field header))))
970
971 (defun message-set-work-buffer ()
972   (if (get-buffer " *message work*")
973       (progn
974         (set-buffer " *message work*")
975         (erase-buffer))
976     (set-buffer (get-buffer-create " *message work*"))
977     (kill-all-local-variables)
978     (buffer-disable-undo (current-buffer))))
979
980 (defun message-functionp (form)
981   "Return non-nil if FORM is funcallable."
982   (or (and (symbolp form) (fboundp form))
983       (and (listp form) (eq (car form) 'lambda))
984       (compiled-function-p form)))
985
986 (defun message-strip-subject-re (subject)
987   "Remove \"Re:\" from subject lines."
988   (if (string-match "^[Rr][Ee]: *" subject)
989       (substring subject (match-end 0))
990     subject))
991
992 (defun message-remove-header (header &optional is-regexp first reverse)
993   "Remove HEADER in the narrowed buffer.
994 If REGEXP, HEADER is a regular expression.
995 If FIRST, only remove the first instance of the header.
996 Return the number of headers removed."
997   (goto-char (point-min))
998   (let ((regexp (if is-regexp header (concat "^" header ":")))
999         (number 0)
1000         (case-fold-search t)
1001         last)
1002     (while (and (not (eobp))
1003                 (not last))
1004       (if (if reverse
1005               (not (looking-at regexp))
1006             (looking-at regexp))
1007           (progn
1008             (incf number)
1009             (when first
1010               (setq last t))
1011             (delete-region
1012              (point)
1013              ;; There might be a continuation header, so we have to search
1014              ;; until we find a new non-continuation line.
1015              (progn
1016                (forward-line 1)
1017                (if (re-search-forward "^[^ \t]" nil t)
1018                    (goto-char (match-beginning 0))
1019                  (point-max)))))
1020         (forward-line 1)
1021         (if (re-search-forward "^[^ \t]" nil t)
1022             (goto-char (match-beginning 0))
1023           (point-max))))
1024     number))
1025
1026 (defun message-narrow-to-headers ()
1027   "Narrow the buffer to the head of the message."
1028   (widen)
1029   (narrow-to-region
1030    (goto-char (point-min))
1031    (if (re-search-forward
1032         (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
1033        (match-beginning 0)
1034      (point-max)))
1035   (goto-char (point-min)))
1036
1037 (defun message-narrow-to-head ()
1038   "Narrow the buffer to the head of the message."
1039   (widen)
1040   (narrow-to-region
1041    (goto-char (point-min))
1042    (if (search-forward "\n\n" nil 1)
1043        (1- (point))
1044      (point-max)))
1045   (goto-char (point-min)))
1046
1047 (defun message-news-p ()
1048   "Say whether the current buffer contains a news message."
1049   (or message-this-is-news
1050       (save-excursion
1051         (save-restriction
1052           (message-narrow-to-headers)
1053           (message-fetch-field "newsgroups")))))
1054
1055 (defun message-mail-p ()
1056   "Say whether the current buffer contains a mail message."
1057   (or message-this-is-mail
1058       (save-excursion
1059         (save-restriction
1060           (message-narrow-to-headers)
1061           (or (message-fetch-field "to")
1062               (message-fetch-field "cc")
1063               (message-fetch-field "bcc"))))))
1064
1065 (defun message-next-header ()
1066   "Go to the beginning of the next header."
1067   (beginning-of-line)
1068   (or (eobp) (forward-char 1))
1069   (not (if (re-search-forward "^[^ \t]" nil t)
1070            (beginning-of-line)
1071          (goto-char (point-max)))))
1072
1073 (defun message-sort-headers-1 ()
1074   "Sort the buffer as headers using `message-rank' text props."
1075   (goto-char (point-min))
1076   (sort-subr
1077    nil 'message-next-header
1078    (lambda ()
1079      (message-next-header)
1080      (unless (bobp)
1081        (forward-char -1)))
1082    (lambda ()
1083      (or (get-text-property (point) 'message-rank)
1084          10000))))
1085
1086 (defun message-sort-headers ()
1087   "Sort the headers of the current message according to `message-header-format-alist'."
1088   (interactive)
1089   (save-excursion
1090     (save-restriction
1091       (let ((max (1+ (length message-header-format-alist)))
1092             rank)
1093         (message-narrow-to-headers)
1094         (while (re-search-forward "^[^ \n]+:" nil t)
1095           (put-text-property
1096            (match-beginning 0) (1+ (match-beginning 0))
1097            'message-rank
1098            (if (setq rank (length (memq (assq (intern (buffer-substring
1099                                                        (match-beginning 0)
1100                                                        (1- (match-end 0))))
1101                                               message-header-format-alist)
1102                                         message-header-format-alist)))
1103                (- max rank)
1104              (1+ max)))))
1105       (message-sort-headers-1))))
1106
1107 \f
1108
1109 ;;;
1110 ;;; Message mode
1111 ;;;
1112
1113 ;;; Set up keymap.
1114
1115 (defvar message-mode-map nil)
1116
1117 (unless message-mode-map
1118   (setq message-mode-map (copy-keymap text-mode-map))
1119   (define-key message-mode-map "\C-c?" 'describe-mode)
1120
1121   (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to)
1122   (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc)
1123   (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc)
1124   (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc)
1125   (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject)
1126   (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to)
1127   (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups)
1128   (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution)
1129   (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to)
1130   (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords)
1131   (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary)
1132   (define-key message-mode-map "\C-c\C-b" 'message-goto-body)
1133   (define-key message-mode-map "\C-c\C-i" 'message-goto-signature)
1134
1135   (define-key message-mode-map "\C-c\C-t" 'message-insert-to)
1136   (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups)
1137
1138   (define-key message-mode-map "\C-c\C-y" 'message-yank-original)
1139   (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message)
1140   (define-key message-mode-map "\C-c\C-w" 'message-insert-signature)
1141   (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body)
1142   (define-key message-mode-map "\C-c\C-o" 'message-sort-headers)
1143   (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer)
1144
1145   (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit)
1146   (define-key message-mode-map "\C-c\C-s" 'message-send)
1147   (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer)
1148   (define-key message-mode-map "\C-c\C-d" 'message-dont-send)
1149
1150   (define-key message-mode-map "\C-c\C-e" 'message-elide-region)
1151
1152   (define-key message-mode-map "\t" 'message-tab))
1153
1154 (easy-menu-define
1155  message-mode-menu message-mode-map "Message Menu."
1156  '("Message"
1157    ["Sort Headers" message-sort-headers t]
1158    ["Yank Original" message-yank-original t]
1159    ["Fill Yanked Message" message-fill-yanked-message t]
1160    ["Insert Signature" message-insert-signature t]
1161    ["Caesar (rot13) Message" message-caesar-buffer-body t]
1162    ["Caesar (rot13) Region" message-caesar-region (mark t)]
1163    ["Elide Region" message-elide-region (mark t)]
1164    ["Rename buffer" message-rename-buffer t]
1165    ["Spellcheck" ispell-message t]
1166    "----"
1167    ["Send Message" message-send-and-exit t]
1168    ["Abort Message" message-dont-send t]))
1169
1170 (easy-menu-define
1171  message-mode-field-menu message-mode-map ""
1172  '("Field"
1173    ["Fetch To" message-insert-to t]
1174    ["Fetch Newsgroups" message-insert-newsgroups t]
1175    "----"
1176    ["To" message-goto-to t]
1177    ["Subject" message-goto-subject t]
1178    ["Cc" message-goto-cc t]
1179    ["Reply-To" message-goto-reply-to t]
1180    ["Summary" message-goto-summary t]
1181    ["Keywords" message-goto-keywords t]
1182    ["Newsgroups" message-goto-newsgroups t]
1183    ["Followup-To" message-goto-followup-to t]
1184    ["Distribution" message-goto-distribution t]
1185    ["Body" message-goto-body t]
1186    ["Signature" message-goto-signature t]))
1187
1188 (defvar facemenu-add-face-function)
1189 (defvar facemenu-remove-face-function)
1190
1191 ;;;###autoload
1192 (defun message-mode ()
1193   "Major mode for editing mail and news to be sent.
1194 Like Text Mode but with these additional commands:
1195 C-c C-s  message-send (send the message)    C-c C-c  message-send-and-exit
1196 C-c C-f  move to a header field (and create it if there isn't):
1197          C-c C-f C-t  move to To        C-c C-f C-s  move to Subject
1198          C-c C-f C-c  move to Cc        C-c C-f C-b  move to Bcc
1199          C-c C-f C-w  move to Fcc       C-c C-f C-r  move to Reply-To
1200          C-c C-f C-u  move to Summary   C-c C-f C-n  move to Newsgroups
1201          C-c C-f C-k  move to Keywords  C-c C-f C-d  move to Distribution
1202          C-c C-f C-f  move to Followup-To
1203 C-c C-t  message-insert-to (add a To header to a news followup)
1204 C-c C-n  message-insert-newsgroups (add a Newsgroup header to a news reply)
1205 C-c C-b  message-goto-body (move to beginning of message text).
1206 C-c C-i  message-goto-signature (move to the beginning of the signature).
1207 C-c C-w  message-insert-signature (insert `message-signature-file' file).
1208 C-c C-y  message-yank-original (insert current message, if any).
1209 C-c C-q  message-fill-yanked-message (fill what was yanked).
1210 C-c C-e  message-elide-region (elide the text between point and mark).
1211 C-c C-r  message-caesar-buffer-body (rot13 the message body)."
1212   (interactive)
1213   (kill-all-local-variables)
1214   (make-local-variable 'message-reply-buffer)
1215   (setq message-reply-buffer nil)
1216   (make-local-variable 'message-send-actions) 
1217   (make-local-variable 'message-exit-actions) 
1218   (make-local-variable 'message-kill-actions)
1219   (make-local-variable 'message-postpone-actions)
1220   (set-syntax-table message-mode-syntax-table)
1221   (use-local-map message-mode-map)
1222   (setq local-abbrev-table message-mode-abbrev-table)
1223   (setq major-mode 'message-mode)
1224   (setq mode-name "Message")
1225   (setq buffer-offer-save t)
1226   (make-local-variable 'font-lock-defaults)
1227   (setq font-lock-defaults '(message-font-lock-keywords t))
1228   (make-local-variable 'facemenu-add-face-function)
1229   (make-local-variable 'facemenu-remove-face-function)
1230   (setq facemenu-add-face-function
1231         (lambda (face end)
1232           (let ((face-fun (cdr (assq face message-face-alist))))
1233             (if face-fun
1234                 (funcall face-fun (point) end)
1235               (error "Face %s not configured for %s mode" face mode-name)))
1236           "")
1237         facemenu-remove-face-function t)
1238   (make-local-variable 'paragraph-separate)
1239   (make-local-variable 'paragraph-start)
1240   (setq paragraph-start (concat (regexp-quote mail-header-separator)
1241                                 "$\\|[ \t]*[-_][-_][-_]+$\\|"
1242                                 "-- $\\|"
1243                                 paragraph-start))
1244   (setq paragraph-separate (concat (regexp-quote mail-header-separator)
1245                                    "$\\|[ \t]*[-_][-_][-_]+$\\|"
1246                                    "-- $\\|"
1247                                    paragraph-separate))
1248   (make-local-variable 'message-reply-headers)
1249   (setq message-reply-headers nil)
1250   (make-local-variable 'message-newsreader)
1251   (make-local-variable 'message-mailer)
1252   (make-local-variable 'message-post-method)
1253   (make-local-variable 'message-sent-message-via)
1254   (setq message-sent-message-via nil)
1255   (make-local-variable 'message-checksum)
1256   (setq message-checksum nil)
1257   ;;(when (fboundp 'mail-hist-define-keys)
1258   ;;  (mail-hist-define-keys))
1259   (when (string-match "XEmacs\\|Lucid" emacs-version)
1260     (message-setup-toolbar))
1261   (easy-menu-add message-mode-menu message-mode-map)
1262   (easy-menu-add message-mode-field-menu message-mode-map)
1263   ;; Allow mail alias things.
1264   (when (eq message-mail-alias-type 'abbrev)
1265     (if (fboundp 'mail-abbrevs-setup)
1266         (mail-abbrevs-setup)
1267       (funcall (intern "mail-aliases-setup"))))
1268   (run-hooks 'text-mode-hook 'message-mode-hook))
1269
1270 \f
1271
1272 ;;;
1273 ;;; Message mode commands
1274 ;;;
1275
1276 ;;; Movement commands
1277
1278 (defun message-goto-to ()
1279   "Move point to the To header."
1280   (interactive)
1281   (message-position-on-field "To"))
1282
1283 (defun message-goto-subject ()
1284   "Move point to the Subject header."
1285   (interactive)
1286   (message-position-on-field "Subject"))
1287
1288 (defun message-goto-cc ()
1289   "Move point to the Cc header."
1290   (interactive)
1291   (message-position-on-field "Cc" "To"))
1292
1293 (defun message-goto-bcc ()
1294   "Move point to the Bcc  header."
1295   (interactive)
1296   (message-position-on-field "Bcc" "Cc" "To"))
1297
1298 (defun message-goto-fcc ()
1299   "Move point to the Fcc header."
1300   (interactive)
1301   (message-position-on-field "Fcc" "To" "Newsgroups"))
1302
1303 (defun message-goto-reply-to ()
1304   "Move point to the Reply-To header."
1305   (interactive)
1306   (message-position-on-field "Reply-To" "Subject"))
1307
1308 (defun message-goto-newsgroups ()
1309   "Move point to the Newsgroups header."
1310   (interactive)
1311   (message-position-on-field "Newsgroups"))
1312
1313 (defun message-goto-distribution ()
1314   "Move point to the Distribution header."
1315   (interactive)
1316   (message-position-on-field "Distribution"))
1317
1318 (defun message-goto-followup-to ()
1319   "Move point to the Followup-To header."
1320   (interactive)
1321   (message-position-on-field "Followup-To" "Newsgroups"))
1322
1323 (defun message-goto-keywords ()
1324   "Move point to the Keywords header."
1325   (interactive)
1326   (message-position-on-field "Keywords" "Subject"))
1327
1328 (defun message-goto-summary ()
1329   "Move point to the Summary header."
1330   (interactive)
1331   (message-position-on-field "Summary" "Subject"))
1332
1333 (defun message-goto-body ()
1334   "Move point to the beginning of the message body."
1335   (interactive)
1336   (if (looking-at "[ \t]*\n") (expand-abbrev))
1337   (goto-char (point-min))
1338   (search-forward (concat "\n" mail-header-separator "\n") nil t))
1339
1340 (defun message-goto-signature ()
1341   "Move point to the beginning of the message signature."
1342   (interactive)
1343   (goto-char (point-min))
1344   (if (re-search-forward message-signature-separator nil t)
1345       (forward-line 1)
1346     (goto-char (point-max))))
1347
1348 \f
1349
1350 (defun message-insert-to (&optional force)
1351   "Insert a To header that points to the author of the article being replied to.
1352 If the original author requested not to be sent mail, the function signals
1353 an error.
1354 With the prefix argument FORCE, insert the header anyway."
1355   (interactive "P")
1356   (let ((co (message-fetch-reply-field "mail-copies-to")))
1357     (when (and (null force)
1358                co
1359                (equal (downcase co) "never"))
1360       (error "The user has requested not to have copies sent via mail")))
1361   (when (and (message-position-on-field "To")
1362              (mail-fetch-field "to")
1363              (not (string-match "\\` *\\'" (mail-fetch-field "to"))))
1364     (insert ", "))
1365   (insert (or (message-fetch-reply-field "reply-to")
1366               (message-fetch-reply-field "from") "")))
1367
1368 (defun message-insert-newsgroups ()
1369   "Insert the Newsgroups header from the article being replied to."
1370   (interactive)
1371   (when (and (message-position-on-field "Newsgroups")
1372              (mail-fetch-field "newsgroups")
1373              (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
1374     (insert ","))
1375   (insert (or (message-fetch-reply-field "newsgroups") "")))
1376
1377 \f
1378
1379 ;;; Various commands
1380
1381 (defun message-insert-signature (&optional force)
1382   "Insert a signature.  See documentation for the `message-signature' variable."
1383   (interactive (list 0))
1384   (let* ((signature
1385           (cond
1386            ((and (null message-signature)
1387                  (eq force 0))
1388             (save-excursion
1389               (goto-char (point-max))
1390               (not (re-search-backward
1391                     message-signature-separator nil t))))
1392            ((and (null message-signature)
1393                  force)
1394             t)
1395            ((message-functionp message-signature)
1396             (funcall message-signature))
1397            ((listp message-signature)
1398             (eval message-signature))
1399            (t message-signature)))
1400          (signature
1401           (cond ((stringp signature)
1402                  signature)
1403                 ((and (eq t signature)
1404                       message-signature-file
1405                       (file-exists-p message-signature-file))
1406                  signature))))
1407     (when signature
1408       (goto-char (point-max))
1409       ;; Insert the signature.
1410       (unless (bolp)
1411         (insert "\n"))
1412       (insert "\n-- \n")
1413       (if (eq signature t)
1414           (insert-file-contents message-signature-file)
1415         (insert signature))
1416       (goto-char (point-max))
1417       (or (bolp) (insert "\n")))))
1418
1419 (defun message-elide-region (b e)
1420   "Elide the text between point and mark.  An ellipsis (from
1421 message-elide-elipsis) will be inserted where the text was killed."
1422   (interactive "r")
1423   (kill-region b e)
1424   (unless (bolp)
1425     (insert "\n"))
1426   (insert message-elide-elipsis))
1427
1428 (defvar message-caesar-translation-table nil)
1429
1430 (defun message-caesar-region (b e &optional n)
1431   "Caesar rotation of region by N, default 13, for decrypting netnews."
1432   (interactive
1433    (list
1434     (min (point) (or (mark t) (point)))
1435     (max (point) (or (mark t) (point)))
1436     (when current-prefix-arg
1437       (prefix-numeric-value current-prefix-arg))))
1438
1439   (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
1440   (unless (or (zerop n)                 ; no action needed for a rot of 0
1441               (= b e))                  ; no region to rotate
1442     ;; We build the table, if necessary.
1443     (when (or (not message-caesar-translation-table)
1444               (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
1445         (setq message-caesar-translation-table
1446               (message-make-caesar-translation-table n)))
1447     ;; Then we translate the region.  Do it this way to retain
1448     ;; text properties.
1449     (while (< b e)
1450       (subst-char-in-region
1451        b (1+ b) (char-after b)
1452        (aref message-caesar-translation-table (char-after b)))
1453       (incf b))))
1454
1455 (defun message-make-caesar-translation-table (n)
1456   "Create a rot table with offset N."
1457   (let ((i -1)
1458         (table (make-string 256 0)))
1459     (while (< (incf i) 256)
1460       (aset table i i))
1461     (concat
1462      (substring table 0 ?A)
1463      (substring table (+ ?A n) (+ ?A n (- 26 n)))
1464      (substring table ?A (+ ?A n))
1465      (substring table (+ ?A 26) ?a)
1466      (substring table (+ ?a n) (+ ?a n (- 26 n)))
1467      (substring table ?a (+ ?a n))
1468      (substring table (+ ?a 26) 255))))
1469
1470 (defun message-caesar-buffer-body (&optional rotnum)
1471   "Caesar rotates all letters in the current buffer by 13 places.
1472 Used to encode/decode possibly offensive messages (commonly in net.jokes).
1473 With prefix arg, specifies the number of places to rotate each letter forward.
1474 Mail and USENET news headers are not rotated."
1475   (interactive (if current-prefix-arg
1476                    (list (prefix-numeric-value current-prefix-arg))
1477                  (list nil)))
1478   (save-excursion
1479     (save-restriction
1480       (when (message-goto-body)
1481         (narrow-to-region (point) (point-max)))
1482       (message-caesar-region (point-min) (point-max) rotnum))))
1483
1484 (defun message-pipe-buffer-body (program)
1485   "Pipe the message body in the current buffer through PROGRAM."
1486   (save-excursion
1487     (save-restriction
1488       (when (message-goto-body)
1489         (narrow-to-region (point) (point-max)))
1490       (let ((body (buffer-substring (point-min) (point-max))))
1491         (unless (equal 0 (call-process-region
1492                            (point-min) (point-max) program t t))
1493             (insert body)
1494             (message "%s failed." program))))))
1495
1496 (defun message-rename-buffer (&optional enter-string)
1497   "Rename the *message* buffer to \"*message* RECIPIENT\".
1498 If the function is run with a prefix, it will ask for a new buffer
1499 name, rather than giving an automatic name."
1500   (interactive "Pbuffer name: ")
1501   (save-excursion
1502     (save-restriction
1503       (goto-char (point-min))
1504       (narrow-to-region (point)
1505                         (search-forward mail-header-separator nil 'end))
1506       (let* ((mail-to (or
1507                        (if (message-news-p) (message-fetch-field "Newsgroups")
1508                          (message-fetch-field "To"))
1509                        ""))
1510              (mail-trimmed-to
1511               (if (string-match "," mail-to)
1512                   (concat (substring mail-to 0 (match-beginning 0)) ", ...")
1513                 mail-to))
1514              (name-default (concat "*message* " mail-trimmed-to))
1515              (name (if enter-string
1516                        (read-string "New buffer name: " name-default)
1517                      name-default))
1518              (default-directory
1519                (file-name-as-directory message-autosave-directory)))
1520         (rename-buffer name t)))))
1521
1522 (defun message-fill-yanked-message (&optional justifyp)
1523   "Fill the paragraphs of a message yanked into this one.
1524 Numeric argument means justify as well."
1525   (interactive "P")
1526   (save-excursion
1527     (goto-char (point-min))
1528     (search-forward (concat "\n" mail-header-separator "\n") nil t)
1529     (let ((fill-prefix message-yank-prefix))
1530       (fill-individual-paragraphs (point) (point-max) justifyp t))))
1531
1532 (defun message-indent-citation ()
1533   "Modify text just inserted from a message to be cited.
1534 The inserted text should be the region.
1535 When this function returns, the region is again around the modified text.
1536
1537 Normally, indent each nonblank line `message-indentation-spaces' spaces.
1538 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
1539   (let ((start (point)))
1540     ;; Remove unwanted headers.
1541     (when message-ignored-cited-headers
1542       (let (all-removed)
1543         (save-restriction
1544           (narrow-to-region
1545            (goto-char start)
1546            (if (search-forward "\n\n" nil t)
1547                (1- (point))
1548              (point)))
1549           (message-remove-header message-ignored-cited-headers t)
1550           (when (= (point-min) (point-max))
1551             (setq all-removed t))
1552           (goto-char (point-max)))
1553         (if all-removed
1554             (goto-char start)
1555           (forward-line 1))))
1556     ;; Delete blank lines at the start of the buffer.
1557     (while (and (point-min)
1558                 (eolp)
1559                 (not (eobp)))
1560       (message-delete-line))
1561     ;; Delete blank lines at the end of the buffer.
1562     (goto-char (point-max))
1563     (unless (eolp)
1564       (insert "\n"))
1565     (while (and (zerop (forward-line -1))
1566                 (looking-at "$"))
1567       (message-delete-line))
1568     ;; Do the indentation.
1569     (if (null message-yank-prefix)
1570         (indent-rigidly start (mark t) message-indentation-spaces)
1571       (save-excursion
1572         (goto-char start)
1573         (while (< (point) (mark t))
1574           (insert message-yank-prefix)
1575           (forward-line 1))))
1576     (goto-char start)))
1577
1578 (defun message-yank-original (&optional arg)
1579   "Insert the message being replied to, if any.
1580 Puts point before the text and mark after.
1581 Normally indents each nonblank line ARG spaces (default 3).  However,
1582 if `message-yank-prefix' is non-nil, insert that prefix on each line.
1583
1584 This function uses `message-cite-function' to do the actual citing.
1585
1586 Just \\[universal-argument] as argument means don't indent, insert no
1587 prefix, and don't delete any headers."
1588   (interactive "P")
1589   (let ((modified (buffer-modified-p)))
1590     (when (and message-reply-buffer
1591                message-cite-function)
1592       (delete-windows-on message-reply-buffer t)
1593       (insert-buffer message-reply-buffer)
1594       (funcall message-cite-function)
1595       (message-exchange-point-and-mark)
1596       (unless (bolp)
1597         (insert ?\n))
1598       (unless modified
1599         (setq message-checksum (cons (message-checksum) (buffer-size)))))))
1600
1601 (defun message-cite-original ()
1602   "Cite function in the standard Message manner."
1603   (let ((start (point))
1604         (functions
1605          (when message-indent-citation-function
1606            (if (listp message-indent-citation-function)
1607                message-indent-citation-function
1608              (list message-indent-citation-function)))))
1609     (goto-char start)
1610     (while functions
1611       (funcall (pop functions)))
1612     (when message-citation-line-function
1613       (unless (bolp)
1614         (insert "\n"))
1615       (funcall message-citation-line-function))))
1616
1617 (defun message-insert-citation-line ()
1618   "Function that inserts a simple citation line."
1619   (when message-reply-headers
1620     (insert (mail-header-from message-reply-headers) " writes:\n\n")))
1621
1622 (defun message-position-on-field (header &rest afters)
1623   (let ((case-fold-search t))
1624     (save-restriction
1625       (narrow-to-region
1626        (goto-char (point-min))
1627        (progn
1628          (re-search-forward
1629           (concat "^" (regexp-quote mail-header-separator) "$"))
1630          (match-beginning 0)))
1631       (goto-char (point-min))
1632       (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
1633           (progn
1634             (re-search-forward "^[^ \t]" nil 'move)
1635             (beginning-of-line)
1636             (skip-chars-backward "\n")
1637             t)
1638         (while (and afters
1639                     (not (re-search-forward
1640                           (concat "^" (regexp-quote (car afters)) ":")
1641                           nil t)))
1642           (pop afters))
1643         (when afters
1644           (re-search-forward "^[^ \t]" nil 'move)
1645           (beginning-of-line))
1646         (insert header ": \n")
1647         (forward-char -1)
1648         nil))))
1649
1650 (defun message-remove-signature ()
1651   "Remove the signature from the text between point and mark.
1652 The text will also be indented the normal way."
1653   (save-excursion
1654     (let ((start (point))
1655           mark)
1656       (if (not (re-search-forward message-signature-separator (mark t) t))
1657           ;; No signature here, so we just indent the cited text.
1658           (message-indent-citation)
1659         ;; Find the last non-empty line.
1660         (forward-line -1)
1661         (while (looking-at "[ \t]*$")
1662           (forward-line -1))
1663         (forward-line 1)
1664         (setq mark (set-marker (make-marker) (point)))
1665         (goto-char start)
1666         (message-indent-citation)
1667         ;; Enable undoing the deletion.
1668         (undo-boundary)
1669         (delete-region mark (mark t))
1670         (set-marker mark nil)))))
1671
1672 \f
1673
1674 ;;;
1675 ;;; Sending messages
1676 ;;;
1677
1678 (defun message-send-and-exit (&optional arg)
1679   "Send message like `message-send', then, if no errors, exit from mail buffer."
1680   (interactive "P")
1681   (let ((buf (current-buffer))
1682         (actions message-exit-actions))
1683     (when (and (message-send arg)
1684                (buffer-name buf))
1685       (if message-kill-buffer-on-exit
1686           (kill-buffer buf)
1687         (bury-buffer buf)
1688         (when (eq buf (current-buffer))
1689           (message-bury buf)))
1690       (message-do-actions actions))))
1691
1692 (defun message-dont-send ()
1693   "Don't send the message you have been editing."
1694   (interactive)
1695   (let ((actions message-postpone-actions))
1696     (message-bury (current-buffer))
1697     (message-do-actions actions)))
1698
1699 (defun message-kill-buffer ()
1700   "Kill the current buffer."
1701   (interactive)
1702   (when (or (not (buffer-modified-p))
1703             (yes-or-no-p "Message modified; kill anyway? "))
1704     (let ((actions message-kill-actions))
1705       (kill-buffer (current-buffer))
1706       (message-do-actions actions))))
1707
1708 (defun message-bury (buffer)
1709   "Bury this mail buffer."
1710   (let ((newbuf (other-buffer buffer)))
1711     (bury-buffer buffer)
1712     (if (and (fboundp 'frame-parameters)
1713              (cdr (assq 'dedicated (frame-parameters)))
1714              (not (null (delq (selected-frame) (visible-frame-list)))))
1715         (delete-frame (selected-frame))
1716       (switch-to-buffer newbuf))))
1717
1718 (defun message-send (&optional arg)
1719   "Send the message in the current buffer.
1720 If `message-interactive' is non-nil, wait for success indication
1721 or error messages, and inform user.
1722 Otherwise any failure is reported in a message back to
1723 the user from the mailer."
1724   (interactive "P")
1725   (when (if buffer-file-name
1726             (y-or-n-p (format "Send buffer contents as %s message? "
1727                               (if (message-mail-p)
1728                                   (if (message-news-p) "mail and news" "mail")
1729                                 "news")))
1730           (or (buffer-modified-p)
1731               (y-or-n-p "No changes in the buffer; really send? ")))
1732     ;; Make it possible to undo the coming changes.
1733     (undo-boundary)
1734     (let ((inhibit-read-only t))
1735       (put-text-property (point-min) (point-max) 'read-only nil))
1736     (message-fix-before-sending)
1737     (run-hooks 'message-send-hook)
1738     (message "Sending...")
1739     (let ((alist message-send-method-alist)
1740           (success t)
1741           elem sent)
1742       (while (and success
1743                   (setq elem (pop alist)))
1744         (when (and (or (not (funcall (cadr elem)))
1745                        (and (or (not (memq (car elem)
1746                                            message-sent-message-via))
1747                                 (y-or-n-p
1748                                  (format
1749                                   "Already sent message via %s; resend? "
1750                                   (car elem))))
1751                             (setq success (funcall (caddr elem) arg)))))
1752           (setq sent t)))
1753       (when (and success sent)
1754         (message-do-fcc)
1755         ;;(when (fboundp 'mail-hist-put-headers-into-history)
1756         ;; (mail-hist-put-headers-into-history))
1757         (run-hooks 'message-sent-hook)
1758         (message "Sending...done")
1759         ;; If buffer has no file, mark it as unmodified and delete autosave.
1760         (unless buffer-file-name
1761           (set-buffer-modified-p nil)
1762           (delete-auto-save-file-if-necessary t))
1763         ;; Delete other mail buffers and stuff.
1764         (message-do-send-housekeeping)
1765         (message-do-actions message-send-actions)
1766         ;; Return success.
1767         t))))
1768
1769 (defun message-send-via-mail (arg)
1770   "Send the current message via mail."  
1771   (message-send-mail arg))
1772
1773 (defun message-send-via-news (arg)
1774   "Send the current message via news."
1775   (funcall message-send-news-function arg))
1776
1777 (defun message-fix-before-sending ()
1778   "Do various things to make the message nice before sending it."
1779   ;; Make sure there's a newline at the end of the message.
1780   (goto-char (point-max))
1781   (unless (bolp)
1782     (insert "\n")))
1783
1784 (defun message-add-action (action &rest types)
1785   "Add ACTION to be performed when doing an exit of type TYPES."
1786   (let (var)
1787     (while types
1788       (set (setq var (intern (format "message-%s-actions" (pop types))))
1789            (nconc (symbol-value var) (list action))))))
1790
1791 (defun message-do-actions (actions)
1792   "Perform all actions in ACTIONS."
1793   ;; Now perform actions on successful sending.
1794   (while actions
1795     (ignore-errors
1796       (cond
1797        ;; A simple function.
1798        ((message-functionp (car actions))
1799         (funcall (car actions)))
1800        ;; Something to be evaled.
1801        (t
1802         (eval (car actions)))))
1803     (pop actions)))
1804
1805 (defun message-send-mail (&optional arg)
1806   (require 'mail-utils)
1807   (let ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
1808         (case-fold-search nil)
1809         (news (message-news-p))
1810         (mailbuf (current-buffer)))
1811     (save-restriction
1812       (message-narrow-to-headers)
1813       ;; Insert some headers.
1814       (let ((message-deletable-headers
1815              (if news nil message-deletable-headers)))
1816         (message-generate-headers message-required-mail-headers))
1817       ;; Let the user do all of the above.
1818       (run-hooks 'message-header-hook))
1819     (unwind-protect
1820         (save-excursion
1821           (set-buffer tembuf)
1822           (erase-buffer)
1823           ;; Avoid copying text props.
1824           (insert (format
1825                    "%s" (save-excursion
1826                           (set-buffer mailbuf)
1827                           (buffer-string))))
1828           ;; Remove some headers.
1829           (save-restriction
1830             (message-narrow-to-headers)
1831             ;; Remove some headers.
1832             (message-remove-header message-ignored-mail-headers t))
1833           (goto-char (point-max))
1834           ;; require one newline at the end.
1835           (or (= (preceding-char) ?\n)
1836               (insert ?\n))
1837           (when (and news
1838                      (or (message-fetch-field "cc")
1839                          (message-fetch-field "to")))
1840             (message-insert-courtesy-copy))
1841           (funcall message-send-mail-function))
1842       (kill-buffer tembuf))
1843     (set-buffer mailbuf)
1844     (push 'mail message-sent-message-via)))
1845
1846 (defun message-send-mail-with-sendmail ()
1847   "Send off the prepared buffer with sendmail."
1848   (let ((errbuf (if message-interactive
1849                     (generate-new-buffer " sendmail errors")
1850                   0))
1851         resend-to-addresses delimline)
1852     (let ((case-fold-search t))
1853       (save-restriction
1854         (message-narrow-to-headers)
1855         (setq resend-to-addresses (message-fetch-field "resent-to")))
1856       ;; Change header-delimiter to be what sendmail expects.
1857       (goto-char (point-min))
1858       (re-search-forward
1859        (concat "^" (regexp-quote mail-header-separator) "\n"))
1860       (replace-match "\n")
1861       (backward-char 1)
1862       (setq delimline (point-marker))
1863       (run-hooks 'message-send-mail-hook)
1864       ;; Insert an extra newline if we need it to work around
1865       ;; Sun's bug that swallows newlines.
1866       (goto-char (1+ delimline))
1867       (when (eval message-mailer-swallows-blank-line)
1868         (newline))
1869       (when message-interactive
1870         (save-excursion
1871           (set-buffer errbuf)
1872           (erase-buffer))))
1873     (let ((default-directory "/"))
1874       (apply 'call-process-region
1875              (append (list (point-min) (point-max)
1876                            (if (boundp 'sendmail-program)
1877                                sendmail-program
1878                              "/usr/lib/sendmail")
1879                            nil errbuf nil "-oi")
1880                      ;; Always specify who from,
1881                      ;; since some systems have broken sendmails.
1882                      ;; But some systems are more broken with -f, so
1883                      ;; we'll let users override this.
1884                      (if (null message-sendmail-f-is-evil)
1885                          (list "-f" (user-login-name)))
1886                      ;; These mean "report errors by mail"
1887                      ;; and "deliver in background".
1888                      (if (null message-interactive) '("-oem" "-odb"))
1889                      ;; Get the addresses from the message
1890                      ;; unless this is a resend.
1891                      ;; We must not do that for a resend
1892                      ;; because we would find the original addresses.
1893                      ;; For a resend, include the specific addresses.
1894                      (if resend-to-addresses
1895                          (list resend-to-addresses)
1896                        '("-t")))))
1897     (when message-interactive
1898       (save-excursion
1899         (set-buffer errbuf)
1900         (goto-char (point-min))
1901         (while (re-search-forward "\n\n* *" nil t)
1902           (replace-match "; "))
1903         (if (not (zerop (buffer-size)))
1904             (error "Sending...failed to %s"
1905                    (buffer-substring (point-min) (point-max)))))
1906       (when (bufferp errbuf)
1907         (kill-buffer errbuf)))))
1908
1909 (defun message-send-mail-with-qmail ()
1910   "Pass the prepared message buffer to qmail-inject.
1911 Refer to the documentation for the variable `message-send-mail-function'
1912 to find out how to use this."
1913   ;; replace the header delimiter with a blank line
1914   (goto-char (point-min))
1915   (re-search-forward
1916    (concat "^" (regexp-quote mail-header-separator) "\n"))
1917   (replace-match "\n")
1918   (run-hooks 'message-send-mail-hook)
1919   ;; send the message
1920   (case
1921       (apply
1922        'call-process-region 1 (point-max) message-qmail-inject-program
1923        nil nil nil
1924        ;; qmail-inject's default behaviour is to look for addresses on the
1925        ;; command line; if there're none, it scans the headers.
1926        ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
1927        ;;
1928        ;; in general, ALL of qmail-inject's defaults are perfect for simply
1929        ;; reading a formatted (i. e., at least a To: or Resent-To header)
1930        ;; message from stdin.
1931        ;;
1932        ;; qmail also has the advantage of not having been raped by
1933        ;; various vendors, so we don't have to allow for that, either --
1934        ;; compare this with message-send-mail-with-sendmail and weep
1935        ;; for sendmail's lost innocence.
1936        ;;
1937        ;; all this is way cool coz it lets us keep the arguments entirely
1938        ;; free for -inject-arguments -- a big win for the user and for us
1939        ;; since we don't have to play that double-guessing game and the user
1940        ;; gets full control (no gestapo'ish -f's, for instance).  --sj
1941        message-qmail-inject-args)
1942     ;; qmail-inject doesn't say anything on it's stdout/stderr,
1943     ;; we have to look at the retval instead
1944     (0 nil)
1945     (1   (error "qmail-inject reported permanent failure"))
1946     (111 (error "qmail-inject reported transient failure"))
1947     ;; should never happen
1948     (t   (error "qmail-inject reported unknown failure"))))
1949
1950 (defun message-send-mail-with-mh ()
1951   "Send the prepared message buffer with mh."
1952   (let ((mh-previous-window-config nil)
1953         (name (make-temp-name
1954                (concat (file-name-as-directory
1955                         (expand-file-name message-autosave-directory))
1956                        "msg."))))
1957     (setq buffer-file-name name)
1958     ;; MH wants to generate these headers itself.
1959     (when message-mh-deletable-headers
1960       (let ((headers message-mh-deletable-headers))
1961         (while headers
1962           (goto-char (point-min))
1963           (and (re-search-forward
1964                 (concat "^" (symbol-name (car headers)) ": *") nil t)
1965                (message-delete-line))
1966           (pop headers))))
1967     (run-hooks 'message-send-mail-hook)
1968     ;; Pass it on to mh.
1969     (mh-send-letter)))
1970
1971 (defun message-send-news (&optional arg)
1972   (let ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
1973         (case-fold-search nil)
1974         (method (if (message-functionp message-post-method)
1975                     (funcall message-post-method arg)
1976                   message-post-method))
1977         (messbuf (current-buffer))
1978         (message-syntax-checks
1979          (if arg
1980              (cons '(existing-newsgroups . disabled)
1981                    message-syntax-checks)
1982            message-syntax-checks))
1983         result)
1984     (save-restriction
1985       (message-narrow-to-headers)
1986       ;; Insert some headers.
1987       (message-generate-headers message-required-news-headers)
1988       ;; Let the user do all of the above.
1989       (run-hooks 'message-header-hook))
1990     (message-cleanup-headers)
1991     (if (not (message-check-news-syntax))
1992         (progn
1993           ;;(message "Posting not performed")
1994           nil)
1995       (unwind-protect
1996           (save-excursion
1997             (set-buffer tembuf)
1998             (buffer-disable-undo (current-buffer))
1999             (erase-buffer)
2000             ;; Avoid copying text props.
2001             (insert (format
2002                      "%s" (save-excursion
2003                             (set-buffer messbuf)
2004                             (buffer-string))))
2005             ;; Remove some headers.
2006             (save-restriction
2007               (message-narrow-to-headers)
2008               ;; Remove some headers.
2009               (message-remove-header message-ignored-news-headers t))
2010             (goto-char (point-max))
2011             ;; require one newline at the end.
2012             (or (= (preceding-char) ?\n)
2013                 (insert ?\n))
2014             (let ((case-fold-search t))
2015               ;; Remove the delimiter.
2016               (goto-char (point-min))
2017               (re-search-forward
2018                (concat "^" (regexp-quote mail-header-separator) "\n"))
2019               (replace-match "\n")
2020               (backward-char 1))
2021             (run-hooks 'message-send-news-hook)
2022             (require (car method))
2023             (funcall (intern (format "%s-open-server" (car method)))
2024                      (cadr method) (cddr method))
2025             (setq result
2026                   (funcall (intern (format "%s-request-post" (car method)))
2027                            (cadr method))))
2028         (kill-buffer tembuf))
2029       (set-buffer messbuf)
2030       (if result
2031           (push 'news message-sent-message-via)
2032         (message "Couldn't send message via news: %s"
2033                  (nnheader-get-report (car method)))
2034         nil))))
2035
2036 ;;;
2037 ;;; Header generation & syntax checking.
2038 ;;;
2039
2040 (defmacro message-check (type &rest forms)
2041   "Eval FORMS if TYPE is to be checked."
2042   `(or (message-check-element ,type)
2043        (save-excursion
2044          ,@forms)))
2045
2046 (put 'message-check 'lisp-indent-function 1)
2047 (put 'message-check 'edebug-form-spec '(form body))
2048
2049 (defun message-check-element (type)
2050   "Returns non-nil if this type is not to be checked."
2051   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
2052       t
2053     (let ((able (assq type message-syntax-checks)))
2054       (and (consp able)
2055            (eq (cdr able) 'disabled)))))
2056
2057 (defun message-check-news-syntax ()
2058   "Check the syntax of the message."
2059   (save-excursion
2060     (save-restriction
2061       (widen)
2062       (and
2063        ;; We narrow to the headers and check them first.
2064        (save-excursion
2065          (save-restriction
2066            (message-narrow-to-headers)
2067            (message-check-news-header-syntax)))
2068        ;; Check the body.
2069        (message-check-news-body-syntax)))))
2070
2071 (defun message-check-news-header-syntax ()
2072   (and
2073    ;; Check the Subject header.
2074    (message-check 'subject
2075      (let* ((case-fold-search t)
2076             (subject (message-fetch-field "subject")))
2077        (or
2078         (and subject
2079              (not (string-match "\\`[ \t]*\\'" subject)))
2080         (ignore
2081          (message
2082           "The subject field is empty or missing.  Posting is denied.")))))
2083    ;; Check for commands in Subject.
2084    (message-check 'subject-cmsg
2085      (if (string-match "^cmsg " (message-fetch-field "subject"))
2086          (y-or-n-p
2087           "The control code \"cmsg\" is in the subject.  Really post? ")
2088        t))
2089    ;; Check for multiple identical headers.
2090    (message-check 'multiple-headers
2091      (let (found)
2092        (while (and (not found)
2093                    (re-search-forward "^[^ \t:]+: " nil t))
2094          (save-excursion
2095            (or (re-search-forward
2096                 (concat "^"
2097                         (regexp-quote
2098                          (setq found
2099                                (buffer-substring
2100                                 (match-beginning 0) (- (match-end 0) 2))))
2101                         ":")
2102                 nil t)
2103                (setq found nil))))
2104        (if found
2105            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
2106          t)))
2107    ;; Check for Version and Sendsys.
2108    (message-check 'sendsys
2109      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
2110          (y-or-n-p
2111           (format "The article contains a %s command.  Really post? "
2112                   (buffer-substring (match-beginning 0)
2113                                     (1- (match-end 0)))))
2114        t))
2115    ;; See whether we can shorten Followup-To.
2116    (message-check 'shorten-followup-to
2117      (let ((newsgroups (message-fetch-field "newsgroups"))
2118            (followup-to (message-fetch-field "followup-to"))
2119            to)
2120        (when (and newsgroups
2121                   (string-match "," newsgroups)
2122                   (not followup-to)
2123                   (not
2124                    (zerop
2125                     (length
2126                      (setq to (completing-read
2127                                "Followups to: (default all groups) "
2128                                (mapcar (lambda (g) (list g))
2129                                        (cons "poster"
2130                                              (message-tokenize-header
2131                                               newsgroups)))))))))
2132          (goto-char (point-min))
2133          (insert "Followup-To: " to "\n"))
2134        t))
2135    ;; Check "Shoot me".
2136    (message-check 'shoot
2137      (if (re-search-forward
2138           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
2139          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
2140        t))
2141    ;; Check for Approved.
2142    (message-check 'approved
2143      (if (re-search-forward "^Approved:" nil t)
2144          (y-or-n-p "The article contains an Approved header.  Really post? ")
2145        t))
2146    ;; Check the Message-ID header.
2147    (message-check 'message-id
2148      (let* ((case-fold-search t)
2149             (message-id (message-fetch-field "message-id" t)))
2150        (or (not message-id)
2151            (and (string-match "@" message-id)
2152                 (string-match "@[^\\.]*\\." message-id))
2153            (y-or-n-p
2154             (format "The Message-ID looks strange: \"%s\".  Really post? "
2155                     message-id)))))
2156    ;; Check the Newsgroups & Followup-To headers.
2157    (message-check 'existing-newsgroups
2158      (let* ((case-fold-search t)
2159             (newsgroups (message-fetch-field "newsgroups"))
2160             (followup-to (message-fetch-field "followup-to"))
2161             (groups (message-tokenize-header
2162                      (if followup-to
2163                          (concat newsgroups "," followup-to)
2164                        newsgroups)))
2165             (hashtb (and (boundp 'gnus-active-hashtb)
2166                          gnus-active-hashtb))
2167             errors)
2168        (if (or (not hashtb)
2169                (not (boundp 'gnus-read-active-file))
2170                (not gnus-read-active-file)
2171                (eq gnus-read-active-file 'some))
2172            t
2173          (while groups
2174            (when (and (not (boundp (intern (car groups) hashtb)))
2175                       (not (equal (car groups) "poster")))
2176              (push (car groups) errors))
2177            (pop groups))
2178          (if (not errors)
2179              t
2180            (y-or-n-p
2181             (format
2182              "Really post to %s unknown group%s: %s "
2183              (if (= (length errors) 1) "this" "these")
2184              (if (= (length errors) 1) "" "s")
2185              (mapconcat 'identity errors ", ")))))))
2186    ;; Check the Newsgroups & Followup-To headers for syntax errors.
2187    (message-check 'valid-newsgroups
2188      (let ((case-fold-search t)
2189            (headers '("Newsgroups" "Followup-To"))
2190            header error)
2191        (while (and headers (not error))
2192          (when (setq header (mail-fetch-field (car headers)))
2193            (if (or
2194                 (not
2195                  (string-match
2196                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
2197                   header))
2198                 (memq
2199                  nil (mapcar
2200                       (lambda (g)
2201                         (not (string-match "\\.\\'\\|\\.\\." g)))
2202                       (message-tokenize-header header ","))))
2203                (setq error t)))
2204          (unless error
2205            (pop headers)))
2206        (if (not error)
2207            t
2208          (y-or-n-p
2209           (format "The %s header looks odd: \"%s\".  Really post? "
2210                   (car headers) header)))))
2211    (message-check 'repeated-newsgroups
2212      (let ((case-fold-search t)
2213            (headers '("Newsgroups" "Followup-To"))
2214            header error groups group)
2215        (while (and headers
2216                    (not error))
2217          (when (setq header (mail-fetch-field (pop headers)))
2218            (setq groups (message-tokenize-header header ","))
2219            (while (setq group (pop groups))
2220              (when (member group groups)
2221                (setq error group
2222                      groups nil)))))
2223        (if (not error)
2224            t
2225          (y-or-n-p
2226           (format "Group %s is repeated in headers.  Really post? " error)))))
2227    ;; Check the From header.
2228    (message-check 'from
2229      (let* ((case-fold-search t)
2230             (from (message-fetch-field "from"))
2231             (ad (nth 1 (mail-extract-address-components from))))
2232        (cond
2233         ((not from)
2234          (message "There is no From line.  Posting is denied.")
2235          nil)
2236         ((or (not (string-match "@[^\\.]*\\." ad)) ;larsi@ifi
2237              (string-match "\\.\\." ad) ;larsi@ifi..uio
2238              (string-match "@\\." ad)   ;larsi@.ifi.uio
2239              (string-match "\\.$" ad)   ;larsi@ifi.uio.
2240              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
2241              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
2242          (message
2243           "Denied posting -- the From looks strange: \"%s\"." from)
2244          nil)
2245         (t t))))))
2246
2247 (defun message-check-news-body-syntax ()
2248   (and
2249    ;; Check for long lines.
2250    (message-check 'long-lines
2251      (goto-char (point-min))
2252      (re-search-forward
2253       (concat "^" (regexp-quote mail-header-separator) "$"))
2254      (while (and
2255              (progn
2256                (end-of-line)
2257                (< (current-column) 80))
2258              (zerop (forward-line 1))))
2259      (or (bolp)
2260          (eobp)
2261          (y-or-n-p
2262           "You have lines longer than 79 characters.  Really post? ")))
2263    ;; Check whether the article is empty.
2264    (message-check 'empty
2265      (goto-char (point-min))
2266      (re-search-forward
2267       (concat "^" (regexp-quote mail-header-separator) "$"))
2268      (forward-line 1)
2269      (let ((b (point)))
2270        (goto-char (point-max))
2271        (re-search-backward message-signature-separator nil t)
2272        (beginning-of-line)
2273        (or (re-search-backward "[^ \n\t]" b t)
2274            (y-or-n-p "Empty article.  Really post? "))))
2275    ;; Check for control characters.
2276    (message-check 'control-chars
2277      (if (re-search-forward "[\000-\007\013\015-\037\200-\237]" nil t)
2278          (y-or-n-p
2279           "The article contains control characters.  Really post? ")
2280        t))
2281    ;; Check excessive size.
2282    (message-check 'size
2283      (if (> (buffer-size) 60000)
2284          (y-or-n-p
2285           (format "The article is %d octets long.  Really post? "
2286                   (buffer-size)))
2287        t))
2288    ;; Check whether any new text has been added.
2289    (message-check 'new-text
2290      (or
2291       (not message-checksum)
2292       (not (and (eq (message-checksum) (car message-checksum))
2293                 (eq (buffer-size) (cdr message-checksum))))
2294       (y-or-n-p
2295        "It looks like no new text has been added.  Really post? ")))
2296    ;; Check the length of the signature.
2297    (message-check 'signature
2298      (goto-char (point-max))
2299      (if (or (not (re-search-backward message-signature-separator nil t))
2300              (search-forward message-forward-end-separator nil t))
2301          t
2302        (if (> (count-lines (point) (point-max)) 5)
2303            (y-or-n-p
2304             (format
2305              "Your .sig is %d lines; it should be max 4.  Really post? "
2306              (1- (count-lines (point) (point-max)))))
2307          t)))))
2308
2309 (defun message-checksum ()
2310   "Return a \"checksum\" for the current buffer."
2311   (let ((sum 0))
2312     (save-excursion
2313       (goto-char (point-min))
2314       (re-search-forward
2315        (concat "^" (regexp-quote mail-header-separator) "$"))
2316       (while (not (eobp))
2317         (when (not (looking-at "[ \t\n]"))
2318           (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1)
2319                             (following-char))))
2320         (forward-char 1)))
2321     sum))
2322
2323 (defun message-do-fcc ()
2324   "Process Fcc headers in the current buffer."
2325   (let ((case-fold-search t)
2326         (buf (current-buffer))
2327         list file)
2328     (save-excursion
2329       (set-buffer (get-buffer-create " *message temp*"))
2330       (buffer-disable-undo (current-buffer))
2331       (erase-buffer)
2332       (insert-buffer-substring buf)
2333       (save-restriction
2334         (message-narrow-to-headers)
2335         (while (setq file (message-fetch-field "fcc"))
2336           (push file list)
2337           (message-remove-header "fcc" nil t)))
2338       (goto-char (point-min))
2339       (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
2340       (replace-match "" t t)
2341       ;; Process FCC operations.
2342       (while list
2343         (setq file (pop list))
2344         (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
2345             ;; Pipe the article to the program in question.
2346             (call-process-region (point-min) (point-max) shell-file-name
2347                                  nil nil nil shell-command-switch
2348                                  (match-string 1 file))
2349           ;; Save the article.
2350           (setq file (expand-file-name file))
2351           (unless (file-exists-p (file-name-directory file))
2352             (make-directory (file-name-directory file) t))
2353           (if (and message-fcc-handler-function
2354                    (not (eq message-fcc-handler-function 'rmail-output)))
2355               (funcall message-fcc-handler-function file)
2356             (if (and (file-readable-p file) (mail-file-babyl-p file))
2357                 (rmail-output file 1 nil t)
2358               (let ((mail-use-rfc822 t))
2359                 (rmail-output file 1 t t))))))
2360
2361       (kill-buffer (current-buffer)))))
2362
2363 (defun message-output (filename)
2364   "Append this article to Unix/babyl mail file.."
2365   (if (and (file-readable-p filename)
2366            (mail-file-babyl-p filename))
2367       (gnus-output-to-rmail filename t)
2368     (gnus-output-to-mail filename t)))
2369
2370 (defun message-cleanup-headers ()
2371   "Do various automatic cleanups of the headers."
2372   ;; Remove empty lines in the header.
2373   (save-restriction
2374     (message-narrow-to-headers)
2375     (while (re-search-forward "^[ \t]*\n" nil t)
2376       (replace-match "" t t)))
2377
2378   ;; Correct Newsgroups and Followup-To headers: change sequence of
2379   ;; spaces to comma and eliminate spaces around commas.  Eliminate
2380   ;; embedded line breaks.
2381   (goto-char (point-min))
2382   (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
2383     (save-restriction
2384       (narrow-to-region
2385        (point)
2386        (if (re-search-forward "^[^ \t]" nil t)
2387            (match-beginning 0)
2388          (forward-line 1)
2389          (point)))
2390       (goto-char (point-min))
2391       (while (re-search-forward "\n[ \t]+" nil t)
2392         (replace-match " " t t))        ;No line breaks (too confusing)
2393       (goto-char (point-min))
2394       (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
2395         (replace-match "," t t))
2396       (goto-char (point-min))
2397       ;; Remove trailing commas.
2398       (when (re-search-forward ",+$" nil t)
2399         (replace-match "" t t)))))
2400
2401 (defun message-make-date ()
2402   "Make a valid data header."
2403   (let ((now (current-time)))
2404     (timezone-make-date-arpa-standard
2405      (current-time-string now) (current-time-zone now))))
2406
2407 (defun message-make-message-id ()
2408   "Make a unique Message-ID."
2409   (concat "<" (message-unique-id)
2410           (let ((psubject (save-excursion (message-fetch-field "subject"))))
2411             (if (and message-reply-headers
2412                      (mail-header-references message-reply-headers)
2413                      (mail-header-subject message-reply-headers)
2414                      psubject
2415                      (mail-header-subject message-reply-headers)
2416                      (not (string=
2417                            (message-strip-subject-re
2418                             (mail-header-subject message-reply-headers))
2419                            (message-strip-subject-re psubject))))
2420                 "_-_" ""))
2421           "@" (message-make-fqdn) ">"))
2422
2423 (defvar message-unique-id-char nil)
2424
2425 ;; If you ever change this function, make sure the new version
2426 ;; cannot generate IDs that the old version could.
2427 ;; You might for example insert a "." somewhere (not next to another dot
2428 ;; or string boundary), or modify the "fsf" string.
2429 (defun message-unique-id ()
2430   ;; Don't use microseconds from (current-time), they may be unsupported.
2431   ;; Instead we use this randomly inited counter.
2432   (setq message-unique-id-char
2433         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
2434            ;; (current-time) returns 16-bit ints,
2435            ;; and 2^16*25 just fits into 4 digits i base 36.
2436            (* 25 25)))
2437   (let ((tm (current-time)))
2438     (concat
2439      (if (memq system-type '(ms-dos emx vax-vms))
2440          (let ((user (downcase (user-login-name))))
2441            (while (string-match "[^a-z0-9_]" user)
2442              (aset user (match-beginning 0) ?_))
2443            user)
2444        (message-number-base36 (user-uid) -1))
2445      (message-number-base36 (+ (car   tm)
2446                                (lsh (% message-unique-id-char 25) 16)) 4)
2447      (message-number-base36 (+ (nth 1 tm)
2448                                (lsh (/ message-unique-id-char 25) 16)) 4)
2449      ;; Append the newsreader name, because while the generated
2450      ;; ID is unique to this newsreader, other newsreaders might
2451      ;; otherwise generate the same ID via another algorithm.
2452      ".fsf")))
2453
2454 (defun message-number-base36 (num len)
2455   (if (if (< len 0)
2456           (<= num 0)
2457         (= len 0))
2458       ""
2459     (concat (message-number-base36 (/ num 36) (1- len))
2460             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
2461                                   (% num 36))))))
2462
2463 (defun message-make-organization ()
2464   "Make an Organization header."
2465   (let* ((organization
2466           (or (getenv "ORGANIZATION")
2467               (when message-user-organization
2468                 (if (message-functionp message-user-organization)
2469                     (funcall message-user-organization)
2470                   message-user-organization)))))
2471     (save-excursion
2472       (message-set-work-buffer)
2473       (cond ((stringp organization)
2474              (insert organization))
2475             ((and (eq t organization)
2476                   message-user-organization-file
2477                   (file-exists-p message-user-organization-file))
2478              (insert-file-contents message-user-organization-file)))
2479       (goto-char (point-min))
2480       (while (re-search-forward "[\t\n]+" nil t)
2481         (replace-match "" t t))
2482       (unless (zerop (buffer-size))
2483         (buffer-string)))))
2484
2485 (defun message-make-lines ()
2486   "Count the number of lines and return numeric string."
2487   (save-excursion
2488     (save-restriction
2489       (widen)
2490       (goto-char (point-min))
2491       (re-search-forward
2492        (concat "^" (regexp-quote mail-header-separator) "$"))
2493       (forward-line 1)
2494       (int-to-string (count-lines (point) (point-max))))))
2495
2496 (defun message-make-in-reply-to ()
2497   "Return the In-Reply-To header for this message."
2498   (when message-reply-headers
2499     (let ((from (mail-header-from message-reply-headers))
2500           (date (mail-header-date message-reply-headers)))
2501       (when from
2502         (let ((stop-pos
2503                (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
2504           (concat (if stop-pos (substring from 0 stop-pos) from)
2505                   "'s message of \""
2506                   (if (or (not date) (string= date ""))
2507                       "(unknown date)" date)
2508                   "\""))))))
2509
2510 (defun message-make-distribution ()
2511   "Make a Distribution header."
2512   (let ((orig-distribution (message-fetch-reply-field "distribution")))
2513     (cond ((message-functionp message-distribution-function)
2514            (funcall message-distribution-function))
2515           (t orig-distribution))))
2516
2517 (defun message-make-expires ()
2518   "Return an Expires header based on `message-expires'."
2519   (let ((current (current-time))
2520         (future (* 1.0 message-expires 60 60 24)))
2521     ;; Add the future to current.
2522     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
2523     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
2524     ;; Return the date in the future in UT.
2525     (timezone-make-date-arpa-standard
2526      (current-time-string current) (current-time-zone current) '(0 "UT"))))
2527
2528 (defun message-make-path ()
2529   "Return uucp path."
2530   (let ((login-name (user-login-name)))
2531     (cond ((null message-user-path)
2532            (concat (system-name) "!" login-name))
2533           ((stringp message-user-path)
2534            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
2535            (concat message-user-path "!" login-name))
2536           (t login-name))))
2537
2538 (defun message-make-from ()
2539   "Make a From header."
2540   (let* ((style message-from-style)
2541          (login (message-make-address))
2542          (fullname
2543           (or (and (boundp 'user-full-name)
2544                    user-full-name)
2545               (user-full-name))))
2546     (when (string= fullname "&")
2547       (setq fullname (user-login-name)))
2548     (save-excursion
2549       (message-set-work-buffer)
2550       (cond
2551        ((or (null style)
2552             (equal fullname ""))
2553         (insert login))
2554        ((or (eq style 'angles)
2555             (and (not (eq style 'parens))
2556                  ;; Use angles if no quoting is needed, or if parens would
2557                  ;; need quoting too.
2558                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
2559                      (let ((tmp (concat fullname nil)))
2560                        (while (string-match "([^()]*)" tmp)
2561                          (aset tmp (match-beginning 0) ?-)
2562                          (aset tmp (1- (match-end 0)) ?-))
2563                        (string-match "[\\()]" tmp)))))
2564         (insert fullname)
2565         (goto-char (point-min))
2566         ;; Look for a character that cannot appear unquoted
2567         ;; according to RFC 822.
2568         (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
2569           ;; Quote fullname, escaping specials.
2570           (goto-char (point-min))
2571           (insert "\"")
2572           (while (re-search-forward "[\"\\]" nil 1)
2573             (replace-match "\\\\\\&" t))
2574           (insert "\""))
2575         (insert " <" login ">"))
2576        (t                               ; 'parens or default
2577         (insert login " (")
2578         (let ((fullname-start (point)))
2579           (insert fullname)
2580           (goto-char fullname-start)
2581           ;; RFC 822 says \ and nonmatching parentheses
2582           ;; must be escaped in comments.
2583           ;; Escape every instance of ()\ ...
2584           (while (re-search-forward "[()\\]" nil 1)
2585             (replace-match "\\\\\\&" t))
2586           ;; ... then undo escaping of matching parentheses,
2587           ;; including matching nested parentheses.
2588           (goto-char fullname-start)
2589           (while (re-search-forward
2590                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
2591                   nil 1)
2592             (replace-match "\\1(\\3)" t)
2593             (goto-char fullname-start)))
2594         (insert ")")))
2595       (buffer-string))))
2596
2597 (defun message-make-sender ()
2598   "Return the \"real\" user address.
2599 This function tries to ignore all user modifications, and
2600 give as trustworthy answer as possible."
2601   (concat (user-login-name) "@" (system-name)))
2602
2603 (defun message-make-address ()
2604   "Make the address of the user."
2605   (or (message-user-mail-address)
2606       (concat (user-login-name) "@" (message-make-domain))))
2607
2608 (defun message-user-mail-address ()
2609   "Return the pertinent part of `user-mail-address'."
2610   (when user-mail-address
2611     (if (string-match " " user-mail-address)
2612         (nth 1 (mail-extract-address-components user-mail-address))
2613       user-mail-address)))
2614
2615 (defun message-make-fqdn ()
2616   "Return user's fully qualified domain name."
2617   (let ((system-name (system-name))
2618         (user-mail (message-user-mail-address)))
2619     (cond
2620      ((string-match "[^.]\\.[^.]" system-name)
2621       ;; `system-name' returned the right result.
2622       system-name)
2623      ;; Try `mail-host-address'.
2624      ((and (boundp 'mail-host-address)
2625            (stringp mail-host-address)
2626            (string-match "\\." mail-host-address))
2627       mail-host-address)
2628      ;; We try `user-mail-address' as a backup.
2629      ((and (string-match "\\." user-mail)
2630            (string-match "@\\(.*\\)\\'" user-mail))
2631       (match-string 1 user-mail))
2632      ;; Default to this bogus thing.
2633      (t
2634       (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me")))))
2635
2636 (defun message-make-host-name ()
2637   "Return the name of the host."
2638   (let ((fqdn (message-make-fqdn)))
2639     (string-match "^[^.]+\\." fqdn)
2640     (substring fqdn 0 (1- (match-end 0)))))
2641
2642 (defun message-make-domain ()
2643   "Return the domain name."
2644   (or mail-host-address
2645       (message-make-fqdn)))
2646
2647 (defun message-generate-headers (headers)
2648   "Prepare article HEADERS.
2649 Headers already prepared in the buffer are not modified."
2650   (save-restriction
2651     (message-narrow-to-headers)
2652     (let* ((Date (message-make-date))
2653            (Message-ID (message-make-message-id))
2654            (Organization (message-make-organization))
2655            (From (message-make-from))
2656            (Path (message-make-path))
2657            (Subject nil)
2658            (Newsgroups nil)
2659            (In-Reply-To (message-make-in-reply-to))
2660            (To nil)
2661            (Distribution (message-make-distribution))
2662            (Lines (message-make-lines))
2663            (X-Newsreader message-newsreader)
2664            (X-Mailer (and (not (message-fetch-field "X-Newsreader"))
2665                           message-mailer))
2666            (Expires (message-make-expires))
2667            (case-fold-search t)
2668            header value elem)
2669       ;; First we remove any old generated headers.
2670       (let ((headers message-deletable-headers))
2671         (while headers
2672           (goto-char (point-min))
2673           (and (re-search-forward
2674                 (concat "^" (symbol-name (car headers)) ": *") nil t)
2675                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
2676                (message-delete-line))
2677           (pop headers)))
2678       ;; Go through all the required headers and see if they are in the
2679       ;; articles already.  If they are not, or are empty, they are
2680       ;; inserted automatically - except for Subject, Newsgroups and
2681       ;; Distribution.
2682       (while headers
2683         (goto-char (point-min))
2684         (setq elem (pop headers))
2685         (if (consp elem)
2686             (if (eq (car elem) 'optional)
2687                 (setq header (cdr elem))
2688               (setq header (car elem)))
2689           (setq header elem))
2690         (when (or (not (re-search-forward
2691                         (concat "^" (downcase (symbol-name header)) ":")
2692                         nil t))
2693                   (progn
2694                     ;; The header was found.  We insert a space after the
2695                     ;; colon, if there is none.
2696                     (if (/= (following-char) ? ) (insert " ") (forward-char 1))
2697                     ;; Find out whether the header is empty...
2698                     (looking-at "[ \t]*$")))
2699           ;; So we find out what value we should insert.
2700           (setq value
2701                 (cond
2702                  ((and (consp elem) (eq (car elem) 'optional))
2703                   ;; This is an optional header.  If the cdr of this
2704                   ;; is something that is nil, then we do not insert
2705                   ;; this header.
2706                   (setq header (cdr elem))
2707                   (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
2708                       (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
2709                  ((consp elem)
2710                   ;; The element is a cons.  Either the cdr is a
2711                   ;; string to be inserted verbatim, or it is a
2712                   ;; function, and we insert the value returned from
2713                   ;; this function.
2714                   (or (and (stringp (cdr elem)) (cdr elem))
2715                       (and (fboundp (cdr elem)) (funcall (cdr elem)))))
2716                  ((and (boundp header) (symbol-value header))
2717                   ;; The element is a symbol.  We insert the value
2718                   ;; of this symbol, if any.
2719                   (symbol-value header))
2720                  (t
2721                   ;; We couldn't generate a value for this header,
2722                   ;; so we just ask the user.
2723                   (read-from-minibuffer
2724                    (format "Empty header for %s; enter value: " header)))))
2725           ;; Finally insert the header.
2726           (when (and value
2727                      (not (equal value "")))
2728             (save-excursion
2729               (if (bolp)
2730                   (progn
2731                     ;; This header didn't exist, so we insert it.
2732                     (goto-char (point-max))
2733                     (insert (symbol-name header) ": " value "\n")
2734                     (forward-line -1))
2735                 ;; The value of this header was empty, so we clear
2736                 ;; totally and insert the new value.
2737                 (delete-region (point) (gnus-point-at-eol))
2738                 (insert value))
2739               ;; Add the deletable property to the headers that require it.
2740               (and (memq header message-deletable-headers)
2741                    (progn (beginning-of-line) (looking-at "[^:]+: "))
2742                    (add-text-properties
2743                     (point) (match-end 0)
2744                     '(message-deletable t face italic) (current-buffer)))))))
2745       ;; Insert new Sender if the From is strange.
2746       (let ((from (message-fetch-field "from"))
2747             (sender (message-fetch-field "sender"))
2748             (secure-sender (message-make-sender)))
2749         (when (and from
2750                    (not (message-check-element 'sender))
2751                    (not (string=
2752                          (downcase
2753                           (cadr (mail-extract-address-components from)))
2754                          (downcase secure-sender)))
2755                    (or (null sender)
2756                        (not
2757                         (string=
2758                          (downcase
2759                           (cadr (mail-extract-address-components sender)))
2760                          (downcase secure-sender)))))
2761           (goto-char (point-min))
2762           ;; Rename any old Sender headers to Original-Sender.
2763           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
2764             (beginning-of-line)
2765             (insert "Original-")
2766             (beginning-of-line))
2767           (when (or (message-news-p)
2768                     (string-match "^[^@]@.+\\..+" secure-sender))
2769             (insert "Sender: " secure-sender "\n")))))))
2770
2771 (defun message-insert-courtesy-copy ()
2772   "Insert a courtesy message in mail copies of combined messages."
2773   (let (newsgroups)
2774     (save-excursion
2775       (save-restriction
2776         (message-narrow-to-headers)
2777         (when (setq newsgroups (message-fetch-field "newsgroups"))
2778           (goto-char (point-max))
2779           (insert "Posted-To: " newsgroups "\n")))
2780       (forward-line 1)
2781       (when message-courtesy-message
2782         (cond
2783          ((string-match "%s" message-courtesy-message)
2784           (insert (format message-courtesy-message newsgroups)))
2785          (t
2786           (insert message-courtesy-message)))))))
2787
2788 ;;;
2789 ;;; Setting up a message buffer
2790 ;;;
2791
2792 (defun message-fill-address (header value)
2793   (save-restriction
2794     (narrow-to-region (point) (point))
2795     (insert (capitalize (symbol-name header))
2796             ": "
2797             (if (consp value) (car value) value)
2798             "\n")
2799     (narrow-to-region (point-min) (1- (point-max)))
2800     (let (quoted last)
2801       (goto-char (point-min))
2802       (while (not (eobp))
2803         (skip-chars-forward "^,\"" (point-max))
2804         (if (or (= (following-char) ?,)
2805                 (eobp))
2806             (when (not quoted)
2807               (if (and (> (current-column) 78)
2808                        last)
2809                   (progn
2810                     (save-excursion
2811                       (goto-char last)
2812                       (insert "\n\t"))
2813                     (setq last (1+ (point))))
2814                 (setq last (1+ (point)))))
2815           (setq quoted (not quoted)))
2816         (unless (eobp)
2817           (forward-char 1))))
2818     (goto-char (point-max))
2819     (widen)
2820     (forward-line 1)))
2821
2822 (defun message-fill-header (header value)
2823   (let ((begin (point))
2824         (fill-column 78)
2825         (fill-prefix "\t"))
2826     (insert (capitalize (symbol-name header))
2827             ": "
2828             (if (consp value) (car value) value)
2829             "\n")
2830     (save-restriction
2831       (narrow-to-region begin (point))
2832       (fill-region-as-paragraph begin (point))
2833       ;; Tapdance around looong Message-IDs.
2834       (forward-line -1)
2835       (when (looking-at "[ \t]*$")
2836         (message-delete-line))
2837       (goto-char begin)
2838       (re-search-forward ":" nil t)
2839       (when (looking-at "\n[ \t]+")
2840         (replace-match " " t t))
2841       (goto-char (point-max)))))
2842
2843 (defun message-position-point ()
2844   "Move point to where the user probably wants to find it."
2845   (message-narrow-to-headers)
2846   (cond
2847    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
2848     (search-backward ":" )
2849     (widen)
2850     (forward-char 1)
2851     (if (= (following-char) ? )
2852         (forward-char 1)
2853       (insert " ")))
2854    (t
2855     (goto-char (point-max))
2856     (widen)
2857     (forward-line 1)
2858     (unless (looking-at "$")
2859       (forward-line 2)))
2860    (sit-for 0)))
2861
2862 (defun message-buffer-name (type &optional to group)
2863   "Return a new (unique) buffer name based on TYPE and TO."
2864   (cond
2865    ;; Check whether `message-generate-new-buffers' is a function,
2866    ;; and if so, call it.
2867    ((message-functionp message-generate-new-buffers)
2868     (funcall message-generate-new-buffers type to group))
2869    ;; Generate a new buffer name The Message Way.
2870    (message-generate-new-buffers
2871     (generate-new-buffer-name
2872      (concat "*" type
2873              (if to
2874                  (concat " to "
2875                          (or (car (mail-extract-address-components to))
2876                              to) "")
2877                "")
2878              (if (and group (not (string= group ""))) (concat " on " group) "")
2879              "*")))
2880    ;; Use standard name.
2881    (t
2882     (format "*%s message*" type))))
2883
2884 (defun message-pop-to-buffer (name)
2885   "Pop to buffer NAME, and warn if it already exists and is modified."
2886   (let ((buffer (get-buffer name)))
2887     (if (and buffer
2888              (buffer-name buffer))
2889         (progn
2890           (set-buffer (pop-to-buffer buffer))
2891           (when (and (buffer-modified-p)
2892                      (not (y-or-n-p
2893                            "Message already being composed; erase? ")))
2894             (error "Message being composed")))
2895       (set-buffer (pop-to-buffer name))))
2896   (erase-buffer)
2897   (message-mode))
2898
2899 (defun message-do-send-housekeeping ()
2900   "Kill old message buffers."
2901   ;; We might have sent this buffer already.  Delete it from the
2902   ;; list of buffers.
2903   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
2904   (while (and message-max-buffers
2905               message-buffer-list
2906               (>= (length message-buffer-list) message-max-buffers))
2907     ;; Kill the oldest buffer -- unless it has been changed.
2908     (let ((buffer (pop message-buffer-list)))
2909       (when (and (buffer-name buffer)
2910                  (not (buffer-modified-p buffer)))
2911         (kill-buffer buffer))))
2912   ;; Rename the buffer.
2913   (if message-send-rename-function
2914       (funcall message-send-rename-function)
2915     (when (string-match "\\`\\*" (buffer-name))
2916       (rename-buffer
2917        (concat "*sent " (substring (buffer-name) (match-end 0))) t)))
2918   ;; Push the current buffer onto the list.
2919   (when message-max-buffers
2920     (setq message-buffer-list
2921           (nconc message-buffer-list (list (current-buffer))))))
2922
2923 (defvar mc-modes-alist)
2924 (defun message-setup (headers &optional replybuffer actions)
2925   (when (and (boundp 'mc-modes-alist)
2926              (not (assq 'message-mode mc-modes-alist)))
2927     (push '(message-mode (encrypt . mc-encrypt-message)
2928                          (sign . mc-sign-message))
2929           mc-modes-alist))
2930   (when actions
2931     (setq message-send-actions actions))
2932   (setq message-reply-buffer replybuffer)
2933   (goto-char (point-min))
2934   ;; Insert all the headers.
2935   (mail-header-format
2936    (let ((h headers)
2937          (alist message-header-format-alist))
2938      (while h
2939        (unless (assq (caar h) message-header-format-alist)
2940          (push (list (caar h)) alist))
2941        (pop h))
2942      alist)
2943    headers)
2944   (delete-region (point) (progn (forward-line -1) (point)))
2945   (when message-default-headers
2946     (insert message-default-headers))
2947   (put-text-property
2948    (point)
2949    (progn
2950      (insert mail-header-separator "\n")
2951      (1- (point)))
2952    'read-only nil)
2953   (forward-line -1)
2954   (when (message-news-p)
2955     (when message-default-news-headers
2956       (insert message-default-news-headers))
2957     (when message-generate-headers-first
2958       (message-generate-headers
2959        (delq 'Lines
2960              (delq 'Subject
2961                    (copy-sequence message-required-news-headers))))))
2962   (when (message-mail-p)
2963     (when message-default-mail-headers
2964       (insert message-default-mail-headers))
2965     (when message-generate-headers-first
2966       (message-generate-headers
2967        (delq 'Lines
2968              (delq 'Subject
2969                    (copy-sequence message-required-mail-headers))))))
2970   (run-hooks 'message-signature-setup-hook)
2971   (message-insert-signature)
2972   (message-set-auto-save-file-name)
2973   (save-restriction
2974     (message-narrow-to-headers)
2975     (run-hooks 'message-header-setup-hook))
2976   (set-buffer-modified-p nil)
2977   (setq buffer-undo-list nil)
2978   (run-hooks 'message-setup-hook)
2979   (message-position-point)
2980   (undo-boundary))
2981
2982 (defun message-set-auto-save-file-name ()
2983   "Associate the message buffer with a file in the drafts directory."
2984   (when message-autosave-directory
2985     (unless (file-exists-p message-autosave-directory)
2986       (make-directory message-autosave-directory t))
2987     (let ((name (make-temp-name
2988                  (expand-file-name
2989                   (concat (file-name-as-directory message-autosave-directory)
2990                           "msg."
2991                           (nnheader-replace-chars-in-string
2992                            (nnheader-replace-chars-in-string
2993                             (buffer-name) ?* ?.)
2994                            ?/ ?-))))))
2995       (setq buffer-auto-save-file-name
2996             (save-excursion
2997               (prog1
2998                   (progn
2999                     (set-buffer (get-buffer-create " *draft tmp*"))
3000                     (setq buffer-file-name name)
3001                     (make-auto-save-file-name))
3002                 (kill-buffer (current-buffer)))))
3003       (clear-visited-file-modtime))))
3004
3005 \f
3006
3007 ;;;
3008 ;;; Commands for interfacing with message
3009 ;;;
3010
3011 ;;;###autoload
3012 (defun message-mail (&optional to subject
3013                                other-headers continue switch-function
3014                                yank-action send-actions)
3015   "Start editing a mail message to be sent."
3016   (interactive)
3017   (let ((message-this-is-mail t))
3018     (message-pop-to-buffer (message-buffer-name "mail" to))
3019     (message-setup
3020      (nconc
3021       `((To . ,(or to "")) (Subject . ,(or subject "")))
3022       (when other-headers other-headers)))))
3023
3024 ;;;###autoload
3025 (defun message-news (&optional newsgroups subject)
3026   "Start editing a news article to be sent."
3027   (interactive)
3028   (let ((message-this-is-news t))
3029     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))
3030     (message-setup `((Newsgroups . ,(or newsgroups ""))
3031                      (Subject . ,(or subject ""))))))
3032
3033 ;;;###autoload
3034 (defun message-reply (&optional to-address wide ignore-reply-to)
3035   "Start editing a reply to the article in the current buffer."
3036   (interactive)
3037   (let ((cur (current-buffer))
3038         from subject date reply-to to cc
3039         references message-id follow-to
3040         (inhibit-point-motion-hooks t)
3041         mct never-mct gnus-warning)
3042     (save-restriction
3043       (message-narrow-to-head)
3044       ;; Allow customizations to have their say.
3045       (if (not wide)
3046           ;; This is a regular reply.
3047           (if (message-functionp message-reply-to-function)
3048               (setq follow-to (funcall message-reply-to-function)))
3049         ;; This is a followup.
3050         (if (message-functionp message-wide-reply-to-function)
3051             (save-excursion
3052               (setq follow-to
3053                     (funcall message-wide-reply-to-function)))))
3054       ;; Find all relevant headers we need.
3055       (setq from (message-fetch-field "from")
3056             date (message-fetch-field "date")
3057             subject (or (message-fetch-field "subject") "none")
3058             to (message-fetch-field "to")
3059             cc (message-fetch-field "cc")
3060             mct (message-fetch-field "mail-copies-to")
3061             reply-to (unless ignore-reply-to (message-fetch-field "reply-to"))
3062             references (message-fetch-field "references")
3063             message-id (message-fetch-field "message-id" t))
3064       ;; Remove any (buggy) Re:'s that are present and make a
3065       ;; proper one.
3066       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3067         (setq subject (substring subject (match-end 0))))
3068       (setq subject (concat "Re: " subject))
3069
3070       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3071                  (string-match "<[^>]+>" gnus-warning))
3072         (setq message-id (match-string 0 gnus-warning)))
3073
3074       ;; Handle special values of Mail-Copies-To.
3075       (when mct
3076         (cond ((equal (downcase mct) "never")
3077                (setq never-mct t)
3078                (setq mct nil))
3079               ((equal (downcase mct) "always")
3080                (setq mct (or reply-to from)))))
3081
3082       (unless follow-to
3083         (if (or (not wide)
3084                 to-address)
3085             (setq follow-to (list (cons 'To (or to-address reply-to from))))
3086           (let (ccalist)
3087             (save-excursion
3088               (message-set-work-buffer)
3089               (unless never-mct
3090                 (insert (or reply-to from "")))
3091               (insert (if to (concat (if (bolp) "" ", ") to "") ""))
3092               (insert (if mct (concat (if (bolp) "" ", ") mct) ""))
3093               (insert (if cc (concat (if (bolp) "" ", ") cc) ""))
3094               (goto-char (point-min))
3095               (while (re-search-forward "[ \t]+" nil t)
3096                 (replace-match " " t t))
3097               ;; Remove addresses that match `rmail-dont-reply-to-names'.
3098               (insert (prog1 (rmail-dont-reply-to (buffer-string))
3099                         (erase-buffer)))
3100               (goto-char (point-min))
3101               ;; Perhaps Mail-Copies-To: never removed the only address?
3102               (when (eobp)
3103                 (insert (or reply-to from "")))
3104               (setq ccalist
3105                     (mapcar
3106                      (lambda (addr)
3107                        (cons (mail-strip-quoted-names addr) addr))
3108                      (message-tokenize-header (buffer-string))))
3109               (let ((s ccalist))
3110                 (while s
3111                   (setq ccalist (delq (assoc (car (pop s)) s) ccalist)))))
3112             (setq follow-to (list (cons 'To (cdr (pop ccalist)))))
3113             (when ccalist
3114               (let ((ccs (cons 'Cc (mapconcat
3115                                     (lambda (addr) (cdr addr)) ccalist ", "))))
3116                 (when (string-match "^ +" (cdr ccs))
3117                   (setcdr ccs (substring (cdr ccs) (match-end 0))))
3118                 (push ccs follow-to))))))
3119       (widen))
3120
3121     (message-pop-to-buffer (message-buffer-name
3122                             (if wide "wide reply" "reply") from
3123                             (if wide to-address nil)))
3124
3125     (setq message-reply-headers
3126           (vector 0 subject from date message-id references 0 0 ""))
3127
3128     (message-setup
3129      `((Subject . ,subject)
3130        ,@follow-to
3131        ,@(if (or references message-id)
3132              `((References . ,(concat (or references "") (and references " ")
3133                                       (or message-id ""))))
3134            nil))
3135      cur)))
3136
3137 ;;;###autoload
3138 (defun message-wide-reply (&optional to-address ignore-reply-to)
3139   "Make a \"wide\" reply to the message in the current buffer."
3140   (interactive)
3141   (message-reply to-address t ignore-reply-to))
3142
3143 ;;;###autoload
3144 (defun message-followup (&optional to-newsgroups)
3145   "Follow up to the message in the current buffer.
3146 If TO-NEWSGROUPS, use that as the new Newsgroups line."
3147   (interactive)
3148   (let ((cur (current-buffer))
3149         from subject date reply-to mct
3150         references message-id follow-to
3151         (inhibit-point-motion-hooks t)
3152         (message-this-is-news t)
3153         followup-to distribution newsgroups gnus-warning posted-to)
3154     (save-restriction
3155       (narrow-to-region
3156        (goto-char (point-min))
3157        (if (search-forward "\n\n" nil t)
3158            (1- (point))
3159          (point-max)))
3160       (when (message-functionp message-followup-to-function)
3161         (setq follow-to
3162               (funcall message-followup-to-function)))
3163       (setq from (message-fetch-field "from")
3164             date (message-fetch-field "date")
3165             subject (or (message-fetch-field "subject") "none")
3166             references (message-fetch-field "references")
3167             message-id (message-fetch-field "message-id" t)
3168             followup-to (message-fetch-field "followup-to")
3169             newsgroups (message-fetch-field "newsgroups")
3170             posted-to (message-fetch-field "posted-to")
3171             reply-to (message-fetch-field "reply-to")
3172             distribution (message-fetch-field "distribution")
3173             mct (message-fetch-field "mail-copies-to"))
3174       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3175                  (string-match "<[^>]+>" gnus-warning))
3176         (setq message-id (match-string 0 gnus-warning)))
3177       ;; Remove bogus distribution.
3178       (when (and (stringp distribution)
3179                  (let ((case-fold-search t))
3180                    (string-match "world" distribution)))
3181         (setq distribution nil))
3182       ;; Remove any (buggy) Re:'s that are present and make a
3183       ;; proper one.
3184       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3185         (setq subject (substring subject (match-end 0))))
3186       (setq subject (concat "Re: " subject))
3187       (widen))
3188
3189     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
3190
3191     (message-setup
3192      `((Subject . ,subject)
3193        ,@(cond
3194           (to-newsgroups
3195            (list (cons 'Newsgroups to-newsgroups)))
3196           (follow-to follow-to)
3197           ((and followup-to message-use-followup-to)
3198            (list
3199             (cond
3200              ((equal (downcase followup-to) "poster")
3201               (if (or (eq message-use-followup-to 'use)
3202                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
3203 You should normally obey the Followup-To: header.
3204
3205 `Followup-To: poster' sends your response via e-mail instead of news.
3206
3207 A typical situation where `Followup-To: poster' is used is when the poster
3208 does not read the newsgroup, so he wouldn't see any replies sent to it."))
3209                   (progn
3210                     (setq message-this-is-news nil)
3211                     (cons 'To (or reply-to from "")))
3212                 (cons 'Newsgroups newsgroups)))
3213              (t
3214               (if (or (equal followup-to newsgroups)
3215                       (not (eq message-use-followup-to 'ask))
3216                       (message-y-or-n-p
3217                        (concat "Obey Followup-To: " followup-to "? ") t "\
3218 You should normally obey the Followup-To: header.
3219
3220         `Followup-To: " followup-to "'
3221 directs your response to " (if (string-match "," followup-to)
3222                                "the specified newsgroups"
3223                              "that newsgroup only") ".
3224
3225 If a message is posted to several newsgroups, Followup-To is often
3226 used to direct the following discussion to one newsgroup only,
3227 because discussions that are spread over several newsgroup tend to
3228 be fragmented and very difficult to follow.
3229
3230 Also, some source/announcement newsgroups are not indented for discussion;
3231 responses here are directed to other newsgroups."))
3232                   (cons 'Newsgroups followup-to)
3233                 (cons 'Newsgroups newsgroups))))))
3234           (posted-to
3235            `((Newsgroups . ,posted-to)))
3236           (t
3237            `((Newsgroups . ,newsgroups))))
3238        ,@(and distribution (list (cons 'Distribution distribution)))
3239        ,@(if (or references message-id)
3240              `((References . ,(concat (or references "") (and references " ")
3241                                       (or message-id "")))))
3242        ,@(when (and mct
3243                     (not (equal (downcase mct) "never")))
3244            (list (cons 'Cc (if (equal (downcase mct) "always")
3245                                (or reply-to from "")
3246                              mct)))))
3247
3248      cur)
3249
3250     (setq message-reply-headers
3251           (vector 0 subject from date message-id references 0 0 ""))))
3252
3253
3254 ;;;###autoload
3255 (defun message-cancel-news ()
3256   "Cancel an article you posted."
3257   (interactive)
3258   (unless (message-news-p)
3259     (error "This is not a news article; canceling is impossible"))
3260   (when (yes-or-no-p "Do you really want to cancel this article? ")
3261     (let (from newsgroups message-id distribution buf)
3262       (save-excursion
3263         ;; Get header info. from original article.
3264         (save-restriction
3265           (message-narrow-to-head)
3266           (setq from (message-fetch-field "from")
3267                 newsgroups (message-fetch-field "newsgroups")
3268                 message-id (message-fetch-field "message-id" t)
3269                 distribution (message-fetch-field "distribution")))
3270         ;; Make sure that this article was written by the user.
3271         (unless (string-equal
3272                  (downcase (cadr (mail-extract-address-components from)))
3273                  (downcase (message-make-address)))
3274           (error "This article is not yours"))
3275         ;; Make control message.
3276         (setq buf (set-buffer (get-buffer-create " *message cancel*")))
3277         (buffer-disable-undo (current-buffer))
3278         (erase-buffer)
3279         (insert "Newsgroups: " newsgroups "\n"
3280                 "From: " (message-make-from) "\n"
3281                 "Subject: cmsg cancel " message-id "\n"
3282                 "Control: cancel " message-id "\n"
3283                 (if distribution
3284                     (concat "Distribution: " distribution "\n")
3285                   "")
3286                 mail-header-separator "\n"
3287                 message-cancel-message)
3288         (message "Canceling your article...")
3289         (if (let ((message-syntax-checks
3290                    'dont-check-for-anything-just-trust-me))
3291               (funcall message-send-news-function))
3292             (message "Canceling your article...done"))
3293         (kill-buffer buf)))))
3294
3295 ;;;###autoload
3296 (defun message-supersede ()
3297   "Start composing a message to supersede the current message.
3298 This is done simply by taking the old article and adding a Supersedes
3299 header line with the old Message-ID."
3300   (interactive)
3301   (let ((cur (current-buffer)))
3302     ;; Check whether the user owns the article that is to be superseded.
3303     (unless (string-equal
3304              (downcase (cadr (mail-extract-address-components
3305                               (message-fetch-field "from"))))
3306              (downcase (message-make-address)))
3307       (error "This article is not yours"))
3308     ;; Get a normal message buffer.
3309     (message-pop-to-buffer (message-buffer-name "supersede"))
3310     (insert-buffer-substring cur)
3311     (message-narrow-to-head)
3312     ;; Remove unwanted headers.
3313     (when message-ignored-supersedes-headers
3314       (message-remove-header message-ignored-supersedes-headers t))
3315     (goto-char (point-min))
3316     (if (not (re-search-forward "^Message-ID: " nil t))
3317         (error "No Message-ID in this article")
3318       (replace-match "Supersedes: " t t))
3319     (goto-char (point-max))
3320     (insert mail-header-separator)
3321     (widen)
3322     (forward-line 1)))
3323
3324 ;;;###autoload
3325 (defun message-recover ()
3326   "Reread contents of current buffer from its last auto-save file."
3327   (interactive)
3328   (let ((file-name (make-auto-save-file-name)))
3329     (cond ((save-window-excursion
3330              (if (not (eq system-type 'vax-vms))
3331                  (with-output-to-temp-buffer "*Directory*"
3332                    (buffer-disable-undo standard-output)
3333                    (let ((default-directory "/"))
3334                      (call-process
3335                       "ls" nil standard-output nil "-l" file-name))))
3336              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
3337            (let ((buffer-read-only nil))
3338              (erase-buffer)
3339              (insert-file-contents file-name nil)))
3340           (t (error "message-recover cancelled")))))
3341
3342 ;;; Forwarding messages.
3343
3344 (defun message-make-forward-subject ()
3345   "Return a Subject header suitable for the message in the current buffer."
3346   (save-excursion
3347     (save-restriction
3348       (current-buffer)
3349       (message-narrow-to-head)
3350       (concat "[" (or (message-fetch-field
3351                        (if (message-news-p) "newsgroups" "from"))
3352                       "(nowhere)")
3353               "] " (or (message-fetch-field "Subject") "")))))
3354
3355 ;;;###autoload
3356 (defun message-forward (&optional news)
3357   "Forward the current message via mail.
3358 Optional NEWS will use news to forward instead of mail."
3359   (interactive "P")
3360   (let ((cur (current-buffer))
3361         (subject (message-make-forward-subject))
3362         art-beg)
3363     (if news (message-news nil subject) (message-mail nil subject))
3364     ;; Put point where we want it before inserting the forwarded
3365     ;; message.
3366     (if message-signature-before-forwarded-message
3367         (goto-char (point-max))
3368       (message-goto-body))
3369     ;; Make sure we're at the start of the line.
3370     (unless (eolp)
3371       (insert "\n"))
3372     ;; Narrow to the area we are to insert.
3373     (narrow-to-region (point) (point))
3374     ;; Insert the separators and the forwarded buffer.
3375     (insert message-forward-start-separator)
3376     (setq art-beg (point))
3377     (insert-buffer-substring cur)
3378     (goto-char (point-max))
3379     (insert message-forward-end-separator)
3380     (set-text-properties (point-min) (point-max) nil)
3381     ;; Remove all unwanted headers.
3382     (goto-char art-beg)
3383     (narrow-to-region (point) (if (search-forward "\n\n" nil t)
3384                                   (1- (point))
3385                                 (point)))
3386     (goto-char (point-min))
3387     (message-remove-header message-included-forward-headers t nil t)
3388     (widen)
3389     (message-position-point)))
3390
3391 ;;;###autoload
3392 (defun message-resend (address)
3393   "Resend the current article to ADDRESS."
3394   (interactive "sResend message to: ")
3395   (message "Resending message to %s..." address)
3396   (save-excursion
3397     (let ((cur (current-buffer))
3398           beg)
3399       ;; We first set up a normal mail buffer.
3400       (set-buffer (get-buffer-create " *message resend*"))
3401       (buffer-disable-undo (current-buffer))
3402       (erase-buffer)
3403       (message-setup `((To . ,address)))
3404       ;; Insert our usual headers.
3405       (message-generate-headers '(From Date To))
3406       (message-narrow-to-headers)
3407       ;; Rename them all to "Resent-*".
3408       (while (re-search-forward "^[A-Za-z]" nil t)
3409         (forward-char -1)
3410         (insert "Resent-"))
3411       (widen)
3412       (forward-line)
3413       (delete-region (point) (point-max))
3414       (setq beg (point))
3415       ;; Insert the message to be resent.
3416       (insert-buffer-substring cur)
3417       (goto-char (point-min))
3418       (search-forward "\n\n")
3419       (forward-char -1)
3420       (save-restriction
3421         (narrow-to-region beg (point))
3422         (message-remove-header message-ignored-resent-headers t)
3423         (goto-char (point-max)))
3424       (insert mail-header-separator)
3425       ;; Rename all old ("Also-")Resent headers.
3426       (while (re-search-backward "^\\(Also-\\)?Resent-" beg t)
3427         (beginning-of-line)
3428         (insert "Also-"))
3429       ;; Quote any "From " lines at the beginning.
3430       (goto-char beg)
3431       (when (looking-at "From ")
3432         (replace-match "X-From-Line: "))
3433       ;; Send it.
3434       (message-send-mail)
3435       (kill-buffer (current-buffer)))
3436     (message "Resending message to %s...done" address)))
3437
3438 ;;;###autoload
3439 (defun message-bounce ()
3440   "Re-mail the current message.
3441 This only makes sense if the current message is a bounce message than
3442 contains some mail you have written which has been bounced back to
3443 you."
3444   (interactive)
3445   (let ((cur (current-buffer))
3446         boundary)
3447     (message-pop-to-buffer (message-buffer-name "bounce"))
3448     (insert-buffer-substring cur)
3449     (undo-boundary)
3450     (message-narrow-to-head)
3451     (if (and (message-fetch-field "Mime-Version")
3452              (setq boundary (message-fetch-field "Content-Type")))
3453         (if (string-match "boundary=\"\\([^\"]+\\)\"" boundary)
3454             (setq boundary (concat (match-string 1 boundary) " *\n"
3455                                    "Content-Type: message/rfc822"))
3456           (setq boundary nil)))
3457     (widen)
3458     (goto-char (point-min))
3459     (search-forward "\n\n" nil t)
3460     (or (and boundary
3461              (re-search-forward boundary nil t)
3462              (forward-line 2))
3463         (and (re-search-forward message-unsent-separator nil t)
3464              (forward-line 1))
3465         (re-search-forward "^Return-Path:.*\n" nil t))
3466     ;; We remove everything before the bounced mail.
3467     (delete-region
3468      (point-min)
3469      (if (re-search-forward "^[^ \n\t]+:" nil t)
3470          (match-beginning 0)
3471        (point)))
3472     (save-restriction
3473       (message-narrow-to-head)
3474       (message-remove-header message-ignored-bounced-headers t)
3475       (goto-char (point-max))
3476       (insert mail-header-separator))
3477     (message-position-point)))
3478
3479 ;;;
3480 ;;; Interactive entry points for new message buffers.
3481 ;;;
3482
3483 ;;;###autoload
3484 (defun message-mail-other-window (&optional to subject)
3485   "Like `message-mail' command, but display mail buffer in another window."
3486   (interactive)
3487   (let ((pop-up-windows t)
3488         (special-display-buffer-names nil)
3489         (special-display-regexps nil)
3490         (same-window-buffer-names nil)
3491         (same-window-regexps nil))
3492     (message-pop-to-buffer (message-buffer-name "mail" to)))
3493   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3494
3495 ;;;###autoload
3496 (defun message-mail-other-frame (&optional to subject)
3497   "Like `message-mail' command, but display mail buffer in another frame."
3498   (interactive)
3499   (let ((pop-up-frames t)
3500         (special-display-buffer-names nil)
3501         (special-display-regexps nil)
3502         (same-window-buffer-names nil)
3503         (same-window-regexps nil))
3504     (message-pop-to-buffer (message-buffer-name "mail" to)))
3505   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3506
3507 ;;;###autoload
3508 (defun message-news-other-window (&optional newsgroups subject)
3509   "Start editing a news article to be sent."
3510   (interactive)
3511   (let ((pop-up-windows t)
3512         (special-display-buffer-names nil)
3513         (special-display-regexps nil)
3514         (same-window-buffer-names nil)
3515         (same-window-regexps nil))
3516     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3517   (message-setup `((Newsgroups . ,(or newsgroups ""))
3518                    (Subject . ,(or subject "")))))
3519
3520 ;;;###autoload
3521 (defun message-news-other-frame (&optional newsgroups subject)
3522   "Start editing a news article to be sent."
3523   (interactive)
3524   (let ((pop-up-frames t)
3525         (special-display-buffer-names nil)
3526         (special-display-regexps nil)
3527         (same-window-buffer-names nil)
3528         (same-window-regexps nil))
3529     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3530   (message-setup `((Newsgroups . ,(or newsgroups ""))
3531                    (Subject . ,(or subject "")))))
3532
3533 ;;; underline.el
3534
3535 ;; This code should be moved to underline.el (from which it is stolen).
3536
3537 ;;;###autoload
3538 (defun bold-region (start end)
3539   "Bold all nonblank characters in the region.
3540 Works by overstriking characters.
3541 Called from program, takes two arguments START and END
3542 which specify the range to operate on."
3543   (interactive "r")
3544   (save-excursion
3545     (let ((end1 (make-marker)))
3546       (move-marker end1 (max start end))
3547       (goto-char (min start end))
3548       (while (< (point) end1)
3549         (or (looking-at "[_\^@- ]")
3550             (insert (following-char) "\b"))
3551         (forward-char 1)))))
3552
3553 ;;;###autoload
3554 (defun unbold-region (start end)
3555   "Remove all boldness (overstruck characters) in the region.
3556 Called from program, takes two arguments START and END
3557 which specify the range to operate on."
3558   (interactive "r")
3559   (save-excursion
3560     (let ((end1 (make-marker)))
3561       (move-marker end1 (max start end))
3562       (goto-char (min start end))
3563       (while (re-search-forward "\b" end1 t)
3564         (if (eq (following-char) (char-after (- (point) 2)))
3565             (delete-char -2))))))
3566
3567 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
3568
3569 ;; Support for toolbar
3570 (when (string-match "XEmacs\\|Lucid" emacs-version)
3571   (require 'messagexmas))
3572
3573 ;;; Group name completion.
3574
3575 (defvar message-newgroups-header-regexp
3576   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
3577   "Regexp that match headers that lists groups.")
3578
3579 (defun message-tab ()
3580   "Expand group names in Newsgroups and Followup-To headers.
3581 Do a `tab-to-tab-stop' if not in those headers."
3582   (interactive)
3583   (if (let ((mail-abbrev-mode-regexp message-newgroups-header-regexp))
3584         (mail-abbrev-in-expansion-header-p))
3585       (message-expand-group)
3586     (tab-to-tab-stop)))
3587
3588 (defvar gnus-active-hashtb)
3589 (defun message-expand-group ()
3590   (let* ((b (save-excursion
3591               (save-restriction
3592                 (narrow-to-region
3593                  (save-excursion
3594                    (beginning-of-line)
3595                    (skip-chars-forward "^:")
3596                    (1+ (point)))
3597                  (point))
3598                 (skip-chars-backward "^, \t\n") (point))))
3599          (completion-ignore-case t)
3600          (string (buffer-substring b (point)))
3601          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
3602          (completions (all-completions string hashtb))
3603          (cur (current-buffer))
3604          comp)
3605     (delete-region b (point))
3606     (cond
3607      ((= (length completions) 1)
3608       (if (string= (car completions) string)
3609           (progn
3610             (insert string)
3611             (message "Only matching group"))
3612         (insert (car completions))))
3613      ((and (setq comp (try-completion string hashtb))
3614            (not (string= comp string)))
3615       (insert comp))
3616      (t
3617       (insert string)
3618       (if (not comp)
3619           (message "No matching groups")
3620         (save-selected-window
3621           (pop-to-buffer "*Completions*")
3622           (buffer-disable-undo (current-buffer))
3623           (let ((buffer-read-only nil))
3624             (erase-buffer)
3625             (let ((standard-output (current-buffer)))
3626               (display-completion-list (sort completions 'string<)))
3627             (goto-char (point-min))
3628             (delete-region (point) (progn (forward-line 3) (point))))))))))
3629
3630 ;;; Help stuff.
3631
3632 (defun message-talkative-question (ask question show &rest text)
3633   "Call FUNCTION with argument QUESTION, displaying the rest of the arguments in a temporary buffer if SHOW.
3634 The following arguments may contain lists of values."
3635   (if (and show
3636            (setq text (message-flatten-list text)))
3637       (save-window-excursion
3638         (save-excursion
3639           (with-output-to-temp-buffer " *MESSAGE information message*"
3640             (set-buffer " *MESSAGE information message*")
3641             (mapcar 'princ text)
3642             (goto-char (point-min))))
3643         (funcall ask question))
3644     (funcall ask question)))
3645
3646 (defun message-flatten-list (list)
3647   "Return a new, flat list that contains all elements of LIST.
3648
3649 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
3650 => (1 2 3 4 5 6 7)"
3651   (cond ((consp list)
3652          (apply 'append (mapcar 'message-flatten-list list)))
3653         (list
3654          (list list))))
3655
3656 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
3657   "Create and return a buffer with a name based on NAME using generate-new-buffer.
3658 Then clone the local variables and values from the old buffer to the
3659 new one, cloning only the locals having a substring matching the
3660 regexp varstr."
3661   (let ((oldbuf (current-buffer)))
3662     (save-excursion
3663       (set-buffer (generate-new-buffer name))
3664       (message-clone-locals oldbuf)
3665       (current-buffer))))
3666
3667 (defun message-clone-locals (buffer)
3668   "Clone the local variables from BUFFER to the current buffer."
3669   (let ((locals (save-excursion
3670                   (set-buffer buffer)
3671                   (buffer-local-variables)))
3672         (regexp "^gnus\\|^nn\\|^message"))
3673     (mapcar
3674      (lambda (local)
3675        (when (and (car local)
3676                   (string-match regexp (symbol-name (car local))))
3677          (ignore-errors
3678            (set (make-local-variable (car local))
3679                 (cdr local)))))
3680      locals)))
3681
3682 (run-hooks 'message-load-hook)
3683
3684 (provide 'message)
3685
3686 ;;; message.el ends here