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