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