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