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