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