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