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