a53887f5f9ce2559e9a672ff319bdfe8cca1a8bc
[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 t
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   (message-newline-and-reformat arg t)
2178   t)
2179
2180 (defun message-insert-signature (&optional force)
2181   "Insert a signature.  See documentation for variable `message-signature'."
2182   (interactive (list 0))
2183   (let* ((signature
2184           (cond
2185            ((and (null message-signature)
2186                  (eq force 0))
2187             (save-excursion
2188               (goto-char (point-max))
2189               (not (re-search-backward message-signature-separator nil t))))
2190            ((and (null message-signature)
2191                  force)
2192             t)
2193            ((message-functionp message-signature)
2194             (funcall message-signature))
2195            ((listp message-signature)
2196             (eval message-signature))
2197            (t message-signature)))
2198          (signature
2199           (cond ((stringp signature)
2200                  signature)
2201                 ((and (eq t signature)
2202                       message-signature-file
2203                       (file-exists-p message-signature-file))
2204                  signature))))
2205     (when signature
2206       (goto-char (point-max))
2207       ;; Insert the signature.
2208       (unless (bolp)
2209         (insert "\n"))
2210       (insert "\n-- \n")
2211       (if (eq signature t)
2212           (insert-file-contents message-signature-file)
2213         (insert signature))
2214       (goto-char (point-max))
2215       (or (bolp) (insert "\n")))))
2216
2217 (defun message-elide-region (b e)
2218   "Elide the text in the region.
2219 An ellipsis (from `message-elide-ellipsis') will be inserted where the
2220 text was killed."
2221   (interactive "r")
2222   (kill-region b e)
2223   (insert message-elide-ellipsis))
2224
2225 (defvar message-caesar-translation-table nil)
2226
2227 (defun message-caesar-region (b e &optional n)
2228   "Caesar rotate region B to E by N, default 13, for decrypting netnews."
2229   (interactive
2230    (list
2231     (min (point) (or (mark t) (point)))
2232     (max (point) (or (mark t) (point)))
2233     (when current-prefix-arg
2234       (prefix-numeric-value current-prefix-arg))))
2235
2236   (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
2237   (unless (or (zerop n)                 ; no action needed for a rot of 0
2238               (= b e))                  ; no region to rotate
2239     ;; We build the table, if necessary.
2240     (when (or (not message-caesar-translation-table)
2241               (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
2242       (setq message-caesar-translation-table
2243             (message-make-caesar-translation-table n)))
2244     (translate-region b e message-caesar-translation-table)))
2245
2246 (defun message-make-caesar-translation-table (n)
2247   "Create a rot table with offset N."
2248   (let ((i -1)
2249         (table (make-string 256 0)))
2250     (while (< (incf i) 256)
2251       (aset table i i))
2252     (concat
2253      (substring table 0 ?A)
2254      (substring table (+ ?A n) (+ ?A n (- 26 n)))
2255      (substring table ?A (+ ?A n))
2256      (substring table (+ ?A 26) ?a)
2257      (substring table (+ ?a n) (+ ?a n (- 26 n)))
2258      (substring table ?a (+ ?a n))
2259      (substring table (+ ?a 26) 255))))
2260
2261 (defun message-caesar-buffer-body (&optional rotnum)
2262   "Caesar rotate all letters in the current buffer by 13 places.
2263 Used to encode/decode possibly offensive messages (commonly in rec.humor).
2264 With prefix arg, specifies the number of places to rotate each letter forward.
2265 Mail and USENET news headers are not rotated."
2266   (interactive (if current-prefix-arg
2267                    (list (prefix-numeric-value current-prefix-arg))
2268                  (list nil)))
2269   (save-excursion
2270     (save-restriction
2271       (when (message-goto-body)
2272         (narrow-to-region (point) (point-max)))
2273       (message-caesar-region (point-min) (point-max) rotnum))))
2274
2275 (defun message-pipe-buffer-body (program)
2276   "Pipe the message body in the current buffer through PROGRAM."
2277   (save-excursion
2278     (save-restriction
2279       (when (message-goto-body)
2280         (narrow-to-region (point) (point-max)))
2281       (shell-command-on-region
2282        (point-min) (point-max) program nil t))))
2283
2284 (defun message-rename-buffer (&optional enter-string)
2285   "Rename the *message* buffer to \"*message* RECIPIENT\".
2286 If the function is run with a prefix, it will ask for a new buffer
2287 name, rather than giving an automatic name."
2288   (interactive "Pbuffer name: ")
2289   (save-excursion
2290     (save-restriction
2291       (goto-char (point-min))
2292       (narrow-to-region (point)
2293                         (search-forward mail-header-separator nil 'end))
2294       (let* ((mail-to (or
2295                        (if (message-news-p) (message-fetch-field "Newsgroups")
2296                          (message-fetch-field "To"))
2297                        ""))
2298              (mail-trimmed-to
2299               (if (string-match "," mail-to)
2300                   (concat (substring mail-to 0 (match-beginning 0)) ", ...")
2301                 mail-to))
2302              (name-default (concat "*message* " mail-trimmed-to))
2303              (name (if enter-string
2304                        (read-string "New buffer name: " name-default)
2305                      name-default)))
2306         (rename-buffer name t)))))
2307
2308 (defun message-fill-yanked-message (&optional justifyp)
2309   "Fill the paragraphs of a message yanked into this one.
2310 Numeric argument means justify as well."
2311   (interactive "P")
2312   (save-excursion
2313     (goto-char (point-min))
2314     (search-forward (concat "\n" mail-header-separator "\n") nil t)
2315     (let ((fill-prefix message-yank-prefix))
2316       (fill-individual-paragraphs (point) (point-max) justifyp))))
2317
2318 (defun message-indent-citation ()
2319   "Modify text just inserted from a message to be cited.
2320 The inserted text should be the region.
2321 When this function returns, the region is again around the modified text.
2322
2323 Normally, indent each nonblank line `message-indentation-spaces' spaces.
2324 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
2325   (let ((start (point)))
2326     ;; Remove unwanted headers.
2327     (when message-ignored-cited-headers
2328       (let (all-removed)
2329         (save-restriction
2330           (narrow-to-region
2331            (goto-char start)
2332            (if (search-forward "\n\n" nil t)
2333                (1- (point))
2334              (point)))
2335           (message-remove-header message-ignored-cited-headers t)
2336           (when (= (point-min) (point-max))
2337             (setq all-removed t))
2338           (goto-char (point-max)))
2339         (if all-removed
2340             (goto-char start)
2341           (forward-line 1))))
2342     ;; Delete blank lines at the start of the buffer.
2343     (while (and (point-min)
2344                 (eolp)
2345                 (not (eobp)))
2346       (message-delete-line))
2347     ;; Delete blank lines at the end of the buffer.
2348     (goto-char (point-max))
2349     (unless (bolp)
2350       (insert "\n"))
2351     (while (and (zerop (forward-line -1))
2352                 (looking-at "$"))
2353       (message-delete-line))
2354     ;; Do the indentation.
2355     (if (null message-yank-prefix)
2356         (indent-rigidly start (mark t) message-indentation-spaces)
2357       (save-excursion
2358         (goto-char start)
2359         (while (< (point) (mark t))
2360           (if (looking-at message-cite-prefix-regexp)
2361               (insert message-yank-cited-prefix)
2362             (insert message-yank-prefix))
2363           (forward-line 1))))
2364     (goto-char start)))
2365
2366 (defun message-list-references (refs-list &rest refs-strs)
2367   "Add `Message-ID's which appear in REFS-STRS but not in REFS-LIST,
2368 to REFS-LIST."
2369   (let (refs ref id saved-id)
2370     (when (and refs-list
2371                (integerp message-list-references-add-position))
2372       (let ((pos message-list-references-add-position))
2373         (while (and refs-list
2374                     (> pos 0))
2375           (push (pop refs-list) saved-id)
2376           (setq pos (1- pos)))))
2377     (while refs-strs
2378       (when (setq refs (pop refs-strs))
2379         (setq refs (std11-parse-msg-ids (std11-lexical-analyze refs)))
2380         (while refs
2381           (when (eq (car (setq ref (pop refs))) 'msg-id)
2382             (setq id (concat "<" (mapconcat 'cdr (cdr ref) "") ">"))
2383             (or (member id refs-list)
2384                 (member id saved-id)
2385                 (push id refs-list))))))
2386     (while saved-id
2387       (push (pop saved-id) refs-list))
2388     refs-list))
2389
2390 (defvar gnus-article-copy)
2391 (defun message-yank-original (&optional arg)
2392   "Insert the message being replied to, if any.
2393 Puts point before the text and mark after.
2394 Normally indents each nonblank line ARG spaces (default 3).  However,
2395 if `message-yank-prefix' is non-nil, insert that prefix on each line.
2396
2397 This function uses `message-cite-function' to do the actual citing.
2398
2399 Just \\[universal-argument] as argument means don't indent, insert no
2400 prefix, and don't delete any headers.
2401
2402 In addition, if `message-yank-add-new-references' is non-nil and this
2403 command is called interactively, new IDs from the yanked article will
2404 be added to \"References\" field.
2405 \(See also `message-yank-add-new-references'.)"
2406   (interactive "P")
2407   (let ((modified (buffer-modified-p))
2408         (buffer (message-eval-parameter message-reply-buffer))
2409         start end refs)
2410     (when (and buffer
2411                message-cite-function)
2412       (delete-windows-on buffer t)
2413       (insert-buffer buffer) ; mark will be set at the end of article.
2414       (setq start (point)
2415             end (mark t))
2416
2417       ;; Add new IDs to References field.
2418       (when (and message-yank-add-new-references (interactive-p))
2419         (save-excursion
2420           (save-restriction
2421             (message-narrow-to-headers)
2422             (setq refs (message-list-references
2423                         nil
2424                         (message-fetch-field "References")))
2425             (widen)
2426             (narrow-to-region start end)
2427             (std11-narrow-to-header)
2428             (when (setq refs (message-list-references
2429                               refs
2430                               (unless (eq message-yank-add-new-references
2431                                           'message-id-only)
2432                                 (or (message-fetch-field "References")
2433                                     (message-fetch-field "In-Reply-To")))
2434                               (message-fetch-field "Message-ID")))
2435               (widen)
2436               (message-narrow-to-headers)
2437               (goto-char (point-min))
2438               (let ((case-fold-search t))
2439                 (if (re-search-forward "^References:\\([\t ]+.+\n\\)+" nil t)
2440                     (replace-match "")
2441                   (goto-char (point-max))))
2442               (mail-header-format
2443                (list (or (assq 'References message-header-format-alist)
2444                          '(References . message-fill-references)))
2445                (list (cons 'References
2446                            (mapconcat 'identity (nreverse refs) " "))))
2447               (backward-delete-char 1)))))
2448
2449       (unless arg
2450         (if (and message-suspend-font-lock-when-citing
2451                  (boundp 'font-lock-mode)
2452                  (symbol-value 'font-lock-mode))
2453             (unwind-protect
2454                 (progn
2455                   (sit-for 0)
2456                   (font-lock-mode 0)
2457                   (funcall message-cite-function))
2458               (font-lock-mode 1))
2459           (funcall message-cite-function)))
2460       (message-exchange-point-and-mark)
2461       (unless (bolp)
2462         (insert ?\n))
2463       (unless modified
2464         (setq message-checksum (message-checksum))))))
2465
2466 (defun message-yank-buffer (buffer)
2467   "Insert BUFFER into the current buffer and quote it."
2468   (interactive "bYank buffer: ")
2469   (let ((message-reply-buffer buffer))
2470     (save-window-excursion
2471       (message-yank-original))))
2472
2473 (defun message-buffers ()
2474   "Return a list of active message buffers."
2475   (let (buffers)
2476     (save-excursion
2477       (dolist (buffer (buffer-list t))
2478         (set-buffer buffer)
2479         (when (and (eq major-mode 'message-mode)
2480                    (null message-sent-message-via))
2481           (push (buffer-name buffer) buffers))))
2482     (nreverse buffers)))
2483
2484 (defun message-cite-original-without-signature ()
2485   "Cite function in the standard Message manner."
2486   (let ((start (point))
2487         (end (mark t))
2488         (functions
2489          (when message-indent-citation-function
2490            (if (listp message-indent-citation-function)
2491                message-indent-citation-function
2492              (list message-indent-citation-function))))
2493         (message-reply-headers (or message-reply-headers
2494                                    (make-mail-header))))
2495     (mail-header-set-from message-reply-headers
2496                           (save-restriction
2497                             (narrow-to-region
2498                              (point)
2499                              (if (search-forward "\n\n" nil t)
2500                                  (1- (point))
2501                                (point-max)))
2502                             (or (message-fetch-field "from")
2503                                 "unknown sender")))
2504     ;; Allow undoing.
2505     (undo-boundary)
2506     (goto-char end)
2507     (when (re-search-backward message-signature-separator start t)
2508       ;; Also peel off any blank lines before the signature.
2509       (forward-line -1)
2510       (while (looking-at "^[ \t]*$")
2511         (forward-line -1))
2512       (forward-line 1)
2513       (delete-region (point) end)
2514       (unless (search-backward "\n\n" start t)
2515         ;; Insert a blank line if it is peeled off.
2516         (insert "\n")))
2517     (goto-char start)
2518     (while functions
2519       (funcall (pop functions)))
2520     (when message-citation-line-function
2521       (unless (bolp)
2522         (insert "\n"))
2523       (funcall message-citation-line-function))))
2524
2525 (eval-when-compile (defvar mail-citation-hook))         ;Compiler directive
2526 (defun message-cite-original ()
2527   "Cite function in the standard Message manner."
2528   (if (and (boundp 'mail-citation-hook)
2529            mail-citation-hook)
2530       (run-hooks 'mail-citation-hook)
2531     (let ((start (point))
2532           (end (mark t))
2533           (functions
2534            (when message-indent-citation-function
2535              (if (listp message-indent-citation-function)
2536                  message-indent-citation-function
2537                (list message-indent-citation-function))))
2538           (message-reply-headers (or message-reply-headers
2539                                      (make-mail-header))))
2540       (mail-header-set-from message-reply-headers
2541                             (save-restriction
2542                               (narrow-to-region
2543                                (point)
2544                                (if (search-forward "\n\n" nil t)
2545                                    (1- (point))
2546                                  (point-max)))
2547                               (or (message-fetch-field "from")
2548                                   "unknown sender")))
2549       (goto-char start)
2550       (while functions
2551         (funcall (pop functions)))
2552       (when message-citation-line-function
2553         (unless (bolp)
2554           (insert "\n"))
2555         (funcall message-citation-line-function)))))
2556
2557 (defun message-insert-citation-line ()
2558   "Insert a simple citation line."
2559   (when message-reply-headers
2560     (insert (mail-header-from message-reply-headers) " writes:\n\n")))
2561
2562 (defun message-position-on-field (header &rest afters)
2563   (let ((case-fold-search t))
2564     (save-restriction
2565       (narrow-to-region
2566        (goto-char (point-min))
2567        (progn
2568          (re-search-forward
2569           (concat "^" (regexp-quote mail-header-separator) "$"))
2570          (match-beginning 0)))
2571       (goto-char (point-min))
2572       (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
2573           (progn
2574             (re-search-forward "^[^ \t]" nil 'move)
2575             (beginning-of-line)
2576             (skip-chars-backward "\n")
2577             t)
2578         (while (and afters
2579                     (not (re-search-forward
2580                           (concat "^" (regexp-quote (car afters)) ":")
2581                           nil t)))
2582           (pop afters))
2583         (when afters
2584           (re-search-forward "^[^ \t]" nil 'move)
2585           (beginning-of-line))
2586         (insert header ": \n")
2587         (forward-char -1)
2588         nil))))
2589
2590 (defun message-remove-signature ()
2591   "Remove the signature from the text between point and mark.
2592 The text will also be indented the normal way."
2593   (save-excursion
2594     (let ((start (point))
2595           mark)
2596       (if (not (re-search-forward message-signature-separator (mark t) t))
2597           ;; No signature here, so we just indent the cited text.
2598           (message-indent-citation)
2599         ;; Find the last non-empty line.
2600         (forward-line -1)
2601         (while (looking-at "[ \t]*$")
2602           (forward-line -1))
2603         (forward-line 1)
2604         (setq mark (set-marker (make-marker) (point)))
2605         (goto-char start)
2606         (message-indent-citation)
2607         ;; Enable undoing the deletion.
2608         (undo-boundary)
2609         (delete-region mark (mark t))
2610         (set-marker mark nil)))))
2611
2612 \f
2613
2614 ;;;
2615 ;;; Sending messages
2616 ;;;
2617
2618 ;; Avoid byte-compile warning.
2619 (defvar message-encoding-buffer nil)
2620 (defvar message-edit-buffer nil)
2621 (defvar message-mime-mode nil)
2622
2623 (defun message-send-and-exit (&optional arg)
2624   "Send message like `message-send', then, if no errors, exit from mail buffer."
2625   (interactive "P")
2626   (let ((buf (current-buffer))
2627         (actions message-exit-actions)
2628         (frame (selected-frame))
2629         (org-frame message-original-frame))
2630     (when (and (message-send arg)
2631                (buffer-name buf))
2632       (if message-kill-buffer-on-exit
2633           (kill-buffer buf)
2634         (bury-buffer buf)
2635         (when (eq buf (current-buffer))
2636           (message-bury buf)))
2637       (message-do-actions actions)
2638       (message-delete-frame frame org-frame)
2639       t)))
2640
2641 (defun message-dont-send ()
2642   "Don't send the message you have been editing."
2643   (interactive)
2644   (message-save-drafts)
2645   (let ((actions message-postpone-actions)
2646         (frame (selected-frame))
2647         (org-frame message-original-frame))
2648     (message-bury (current-buffer))
2649     (message-do-actions actions)
2650     (message-delete-frame frame org-frame)))
2651
2652 (defun message-kill-buffer ()
2653   "Kill the current buffer."
2654   (interactive)
2655   (when (or (not (buffer-modified-p))
2656             (eq t message-kill-buffer-query-function)
2657             (funcall message-kill-buffer-query-function
2658                      "The buffer modified; kill anyway? "))
2659     (let ((actions message-kill-actions)
2660           (frame (selected-frame))
2661           (org-frame message-original-frame))
2662       (setq buffer-file-name nil)
2663       (kill-buffer (current-buffer))
2664       (message-do-actions actions)
2665       (message-delete-frame frame org-frame)))
2666   (message ""))
2667
2668 (defun message-mimic-kill-buffer ()
2669   "Kill the current buffer with query."
2670   (interactive)
2671   (unless (eq 'message-mode major-mode)
2672     (error "%s must be invoked from a message buffer." this-command))
2673   (let ((command this-command)
2674         (bufname (read-buffer (format "Kill buffer: (default %s) "
2675                                       (buffer-name)))))
2676     (if (or (not bufname)
2677             (string-equal bufname "")
2678             (string-equal bufname (buffer-name)))
2679         (message-kill-buffer)
2680       (message "%s must be invoked only for the current buffer." command))))
2681
2682 (defun message-delete-frame (frame org-frame)
2683   "Delete frame for editing message."
2684   (when (and (or (static-if (featurep 'xemacs)
2685                      (device-on-window-system-p)
2686                    window-system)
2687                  (>= emacs-major-version 20))
2688              (or (and (eq message-delete-frame-on-exit t)
2689                       (select-frame frame)
2690                       (or (eq frame org-frame)
2691                           (prog1
2692                               (y-or-n-p "Delete this frame?")
2693                             (message ""))))
2694                  (and (eq message-delete-frame-on-exit 'ask)
2695                       (select-frame frame)
2696                       (prog1
2697                           (y-or-n-p "Delete this frame?")
2698                         (message "")))))
2699     (delete-frame frame)))
2700
2701 (defun message-bury (buffer)
2702   "Bury this mail BUFFER."
2703   (let ((newbuf (other-buffer buffer)))
2704     (bury-buffer buffer)
2705     (if (and (fboundp 'frame-parameters)
2706              (cdr (assq 'dedicated (frame-parameters)))
2707              (not (null (delq (selected-frame) (visible-frame-list)))))
2708         (delete-frame (selected-frame))
2709       (switch-to-buffer newbuf))))
2710
2711 (defun message-send (&optional arg)
2712   "Send the message in the current buffer.
2713 If `message-interactive' is non-nil, wait for success indication or
2714 error messages, and inform user.
2715 Otherwise any failure is reported in a message back to the user from
2716 the mailer.
2717 The usage of ARG is defined by the instance that called Message.
2718 It should typically alter the sending method in some way or other."
2719   (interactive "P")
2720   ;; Disabled test.
2721   (when (or (buffer-modified-p)
2722             (message-check-element 'unchanged)
2723             (y-or-n-p "No changes in the buffer; really send? "))
2724     ;; Make it possible to undo the coming changes.
2725     (undo-boundary)
2726     (let ((inhibit-read-only t))
2727       (put-text-property (point-min) (point-max) 'read-only nil))
2728     (run-hooks 'message-send-hook)
2729     (message-fix-before-sending)
2730     (message message-sending-message)
2731     (let ((message-encoding-buffer
2732            (message-generate-new-buffer-clone-locals " message encoding"))
2733           (message-edit-buffer (current-buffer))
2734           (message-mime-mode mime-edit-mode-flag)
2735           (alist message-send-method-alist)
2736           (success t)
2737           elem sent
2738           (message-options message-options))
2739       (message-options-set-recipient)
2740       (save-excursion
2741         (set-buffer message-encoding-buffer)
2742         (erase-buffer)
2743         ;; Avoid copying text props.
2744         (let (message-invisibles)
2745           (insert
2746            (with-current-buffer message-edit-buffer
2747              (setq message-invisibles (message-find-invisible-regions))
2748              (buffer-substring-no-properties (point-min) (point-max))))
2749           ;; Inherit the invisible property of texts to make MIME-Edit
2750           ;; find the MIME part boundaries.
2751           (dolist (region message-invisibles)
2752             (put-text-property (car region) (cdr region) 'invisible t)))
2753         (funcall message-encode-function)
2754         (while (and success
2755                     (setq elem (pop alist)))
2756           (when (funcall (cadr elem))
2757             (when (and (or (not (memq (car elem)
2758                                       message-sent-message-via))
2759                            (if (or (message-gnksa-enable-p 'multiple-copies)
2760                                    (not (eq (car elem) 'news)))
2761                                (y-or-n-p
2762                                 (format
2763                                  "Already sent message via %s; resend? "
2764                                  (car elem)))
2765                              (error "Denied posting -- multiple copies")))
2766                        (setq success (funcall (caddr elem) arg)))
2767               (setq sent t)))))
2768       (unless (or sent (not success))
2769         (error "No methods specified to send by"))
2770       (prog1
2771           (when (and success sent)
2772             (message-do-fcc)
2773             (save-excursion
2774               (run-hooks 'message-sent-hook))
2775             (message "Sending...done")
2776             ;; Mark the buffer as unmodified and delete auto-save.
2777             (set-buffer-modified-p nil)
2778             (delete-auto-save-file-if-necessary t)
2779             (message-disassociate-draft)
2780             ;; Delete other mail buffers and stuff.
2781             (message-do-send-housekeeping)
2782             (message-do-actions message-send-actions)
2783             ;; Return success.
2784             t)
2785         (kill-buffer message-encoding-buffer)))))
2786
2787 (defun message-send-via-mail (arg)
2788   "Send the current message via mail."
2789   (message-send-mail arg))
2790
2791 (defun message-send-via-news (arg)
2792   "Send the current message via news."
2793   (message-send-news arg))
2794
2795 (defmacro message-check (type &rest forms)
2796   "Eval FORMS if TYPE is to be checked."
2797   `(or (message-check-element ,type)
2798        (save-excursion
2799          ,@forms)))
2800
2801 (put 'message-check 'lisp-indent-function 1)
2802 (put 'message-check 'edebug-form-spec '(form body))
2803
2804 ;; This function will be used by MIME-Edit when inserting invisible parts.
2805 (defun message-invisible-region (start end)
2806   (if (featurep 'xemacs)
2807       (if (save-excursion
2808             (goto-char start)
2809             (eq (following-char) ?\n))
2810           (setq start (1+ start)))
2811     (if (save-excursion
2812           (goto-char (1- end))
2813           (eq (following-char) ?\n))
2814         (setq end (1- end))))
2815   (put-text-property start end 'invisible t)
2816   (if (eq 'message-mode major-mode)
2817       (put-text-property start end 'message-invisible t)))
2818
2819 (eval-after-load "invisible"
2820   '(defalias 'invisible-region 'message-invisible-region))
2821
2822 (defun message-find-invisible-regions ()
2823   "Find invisible texts with the property `message-invisible' and
2824 return a list of points."
2825   (let (from
2826         (to (point-min))
2827         regions)
2828     (while (setq from (text-property-any to (point-max)
2829                                          'message-invisible t))
2830       (setq to (or (text-property-not-all from (point-max)
2831                                           'message-invisible t)
2832                    (point-max)))
2833       (push (cons from to) regions))
2834     regions))
2835
2836 (defun message-fix-before-sending ()
2837   "Do various things to make the message nice before sending it."
2838   ;; Make sure there's a newline at the end of the message.
2839   (widen)
2840   (goto-char (point-max))
2841   (unless (bolp)
2842     (insert "\n"))
2843   ;; Expose all invisible text with the property `message-invisible'.
2844   ;; We should believe that the things might be created by MIME-Edit.
2845   (let ((message-invisibles (message-find-invisible-regions)))
2846     (dolist (region message-invisibles)
2847       (put-text-property (car region) (cdr region) 'invisible nil))
2848     ;; Expose all invisible text.
2849     (message-check 'invisible-text
2850       (when (text-property-any (point-min) (point-max) 'invisible t)
2851         (put-text-property (point-min) (point-max) 'invisible nil)
2852         (unless (yes-or-no-p
2853                  "Invisible text found and made visible; continue posting? ")
2854           (error "Invisible text found and made visible"))))
2855     ;; Hide again all text with the property `message-invisible'.
2856     ;; It is needed to make MIME-Edit find the MIME part boundaries.
2857     (dolist (region message-invisibles)
2858       (put-text-property (car region) (cdr region) 'invisible t))))
2859
2860 (defun message-add-action (action &rest types)
2861   "Add ACTION to be performed when doing an exit of type TYPES."
2862   (let (var)
2863     (while types
2864       (set (setq var (intern (format "message-%s-actions" (pop types))))
2865            (nconc (symbol-value var) (list action))))))
2866
2867 (defun message-do-actions (actions)
2868   "Perform all actions in ACTIONS."
2869   ;; Now perform actions on successful sending.
2870   (while actions
2871     (ignore-errors
2872       (cond
2873        ;; A simple function.
2874        ((message-functionp (car actions))
2875         (funcall (car actions)))
2876        ;; Something to be evaled.
2877        (t
2878         (eval (car actions)))))
2879     (pop actions)))
2880
2881 (defsubst message-maybe-split-and-send-mail ()
2882   "Split a message if necessary, and send it via mail.
2883 Returns nil if sending succeeded, returns any string if sending failed.
2884 This sub function is for exclusive use of `message-send-mail'."
2885   (let ((mime-edit-split-ignored-field-regexp
2886          mime-edit-split-ignored-field-regexp)
2887         (case-fold-search t)
2888         failure)
2889     (while (string-match "Message-ID" mime-edit-split-ignored-field-regexp)
2890       (setq mime-edit-split-ignored-field-regexp
2891             (concat (substring mime-edit-split-ignored-field-regexp
2892                                0 (match-beginning 0))
2893                     "Hey_MIME-Edit,_there_is_an_inviolable_Message_ID"
2894                     "_so_don't_rape_it!"
2895                     (substring mime-edit-split-ignored-field-regexp
2896                                (match-end 0)))))
2897     (setq failure
2898           (or
2899            (catch 'message-sending-mail-failure
2900              (mime-edit-maybe-split-and-send
2901               (function
2902                (lambda ()
2903                  (interactive)
2904                  (save-restriction
2905                    (std11-narrow-to-header mail-header-separator)
2906                    (goto-char (point-min))
2907                    (when (re-search-forward "^Message-ID:" nil t)
2908                      (delete-region (match-end 0) (std11-field-end))
2909                      (insert " " (message-make-message-id))))
2910                  (condition-case err
2911                      (funcall (or message-send-mail-real-function
2912                                   message-send-mail-function))
2913                    (error
2914                     (throw 'message-sending-mail-failure err))))))
2915              nil)
2916            (condition-case err
2917                (progn
2918                  (funcall (or message-send-mail-real-function
2919                               message-send-mail-function))
2920                  nil)
2921              (error err))))
2922     (when failure
2923       (if (eq 'error (car failure))
2924           (cadr failure)
2925         (prin1-to-string failure)))))
2926
2927 (defun message-send-mail-partially ()
2928   "Send mail as message/partial."
2929   ;; replace the header delimiter with a blank line
2930   (goto-char (point-min))
2931   (re-search-forward
2932    (concat "^" (regexp-quote mail-header-separator) "\n"))
2933   (replace-match "\n")
2934   (run-hooks 'message-send-mail-hook)
2935   (let ((p (goto-char (point-min)))
2936         (tembuf (message-generate-new-buffer-clone-locals " message temp"))
2937         (curbuf (current-buffer))
2938         (id (message-make-message-id)) (n 1)
2939         plist total  header required-mail-headers)
2940     (while (not (eobp))
2941       (if (< (point-max) (+ p message-send-mail-partially-limit))
2942           (goto-char (point-max))
2943         (goto-char (+ p message-send-mail-partially-limit))
2944         (beginning-of-line)
2945         (if (<= (point) p) (forward-line 1))) ;; In case of bad message.
2946       (push p plist)
2947       (setq p (point)))
2948     (setq total (length plist))
2949     (push (point-max) plist)
2950     (setq plist (nreverse plist))
2951     (unwind-protect
2952         (save-excursion
2953           (setq p (pop plist))
2954           (while plist
2955             (set-buffer curbuf)
2956             (copy-to-buffer tembuf p (car plist))
2957             (set-buffer tembuf)
2958             (goto-char (point-min))
2959             (if header
2960                 (progn
2961                   (goto-char (point-min))
2962                   (narrow-to-region (point) (point))
2963                   (insert header))
2964               (message-goto-eoh)
2965               (setq header (buffer-substring (point-min) (point)))
2966               (goto-char (point-min))
2967               (narrow-to-region (point) (point))
2968               (insert header)
2969               (message-remove-header "Mime-Version")
2970               (message-remove-header "Content-Type")
2971               (message-remove-header "Content-Transfer-Encoding")
2972               (message-remove-header "Message-ID")
2973               (message-remove-header "Lines")
2974               (goto-char (point-max))
2975               (insert "Mime-Version: 1.0\n")
2976               (setq header (buffer-substring (point-min) (point-max))))
2977             (goto-char (point-max))
2978             (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n"
2979                             id n total))
2980             (let ((mail-header-separator ""))
2981               (when (memq 'Message-ID message-required-mail-headers)
2982                 (insert "Message-ID: " (message-make-message-id) "\n"))
2983               (when (memq 'Lines message-required-mail-headers)
2984                 (let ((mail-header-separator ""))
2985                   (insert "Lines: " (message-make-lines) "\n")))
2986               (message-goto-subject)
2987               (end-of-line)
2988               (insert (format " (%d/%d)" n total))
2989               (goto-char (point-max))
2990               (insert "\n")
2991               (widen)
2992               (mm-with-unibyte-current-buffer
2993                 (funcall (or message-send-mail-real-function
2994                              message-send-mail-function))))
2995             (setq n (+ n 1))
2996             (setq p (pop plist))
2997             (erase-buffer)))
2998       (kill-buffer tembuf))))
2999
3000 (defun message-send-mail (&optional arg)
3001   (require 'mail-utils)
3002   (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
3003          (case-fold-search nil)
3004          (news (message-news-p))
3005          (message-this-is-mail t)
3006          failure)
3007     (save-restriction
3008       (message-narrow-to-headers)
3009       ;; Insert some headers.
3010       (let ((message-deletable-headers
3011              (if news nil message-deletable-headers)))
3012         (message-generate-headers message-required-mail-headers))
3013       ;; Let the user do all of the above.
3014       (run-hooks 'message-header-hook))
3015     (if (not (message-check-mail-syntax))
3016         (progn
3017           (message "")
3018           nil)
3019       (unwind-protect
3020           (save-excursion
3021             (set-buffer tembuf)
3022             (erase-buffer)
3023             (insert-buffer message-encoding-buffer)
3024             ;; Remove some headers.
3025             (save-restriction
3026               (message-narrow-to-headers)
3027 ;; We Semi-gnus people have no use for it.
3028 ;;            ;; We (re)generate the Lines header.
3029 ;;            (when (memq 'Lines message-required-mail-headers)
3030 ;;              (message-generate-headers '(Lines)))
3031               ;; Remove some headers.
3032               (message-remove-header message-ignored-mail-headers t))
3033             (goto-char (point-max))
3034             ;; require one newline at the end.
3035             (or (= (preceding-char) ?\n)
3036                 (insert ?\n))
3037             (when
3038                 (save-restriction
3039                   (message-narrow-to-headers)
3040                   (and news
3041                        (or (message-fetch-field "cc")
3042                            (message-fetch-field "to"))
3043                        (let ((ct (mime-read-Content-Type)))
3044                          (or (not ct)
3045                              (and (eq 'text (cdr (assq 'type ct)))
3046                                   (eq 'plain (cdr (assq 'subtype ct))))))))
3047               (message-insert-courtesy-copy))
3048             (setq failure (message-maybe-split-and-send-mail)))
3049         (kill-buffer tembuf))
3050       (set-buffer message-edit-buffer)
3051       (if failure
3052           (progn
3053             (message "Couldn't send message via mail: %s" failure)
3054             nil)
3055         (push 'mail message-sent-message-via)))))
3056
3057 (defun message-send-mail-with-sendmail ()
3058   "Send off the prepared buffer with sendmail."
3059   (let ((errbuf (if message-interactive
3060                     (message-generate-new-buffer-clone-locals
3061                      " sendmail errors")
3062                   0))
3063         resend-to-addresses delimline)
3064     (let ((case-fold-search t))
3065       (save-restriction
3066         (message-narrow-to-headers)
3067         (setq resend-to-addresses (message-fetch-field "resent-to")))
3068       ;; Change header-delimiter to be what sendmail expects.
3069       (goto-char (point-min))
3070       (re-search-forward
3071        (concat "^" (regexp-quote mail-header-separator) "\n"))
3072       (replace-match "\n")
3073       (backward-char 1)
3074       (setq delimline (point-marker))
3075       (run-hooks 'message-send-mail-hook)
3076       ;; Insert an extra newline if we need it to work around
3077       ;; Sun's bug that swallows newlines.
3078       (goto-char (1+ delimline))
3079       (when (eval message-mailer-swallows-blank-line)
3080         (newline))
3081       (when message-interactive
3082         (save-excursion
3083           (set-buffer errbuf)
3084           (erase-buffer))))
3085     (let ((default-directory "/"))
3086       (as-binary-process
3087        (apply 'call-process-region
3088               (append (list (point-min) (point-max)
3089                             (if (boundp 'sendmail-program)
3090                                 sendmail-program
3091                               "/usr/lib/sendmail")
3092                             nil errbuf nil "-oi")
3093                       ;; Always specify who from,
3094                       ;; since some systems have broken sendmails.
3095                       ;; But some systems are more broken with -f, so
3096                       ;; we'll let users override this.
3097                       (if (null message-sendmail-f-is-evil)
3098                           (list "-f" (message-make-address)))
3099                       ;; These mean "report errors by mail"
3100                       ;; and "deliver in background".
3101                       (if (null message-interactive) '("-oem" "-odb"))
3102                       ;; Get the addresses from the message
3103                       ;; unless this is a resend.
3104                       ;; We must not do that for a resend
3105                       ;; because we would find the original addresses.
3106                       ;; For a resend, include the specific addresses.
3107                       (if resend-to-addresses
3108                           (list resend-to-addresses)
3109                         '("-t"))))))
3110     (when message-interactive
3111       (save-excursion
3112         (set-buffer errbuf)
3113         (goto-char (point-min))
3114         (while (re-search-forward "\n\n* *" nil t)
3115           (replace-match "; "))
3116         (if (not (zerop (buffer-size)))
3117             (error "Sending...failed to %s"
3118                    (buffer-substring (point-min) (point-max)))))
3119       (when (bufferp errbuf)
3120         (kill-buffer errbuf)))))
3121
3122 (defun message-send-mail-with-qmail ()
3123   "Pass the prepared message buffer to qmail-inject.
3124 Refer to the documentation for the variable `message-send-mail-function'
3125 to find out how to use this."
3126   ;; replace the header delimiter with a blank line
3127   (goto-char (point-min))
3128   (re-search-forward
3129    (concat "^" (regexp-quote mail-header-separator) "\n"))
3130   (replace-match "\n")
3131   (backward-char 1)
3132   (run-hooks 'message-send-mail-hook)
3133   ;; send the message
3134   (case
3135       (as-binary-process
3136        (apply
3137         'call-process-region 1 (point-max) message-qmail-inject-program
3138         nil nil nil
3139         ;; qmail-inject's default behaviour is to look for addresses on the
3140         ;; command line; if there're none, it scans the headers.
3141         ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
3142         ;;
3143         ;; in general, ALL of qmail-inject's defaults are perfect for simply
3144         ;; reading a formatted (i. e., at least a To: or Resent-To header)
3145         ;; message from stdin.
3146         ;;
3147         ;; qmail also has the advantage of not having been raped by
3148         ;; various vendors, so we don't have to allow for that, either --
3149         ;; compare this with message-send-mail-with-sendmail and weep
3150         ;; for sendmail's lost innocence.
3151         ;;
3152         ;; all this is way cool coz it lets us keep the arguments entirely
3153         ;; free for -inject-arguments -- a big win for the user and for us
3154         ;; since we don't have to play that double-guessing game and the user
3155         ;; gets full control (no gestapo'ish -f's, for instance).  --sj
3156         message-qmail-inject-args))
3157     ;; qmail-inject doesn't say anything on it's stdout/stderr,
3158     ;; we have to look at the retval instead
3159     (0 nil)
3160     (100 (error "qmail-inject reported permanent failure"))
3161     (111 (error "qmail-inject reported transient failure"))
3162     ;; should never happen
3163     (t   (error "qmail-inject reported unknown failure"))))
3164
3165 (defun message-send-mail-with-mh ()
3166   "Send the prepared message buffer with mh."
3167   (let ((mh-previous-window-config nil)
3168         (name (mh-new-draft-name)))
3169     (setq buffer-file-name name)
3170     ;; MH wants to generate these headers itself.
3171     (when message-mh-deletable-headers
3172       (let ((headers message-mh-deletable-headers))
3173         (while headers
3174           (goto-char (point-min))
3175           (and (re-search-forward
3176                 (concat "^" (symbol-name (car headers)) ": *") nil t)
3177                (message-delete-line))
3178           (pop headers))))
3179     (run-hooks 'message-send-mail-hook)
3180     ;; Pass it on to mh.
3181     (mh-send-letter)))
3182
3183 (defun message-send-mail-with-smtp ()
3184   "Send off the prepared buffer with SMTP."
3185   (require 'smtp) ; XXX
3186   (let ((case-fold-search t)
3187         recipients)
3188     (save-restriction
3189       (message-narrow-to-headers)
3190       (setq recipients
3191             ;; XXX: Should be replaced by better one.
3192             (smtp-deduce-address-list (current-buffer)
3193                                       (point-min) (point-max)))
3194       ;; Remove BCC lines.
3195       (message-remove-header "bcc"))
3196     ;; replace the header delimiter with a blank line.
3197     (goto-char (point-min))
3198     (re-search-forward
3199      (concat "^" (regexp-quote mail-header-separator) "\n"))
3200     (replace-match "\n")
3201     (backward-char 1)
3202     (run-hooks 'message-send-mail-hook)
3203     (if recipients
3204         (static-if (fboundp 'smtp-send-buffer)
3205             (smtp-send-buffer user-mail-address recipients
3206                               (current-buffer))
3207           (let ((result (smtp-via-smtp user-mail-address recipients
3208                                        (current-buffer))))
3209             (unless (eq result t)
3210               (error "Sending failed; %s" result))))
3211       (error "Sending failed; no recipients"))))
3212
3213 (defsubst message-maybe-split-and-send-news (method)
3214   "Split a message if necessary, and send it via news.
3215 Returns nil if sending succeeded, returns t if sending failed.
3216 This sub function is for exclusive use of `message-send-news'."
3217   (let ((mime-edit-split-ignored-field-regexp
3218          mime-edit-split-ignored-field-regexp)
3219         (case-fold-search t))
3220     (while (string-match "Message-ID" mime-edit-split-ignored-field-regexp)
3221       (setq mime-edit-split-ignored-field-regexp
3222             (concat (substring mime-edit-split-ignored-field-regexp
3223                                0 (match-beginning 0))
3224                     "Hey_MIME-Edit,_there_is_an_inviolable_Message_ID"
3225                     "_so_don't_rape_it!"
3226                     (substring mime-edit-split-ignored-field-regexp
3227                                (match-end 0)))))
3228     (or
3229      (catch 'message-sending-news-failure
3230        (mime-edit-maybe-split-and-send
3231         (function
3232          (lambda ()
3233            (interactive)
3234            (save-restriction
3235              (std11-narrow-to-header mail-header-separator)
3236              (goto-char (point-min))
3237              (when (re-search-forward "^Message-ID:" nil t)
3238                (delete-region (match-end 0) (std11-field-end))
3239                (insert " " (message-make-message-id))))
3240            (unless (funcall message-send-news-function method)
3241              (throw 'message-sending-news-failure t)))))
3242        nil)
3243      (not (funcall message-send-news-function method)))))
3244
3245 (defun message-send-news (&optional arg)
3246   (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
3247          (case-fold-search nil)
3248          (method (if (message-functionp message-post-method)
3249                      (funcall message-post-method arg)
3250                    message-post-method))
3251          (group-name-charset (gnus-group-name-charset method ""))
3252          (message-syntax-checks
3253           (if arg
3254               (cons '(existing-newsgroups . disabled)
3255                     message-syntax-checks)
3256             message-syntax-checks))
3257          (message-this-is-news t)
3258          result)
3259     (save-restriction
3260       (message-narrow-to-headers)
3261       ;; Insert some headers.
3262       (message-generate-headers message-required-news-headers)
3263       ;; Let the user do all of the above.
3264       (run-hooks 'message-header-hook))
3265     (when group-name-charset
3266       (setq message-syntax-checks
3267             (cons '(valid-newsgroups . disabled)
3268                   message-syntax-checks)))
3269     (message-cleanup-headers)
3270     (if (not (message-check-news-syntax))
3271         nil
3272       (unwind-protect
3273           (save-excursion
3274             (set-buffer tembuf)
3275             (buffer-disable-undo)
3276             (erase-buffer)
3277             (insert-buffer message-encoding-buffer)
3278             ;; Remove some headers.
3279             (save-restriction
3280               (message-narrow-to-headers)
3281 ;; We Semi-gnus people have no use for it.
3282 ;;            ;; We (re)generate the Lines header.
3283 ;;            (when (memq 'Lines message-required-mail-headers)
3284 ;;              (message-generate-headers '(Lines)))
3285               ;; Remove some headers.
3286               (message-remove-header message-ignored-news-headers t))
3287             (goto-char (point-max))
3288             ;; require one newline at the end.
3289             (or (= (preceding-char) ?\n)
3290                 (insert ?\n))
3291             (setq result (message-maybe-split-and-send-news method)))
3292         (kill-buffer tembuf))
3293       (set-buffer message-edit-buffer)
3294       (if result
3295           (progn
3296             (message "Couldn't send message via news: %s"
3297                      (nnheader-get-report (car method)))
3298             nil)
3299         (push 'news message-sent-message-via)))))
3300
3301 ;; 1997-09-29 by MORIOKA Tomohiko
3302 (defun message-send-news-with-gnus (method)
3303   (let ((case-fold-search t))
3304     ;; Remove the delimiter.
3305     (goto-char (point-min))
3306     (re-search-forward
3307      (concat "^" (regexp-quote mail-header-separator) "\n"))
3308     (replace-match "\n")
3309     (backward-char 1)
3310     (run-hooks 'message-send-news-hook)
3311     (gnus-open-server method)
3312     (message "Sending news with %s..." (gnus-server-string method))
3313     (gnus-request-post method)
3314     ))
3315
3316 ;;;
3317 ;;; Header generation & syntax checking.
3318 ;;;
3319
3320 (defun message-check-element (type)
3321   "Return non-nil if this TYPE is not to be checked."
3322   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
3323       t
3324     (let ((able (assq type message-syntax-checks)))
3325       (and (consp able)
3326            (eq (cdr able) 'disabled)))))
3327
3328 (defun message-check-news-syntax ()
3329   "Check the syntax of the message."
3330   (save-excursion
3331     (save-restriction
3332       (widen)
3333       (and
3334        ;; We narrow to the headers and check them first.
3335        (save-excursion
3336          (save-restriction
3337            (message-narrow-to-headers)
3338            (message-check-news-header-syntax)))
3339        ;; Check the body.
3340        (save-excursion
3341          (set-buffer message-edit-buffer)
3342          (message-check-news-body-syntax))))))
3343
3344 (defun message-check-news-header-syntax ()
3345   (and
3346    ;; Check Newsgroups header.
3347    (message-check 'newsgroups
3348      (let ((group (message-fetch-field "newsgroups")))
3349        (or
3350         (and group
3351              (not (string-match "\\`[ \t]*\\'" group)))
3352         (ignore
3353          (message
3354           "The newsgroups field is empty or missing.  Posting is denied.")))))
3355    ;; Check the Subject header.
3356    (message-check 'subject
3357      (let* ((case-fold-search t)
3358             (subject (message-fetch-field "subject")))
3359        (or
3360         (and subject
3361              (not (string-match "\\`[ \t]*\\'" subject)))
3362         (ignore
3363          (message
3364           "The subject field is empty or missing.  Posting is denied.")))))
3365    ;; Check for commands in Subject.
3366    (message-check 'subject-cmsg
3367      (if (string-match "^cmsg " (message-fetch-field "subject"))
3368          (y-or-n-p
3369           "The control code \"cmsg\" is in the subject.  Really post? ")
3370        t))
3371    ;; Check for multiple identical headers.
3372    (message-check 'multiple-headers
3373      (let (found)
3374        (while (and (not found)
3375                    (re-search-forward "^[^ \t:]+: " nil t))
3376          (save-excursion
3377            (or (re-search-forward
3378                 (concat "^"
3379                         (regexp-quote
3380                          (setq found
3381                                (buffer-substring
3382                                 (match-beginning 0) (- (match-end 0) 2))))
3383                         ":")
3384                 nil t)
3385                (setq found nil))))
3386        (if found
3387            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
3388          t)))
3389    ;; Check for Version and Sendsys.
3390    (message-check 'sendsys
3391      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
3392          (y-or-n-p
3393           (format "The article contains a %s command.  Really post? "
3394                   (buffer-substring (match-beginning 0)
3395                                     (1- (match-end 0)))))
3396        t))
3397    ;; See whether we can shorten Followup-To.
3398    (message-check 'shorten-followup-to
3399      (let ((newsgroups (message-fetch-field "newsgroups"))
3400            (followup-to (message-fetch-field "followup-to"))
3401            to)
3402        (when (and newsgroups
3403                   (string-match "," newsgroups)
3404                   (not followup-to)
3405                   (not
3406                    (zerop
3407                     (length
3408                      (setq to (completing-read
3409                                "Followups to: (default all groups) "
3410                                (mapcar (lambda (g) (list g))
3411                                        (cons "poster"
3412                                              (message-tokenize-header
3413                                               newsgroups)))))))))
3414          (goto-char (point-min))
3415          (insert "Followup-To: " to "\n"))
3416        t))
3417    ;; Check "Shoot me".
3418    (message-check 'shoot
3419      (if (re-search-forward
3420           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
3421          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
3422        t))
3423    ;; Check for Approved.
3424    (message-check 'approved
3425      (if (re-search-forward "^Approved:" nil t)
3426          (y-or-n-p "The article contains an Approved header.  Really post? ")
3427        t))
3428    ;; Check the Message-ID header.
3429    (message-check 'message-id
3430      (let* ((case-fold-search t)
3431             (message-id (message-fetch-field "message-id" t)))
3432        (or (not message-id)
3433            ;; Is there an @ in the ID?
3434            (and (string-match "@" message-id)
3435                 ;; Is there a dot in the ID?
3436                 (string-match "@[^.]*\\." message-id)
3437                 ;; Does the ID end with a dot?
3438                 (not (string-match "\\.>" message-id)))
3439            (y-or-n-p
3440             (format "The Message-ID looks strange: \"%s\".  Really post? "
3441                     message-id)))))
3442    ;; Check the Newsgroups & Followup-To headers.
3443    (message-check 'existing-newsgroups
3444      (let* ((case-fold-search t)
3445             (newsgroups (message-fetch-field "newsgroups"))
3446             (followup-to (message-fetch-field "followup-to"))
3447             (groups (message-tokenize-header
3448                      (if followup-to
3449                          (concat newsgroups "," followup-to)
3450                        newsgroups)))
3451             (hashtb (and (boundp 'gnus-active-hashtb)
3452                          gnus-active-hashtb))
3453             errors)
3454        (while groups
3455          (when (and (not (boundp (intern (car groups) hashtb)))
3456                     (not (equal (car groups) "poster")))
3457            (push (car groups) errors))
3458          (pop groups))
3459        (cond
3460         ;; Gnus is not running.
3461         ((or (not hashtb)
3462              (not (boundp 'gnus-read-active-file)))
3463          t)
3464         ;; We don't have all the group names.
3465         ((and (or (not gnus-read-active-file)
3466                   (eq gnus-read-active-file 'some))
3467               errors)
3468          (y-or-n-p
3469           (format
3470            "Really post to %s possibly unknown group%s: %s? "
3471            (if (= (length errors) 1) "this" "these")
3472            (if (= (length errors) 1) "" "s")
3473            (mapconcat 'identity errors ", "))))
3474         ;; There were no errors.
3475         ((not errors)
3476          t)
3477         ;; There are unknown groups.
3478         (t
3479          (y-or-n-p
3480           (format
3481            "Really post to %s unknown group%s: %s? "
3482            (if (= (length errors) 1) "this" "these")
3483            (if (= (length errors) 1) "" "s")
3484            (mapconcat 'identity errors ", ")))))))
3485      ;; Check the Newsgroups & Followup-To headers for syntax errors.
3486      (message-check 'valid-newsgroups
3487        (let ((case-fold-search t)
3488              (headers '("Newsgroups" "Followup-To"))
3489              header error)
3490          (while (and headers (not error))
3491            (when (setq header (mail-fetch-field (car headers)))
3492              (if (or
3493                   (not
3494                    (string-match
3495                     "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
3496                     header))
3497                   (memq
3498                    nil (mapcar
3499                         (lambda (g)
3500                           (not (string-match "\\.\\'\\|\\.\\." g)))
3501                         (message-tokenize-header header ","))))
3502                  (setq error t)))
3503            (unless error
3504              (pop headers)))
3505          (if (not error)
3506              t
3507            (y-or-n-p
3508             (format "The %s header looks odd: \"%s\".  Really post? "
3509                     (car headers) header)))))
3510      (message-check 'repeated-newsgroups
3511        (let ((case-fold-search t)
3512              (headers '("Newsgroups" "Followup-To"))
3513              header error groups group)
3514          (while (and headers
3515                      (not error))
3516            (when (setq header (mail-fetch-field (pop headers)))
3517              (setq groups (message-tokenize-header header ","))
3518              (while (setq group (pop groups))
3519                (when (member group groups)
3520                  (setq error group
3521                        groups nil)))))
3522          (if (not error)
3523              t
3524            (y-or-n-p
3525             (format "Group %s is repeated in headers.  Really post? " error)))))
3526      ;; Check the From header.
3527      (message-check 'from
3528        (let* ((case-fold-search t)
3529               (from (message-fetch-field "from"))
3530               ad)
3531          (cond
3532           ((not from)
3533            (message "There is no From line.  Posting is denied.")
3534            nil)
3535           ((or (not (string-match
3536                      "@[^\\.]*\\."
3537                      (setq ad (nth 1 (mail-extract-address-components
3538                                       from))))) ;larsi@ifi
3539                (string-match "\\.\\." ad) ;larsi@ifi..uio
3540                (string-match "@\\." ad) ;larsi@.ifi.uio
3541                (string-match "\\.$" ad) ;larsi@ifi.uio.
3542                (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
3543                (string-match "(.*).*(.*)" from)) ;(lars) (lars)
3544            (message
3545             "Denied posting -- the From looks strange: \"%s\"." from)
3546            nil)
3547           (t t))))
3548      ;; Check the Reply-To header.
3549      (message-check 'reply-to
3550        (let* ((case-fold-search t)
3551               (reply-to (message-fetch-field "reply-to"))
3552               ad)
3553          (cond
3554           ((not reply-to)
3555            t)
3556           ((string-match "," reply-to)
3557            (y-or-n-p
3558             (format "Multiple Reply-To addresses: \"%s\". Really post? "
3559                     reply-to)))
3560           ((or (not (string-match
3561                      "@[^\\.]*\\."
3562                      (setq ad (nth 1 (mail-extract-address-components
3563                                       reply-to))))) ;larsi@ifi
3564                (string-match "\\.\\." ad) ;larsi@ifi..uio
3565                (string-match "@\\." ad) ;larsi@.ifi.uio
3566                (string-match "\\.$" ad) ;larsi@ifi.uio.
3567                (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
3568                (string-match "(.*).*(.*)" reply-to)) ;(lars) (lars)
3569            (y-or-n-p
3570             (format
3571              "The Reply-To looks strange: \"%s\". Really post? " 
3572              reply-to)))
3573           (t t))))))
3574
3575 (defun message-check-news-body-syntax ()
3576   (and
3577    ;; Check for long lines.
3578    (message-check 'long-lines
3579      (goto-char (point-min))
3580      (re-search-forward
3581       (concat "^" (regexp-quote mail-header-separator) "$"))
3582      (forward-line 1)
3583      (while (and
3584              (or (looking-at
3585                   mime-edit-tag-regexp)
3586                  (let ((p (point)))
3587                    (end-of-line)
3588                    (< (- (point) p) 80)))
3589              (zerop (forward-line 1))))
3590      (or (bolp)
3591          (eobp)
3592          (y-or-n-p
3593           "You have lines longer than 79 characters.  Really post? ")))
3594    ;; Check whether the article is empty.
3595    (message-check 'empty
3596      (goto-char (point-min))
3597      (re-search-forward
3598       (concat "^" (regexp-quote mail-header-separator) "$"))
3599      (forward-line 1)
3600      (let ((b (point)))
3601        (goto-char (point-max))
3602        (re-search-backward message-signature-separator nil t)
3603        (beginning-of-line)
3604        (or (re-search-backward "[^ \n\t]" b t)
3605            (if (message-gnksa-enable-p 'empty-article)
3606                (y-or-n-p "Empty article.  Really post? ")
3607              (message "Denied posting -- Empty article.")
3608              nil))))
3609    ;; Check for control characters.
3610    (message-check 'control-chars
3611      (if (re-search-forward "[\000-\007\013\015-\032\034-\037\200-\237]" nil t)
3612          (y-or-n-p
3613           "The article contains control characters.  Really post? ")
3614        t))
3615    ;; Check 8bit characters.
3616    (message-check '8bit
3617      (message-check-8bit))
3618    ;; Check excessive size.
3619    (message-check 'size
3620      (if (> (buffer-size) 60000)
3621          (y-or-n-p
3622           (format "The article is %d octets long.  Really post? "
3623                   (buffer-size)))
3624        t))
3625    ;; Check whether any new text has been added.
3626    (message-check 'new-text
3627      (or
3628       (not message-checksum)
3629       (not (eq (message-checksum) message-checksum))
3630       (if (message-gnksa-enable-p 'quoted-text-only)
3631           (y-or-n-p
3632            "It looks like no new text has been added.  Really post? ")
3633         (message "Denied posting -- no new text has been added.")
3634         nil)))
3635    ;; Check the length of the signature.
3636    (message-check 'signature
3637      (goto-char (point-max))
3638      (if (> (count-lines (point) (point-max)) 5)
3639          (y-or-n-p
3640           (format
3641            "Your .sig is %d lines; it should be max 4.  Really post? "
3642            (1- (count-lines (point) (point-max)))))
3643        t))
3644    ;; Ensure that text follows last quoted portion.
3645    (message-check 'quoting-style
3646      (goto-char (point-max))
3647      (let ((no-problem t))
3648        (when (search-backward-regexp "^>[^\n]*\n" nil t)
3649          (setq no-problem (search-forward-regexp "^[ \t]*[^>\n]" nil t)))
3650        (if no-problem
3651            t
3652          (if (message-gnksa-enable-p 'quoted-text-only)
3653              (y-or-n-p "Your text should follow quoted text.  Really post? ")
3654            ;; Ensure that
3655            (goto-char (point-min))
3656            (re-search-forward
3657             (concat "^" (regexp-quote mail-header-separator) "$"))
3658            (if (search-forward-regexp "^[ \t]*[^>\n]" nil t)
3659                (y-or-n-p "Your text should follow quoted text.  Really post? ")
3660              (message "Denied posting -- only quoted text.")
3661              nil)))))))
3662
3663 (defun message-check-mail-syntax ()
3664   "Check the syntax of the message."
3665   (save-excursion
3666     (save-restriction
3667       (widen)
3668       (and
3669        ;; We narrow to the headers and check them first.
3670        (save-excursion
3671          (save-restriction
3672            (message-narrow-to-headers)
3673            (message-check-mail-header-syntax)))
3674        ;; Check the body.
3675        (save-excursion
3676          (set-buffer message-edit-buffer)
3677          (message-check-mail-body-syntax))))))
3678
3679 (defun message-check-mail-header-syntax ()
3680   t)
3681
3682 (defun message-check-mail-body-syntax ()
3683   (and
3684    ;; Check 8bit characters.
3685    (message-check '8bit
3686      (message-check-8bit)
3687      )))
3688
3689 (defun message-check-8bit ()
3690   "Check the article contains 8bit characters."
3691   (save-excursion
3692     (set-buffer message-encoding-buffer)
3693     (message-narrow-to-headers)
3694     (let* ((case-fold-search t)
3695            (field-value (message-fetch-field "content-transfer-encoding")))
3696       (if (and field-value
3697                (member (downcase field-value) message-8bit-encoding-list))
3698           t
3699         (widen)
3700         (set-buffer (get-buffer-create " message syntax"))
3701         (erase-buffer)
3702         (goto-char (point-min))
3703         (set-buffer-multibyte nil)
3704         (insert-buffer message-encoding-buffer)
3705         (goto-char (point-min))
3706         (if (re-search-forward "[^\x00-\x7f]" nil t)
3707             (y-or-n-p
3708              "The article contains 8bit characters.  Really post? ")
3709           t)))))
3710
3711 (defun message-checksum ()
3712   "Return a \"checksum\" for the current buffer."
3713   (let ((sum 0))
3714     (save-excursion
3715       (goto-char (point-min))
3716       (re-search-forward
3717        (concat "^" (regexp-quote mail-header-separator) "$"))
3718       (while (not (eobp))
3719         (when (not (looking-at "[ \t\n]"))
3720           (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1)
3721                             (char-after))))
3722         (forward-char 1)))
3723     sum))
3724
3725 (defun message-do-fcc ()
3726   "Process Fcc headers in the current buffer."
3727   (let ((case-fold-search t)
3728         (coding-system-for-write 'raw-text)
3729         (output-coding-system 'raw-text)
3730         list file)
3731     (save-excursion
3732       (save-restriction
3733         (message-narrow-to-headers)
3734         (setq file (message-fetch-field "fcc" t)))
3735       (when file
3736         (set-buffer (get-buffer-create " *message temp*"))
3737         (erase-buffer)
3738         (insert-buffer-substring message-encoding-buffer)
3739         (save-restriction
3740           (message-narrow-to-headers)
3741           (while (setq file (message-fetch-field "fcc"))
3742             (push file list)
3743             (message-remove-header "fcc" nil t)))
3744         (goto-char (point-min))
3745         (when (re-search-forward
3746                (concat "^" (regexp-quote mail-header-separator) "$")
3747                nil t)
3748           (replace-match "" t t))
3749         ;; Process FCC operations.
3750         (while list
3751           (setq file (pop list))
3752           (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
3753               ;; Pipe the article to the program in question.
3754               (call-process-region (point-min) (point-max) shell-file-name
3755                                    nil nil nil shell-command-switch
3756                                    (match-string 1 file))
3757             ;; Save the article.
3758             (setq file (expand-file-name file))
3759             (unless (file-exists-p (file-name-directory file))
3760               (make-directory (file-name-directory file) t))
3761             (if (and message-fcc-handler-function
3762                      (not (eq message-fcc-handler-function 'rmail-output)))
3763                 (funcall message-fcc-handler-function file)
3764               (if (and (file-readable-p file) (mail-file-babyl-p file))
3765                   (rmail-output file 1 nil t)
3766                 (let ((mail-use-rfc822 t))
3767                   (rmail-output file 1 t t))))))
3768         (kill-buffer (current-buffer))))))
3769
3770 (defun message-output (filename)
3771   "Append this article to Unix/babyl mail file FILENAME."
3772   (if (and (file-readable-p filename)
3773            (mail-file-babyl-p filename))
3774       (gnus-output-to-rmail filename t)
3775     (gnus-output-to-mail filename t)))
3776
3777 (defun message-cleanup-headers ()
3778   "Do various automatic cleanups of the headers."
3779   ;; Remove empty lines in the header.
3780   (save-restriction
3781     (message-narrow-to-headers)
3782     ;; Remove blank lines.
3783     (while (re-search-forward "^[ \t]*\n" nil t)
3784       (replace-match "" t t))
3785
3786     ;; Correct Newsgroups and Followup-To headers:  Change sequence of
3787     ;; spaces to comma and eliminate spaces around commas.  Eliminate
3788     ;; embedded line breaks.
3789     (goto-char (point-min))
3790     (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
3791       (save-restriction
3792         (narrow-to-region
3793          (point)
3794          (if (re-search-forward "^[^ \t]" nil t)
3795              (match-beginning 0)
3796            (forward-line 1)
3797            (point)))
3798         (goto-char (point-min))
3799         (while (re-search-forward "\n[ \t]+" nil t)
3800           (replace-match " " t t))      ;No line breaks (too confusing)
3801         (goto-char (point-min))
3802         (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
3803           (replace-match "," t t))
3804         (goto-char (point-min))
3805         ;; Remove trailing commas.
3806         (when (re-search-forward ",+$" nil t)
3807           (replace-match "" t t))))))
3808
3809 (defun message-make-date (&optional now)
3810   "Make a valid data header.
3811 If NOW, use that time instead."
3812   (let* ((now (or now (current-time)))
3813          (zone (nth 8 (decode-time now)))
3814          (sign "+"))
3815     (when (< zone 0)
3816       (setq sign "-")
3817       (setq zone (- zone)))
3818     (concat
3819      ;; The day name of the %a spec is locale-specific.  Pfff.
3820      (format "%s, " (capitalize (car (rassoc (nth 6 (decode-time now))
3821                                              parse-time-weekdays))))
3822      (format-time-string "%d" now)
3823      ;; The month name of the %b spec is locale-specific.  Pfff.
3824      (format " %s "
3825              (capitalize (car (rassoc (nth 4 (decode-time now))
3826                                       parse-time-months))))
3827      (format-time-string "%Y %H:%M:%S " now)
3828      ;; We do all of this because XEmacs doesn't have the %z spec.
3829      (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60)))))
3830
3831 (defun message-make-followup-subject (subject)
3832   "Make a followup Subject."
3833   (cond
3834    ((and (eq message-use-subject-re 'guess)
3835          (string-match message-subject-encoded-re-regexp subject))
3836     subject)
3837    (message-use-subject-re
3838     (concat "Re: " (message-strip-subject-re subject)))
3839    (t subject)))
3840
3841 (defun message-make-message-id ()
3842   "Make a unique Message-ID."
3843   (concat "<" (message-unique-id)
3844           (let ((psubject (save-excursion (message-fetch-field "subject")))
3845                 (psupersedes
3846                  (save-excursion (message-fetch-field "supersedes"))))
3847             (if (or
3848                  (and message-reply-headers
3849                       (mail-header-references message-reply-headers)
3850                       (mail-header-subject message-reply-headers)
3851                       psubject
3852                       (not (string=
3853                             (message-strip-subject-re
3854                              (mail-header-subject message-reply-headers))
3855                             (message-strip-subject-re psubject))))
3856                  (and psupersedes
3857                       (string-match "_-_@" psupersedes)))
3858                 "_-_" ""))
3859           "@" (message-make-fqdn) ">"))
3860
3861 (defvar message-unique-id-char nil)
3862
3863 ;; If you ever change this function, make sure the new version
3864 ;; cannot generate IDs that the old version could.
3865 ;; You might for example insert a "." somewhere (not next to another dot
3866 ;; or string boundary), or modify the "fsf" string.
3867 (defun message-unique-id ()
3868   ;; Don't use microseconds from (current-time), they may be unsupported.
3869   ;; Instead we use this randomly inited counter.
3870   (setq message-unique-id-char
3871         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
3872            ;; (current-time) returns 16-bit ints,
3873            ;; and 2^16*25 just fits into 4 digits i base 36.
3874            (* 25 25)))
3875   (let ((tm (current-time)))
3876     (concat
3877      (if (memq system-type '(ms-dos emx vax-vms))
3878          (let ((user (downcase (user-login-name))))
3879            (while (string-match "[^a-z0-9_]" user)
3880              (aset user (match-beginning 0) ?_))
3881            user)
3882        (message-number-base36 (user-uid) -1))
3883      (message-number-base36 (+ (car   tm)
3884                                (lsh (% message-unique-id-char 25) 16)) 4)
3885      (message-number-base36 (+ (nth 1 tm)
3886                                (lsh (/ message-unique-id-char 25) 16)) 4)
3887      ;; Append the newsreader name, because while the generated
3888      ;; ID is unique to this newsreader, other newsreaders might
3889      ;; otherwise generate the same ID via another algorithm.
3890      ".fsf")))
3891
3892 (defun message-number-base36 (num len)
3893   (if (if (< len 0)
3894           (<= num 0)
3895         (= len 0))
3896       ""
3897     (concat (message-number-base36 (/ num 36) (1- len))
3898             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
3899                                   (% num 36))))))
3900
3901 (defun message-make-organization ()
3902   "Make an Organization header."
3903   (let* ((organization
3904           (when message-user-organization
3905             (if (message-functionp message-user-organization)
3906                 (funcall message-user-organization)
3907               message-user-organization))))
3908     (save-excursion
3909       (message-set-work-buffer)
3910       (cond ((stringp organization)
3911              (insert organization))
3912             ((and (eq t organization)
3913                   message-user-organization-file
3914                   (file-exists-p message-user-organization-file))
3915              (insert-file-contents message-user-organization-file)))
3916       (goto-char (point-min))
3917       (while (re-search-forward "[\t\n]+" nil t)
3918         (replace-match "" t t))
3919       (unless (zerop (buffer-size))
3920         (buffer-string)))))
3921
3922 (defun message-make-lines ()
3923   "Count the number of lines and return numeric string."
3924   (save-excursion
3925     (save-restriction
3926       (widen)
3927       (message-goto-body)
3928       (int-to-string (count-lines (point) (point-max))))))
3929
3930 (defun message-make-in-reply-to ()
3931   "Return the In-Reply-To header for this message."
3932   (when message-reply-headers
3933     (let ((from (mail-header-from message-reply-headers))
3934           (date (mail-header-date message-reply-headers))
3935           (msg-id (mail-header-message-id message-reply-headers)))
3936       (when msg-id
3937         (concat msg-id
3938                 (when from
3939                   (let ((pair (std11-extract-address-components from)))
3940                     (concat "\n ("
3941                             (or (car pair) (cadr pair))
3942                             "'s message of \""
3943                             (if (or (not date) (string= date ""))
3944                                 "(unknown date)" date)
3945                             "\")"))))))))
3946
3947 (defun message-make-distribution ()
3948   "Make a Distribution header."
3949   (let ((orig-distribution (message-fetch-reply-field "distribution")))
3950     (cond ((message-functionp message-distribution-function)
3951            (funcall message-distribution-function))
3952           (t orig-distribution))))
3953
3954 (defun message-make-expires ()
3955   "Return an Expires header based on `message-expires'."
3956   (let ((current (current-time))
3957         (future (* 1.0 message-expires 60 60 24)))
3958     ;; Add the future to current.
3959     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
3960     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
3961     (message-make-date current)))
3962
3963 (defun message-make-path ()
3964   "Return uucp path."
3965   (let ((login-name (user-login-name)))
3966     (cond ((null message-user-path)
3967            (concat (system-name) "!" login-name))
3968           ((stringp message-user-path)
3969            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
3970            (concat message-user-path "!" login-name))
3971           (t login-name))))
3972
3973 (defun message-make-from ()
3974   "Make a From header."
3975   (let* ((style message-from-style)
3976          (login (message-make-address))
3977          (fullname
3978           (or (and (boundp 'user-full-name)
3979                    user-full-name)
3980               (user-full-name))))
3981     (when (string= fullname "&")
3982       (setq fullname (user-login-name)))
3983     (save-excursion
3984       (message-set-work-buffer)
3985       (cond
3986        ((or (null style)
3987             (equal fullname ""))
3988         (insert login))
3989        ((or (eq style 'angles)
3990             (and (not (eq style 'parens))
3991                  ;; Use angles if no quoting is needed, or if parens would
3992                  ;; need quoting too.
3993                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
3994                      (let ((tmp (concat fullname nil)))
3995                        (while (string-match "([^()]*)" tmp)
3996                          (aset tmp (match-beginning 0) ?-)
3997                          (aset tmp (1- (match-end 0)) ?-))
3998                        (string-match "[\\()]" tmp)))))
3999         (insert fullname)
4000         (goto-char (point-min))
4001         ;; Look for a character that cannot appear unquoted
4002         ;; according to RFC 822.
4003         (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
4004           ;; Quote fullname, escaping specials.
4005           (goto-char (point-min))
4006           (insert "\"")
4007           (while (re-search-forward "[\"\\]" nil 1)
4008             (replace-match "\\\\\\&" t))
4009           (insert "\""))
4010         (insert " <" login ">"))
4011        (t                               ; 'parens or default
4012         (insert login " (")
4013         (let ((fullname-start (point)))
4014           (insert fullname)
4015           (goto-char fullname-start)
4016           ;; RFC 822 says \ and nonmatching parentheses
4017           ;; must be escaped in comments.
4018           ;; Escape every instance of ()\ ...
4019           (while (re-search-forward "[()\\]" nil 1)
4020             (replace-match "\\\\\\&" t))
4021           ;; ... then undo escaping of matching parentheses,
4022           ;; including matching nested parentheses.
4023           (goto-char fullname-start)
4024           (while (re-search-forward
4025                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
4026                   nil 1)
4027             (replace-match "\\1(\\3)" t)
4028             (goto-char fullname-start)))
4029         (insert ")")))
4030       (buffer-string))))
4031
4032 (defun message-make-sender ()
4033   "Return the \"real\" user address.
4034 This function tries to ignore all user modifications, and
4035 give as trustworthy answer as possible."
4036   (concat (user-login-name) "@" (system-name)))
4037
4038 (defun message-make-address ()
4039   "Make the address of the user."
4040   (or (message-user-mail-address)
4041       (concat (user-login-name) "@" (message-make-domain))))
4042
4043 (defun message-user-mail-address ()
4044   "Return the pertinent part of `user-mail-address'."
4045   (when user-mail-address
4046     (if (string-match " " user-mail-address)
4047         (nth 1 (std11-extract-address-components user-mail-address))
4048       user-mail-address)))
4049
4050 (defun message-make-fqdn ()
4051   "Return user's fully qualified domain name."
4052   (let ((system-name (system-name))
4053         (user-mail (message-user-mail-address)))
4054     (cond
4055      ((string-match "[^.]\\.[^.]" system-name)
4056       ;; `system-name' returned the right result.
4057       system-name)
4058      ;; Try `mail-host-address'.
4059      ((and (boundp 'mail-host-address)
4060            (stringp mail-host-address)
4061            (string-match "\\." mail-host-address))
4062       mail-host-address)
4063      ;; We try `user-mail-address' as a backup.
4064      ((and user-mail
4065            (string-match "\\." user-mail)
4066            (string-match "@\\(.*\\)\\'" user-mail))
4067       (match-string 1 user-mail))
4068      ;; Default to this bogus thing.
4069      (t
4070       (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me")))))
4071
4072 (defun message-make-host-name ()
4073   "Return the name of the host."
4074   (let ((fqdn (message-make-fqdn)))
4075     (string-match "^[^.]+\\." fqdn)
4076     (substring fqdn 0 (1- (match-end 0)))))
4077
4078 (defun message-make-domain ()
4079   "Return the domain name."
4080   (or mail-host-address
4081       (message-make-fqdn)))
4082
4083 ;; Dummy to avoid byte-compile warning.
4084 (defvar mule-version)
4085 (defvar emacs-beta-version)
4086 (defvar xemacs-codename)
4087 (defvar gnus-inviolable-extended-version)
4088
4089 (defun message-make-user-agent ()
4090   "Return user-agent info if the value `message-user-agent' is non-nil. If the
4091 \"User-Agent\" field has already exist, it's value will be added in the return
4092 string."
4093   (when message-user-agent
4094     (save-excursion
4095       (goto-char (point-min))
4096       (let ((case-fold-search t)
4097             user-agent start p end)
4098         (if (re-search-forward "^User-Agent:[\t ]*" nil t)
4099             (progn
4100               (setq start (match-beginning 0)
4101                     p (match-end 0)
4102                     end (std11-field-end)
4103                     user-agent (buffer-substring-no-properties p end))
4104               (delete-region start (1+ end))
4105               (concat message-user-agent " " user-agent))
4106           message-user-agent)))))
4107
4108 (defun message-generate-headers (headers)
4109   "Prepare article HEADERS.
4110 Headers already prepared in the buffer are not modified."
4111   (save-restriction
4112     (message-narrow-to-headers)
4113     (let* ((Date (message-make-date))
4114            (Message-ID (message-make-message-id))
4115            (Organization (message-make-organization))
4116            (From (message-make-from))
4117            (Path (message-make-path))
4118            (Subject nil)
4119            (Newsgroups nil)
4120            (In-Reply-To (message-make-in-reply-to))
4121            (To nil)
4122            (Distribution (message-make-distribution))
4123            (Lines (message-make-lines))
4124            (User-Agent (message-make-user-agent))
4125            (Expires (message-make-expires))
4126            (case-fold-search t)
4127            header value elem)
4128       ;; First we remove any old generated headers.
4129       (let ((headers message-deletable-headers))
4130         (unless (buffer-modified-p)
4131           (setq headers (delq 'Message-ID (copy-sequence headers))))
4132         (while headers
4133           (goto-char (point-min))
4134           (and (re-search-forward
4135                 (concat "^" (symbol-name (car headers)) ": *") nil t)
4136                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
4137                (message-delete-line))
4138           (pop headers)))
4139       ;; Go through all the required headers and see if they are in the
4140       ;; articles already.  If they are not, or are empty, they are
4141       ;; inserted automatically - except for Subject, Newsgroups and
4142       ;; Distribution.
4143       (while headers
4144         (goto-char (point-min))
4145         (setq elem (pop headers))
4146         (if (consp elem)
4147             (if (eq (car elem) 'optional)
4148                 (setq header (cdr elem))
4149               (setq header (car elem)))
4150           (setq header elem))
4151         (when (or (not (re-search-forward
4152                         (concat "^"
4153                                 (regexp-quote
4154                                  (downcase
4155                                   (if (stringp header)
4156                                       header
4157                                     (symbol-name header))))
4158                                 ":")
4159                         nil t))
4160                   (progn
4161                     ;; The header was found.  We insert a space after the
4162                     ;; colon, if there is none.
4163                     (if (/= (char-after) ? ) (insert " ") (forward-char 1))
4164                     ;; Find out whether the header is empty...
4165                     (looking-at "[ \t]*\n[^ \t]")))
4166           ;; So we find out what value we should insert.
4167           (setq value
4168                 (cond
4169                  ((and (consp elem) (eq (car elem) 'optional))
4170                   ;; This is an optional header.  If the cdr of this
4171                   ;; is something that is nil, then we do not insert
4172                   ;; this header.
4173                   (setq header (cdr elem))
4174                   (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
4175                       (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
4176                  ((consp elem)
4177                   ;; The element is a cons.  Either the cdr is a
4178                   ;; string to be inserted verbatim, or it is a
4179                   ;; function, and we insert the value returned from
4180                   ;; this function.
4181                   (or (and (stringp (cdr elem)) (cdr elem))
4182                       (and (fboundp (cdr elem)) (funcall (cdr elem)))))
4183                  ((and (boundp header) (symbol-value header))
4184                   ;; The element is a symbol.  We insert the value
4185                   ;; of this symbol, if any.
4186                   (symbol-value header))
4187                  ((not (message-check-element header))
4188                   ;; We couldn't generate a value for this header,
4189                   ;; so we just ask the user.
4190                   (read-from-minibuffer
4191                    (format "Empty header for %s; enter value: " header)))))
4192           ;; Finally insert the header.
4193           (when (and value
4194                      (not (equal value "")))
4195             (save-excursion
4196               (if (bolp)
4197                   (progn
4198                     ;; This header didn't exist, so we insert it.
4199                     (goto-char (point-max))
4200                     (insert (if (stringp header) header (symbol-name header))
4201                             ": " value)
4202                     (unless (bolp)
4203                       (insert "\n"))
4204                     (forward-line -1))
4205                 ;; The value of this header was empty, so we clear
4206                 ;; totally and insert the new value.
4207                 (delete-region (point) (gnus-point-at-eol))
4208                 (insert value)
4209                 (when (bolp)
4210                   (delete-char -1)))
4211               ;; Add the deletable property to the headers that require it.
4212               (and (memq header message-deletable-headers)
4213                    (progn (beginning-of-line) (looking-at "[^:]+: "))
4214                    (add-text-properties
4215                     (point) (match-end 0)
4216                     '(message-deletable t face italic) (current-buffer)))))))
4217       ;; Insert new Sender if the From is strange.
4218       (let ((from (message-fetch-field "from"))
4219             (sender (message-fetch-field "sender"))
4220             (secure-sender (message-make-sender)))
4221         (when (and from
4222                    (not (message-check-element 'sender))
4223                    (not (string=
4224                          (downcase
4225                           (cadr (std11-extract-address-components from)))
4226                          (downcase secure-sender)))
4227                    (or (null sender)
4228                        (not
4229                         (string=
4230                          (downcase
4231                           (cadr (std11-extract-address-components sender)))
4232                          (downcase secure-sender)))))
4233           (goto-char (point-min))
4234           ;; Rename any old Sender headers to Original-Sender.
4235           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
4236             (beginning-of-line)
4237             (insert "Original-")
4238             (beginning-of-line))
4239           (when (or (message-news-p)
4240                     (string-match "@.+\\.." secure-sender))
4241             (insert "Sender: " secure-sender "\n")))))))
4242
4243 (defun message-insert-courtesy-copy ()
4244   "Insert a courtesy message in mail copies of combined messages."
4245   (let (newsgroups)
4246     (save-excursion
4247       (save-restriction
4248         (message-narrow-to-headers)
4249         (when (setq newsgroups (message-fetch-field "newsgroups"))
4250           (goto-char (point-max))
4251           (insert "Posted-To: " newsgroups "\n")))
4252       (forward-line 1)
4253       (when message-courtesy-message
4254         (cond
4255          ((string-match "%s" message-courtesy-message)
4256           (insert (format message-courtesy-message newsgroups)))
4257          (t
4258           (insert message-courtesy-message)))))))
4259
4260 ;;;
4261 ;;; Setting up a message buffer
4262 ;;;
4263
4264 (defun message-fill-address (header value)
4265   (save-restriction
4266     (narrow-to-region (point) (point))
4267     (insert (capitalize (symbol-name header))
4268             ": "
4269             (if (consp value) (car value) value)
4270             "\n")
4271     (narrow-to-region (point-min) (1- (point-max)))
4272     (let (quoted last)
4273       (goto-char (point-min))
4274       (while (not (eobp))
4275         (skip-chars-forward "^,\"" (point-max))
4276         (if (or (eq (char-after) ?,)
4277                 (eobp))
4278             (when (not quoted)
4279               (if (and (> (current-column) 78)
4280                        last)
4281                   (save-excursion
4282                     (goto-char last)
4283                     (looking-at "[ \t]*")
4284                     (replace-match "\n " t t)))
4285               (setq last (1+ (point))))
4286           (setq quoted (not quoted)))
4287         (unless (eobp)
4288           (forward-char 1))))
4289     (goto-char (point-max))
4290     (widen)
4291     (forward-line 1)))
4292
4293 (defun message-fill-references (header value)
4294   (insert (capitalize (symbol-name header))
4295           ": "
4296           (std11-fill-msg-id-list-string
4297           (if (consp value) (car value) value))
4298           "\n"))
4299
4300 (defun message-fill-header (header value)
4301   (let ((begin (point))
4302         (fill-column 78)
4303         (fill-prefix " "))
4304     (insert (capitalize (symbol-name header))
4305             ": "
4306             (if (consp value) (car value) value)
4307             "\n")
4308     (save-restriction
4309       (narrow-to-region begin (point))
4310       (fill-region-as-paragraph begin (point))
4311       ;; Tapdance around looong Message-IDs.
4312       (forward-line -1)
4313       (when (looking-at "[ \t]*$")
4314         (message-delete-line))
4315       (goto-char begin)
4316       (re-search-forward ":" nil t)
4317       (when (looking-at "\n[ \t]+")
4318         (replace-match " " t t))
4319       (goto-char (point-max)))))
4320
4321 (defun message-shorten-1 (list cut surplus)
4322   "Cut SURPLUS elements out of LIST, beginning with CUTth one."
4323   (setcdr (nthcdr (- cut 2) list)
4324           (nthcdr (+ (- cut 2) surplus 1) list)))
4325
4326 (defun message-shorten-references (header references)
4327   "Trim REFERENCES to be less than 31 Message-ID long, and fold them.
4328 If folding is disallowed, also check that the REFERENCES are less
4329 than 988 characters long, and if they are not, trim them until they are."
4330   (let ((maxcount 31)
4331         (count 0)
4332         (cut 6)
4333         refs)
4334     (with-temp-buffer
4335       (insert references)
4336       (goto-char (point-min))
4337       ;; Cons a list of valid references.
4338       (while (re-search-forward "<[^>]+>" nil t)
4339         (push (match-string 0) refs))
4340       (setq refs (nreverse refs)
4341             count (length refs)))
4342
4343     ;; If the list has more than MAXCOUNT elements, trim it by
4344     ;; removing the CUTth element and the required number of
4345     ;; elements that follow.
4346     (when (> count maxcount)
4347       (let ((surplus (- count maxcount)))
4348         (message-shorten-1 refs cut surplus)
4349         (decf count surplus)))
4350
4351     ;; If folding is disallowed, make sure the total length (including
4352     ;; the spaces between) will be less than MAXSIZE characters.
4353     ;;
4354     ;; Only disallow folding for News messages. At this point the headers
4355     ;; have not been generated, thus we use message-this-is-news directly.
4356     (when (and message-this-is-news message-cater-to-broken-inn)
4357       (let ((maxsize 988)
4358             (totalsize (+ (apply #'+ (mapcar #'length refs))
4359                           (1- count)))
4360             (surplus 0)
4361             (ptr (nthcdr (1- cut) refs)))
4362         ;; Decide how many elements to cut off...
4363         (while (> totalsize maxsize)
4364           (decf totalsize (1+ (length (car ptr))))
4365           (incf surplus)
4366           (setq ptr (cdr ptr)))
4367         ;; ...and do it.
4368         (when (> surplus 0)
4369           (message-shorten-1 refs cut surplus))))
4370
4371     ;; Finally, collect the references back into a string and insert
4372     ;; it into the buffer.
4373     (let ((refstring (mapconcat #'identity refs " ")))
4374       (if (and message-this-is-news message-cater-to-broken-inn)
4375           (insert (capitalize (symbol-name header)) ": "
4376                   refstring "\n")
4377         (message-fill-header header refstring)))))
4378
4379 (defun message-position-point ()
4380   "Move point to where the user probably wants to find it."
4381   (message-narrow-to-headers)
4382   (cond
4383    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
4384     (search-backward ":" )
4385     (widen)
4386     (forward-char 1)
4387     (if (eq (char-after) ? )
4388         (forward-char 1)
4389       (insert " ")))
4390    (t
4391     (goto-char (point-max))
4392     (widen)
4393     (forward-line 1)
4394     (unless (looking-at "$")
4395       (forward-line 2)))
4396    (sit-for 0)))
4397
4398 (defun message-buffer-name (type &optional to group)
4399   "Return a new (unique) buffer name based on TYPE and TO."
4400   (cond
4401    ;; Generate a new buffer name The Message Way.
4402    ((eq message-generate-new-buffers 'unique)
4403     (generate-new-buffer-name
4404      (concat "*" type
4405              (if to
4406                  (concat " to "
4407                          (or (car (std11-extract-address-components to))
4408                              to) "")
4409                "")
4410              (if (and group (not (string= group ""))) (concat " on " group) "")
4411              "*")))
4412    ;; Check whether `message-generate-new-buffers' is a function,
4413    ;; and if so, call it.
4414    ((message-functionp message-generate-new-buffers)
4415     (funcall message-generate-new-buffers type to group))
4416    ((eq message-generate-new-buffers 'unsent)
4417     (generate-new-buffer-name
4418      (concat "*unsent " type
4419              (if to
4420                  (concat " to "
4421                          (or (car (mail-extract-address-components to))
4422                              to) "")
4423                "")
4424              (if (and group (not (string= group ""))) (concat " on " group) "")
4425              "*")))
4426    ;; Use standard name.
4427    (t
4428     (format "*%s message*" type))))
4429
4430 (defmacro message-pop-to-buffer-1 (buffer)
4431   `(if pop-up-frames
4432        (let (special-display-buffer-names
4433              special-display-regexps
4434              same-window-buffer-names
4435              same-window-regexps)
4436          (pop-to-buffer ,buffer))
4437      (pop-to-buffer ,buffer)))
4438
4439 (defun message-pop-to-buffer (name)
4440   "Pop to buffer NAME, and warn if it already exists and is modified."
4441   (let ((buffer (get-buffer name))
4442         (pop-up-frames (and (or (static-if (featurep 'xemacs)
4443                                     (device-on-window-system-p)
4444                                   window-system)
4445                                 (>= emacs-major-version 20))
4446                             message-use-multi-frames)))
4447     (if (and buffer
4448              (buffer-name buffer))
4449         (progn
4450           (message-pop-to-buffer-1 buffer)
4451           (when (and (buffer-modified-p)
4452                      (not (y-or-n-p
4453                            "Message already being composed; erase? ")))
4454             (error "Message being composed")))
4455       (message-pop-to-buffer-1 name))
4456     (erase-buffer)
4457     (message-mode)
4458     (when pop-up-frames
4459       (set (make-local-variable 'message-original-frame) (selected-frame)))))
4460
4461 (defun message-do-send-housekeeping ()
4462   "Kill old message buffers."
4463   ;; We might have sent this buffer already.  Delete it from the
4464   ;; list of buffers.
4465   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
4466   (while (and message-max-buffers
4467               message-buffer-list
4468               (>= (length message-buffer-list) message-max-buffers))
4469     ;; Kill the oldest buffer -- unless it has been changed.
4470     (let ((buffer (pop message-buffer-list)))
4471       (when (and (buffer-name buffer)
4472                  (not (buffer-modified-p buffer)))
4473         (kill-buffer buffer))))
4474   ;; Rename the buffer.
4475   (if message-send-rename-function
4476       (funcall message-send-rename-function)
4477     ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
4478     (when (string-match
4479            "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
4480            (buffer-name))
4481       (let ((name (match-string 2 (buffer-name)))
4482             to group)
4483         (if (not (or (null name)
4484                      (string-equal name "mail")
4485                      (string-equal name "news")))
4486             (setq name (concat "*sent " name "*"))
4487           (message-narrow-to-headers)
4488           (setq to (message-fetch-field "to"))
4489           (setq group (message-fetch-field "newsgroups"))
4490           (widen)
4491           (setq name
4492                 (cond
4493                  (to (concat "*sent mail to "
4494                              (or (car (mail-extract-address-components to))
4495                                  to) "*"))
4496                  ((and group (not (string= group "")))
4497                   (concat "*sent news on " group "*"))
4498                  (t "*sent mail*"))))
4499         (unless (string-equal name (buffer-name))
4500           (rename-buffer name t)))))
4501   ;; Push the current buffer onto the list.
4502   (when message-max-buffers
4503     (setq message-buffer-list
4504           (nconc message-buffer-list (list (current-buffer))))))
4505
4506 (defun message-mail-user-agent ()
4507   (let ((mua (cond
4508               ((not message-mail-user-agent) nil)
4509               ((eq message-mail-user-agent t) mail-user-agent)
4510               (t message-mail-user-agent))))
4511     (if (memq mua '(message-user-agent gnus-user-agent))
4512         nil
4513       mua)))
4514
4515 (defun message-setup (headers &optional replybuffer actions switch-function)
4516   (let ((mua (message-mail-user-agent))
4517         subject to field yank-action)
4518     (if (not (and message-this-is-mail mua))
4519         (message-setup-1 headers replybuffer actions)
4520       (if replybuffer
4521           (setq yank-action (list 'insert-buffer replybuffer)))
4522       (setq headers (copy-sequence headers))
4523       (setq field (assq 'Subject headers))
4524       (when field
4525         (setq subject (cdr field))
4526         (setq headers (delq field headers)))
4527       (setq field (assq 'To headers))
4528       (when field
4529         (setq to (cdr field))
4530         (setq headers (delq field headers)))
4531       (let ((mail-user-agent mua))
4532         (compose-mail to subject
4533                       (mapcar (lambda (item)
4534                                 (cons
4535                                  (format "%s" (car item))
4536                                  (cdr item)))
4537                               headers)
4538                       nil switch-function yank-action actions)))))
4539
4540 ;;;(defvar mc-modes-alist)
4541 (defun message-setup-1 (headers &optional replybuffer actions)
4542 ;;;   (when (and (boundp 'mc-modes-alist)
4543 ;;;          (not (assq 'message-mode mc-modes-alist)))
4544 ;;;     (push '(message-mode (encrypt . mc-encrypt-message)
4545 ;;;                      (sign . mc-sign-message))
4546 ;;;       mc-modes-alist))
4547   (when actions
4548     (setq message-send-actions actions))
4549   (setq message-reply-buffer
4550         (or (message-get-parameter 'reply-buffer)
4551             replybuffer))
4552   (goto-char (point-min))
4553   ;; Insert all the headers.
4554   (mail-header-format
4555    (let ((h headers)
4556          (alist message-header-format-alist))
4557      (while h
4558        (unless (assq (caar h) message-header-format-alist)
4559          (push (list (caar h)) alist))
4560        (pop h))
4561      alist)
4562    headers)
4563   (delete-region (point) (progn (forward-line -1) (point)))
4564   (when message-default-headers
4565     (insert message-default-headers)
4566     (or (bolp) (insert ?\n)))
4567   (put-text-property
4568    (point)
4569    (progn
4570      (insert mail-header-separator "\n")
4571      (1- (point)))
4572    'read-only nil)
4573   (forward-line -1)
4574   (when (message-news-p)
4575     (when message-default-news-headers
4576       (insert message-default-news-headers)
4577       (or (bolp) (insert ?\n)))
4578     (when message-generate-headers-first
4579       (message-generate-headers
4580        (delq 'Lines
4581              (delq 'Subject
4582                    (copy-sequence message-required-news-headers))))))
4583   (when (message-mail-p)
4584     (when message-default-mail-headers
4585       (insert message-default-mail-headers)
4586       (or (bolp) (insert ?\n)))
4587     (when message-generate-headers-first
4588       (message-generate-headers
4589        (delq 'Lines
4590              (delq 'Subject
4591                    (copy-sequence message-required-mail-headers))))))
4592   (run-hooks 'message-signature-setup-hook)
4593   (message-insert-signature)
4594   (save-restriction
4595     (message-narrow-to-headers)
4596     (if message-alternative-emails
4597         (message-use-alternative-email-as-from))
4598     (run-hooks 'message-header-setup-hook))
4599   (set-buffer-modified-p nil)
4600   (setq buffer-undo-list nil)
4601   (run-hooks 'message-setup-hook)
4602   (message-position-point)
4603   (undo-boundary))
4604
4605 (defun message-set-auto-save-file-name ()
4606   "Associate the message buffer with a file in the drafts directory."
4607   (when message-auto-save-directory
4608     (unless (file-directory-p
4609              (directory-file-name message-auto-save-directory))
4610       (gnus-make-directory message-auto-save-directory))
4611     (if (gnus-alive-p)
4612         (setq message-draft-article
4613               (nndraft-request-associate-buffer "drafts"))
4614       (setq buffer-file-name (expand-file-name
4615                               (if (eq system-type 'windows-nt)
4616                                   "message"
4617                                 "*message*")
4618                               message-auto-save-directory))
4619       (setq buffer-auto-save-file-name (make-auto-save-file-name)))
4620     (clear-visited-file-modtime)
4621     (static-if (boundp 'MULE)
4622         (set-file-coding-system message-draft-coding-system)
4623       (setq buffer-file-coding-system message-draft-coding-system))))
4624
4625 (defun message-disassociate-draft ()
4626   "Disassociate the message buffer from the drafts directory."
4627   (when message-draft-article
4628     (nndraft-request-expire-articles
4629      (list message-draft-article) "drafts" nil t)))
4630
4631 (defun message-insert-headers ()
4632   "Generate the headers for the article."
4633   (interactive)
4634   (save-excursion
4635     (save-restriction
4636       (message-narrow-to-headers)
4637       (when (message-news-p)
4638         (message-generate-headers
4639          (delq 'Lines
4640                (delq 'Subject
4641                      (copy-sequence message-required-news-headers)))))
4642       (when (message-mail-p)
4643         (message-generate-headers
4644          (delq 'Lines
4645                (delq 'Subject
4646                      (copy-sequence message-required-mail-headers))))))))
4647
4648 \f
4649
4650 ;;;
4651 ;;; Commands for interfacing with message
4652 ;;;
4653
4654 ;;;###autoload
4655 (defun message-mail (&optional to subject
4656                                other-headers continue switch-function
4657                                yank-action send-actions)
4658   "Start editing a mail message to be sent.
4659 OTHER-HEADERS is an alist of header/value pairs."
4660   (interactive)
4661   (let ((message-this-is-mail t) replybuffer)
4662     (unless (message-mail-user-agent)
4663       (message-pop-to-buffer (message-buffer-name "mail" to)))
4664     ;; FIXME: message-mail should do something if YANK-ACTION is not
4665     ;; insert-buffer.
4666     (and (consp yank-action) (eq (car yank-action) 'insert-buffer)
4667          (setq replybuffer (nth 1 yank-action)))
4668     (message-setup
4669      (nconc
4670       `((To . ,(or to "")) (Subject . ,(or subject "")))
4671       (when other-headers other-headers))
4672      replybuffer send-actions)
4673     ;; FIXME: Should return nil if failure.
4674     t))
4675
4676 ;;;###autoload
4677 (defun message-news (&optional newsgroups subject)
4678   "Start editing a news article to be sent."
4679   (interactive)
4680   (let ((message-this-is-news t))
4681     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))
4682     (message-setup `((Newsgroups . ,(or newsgroups ""))
4683                      (Subject . ,(or subject ""))))))
4684
4685 (defun message-get-reply-headers (wide &optional to-address)
4686   (let (follow-to mct never-mct from to cc reply-to mrt mft)
4687     ;; Find all relevant headers we need.
4688     (setq from (message-fetch-field "from")
4689           to (message-fetch-field "to")
4690           cc (message-fetch-field "cc")
4691           mct (when message-use-mail-copies-to
4692                 (message-fetch-field "mail-copies-to"))
4693           reply-to (message-fetch-field "reply-to")
4694           mrt (when message-use-mail-reply-to
4695                 (message-fetch-field "mail-reply-to"))
4696           mft (when (and (not (or to-address mrt reply-to))
4697                          message-use-mail-followup-to)
4698                 (message-fetch-field "mail-followup-to")))
4699
4700     ;; Handle special values of Mail-Copies-To.
4701     (when mct
4702       (cond
4703        ((and (or (equal (downcase mct) "never")
4704                  (equal (downcase mct) "nobody")))
4705         (when (or (not (eq message-use-mail-copies-to 'ask))
4706                   (message-y-or-n-p
4707                    (concat "Obey Mail-Copies-To: never? ") t "\
4708 You should normally obey the Mail-Copies-To: header.
4709
4710         `Mail-Copies-To: " mct "'
4711 directs you not to send your response to the author."))
4712           (setq never-mct t))
4713         (setq mct nil))
4714        ((and (or (equal (downcase mct) "always")
4715                  (equal (downcase mct) "poster")))
4716         (if (or (not (eq message-use-mail-copies-to 'ask))
4717                 (message-y-or-n-p
4718                  (concat "Obey Mail-Copies-To: always? ") t "\
4719 You should normally obey the Mail-Copies-To: header.
4720
4721         `Mail-Copies-To: " mct "'
4722 sends a copy of your response to the author."))
4723             (setq mct (or mrt reply-to from))
4724           (setq mct nil)))
4725        ((and (eq message-use-mail-copies-to 'ask)
4726              (not (message-y-or-n-p
4727                    (concat "Obey Mail-Copies-To: " mct " ? ") t "\
4728 You should normally obey the Mail-Copies-To: header.
4729
4730         `Mail-Copies-To: " mct "'
4731 sends a copy of your response to " (if (string-match "," mct)
4732                                        "the specified addresses"
4733                                      "that address") ".")))
4734         (setq mct nil))))
4735
4736     ;; Handle Mail-Followup-To.
4737     (when (and mft
4738                (eq message-use-mail-followup-to 'ask)
4739                (not (message-y-or-n-p
4740                      (concat "Obey Mail-Followup-To: " mft "? ") t "\
4741 You should normally obey the Mail-Followup-To: header.
4742
4743         `Mail-Followup-To: " mft "'
4744 directs your response to " (if (string-match "," mft)
4745                                "the specified addresses"
4746                              "that address only") ".
4747
4748 A typical situation where Mail-Followup-To is used is when the author thinks
4749 that further discussion should take place only in "
4750                              (if (string-match "," mft)
4751                                  "the specified mailing lists"
4752                                "that mailing list") ".")))
4753       (setq mft nil))
4754
4755     (if (and (not mft)
4756              (or (not wide)
4757                  to-address))
4758         (progn
4759           (setq follow-to (list (cons 'To
4760                                       (or to-address mrt reply-to mft from))))
4761           (when (and wide mct
4762                      (not (member (cons 'To mct) follow-to)))
4763             (push (cons 'Cc mct) follow-to)))
4764       (let (ccalist)
4765         (save-excursion
4766           (message-set-work-buffer)
4767           (if (and mft
4768                    wide
4769                    (or (not (eq message-use-mail-followup-to 'ask))
4770                        (message-y-or-n-p "Obey Mail-Followup-To? " t "\
4771 You should normally obey the Mail-Followup-To: header.  In this
4772 article, it has the value of
4773
4774 " mft "
4775
4776 which directs your response to " (if (string-match "," mft)
4777                                      "the specified addresses"
4778                                    "that address only") ".
4779
4780 Most commonly, Mail-Followup-To is used by a mailing list poster to
4781 express that responses should be sent to just the list, and not the
4782 poster as well.
4783
4784 If a message is posted to several mailing lists, Mail-Followup-To may
4785 also be used to direct the following discussion to one list only,
4786 because discussions that are spread over several lists tend to be
4787 fragmented and very difficult to follow.
4788
4789 Also, some source/announcement lists are not intended for discussion;
4790 responses here are directed to other addresses.")))
4791               (insert mft)
4792             (unless never-mct
4793               (insert (or mrt reply-to from "")))
4794             (insert (if to (concat (if (bolp) "" ", ") to) ""))
4795             (insert (if mct (concat (if (bolp) "" ", ") mct) ""))
4796             (insert (if cc (concat (if (bolp) "" ", ") cc) "")))
4797           (goto-char (point-min))
4798           (while (re-search-forward "[ \t]+" nil t)
4799             (replace-match " " t t))
4800           ;; Remove addresses that match `rmail-dont-reply-to-names'.
4801           (let ((rmail-dont-reply-to-names message-dont-reply-to-names))
4802             (insert (prog1 (rmail-dont-reply-to (buffer-string))
4803                       (erase-buffer))))
4804           (goto-char (point-min))
4805           ;; Perhaps "Mail-Copies-To: never" removed the only address?
4806           (when (eobp)
4807             (insert (or mrt reply-to from "")))
4808           (setq ccalist
4809                 (mapcar
4810                  (lambda (addr)
4811                    (cons (mail-strip-quoted-names addr) addr))
4812                  (message-tokenize-header (buffer-string))))
4813           (let ((s ccalist))
4814             (while s
4815               (setq ccalist (delq (assoc (car (pop s)) s) ccalist)))))
4816         (setq follow-to (list (cons 'To (cdr (pop ccalist)))))
4817         (when ccalist
4818           (let ((ccs (cons 'Cc (mapconcat
4819                                 (lambda (addr) (cdr addr)) ccalist ", "))))
4820             (when (string-match "^ +" (cdr ccs))
4821               (setcdr ccs (substring (cdr ccs) (match-end 0))))
4822             (push ccs follow-to)))
4823         ;; Allow the user to be asked whether or not to reply to all
4824         ;; recipients in a wide reply.
4825         (if (and ccalist wide message-wide-reply-confirm-recipients
4826                  (not (y-or-n-p "Reply to all recipients?")))
4827             (setq follow-to (delq (assoc 'Cc follow-to) follow-to)))))
4828     follow-to))
4829
4830 ;;;###autoload
4831 (defun message-reply (&optional to-address wide)
4832   "Start editing a reply to the article in the current buffer."
4833   (interactive)
4834   (require 'gnus-sum)                   ; for gnus-list-identifiers
4835   (let ((cur (current-buffer))
4836         from subject date
4837         references message-id follow-to
4838         (inhibit-point-motion-hooks t)
4839         (message-this-is-mail t)
4840         gnus-warning in-reply-to)
4841     (save-restriction
4842       (message-narrow-to-head-1)
4843       ;; Allow customizations to have their say.
4844       (if (not wide)
4845           ;; This is a regular reply.
4846           (when (message-functionp message-reply-to-function)
4847             (save-excursion
4848               (setq follow-to (funcall message-reply-to-function))))
4849         ;; This is a followup.
4850         (when (message-functionp message-wide-reply-to-function)
4851           (save-excursion
4852             (setq follow-to
4853                   (funcall message-wide-reply-to-function)))))
4854       (setq message-id (message-fetch-field "message-id" t)
4855             references (message-fetch-field "references")
4856             date (message-fetch-field "date")
4857             from (message-fetch-field "from")
4858             subject (or (message-fetch-field "subject") "none"))
4859       (when gnus-list-identifiers
4860         (setq subject (message-strip-list-identifiers subject)))
4861       (setq subject (message-make-followup-subject subject))
4862
4863       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
4864                  (string-match "<[^>]+>" gnus-warning))
4865         (setq message-id (match-string 0 gnus-warning)))
4866
4867       (unless follow-to
4868         (setq follow-to (message-get-reply-headers wide to-address)))
4869
4870       ;; Get the references from "In-Reply-To" field if there were
4871       ;; no references and "In-Reply-To" field looks promising.
4872       (unless references
4873         (when (and (setq in-reply-to (message-fetch-field "in-reply-to"))
4874                    (string-match "<[^>]+>" in-reply-to))
4875           (setq references (match-string 0 in-reply-to)))))
4876
4877     (unless (message-mail-user-agent)
4878       (message-pop-to-buffer
4879        (message-buffer-name
4880         (if wide "wide reply" "reply") from
4881         (if wide to-address nil))))
4882
4883     (setq message-reply-headers
4884           (make-full-mail-header-from-decoded-header
4885            0 subject from date message-id references 0 0 ""))
4886
4887     (message-setup
4888      `((Subject . ,subject)
4889        ,@follow-to
4890        ,@(if (or references message-id)
4891              `((References . ,(concat (or references "") (and references " ")
4892                                       (or message-id ""))))
4893            nil))
4894      cur)))
4895
4896 ;;;###autoload
4897 (defun message-wide-reply (&optional to-address)
4898   "Make a \"wide\" reply to the message in the current buffer."
4899   (interactive)
4900   (message-reply to-address t))
4901
4902 ;;;###autoload
4903 (defun message-followup (&optional to-newsgroups)
4904   "Follow up to the message in the current buffer.
4905 If TO-NEWSGROUPS, use that as the new Newsgroups line."
4906   (interactive)
4907   (require 'gnus-sum)                   ; for gnus-list-identifiers
4908   (let ((cur (current-buffer))
4909         from subject date reply-to mrt mct mft
4910         references message-id follow-to
4911         (inhibit-point-motion-hooks t)
4912         (message-this-is-news t)
4913         followup-to distribution newsgroups gnus-warning posted-to)
4914     (save-restriction
4915       (message-narrow-to-head)
4916       (when (message-functionp message-followup-to-function)
4917         (setq follow-to
4918               (funcall message-followup-to-function)))
4919       (setq from (message-fetch-field "from")
4920             date (message-fetch-field "date")
4921             subject (or (message-fetch-field "subject") "none")
4922             references (message-fetch-field "references")
4923             message-id (message-fetch-field "message-id" t)
4924             followup-to (message-fetch-field "followup-to")
4925             newsgroups (message-fetch-field "newsgroups")
4926             posted-to (message-fetch-field "posted-to")
4927             reply-to (message-fetch-field "reply-to")
4928             mrt (when message-use-mail-reply-to
4929                   (message-fetch-field "mail-reply-to"))
4930             distribution (message-fetch-field "distribution")
4931             mct (when message-use-mail-copies-to
4932                   (message-fetch-field "mail-copies-to"))
4933             mft (when message-use-mail-followup-to
4934                   (message-fetch-field "mail-followup-to")))
4935       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
4936                  (string-match "<[^>]+>" gnus-warning))
4937         (setq message-id (match-string 0 gnus-warning)))
4938       ;; Remove bogus distribution.
4939       (when (and (stringp distribution)
4940                  (let ((case-fold-search t))
4941                    (string-match "world" distribution)))
4942         (setq distribution nil))
4943       (if gnus-list-identifiers
4944           (setq subject (message-strip-list-identifiers subject)))
4945       (setq subject (message-make-followup-subject subject))
4946       (widen))
4947
4948     ;; Handle special values of Mail-Copies-To.
4949     (when mct
4950       (cond
4951        ((and (or (equal (downcase mct) "never")
4952                  (equal (downcase mct) "nobody")))
4953         (setq mct nil))
4954        ((and (or (equal (downcase mct) "always")
4955                  (equal (downcase mct) "poster")))
4956         (if (or (not (eq message-use-mail-copies-to 'ask))
4957                 (message-y-or-n-p
4958                  (concat "Obey Mail-Copies-To: always? ") t "\
4959 You should normally obey the Mail-Copies-To: header.
4960
4961         `Mail-Copies-To: " mct "'
4962 sends a copy of your response to the author."))
4963             (setq mct (or mrt reply-to from))
4964           (setq mct nil)))
4965        ((and (eq message-use-mail-copies-to 'ask)
4966              (not
4967               (message-y-or-n-p
4968                (concat "Obey Mail-Copies-To: " mct " ? ") t "\
4969 You should normally obey the Mail-Copies-To: header.
4970
4971         `Mail-Copies-To: " mct "'
4972 sends a copy of your response to " (if (string-match "," mct)
4973                                        "the specified addresses"
4974                                      "that address") ".")))
4975         (setq mct nil))))
4976
4977     (unless follow-to
4978       (cond
4979        (to-newsgroups (setq follow-to (list (cons 'Newsgroups to-newsgroups))))
4980        ;; Handle Followup-To.
4981        (followup-to
4982         (cond
4983          ((equal (downcase followup-to) "poster")
4984           (if (or (and followup-to (eq message-use-followup-to 'use))
4985                   (message-y-or-n-p "Obey Followup-To: poster? " t "\
4986 You should normally obey the Followup-To: header.
4987
4988         `Followup-To: poster'
4989 sends your response via e-mail instead of news.
4990
4991 A typical situation where `Followup-To: poster' is used is when the author
4992 does not read the newsgroup, so he wouldn't see any replies sent to it."))
4993               (setq message-this-is-news nil
4994                     distribution nil
4995                     follow-to (list (cons 'To (or mrt reply-to from ""))))
4996             (setq follow-to (list (cons 'Newsgroups newsgroups)))))
4997          (t
4998           (if (or (equal followup-to newsgroups)
4999                   (not (and followup-to (eq message-use-followup-to 'ask)))
5000                   (message-y-or-n-p
5001                    (concat "Obey Followup-To: " followup-to "? ") t "\
5002 You should normally obey the Followup-To: header.
5003
5004         `Followup-To: " followup-to "'
5005 directs your response to " (if (string-match "," followup-to)
5006                                "the specified newsgroups"
5007                              "that newsgroup only") ".
5008
5009 If a message is posted to several newsgroups, Followup-To is often
5010 used to direct the following discussion to one newsgroup only,
5011 because discussions that are spread over several newsgroup tend to
5012 be fragmented and very difficult to follow.
5013
5014 Also, some source/announcement newsgroups are not intended for discussion;
5015 responses here are directed to other newsgroups."))
5016               (setq follow-to (list (cons 'Newsgroups followup-to)))
5017             (setq follow-to (list (cons 'Newsgroups newsgroups)))))))
5018        ;; Handle Mail-Followup-To, followup via e-mail.
5019        ((and mft
5020              (or (not (eq message-use-mail-followup-to 'ask))
5021                  (message-y-or-n-p
5022                   (concat "Obey Mail-Followup-To: " mft "? ") t "\
5023 You should normally obey the Mail-Followup-To: header.
5024
5025         `Mail-Followup-To: " mft "'
5026 directs your response to " (if (string-match "," mft)
5027                                "the specified addresses"
5028                              "that address only") " instead of news.
5029
5030 A typical situation where Mail-Followup-To is used is when the author thinks
5031 that further discussion should take place only in "
5032                              (if (string-match "," mft)
5033                                  "the specified mailing lists"
5034                                "that mailing list") ".")))
5035         (setq message-this-is-news nil
5036               distribution nil
5037               follow-to (list (cons 'To mft))))
5038        (posted-to (setq follow-to (list (cons 'Newsgroups posted-to))))
5039        (t
5040         (setq follow-to (list (cons 'Newsgroups newsgroups))))))
5041
5042     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
5043
5044     (message-setup
5045      `((Subject . ,subject)
5046        ,@follow-to
5047        ,@(and mct (list (cons 'Cc mct)))
5048        ,@(and distribution (list (cons 'Distribution distribution)))
5049        ,@(if (or references message-id)
5050              `((References . ,(concat (or references "") (and references " ")
5051                                       (or message-id ""))))))
5052      cur)
5053
5054     (setq message-reply-headers
5055           (make-full-mail-header-from-decoded-header
5056            0 subject from date message-id references 0 0 ""))))
5057
5058 ;;;###autoload
5059 (defun message-cancel-news (&optional arg)
5060   "Cancel an article you posted.
5061 If ARG, allow editing of the cancellation message."
5062   (interactive "P")
5063   (unless (message-news-p)
5064     (error "This is not a news article; canceling is impossible"))
5065   (let (from newsgroups message-id distribution buf sender)
5066     (save-excursion
5067       ;; Get header info from original article.
5068       (save-restriction
5069         (message-narrow-to-head-1)
5070         (setq from (message-fetch-field "from")
5071               sender (message-fetch-field "sender")
5072               newsgroups (message-fetch-field "newsgroups")
5073               message-id (message-fetch-field "message-id" t)
5074               distribution (message-fetch-field "distribution")))
5075       ;; Make sure that this article was written by the user.
5076       (unless (or (message-gnksa-enable-p 'cancel-messages)
5077                   (and sender
5078                        (string-equal
5079                         (downcase sender)
5080                         (downcase (message-make-sender))))
5081                   (string-equal
5082                    (downcase (cadr (std11-extract-address-components from)))
5083                    (downcase (cadr (std11-extract-address-components
5084                                     (message-make-from))))))
5085         (error "This article is not yours"))
5086       (when (yes-or-no-p "Do you really want to cancel this article? ")
5087         ;; Make control message.
5088         (if arg
5089             (message-news)
5090           (setq buf (set-buffer (get-buffer-create " *message cancel*"))))
5091         (erase-buffer)
5092         (insert "Newsgroups: " newsgroups "\n"
5093                 "From: " from "\n"
5094                 "Subject: cmsg cancel " message-id "\n"
5095                 "Control: cancel " message-id "\n"
5096                 (if distribution
5097                     (concat "Distribution: " distribution "\n")
5098                   "")
5099                 mail-header-separator "\n"
5100                 message-cancel-message)
5101         (run-hooks 'message-cancel-hook)
5102         (unless arg
5103           (message "Canceling your article...")
5104           (if (let ((message-syntax-checks
5105                      'dont-check-for-anything-just-trust-me)
5106                     (message-encoding-buffer (current-buffer))
5107                     (message-edit-buffer (current-buffer)))
5108                 (message-send-news))
5109               (message "Canceling your article...done"))
5110           (kill-buffer buf))))))
5111
5112 (defun message-supersede-setup-for-mime-edit ()
5113   (set (make-local-variable 'message-setup-hook) nil)
5114   (mime-edit-again))
5115
5116 ;;;###autoload
5117 (defun message-supersede ()
5118   "Start composing a message to supersede the current message.
5119 This is done simply by taking the old article and adding a Supersedes
5120 header line with the old Message-ID."
5121   (interactive)
5122   (let ((cur (current-buffer))
5123         (sender (message-fetch-field "sender"))
5124         (from (message-fetch-field "from")))
5125     ;; Check whether the user owns the article that is to be superseded.
5126     (unless (or (message-gnksa-enable-p 'cancel-messages)
5127                 (and sender
5128                      (string-equal
5129                       (downcase sender)
5130                       (downcase (message-make-sender))))
5131                 (string-equal
5132                  (downcase (cadr (std11-extract-address-components from)))
5133                  (downcase (cadr (std11-extract-address-components
5134                                   (message-make-from))))))
5135       (error "This article is not yours"))
5136     ;; Get a normal message buffer.
5137     (message-pop-to-buffer (message-buffer-name "supersede"))
5138     (insert-buffer-substring cur)
5139     (message-narrow-to-head-1)
5140     ;; Remove unwanted headers.
5141     (when message-ignored-supersedes-headers
5142       (message-remove-header message-ignored-supersedes-headers t))
5143     (goto-char (point-min))
5144     (if (not (re-search-forward "^Message-ID: " nil t))
5145         (error "No Message-ID in this article")
5146       (replace-match "Supersedes: " t t))
5147     (goto-char (point-max))
5148     (insert mail-header-separator)
5149     (widen)
5150     (when message-supersede-setup-function
5151       (funcall message-supersede-setup-function))
5152     (run-hooks 'message-supersede-setup-hook)
5153     (goto-char (point-min))
5154     (search-forward (concat "\n" mail-header-separator "\n") nil t)))
5155
5156 ;;;###autoload
5157 (defun message-recover ()
5158   "Reread contents of current buffer from its last auto-save file."
5159   (interactive)
5160   (let ((file-name (make-auto-save-file-name)))
5161     (cond ((save-window-excursion
5162              (if (not (eq system-type 'vax-vms))
5163                  (with-output-to-temp-buffer "*Directory*"
5164                    (with-current-buffer standard-output
5165                      (fundamental-mode)) ; for Emacs 20.4+
5166                    (buffer-disable-undo standard-output)
5167                    (let ((default-directory "/"))
5168                      (call-process
5169                       "ls" nil standard-output nil "-l" file-name))))
5170              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
5171            (let ((buffer-read-only nil))
5172              (erase-buffer)
5173              (insert-file-contents file-name nil)))
5174           (t (error "message-recover cancelled")))))
5175
5176 ;;; Washing Subject:
5177
5178 (defun message-wash-subject (subject)
5179   "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
5180 Previous forwarders, replyers, etc. may add it."
5181   (with-temp-buffer
5182     (insert-string subject)
5183     (goto-char (point-min))
5184     ;; strip Re/Fwd stuff off the beginning
5185     (while (re-search-forward
5186             "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t)
5187       (replace-match ""))
5188
5189     ;; and gnus-style forwards [foo@bar.com] subject
5190     (goto-char (point-min))
5191     (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t)
5192       (replace-match ""))
5193
5194     ;; and off the end
5195     (goto-char (point-max))
5196     (while (re-search-backward "([Ff][Ww][Dd])" nil t)
5197       (replace-match ""))
5198
5199     ;; and finally, any whitespace that was left-over
5200     (goto-char (point-min))
5201     (while (re-search-forward "^[ \t]+" nil t)
5202       (replace-match ""))
5203     (goto-char (point-max))
5204     (while (re-search-backward "[ \t]+$" nil t)
5205       (replace-match ""))
5206
5207     (buffer-string)))
5208
5209 ;;; Forwarding messages.
5210
5211 (defvar message-forward-decoded-p nil
5212   "Non-nil means the original message is decoded.")
5213
5214 (defun message-forward-subject-author-subject (subject)
5215   "Generate a SUBJECT for a forwarded message.
5216 The form is: [Source] Subject, where if the original message was mail,
5217 Source is the sender, and if the original message was news, Source is
5218 the list of newsgroups is was posted to."
5219   (concat "["
5220           (if (message-news-p)
5221               (or (message-fetch-field "newsgroups")
5222                   "(nowhere)")
5223             (let ((from (message-fetch-field "from")))
5224               (if from
5225                   (nnheader-decode-from from)
5226                 "(nobody)")))
5227           "] " subject))
5228
5229 (defun message-forward-subject-fwd (subject)
5230   "Generate a SUBJECT for a forwarded message.
5231 The form is: Fwd: Subject, where Subject is the original subject of
5232 the message."
5233   (concat "Fwd: " subject))
5234
5235 (defun message-make-forward-subject ()
5236   "Return a Subject header suitable for the message in the current buffer."
5237   (save-excursion
5238     (save-restriction
5239       (message-narrow-to-head-1)
5240       (let ((funcs message-make-forward-subject-function)
5241             (subject (message-fetch-field "Subject")))
5242         (setq subject
5243               (if subject
5244                   (if message-forward-decoded-p
5245                       subject
5246                     (nnheader-decode-subject subject))
5247                 ""))
5248         (if message-wash-forwarded-subjects
5249             (setq subject (message-wash-subject subject)))
5250         ;; Make sure funcs is a list.
5251         (and funcs
5252              (not (listp funcs))
5253              (setq funcs (list funcs)))
5254         ;; Apply funcs in order, passing subject generated by previous
5255         ;; func to the next one.
5256         (while funcs
5257           (when (message-functionp (car funcs))
5258             (setq subject (funcall (car funcs) subject)))
5259           (setq funcs (cdr funcs)))
5260         subject))))
5261
5262 ;;;###autoload
5263 (defun message-forward (&optional news)
5264   "Forward the current message via mail.
5265 Optional NEWS will use news to forward instead of mail."
5266   (interactive "P")
5267   (let ((cur (current-buffer))
5268         (subject (message-make-forward-subject))
5269         art-beg)
5270     (if news
5271         (message-news nil subject)
5272       (message-mail nil subject))
5273     ;; Put point where we want it before inserting the forwarded
5274     ;; message.
5275     (if message-forward-before-signature
5276         (message-goto-body)
5277       (goto-char (point-max)))
5278     ;; Make sure we're at the start of the line.
5279     (unless (bolp)
5280       (insert "\n"))
5281     ;; Narrow to the area we are to insert.
5282     (narrow-to-region (point) (point))
5283     ;; Insert the separators and the forwarded buffer.
5284     (insert message-forward-start-separator)
5285     (setq art-beg (point))
5286     (insert-buffer-substring cur)
5287     (goto-char (point-max))
5288     (insert message-forward-end-separator)
5289     (set-text-properties (point-min) (point-max) nil)
5290     ;; Remove all unwanted headers.
5291     (goto-char art-beg)
5292     (narrow-to-region (point) (if (search-forward "\n\n" nil t)
5293                                   (1- (point))
5294                                 (point)))
5295     (goto-char (point-min))
5296     (message-remove-header message-included-forward-headers t nil t)
5297     (widen)
5298     (message-position-point)))
5299
5300 ;;;###autoload
5301 (defun message-resend (address)
5302   "Resend the current article to ADDRESS."
5303   (interactive
5304    (list (message-read-from-minibuffer "Resend message to: ")))
5305   (message "Resending message to %s..." address)
5306   (save-excursion
5307     (let ((cur (current-buffer))
5308           beg)
5309       ;; We first set up a normal mail buffer.
5310       (unless (message-mail-user-agent)
5311         (set-buffer (get-buffer-create " *message resend*"))
5312         (erase-buffer)
5313         (let ((message-this-is-mail t)
5314               ;; avoid to turn-on-mime-edit
5315               message-setup-hook)
5316           (message-setup `((To . ,address)))))
5317       ;; Insert our usual headers.
5318       (message-generate-headers '(From Date To))
5319       (message-narrow-to-headers)
5320       ;; Rename them all to "Resent-*".
5321       (while (re-search-forward "^[A-Za-z]" nil t)
5322         (forward-char -1)
5323         (insert "Resent-"))
5324       (widen)
5325       (forward-line)
5326       (delete-region (point) (point-max))
5327       (setq beg (point))
5328       ;; Insert the message to be resent.
5329       (insert-buffer-substring cur)
5330       (goto-char (point-min))
5331       (search-forward "\n\n")
5332       (forward-char -1)
5333       (save-restriction
5334         (narrow-to-region beg (point))
5335         (message-remove-header message-ignored-resent-headers t)
5336         (goto-char (point-max)))
5337       (insert mail-header-separator)
5338       ;; Rename all old ("Also-")Resent headers.
5339       (while (re-search-backward "^\\(Also-\\)*Resent-" beg t)
5340         (beginning-of-line)
5341         (insert "Also-"))
5342       ;; Quote any "From " lines at the beginning.
5343       (goto-char beg)
5344       (when (looking-at "From ")
5345         (replace-match "X-From-Line: "))
5346       ;; Send it.
5347       (let ((message-encoding-buffer (current-buffer))
5348             (message-edit-buffer (current-buffer)))
5349         (let (message-required-mail-headers)
5350           (message-send-mail)))
5351       (kill-buffer (current-buffer)))
5352     (message "Resending message to %s...done" address)))
5353
5354 (defun message-bounce-setup-for-mime-edit ()
5355   (set (make-local-variable 'message-setup-hook) nil)
5356   (mime-edit-again))
5357
5358 ;;;###autoload
5359 (defun message-bounce ()
5360   "Re-mail the current message.
5361 This only makes sense if the current message is a bounce message that
5362 contains some mail you have written which has been bounced back to
5363 you."
5364   (interactive)
5365   (let ((cur (current-buffer))
5366         boundary)
5367     (message-pop-to-buffer (message-buffer-name "bounce"))
5368     (insert-buffer-substring cur)
5369     (undo-boundary)
5370     (message-narrow-to-head)
5371     (if (and (message-fetch-field "MIME-Version")
5372              (setq boundary (message-fetch-field "Content-Type")))
5373         (if (string-match "boundary=\"\\([^\"]+\\)\"" boundary)
5374             (setq boundary (concat (match-string 1 boundary) " *\n"
5375                                    "Content-Type: message/rfc822"))
5376           (setq boundary nil)))
5377     (widen)
5378     (goto-char (point-min))
5379     (search-forward "\n\n" nil t)
5380     (or (and boundary
5381              (re-search-forward boundary nil t)
5382              (forward-line 2))
5383         (and (re-search-forward message-unsent-separator nil t)
5384              (forward-line 1))
5385         (re-search-forward "^Return-Path:.*\n" nil t))
5386     ;; We remove everything before the bounced mail.
5387     (delete-region
5388      (point-min)
5389      (if (re-search-forward "^[^ \n\t]+:" nil t)
5390          (match-beginning 0)
5391        (point)))
5392     (save-restriction
5393       (message-narrow-to-head-1)
5394       (message-remove-header message-ignored-bounced-headers t)
5395       (goto-char (point-max))
5396       (insert mail-header-separator))
5397     (when message-bounce-setup-function
5398       (funcall message-bounce-setup-function))
5399     (run-hooks 'message-bounce-setup-hook)
5400     (message-position-point)))
5401
5402 ;;;
5403 ;;; Interactive entry points for new message buffers.
5404 ;;;
5405
5406 ;;;###autoload
5407 (defun message-mail-other-window (&optional to subject)
5408   "Like `message-mail' command, but display mail buffer in another window."
5409   (interactive)
5410   (unless (message-mail-user-agent)
5411     (let ((pop-up-windows t)
5412           (special-display-buffer-names nil)
5413           (special-display-regexps nil)
5414           (same-window-buffer-names nil)
5415           (same-window-regexps nil))
5416       (message-pop-to-buffer (message-buffer-name "mail" to))))
5417   (let ((message-this-is-mail t))
5418     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5419                    nil nil 'switch-to-buffer-other-window)))
5420
5421 ;;;###autoload
5422 (defun message-mail-other-frame (&optional to subject)
5423   "Like `message-mail' command, but display mail buffer in another frame."
5424   (interactive)
5425   (unless (message-mail-user-agent)
5426     (let ((pop-up-frames t)
5427           (special-display-buffer-names nil)
5428           (special-display-regexps nil)
5429           (same-window-buffer-names nil)
5430           (same-window-regexps nil))
5431       (message-pop-to-buffer (message-buffer-name "mail" to))))
5432   (let ((message-this-is-mail t))
5433     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5434                    nil nil 'switch-to-buffer-other-frame)))
5435
5436 ;;;###autoload
5437 (defun message-news-other-window (&optional newsgroups subject)
5438   "Start editing a news article to be sent."
5439   (interactive)
5440   (let ((pop-up-windows t)
5441         (special-display-buffer-names nil)
5442         (special-display-regexps nil)
5443         (same-window-buffer-names nil)
5444         (same-window-regexps nil))
5445     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
5446   (let ((message-this-is-news t))
5447     (message-setup `((Newsgroups . ,(or newsgroups ""))
5448                      (Subject . ,(or subject ""))))))
5449
5450 ;;;###autoload
5451 (defun message-news-other-frame (&optional newsgroups subject)
5452   "Start editing a news article to be sent."
5453   (interactive)
5454   (let ((pop-up-frames t)
5455         (special-display-buffer-names nil)
5456         (special-display-regexps nil)
5457         (same-window-buffer-names nil)
5458         (same-window-regexps nil))
5459     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
5460   (let ((message-this-is-news t))
5461     (message-setup `((Newsgroups . ,(or newsgroups ""))
5462                      (Subject . ,(or subject ""))))))
5463
5464 ;;; underline.el
5465
5466 ;; This code should be moved to underline.el (from which it is stolen).
5467
5468 ;;;###autoload
5469 (defun bold-region (start end)
5470   "Bold all nonblank characters in the region.
5471 Works by overstriking characters.
5472 Called from program, takes two arguments START and END
5473 which specify the range to operate on."
5474   (interactive "r")
5475   (save-excursion
5476     (let ((end1 (make-marker)))
5477       (move-marker end1 (max start end))
5478       (goto-char (min start end))
5479       (while (< (point) end1)
5480         (or (looking-at "[_\^@- ]")
5481             (insert (char-after) "\b"))
5482         (forward-char 1)))))
5483
5484 ;;;###autoload
5485 (defun unbold-region (start end)
5486   "Remove all boldness (overstruck characters) in the region.
5487 Called from program, takes two arguments START and END
5488 which specify the range to operate on."
5489   (interactive "r")
5490   (save-excursion
5491     (let ((end1 (make-marker)))
5492       (move-marker end1 (max start end))
5493       (goto-char (min start end))
5494       (while (re-search-forward "\b" end1 t)
5495         (if (eq (char-after) (char-after (- (point) 2)))
5496             (delete-char -2))))))
5497
5498 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
5499
5500 ;; Support for toolbar
5501 (eval-when-compile
5502   (defvar tool-bar-map)
5503   (defvar tool-bar-mode))
5504
5505 (defun message-tool-bar-map ()
5506   (or message-tool-bar-map
5507       (setq message-tool-bar-map
5508             (and (fboundp 'tool-bar-add-item-from-menu)
5509                  tool-bar-mode
5510                  (let ((tool-bar-map (copy-keymap tool-bar-map))
5511                        (load-path (mm-image-load-path)))
5512                    ;; Zap some items which aren't so relevant and take
5513                    ;; up space.
5514                    (dolist (key '(print-buffer kill-buffer save-buffer
5515                                                write-file dired open-file))
5516                      (define-key tool-bar-map (vector key) nil))
5517                    (tool-bar-add-item-from-menu
5518                     'message-send-and-exit "mail_send" message-mode-map)
5519                    (tool-bar-add-item-from-menu
5520                     'message-kill-buffer "close" message-mode-map)
5521                    (tool-bar-add-item-from-menu
5522                     'message-dont-send "cancel" message-mode-map)
5523                    (tool-bar-add-item-from-menu
5524                     'mml-attach-file "attach" message-mode-map)
5525                    (tool-bar-add-item-from-menu
5526                     'ispell-message "spell" message-mode-map)
5527                    tool-bar-map)))))
5528
5529 ;;; Group name completion.
5530
5531 (defvar message-newgroups-header-regexp
5532   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
5533   "Regexp that match headers that lists groups.")
5534
5535 (defvar message-completion-alist
5536   (list (cons message-newgroups-header-regexp 'message-expand-group)
5537         '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name))
5538   "Alist of (RE . FUN).  Use FUN for completion on header lines matching RE.")
5539
5540 (defun message-tab ()
5541   "Expand group names in Newsgroups and Followup-To headers.
5542 Do a `tab-to-tab-stop' if not in those headers."
5543   (interactive)
5544   (let ((alist message-completion-alist))
5545     (while (and alist
5546                 (let ((mail-abbrev-mode-regexp (caar alist)))
5547                   (not (mail-abbrev-in-expansion-header-p))))
5548       (setq alist (cdr alist)))
5549     (funcall (or (cdar alist) (default-value 'indent-line-function)))))
5550
5551 (defun message-expand-group ()
5552   "Expand the group name under point."
5553   (let* ((b (save-excursion
5554               (save-restriction
5555                 (narrow-to-region
5556                  (save-excursion
5557                    (beginning-of-line)
5558                    (skip-chars-forward "^:")
5559                    (1+ (point)))
5560                  (point))
5561                 (skip-chars-backward "^, \t\n") (point))))
5562          (completion-ignore-case t)
5563          (string (buffer-substring b (progn (skip-chars-forward "^,\t\n ")
5564                                             (point))))
5565          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
5566          (completions (all-completions string hashtb))
5567          comp)
5568     (delete-region b (point))
5569     (cond
5570      ((= (length completions) 1)
5571       (if (string= (car completions) string)
5572           (progn
5573             (insert string)
5574             (message "Only matching group"))
5575         (insert (car completions))))
5576      ((and (setq comp (try-completion string hashtb))
5577            (not (string= comp string)))
5578       (insert comp))
5579      (t
5580       (insert string)
5581       (if (not comp)
5582           (message "No matching groups")
5583         (save-selected-window
5584           (pop-to-buffer "*Completions*")
5585           (buffer-disable-undo)
5586           (let ((buffer-read-only nil))
5587             (erase-buffer)
5588             (let ((standard-output (current-buffer)))
5589               (display-completion-list (sort completions 'string<)))
5590             (goto-char (point-min))
5591             (delete-region (point) (progn (forward-line 3) (point))))))))))
5592
5593 (defun message-expand-name ()
5594   (if (fboundp 'bbdb-complete-name)
5595       (bbdb-complete-name)
5596     (expand-abbrev)))
5597
5598 ;;; Help stuff.
5599
5600 (defun message-talkative-question (ask question show &rest text)
5601   "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
5602 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
5603 The following arguments may contain lists of values."
5604   (if (and show
5605            (setq text (message-flatten-list text)))
5606       (save-window-excursion
5607         (save-excursion
5608           (with-output-to-temp-buffer " *MESSAGE information message*"
5609             (set-buffer " *MESSAGE information message*")
5610             (fundamental-mode)          ; for Emacs 20.4+
5611             (mapcar 'princ text)
5612             (goto-char (point-min))))
5613         (funcall ask question))
5614     (funcall ask question)))
5615
5616 (defun message-flatten-list (list)
5617   "Return a new, flat list that contains all elements of LIST.
5618
5619 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
5620 => (1 2 3 4 5 6 7)"
5621   (cond ((consp list)
5622          (apply 'append (mapcar 'message-flatten-list list)))
5623         (list
5624          (list list))))
5625
5626 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
5627   "Create and return a buffer with name based on NAME using `generate-new-buffer.'
5628 Then clone the local variables and values from the old buffer to the
5629 new one, cloning only the locals having a substring matching the
5630 regexp varstr."
5631   (let ((oldbuf (current-buffer)))
5632     (save-excursion
5633       (set-buffer (generate-new-buffer name))
5634       (message-clone-locals oldbuf varstr)
5635       (current-buffer))))
5636
5637 (defun message-clone-locals (buffer &optional varstr)
5638   "Clone the local variables from BUFFER to the current buffer."
5639   (let ((locals (save-excursion
5640                   (set-buffer buffer)
5641                   (buffer-local-variables)))
5642         (regexp
5643          "^\\(gnus\\|nn\\|message\\|user-\\(mail-address\\|full-name\\)\\)"))
5644     (mapcar
5645      (lambda (local)
5646        (when (and (consp local)
5647                   (car local)
5648                   (string-match regexp (symbol-name (car local)))
5649                   (or (null varstr)
5650                       (string-match varstr (symbol-name (car local)))))
5651          (ignore-errors
5652            (set (make-local-variable (car local))
5653                 (cdr local)))))
5654      locals)))
5655
5656
5657 ;;; @ for MIME Edit mode
5658 ;;;
5659
5660 (defun message-maybe-encode ()
5661   (when message-mime-mode
5662     ;; Inherit the buffer local variable `mime-edit-pgp-processing'.
5663     (let ((pgp-processing (with-current-buffer message-edit-buffer
5664                             mime-edit-pgp-processing)))
5665       (setq mime-edit-pgp-processing pgp-processing))
5666     (run-hooks 'mime-edit-translate-hook)
5667     (if (catch 'mime-edit-error
5668           (save-excursion
5669             (mime-edit-pgp-enclose-buffer)
5670             (mime-edit-translate-body)))
5671         (error "Translation error!"))
5672     (run-hooks 'mime-edit-exit-hook)))
5673
5674 (defun message-mime-insert-article (&optional full-headers)
5675   (interactive "P")
5676   (let ((message-cite-function 'mime-edit-inserted-message-filter)
5677         (message-reply-buffer
5678          (message-get-parameter-with-eval 'original-buffer))
5679         (start (point)))
5680     (message-yank-original nil)
5681     (save-excursion
5682       (narrow-to-region (goto-char start)
5683                         (if (search-forward "\n\n" nil t)
5684                             (1- (point))
5685                           (point-max)))
5686       (goto-char (point-min))
5687       (let ((message-included-forward-headers
5688              (if full-headers "" message-included-forward-headers)))
5689         (message-remove-header message-included-forward-headers t nil t))
5690       (widen))))
5691
5692 (set-alist 'mime-edit-message-inserter-alist
5693            'message-mode (function message-mime-insert-article))
5694
5695 ;;; Miscellaneous functions
5696
5697 ;; stolen (and renamed) from nnheader.el
5698 (static-if (fboundp 'subst-char-in-string)
5699     (defsubst message-replace-chars-in-string (string from to)
5700       (subst-char-in-string from to string))
5701   (defun message-replace-chars-in-string (string from to)
5702     "Replace characters in STRING from FROM to TO."
5703     (let ((string (substring string 0)) ;Copy string.
5704           (len (length string))
5705           (idx 0))
5706       ;; Replace all occurrences of FROM with TO.
5707       (while (< idx len)
5708         (when (= (aref string idx) from)
5709           (aset string idx to))
5710         (setq idx (1+ idx)))
5711       string)))
5712
5713 ;;;
5714 ;;; MIME functions
5715 ;;;
5716
5717 (defvar message-inhibit-body-encoding t)
5718
5719 (defun message-encode-message-body ()
5720   (unless message-inhibit-body-encoding
5721     (let ((mail-parse-charset (or mail-parse-charset
5722                                   message-default-charset))
5723           (case-fold-search t)
5724           lines content-type-p)
5725       (message-goto-body)
5726       (save-restriction
5727         (narrow-to-region (point) (point-max))
5728         (let ((new (mml-generate-mime)))
5729           (when new
5730             (delete-region (point-min) (point-max))
5731             (insert new)
5732             (goto-char (point-min))
5733             (if (eq (aref new 0) ?\n)
5734                 (delete-char 1)
5735               (search-forward "\n\n")
5736               (setq lines (buffer-substring (point-min) (1- (point))))
5737               (delete-region (point-min) (point))))))
5738       (save-restriction
5739         (message-narrow-to-headers-or-head)
5740         (message-remove-header "Mime-Version")
5741         (goto-char (point-max))
5742         (insert "MIME-Version: 1.0\n")
5743         (when lines
5744           (insert lines))
5745         (setq content-type-p
5746               (or mml-boundary
5747                   (re-search-backward "^Content-Type:" nil t))))
5748       (save-restriction
5749         (message-narrow-to-headers-or-head)
5750         (message-remove-first-header "Content-Type")
5751         (message-remove-first-header "Content-Transfer-Encoding"))
5752       ;; We always make sure that the message has a Content-Type header.
5753       ;; This is because some broken MTAs and MUAs get awfully confused
5754       ;; when confronted with a message with a MIME-Version header and
5755       ;; without a Content-Type header.  For instance, Solaris'
5756       ;; /usr/bin/mail.
5757       (unless content-type-p
5758         (goto-char (point-min))
5759         (re-search-forward "^MIME-Version:")
5760         (forward-line 1)
5761         (insert "Content-Type: text/plain; charset=us-ascii\n")))))
5762
5763 (defun message-read-from-minibuffer (prompt)
5764   "Read from the minibuffer while providing abbrev expansion."
5765   (if (fboundp 'mail-abbrevs-setup)
5766       (let ((mail-abbrev-mode-regexp "")
5767             (minibuffer-setup-hook 'mail-abbrevs-setup)
5768             (minibuffer-local-map message-minibuffer-local-map))
5769         (read-from-minibuffer prompt))
5770     (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)
5771           (minibuffer-local-map message-minibuffer-local-map))
5772       (read-string prompt))))
5773
5774 (defun message-use-alternative-email-as-from ()
5775   (require 'mail-utils)
5776   (let* ((fields '("To" "Cc"))
5777          (emails
5778           (split-string
5779            (mail-strip-quoted-names
5780             (mapconcat 'message-fetch-reply-field fields ","))
5781            "[ \f\t\n\r\v,]+"))
5782          email)
5783     (while emails
5784       (if (string-match message-alternative-emails (car emails))
5785           (setq email (car emails)
5786                 emails nil))
5787       (pop emails))
5788     (unless (or (not email) (equal email user-mail-address))
5789       (goto-char (point-max))
5790       (insert "From: " email "\n"))))
5791
5792 (defun message-options-get (symbol)
5793   (cdr (assq symbol message-options)))
5794
5795 (defun message-options-set (symbol value)
5796   (let ((the-cons (assq symbol message-options)))
5797     (if the-cons
5798         (if value
5799             (setcdr the-cons value)
5800           (setq message-options (delq the-cons message-options)))
5801       (and value
5802            (push (cons symbol value) message-options))))
5803   value)
5804
5805 (defun message-options-set-recipient ()
5806   (save-restriction
5807     (message-narrow-to-headers-or-head)
5808     (message-options-set 'message-sender
5809                          (mail-strip-quoted-names
5810                           (message-fetch-field "from")))
5811     (message-options-set 'message-recipients
5812                          (mail-strip-quoted-names
5813                           (let ((to (message-fetch-field "to"))
5814                                 (cc (message-fetch-field "cc"))
5815                                 (bcc (message-fetch-field "bcc")))
5816                             (concat
5817                              (or to "")
5818                              (if (and to cc) ", ")
5819                              (or cc "")
5820                              (if (and (or to cc) bcc) ", ")
5821                              (or bcc "")))))))
5822
5823 (when (featurep 'xemacs)
5824   (require 'messagexmas)
5825   (message-xmas-redefine))
5826
5827 (defun message-save-drafts ()
5828   "Postponing the message."
5829   (interactive)
5830   (message "Saving %s..." buffer-file-name)
5831   (let ((reply-headers message-reply-headers)
5832         (msg (buffer-substring-no-properties (point-min) (point-max)))
5833         (message-invisibles (message-find-invisible-regions)))
5834     (with-temp-file buffer-file-name
5835       (insert msg)
5836       ;; Inherit the invisible property of texts to make MIME-Edit
5837       ;; find the MIME part boundaries.
5838       (dolist (region message-invisibles)
5839         (put-text-property (car region) (cdr region) 'invisible t))
5840       (setq message-reply-headers reply-headers)
5841       (message-generate-headers '((optional . In-Reply-To)))
5842       (mime-edit-translate-buffer))
5843     (set-buffer-modified-p nil))
5844   (message "Saving %s...done" buffer-file-name))
5845
5846 (provide 'message)
5847
5848 (run-hooks 'message-load-hook)
5849
5850 ;; Local Variables:
5851 ;; coding: iso-8859-1
5852 ;; End:
5853
5854 ;;; message.el ends here