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