* message.el (message-mode): Don't enable multibyte on an indirect
[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 (y-or-n-p "Message exceeds message-send-mail-partially-limit, send in parts? ")))
2874               (mm-with-unibyte-current-buffer
2875                 (message "Sending via mail...")
2876                 (funcall (or message-send-mail-real-function
2877                              message-send-mail-function)))
2878             (message-send-mail-partially)))
2879       (kill-buffer tembuf))
2880     (set-buffer mailbuf)
2881     (push 'mail message-sent-message-via)))
2882
2883 (defun message-send-mail-with-sendmail ()
2884   "Send off the prepared buffer with sendmail."
2885   (let ((errbuf (if message-interactive
2886                     (message-generate-new-buffer-clone-locals
2887                      " sendmail errors")
2888                   0))
2889         resend-to-addresses delimline)
2890     (let ((case-fold-search t))
2891       (save-restriction
2892         (message-narrow-to-headers)
2893         (setq resend-to-addresses (message-fetch-field "resent-to")))
2894       ;; Change header-delimiter to be what sendmail expects.
2895       (goto-char (point-min))
2896       (re-search-forward
2897        (concat "^" (regexp-quote mail-header-separator) "\n"))
2898       (replace-match "\n")
2899       (backward-char 1)
2900       (setq delimline (point-marker))
2901       (run-hooks 'message-send-mail-hook)
2902       ;; Insert an extra newline if we need it to work around
2903       ;; Sun's bug that swallows newlines.
2904       (goto-char (1+ delimline))
2905       (when (eval message-mailer-swallows-blank-line)
2906         (newline))
2907       (when message-interactive
2908         (save-excursion
2909           (set-buffer errbuf)
2910           (erase-buffer))))
2911     (let ((default-directory "/")
2912           (coding-system-for-write message-send-coding-system))
2913       (apply 'call-process-region
2914              (append (list (point-min) (point-max)
2915                            (if (boundp 'sendmail-program)
2916                                sendmail-program
2917                              "/usr/lib/sendmail")
2918                            nil errbuf nil "-oi")
2919                      ;; Always specify who from,
2920                      ;; since some systems have broken sendmails.
2921                      ;; But some systems are more broken with -f, so
2922                      ;; we'll let users override this.
2923                      (if (null message-sendmail-f-is-evil)
2924                          (list "-f" (message-make-address)))
2925                      ;; These mean "report errors by mail"
2926                      ;; and "deliver in background".
2927                      (if (null message-interactive) '("-oem" "-odb"))
2928                      ;; Get the addresses from the message
2929                      ;; unless this is a resend.
2930                      ;; We must not do that for a resend
2931                      ;; because we would find the original addresses.
2932                      ;; For a resend, include the specific addresses.
2933                      (if resend-to-addresses
2934                          (list resend-to-addresses)
2935                        '("-t")))))
2936     (when message-interactive
2937       (save-excursion
2938         (set-buffer errbuf)
2939         (goto-char (point-min))
2940         (while (re-search-forward "\n\n* *" nil t)
2941           (replace-match "; "))
2942         (if (not (zerop (buffer-size)))
2943             (error "Sending...failed to %s"
2944                    (buffer-substring (point-min) (point-max)))))
2945       (when (bufferp errbuf)
2946         (kill-buffer errbuf)))))
2947
2948 (defun message-send-mail-with-qmail ()
2949   "Pass the prepared message buffer to qmail-inject.
2950 Refer to the documentation for the variable `message-send-mail-function'
2951 to find out how to use this."
2952   ;; replace the header delimiter with a blank line
2953   (goto-char (point-min))
2954   (re-search-forward
2955    (concat "^" (regexp-quote mail-header-separator) "\n"))
2956   (replace-match "\n")
2957   (run-hooks 'message-send-mail-hook)
2958   ;; send the message
2959   (case
2960       (let ((coding-system-for-write message-send-coding-system))
2961         (apply
2962          'call-process-region 1 (point-max) message-qmail-inject-program
2963          nil nil nil
2964          ;; qmail-inject's default behaviour is to look for addresses on the
2965          ;; command line; if there're none, it scans the headers.
2966          ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
2967          ;;
2968          ;; in general, ALL of qmail-inject's defaults are perfect for simply
2969          ;; reading a formatted (i. e., at least a To: or Resent-To header)
2970          ;; message from stdin.
2971          ;;
2972          ;; qmail also has the advantage of not having been raped by
2973          ;; various vendors, so we don't have to allow for that, either --
2974          ;; compare this with message-send-mail-with-sendmail and weep
2975          ;; for sendmail's lost innocence.
2976          ;;
2977          ;; all this is way cool coz it lets us keep the arguments entirely
2978          ;; free for -inject-arguments -- a big win for the user and for us
2979          ;; since we don't have to play that double-guessing game and the user
2980          ;; gets full control (no gestapo'ish -f's, for instance).  --sj
2981          message-qmail-inject-args))
2982     ;; qmail-inject doesn't say anything on it's stdout/stderr,
2983     ;; we have to look at the retval instead
2984     (0 nil)
2985     (100 (error "qmail-inject reported permanent failure"))
2986     (111 (error "qmail-inject reported transient failure"))
2987     ;; should never happen
2988     (t   (error "qmail-inject reported unknown failure"))))
2989
2990 (defun message-send-mail-with-mh ()
2991   "Send the prepared message buffer with mh."
2992   (let ((mh-previous-window-config nil)
2993         (name (mh-new-draft-name)))
2994     (setq buffer-file-name name)
2995     ;; MH wants to generate these headers itself.
2996     (when message-mh-deletable-headers
2997       (let ((headers message-mh-deletable-headers))
2998         (while headers
2999           (goto-char (point-min))
3000           (and (re-search-forward
3001                 (concat "^" (symbol-name (car headers)) ": *") nil t)
3002                (message-delete-line))
3003           (pop headers))))
3004     (run-hooks 'message-send-mail-hook)
3005     ;; Pass it on to mh.
3006     (mh-send-letter)))
3007
3008 (defun message-canlock-generate ()
3009   "Return a string that is non-trival to guess.
3010 Do not use this for anything important, it is cryptographically weak."
3011   (sha1 (concat (message-unique-id)
3012                 (format "%x%x%x" (random) (random t) (random))
3013                 (prin1-to-string (recent-keys))
3014                 (prin1-to-string (garbage-collect)))))
3015
3016 (defun message-canlock-password ()
3017   "The password used by message for cancel locks.
3018 This is the value of `canlock-password', if that option is non-nil.
3019 Otherwise, generate and save a value for `canlock-password' first."
3020   (unless canlock-password
3021     (customize-save-variable 'canlock-password (message-canlock-generate)))
3022   canlock-password)
3023
3024 (defun message-insert-canlock ()
3025   (when message-insert-canlock
3026     (message-canlock-password)
3027     (canlock-insert-header)))
3028
3029 (defun message-send-news (&optional arg)
3030   (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
3031          (case-fold-search nil)
3032          (method (if (message-functionp message-post-method)
3033                      (funcall message-post-method arg)
3034                    message-post-method))
3035          (newsgroups-field (save-restriction
3036                             (message-narrow-to-headers-or-head)
3037                             (message-fetch-field "Newsgroups")))
3038          (followup-field (save-restriction
3039                            (message-narrow-to-headers-or-head)
3040                            (message-fetch-field "Followup-To")))
3041          ;; BUG: We really need to get the charset for each name in the
3042          ;; Newsgroups and Followup-To lines to allow crossposting
3043          ;; between group namess with incompatible character sets.
3044          ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
3045          (group-field-charset
3046           (gnus-group-name-charset method newsgroups-field))
3047          (followup-field-charset 
3048           (gnus-group-name-charset method (or followup-field "")))
3049          (rfc2047-header-encoding-alist
3050           (append (when group-field-charset
3051                     (list (cons "Newsgroups" group-field-charset)))
3052                   (when followup-field-charset
3053                     (list (cons "Followup-To" followup-field-charset)))
3054                   rfc2047-header-encoding-alist))
3055          (messbuf (current-buffer))
3056          (message-syntax-checks
3057           (if (and arg
3058                    (listp message-syntax-checks))
3059               (cons '(existing-newsgroups . disabled)
3060                     message-syntax-checks)
3061             message-syntax-checks))
3062          (message-this-is-news t)
3063          (message-posting-charset
3064           (gnus-setup-posting-charset newsgroups-field))
3065          result)
3066     (if (not (message-check-news-body-syntax))
3067         nil
3068       (save-restriction
3069         (message-narrow-to-headers)
3070         ;; Insert some headers.
3071         (message-generate-headers message-required-news-headers)
3072         (message-insert-canlock)
3073         ;; Let the user do all of the above.
3074         (run-hooks 'message-header-hook))
3075       ;; Note: This check will be disabled by the ".*" default value for
3076       ;; gnus-group-name-charset-group-alist. -- Pa 2001-10-07.
3077       (when (and group-field-charset
3078                  (listp message-syntax-checks))
3079         (setq message-syntax-checks
3080               (cons '(valid-newsgroups . disabled)
3081                     message-syntax-checks)))
3082       (message-cleanup-headers)
3083       (if (not (let ((message-post-method method))
3084                  (message-check-news-syntax)))
3085           nil
3086         (unwind-protect
3087             (save-excursion
3088               (set-buffer tembuf)
3089               (buffer-disable-undo)
3090               (erase-buffer)
3091               ;; Avoid copying text props (except hard newlines).
3092               (insert
3093                (with-current-buffer messbuf
3094                  (mml-buffer-substring-no-properties-except-hard-newlines
3095                   (point-min) (point-max))))
3096               (message-encode-message-body)
3097               ;; Remove some headers.
3098               (save-restriction
3099                 (message-narrow-to-headers)
3100                 ;; We (re)generate the Lines header.
3101                 (when (memq 'Lines message-required-mail-headers)
3102                   (message-generate-headers '(Lines)))
3103                 ;; Remove some headers.
3104                 (message-remove-header message-ignored-news-headers t)
3105                 (let ((mail-parse-charset message-default-charset))
3106                   (mail-encode-encoded-word-buffer)))
3107               (goto-char (point-max))
3108               ;; require one newline at the end.
3109               (or (= (preceding-char) ?\n)
3110                   (insert ?\n))
3111               (let ((case-fold-search t))
3112                 ;; Remove the delimiter.
3113                 (goto-char (point-min))
3114                 (re-search-forward
3115                  (concat "^" (regexp-quote mail-header-separator) "\n"))
3116                 (replace-match "\n")
3117                 (backward-char 1))
3118               (run-hooks 'message-send-news-hook)
3119               (gnus-open-server method)
3120               (message "Sending news with %s..." (gnus-server-string method))
3121               (setq result (let ((mail-header-separator ""))
3122                              (gnus-request-post method))))
3123           (kill-buffer tembuf))
3124         (set-buffer messbuf)
3125         (if result
3126             (push 'news message-sent-message-via)
3127           (message "Couldn't send message via news: %s"
3128                    (nnheader-get-report (car method)))
3129           nil)))))
3130
3131 ;;;
3132 ;;; Header generation & syntax checking.
3133 ;;;
3134
3135 (defun message-check-element (type)
3136   "Return non-nil if this TYPE is not to be checked."
3137   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
3138       t
3139     (let ((able (assq type message-syntax-checks)))
3140       (and (consp able)
3141            (eq (cdr able) 'disabled)))))
3142
3143 (defun message-check-news-syntax ()
3144   "Check the syntax of the message."
3145   (save-excursion
3146     (save-restriction
3147       (widen)
3148       ;; We narrow to the headers and check them first.
3149       (save-excursion
3150         (save-restriction
3151           (message-narrow-to-headers)
3152           (message-check-news-header-syntax))))))
3153
3154 (defun message-check-news-header-syntax ()
3155   (and
3156    ;; Check Newsgroups header.
3157    (message-check 'newsgroups
3158      (let ((group (message-fetch-field "newsgroups")))
3159        (or
3160         (and group
3161              (not (string-match "\\`[ \t]*\\'" group)))
3162         (ignore
3163          (message
3164           "The newsgroups field is empty or missing.  Posting is denied.")))))
3165    ;; Check the Subject header.
3166    (message-check 'subject
3167      (let* ((case-fold-search t)
3168             (subject (message-fetch-field "subject")))
3169        (or
3170         (and subject
3171              (not (string-match "\\`[ \t]*\\'" subject)))
3172         (ignore
3173          (message
3174           "The subject field is empty or missing.  Posting is denied.")))))
3175    ;; Check for commands in Subject.
3176    (message-check 'subject-cmsg
3177      (if (string-match "^cmsg " (message-fetch-field "subject"))
3178          (y-or-n-p
3179           "The control code \"cmsg\" is in the subject.  Really post? ")
3180        t))
3181    ;; Check for multiple identical headers.
3182    (message-check 'multiple-headers
3183      (let (found)
3184        (while (and (not found)
3185                    (re-search-forward "^[^ \t:]+: " nil t))
3186          (save-excursion
3187            (or (re-search-forward
3188                 (concat "^"
3189                         (regexp-quote
3190                          (setq found
3191                                (buffer-substring
3192                                 (match-beginning 0) (- (match-end 0) 2))))
3193                         ":")
3194                 nil t)
3195                (setq found nil))))
3196        (if found
3197            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
3198          t)))
3199    ;; Check for Version and Sendsys.
3200    (message-check 'sendsys
3201      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
3202          (y-or-n-p
3203           (format "The article contains a %s command.  Really post? "
3204                   (buffer-substring (match-beginning 0)
3205                                     (1- (match-end 0)))))
3206        t))
3207    ;; See whether we can shorten Followup-To.
3208    (message-check 'shorten-followup-to
3209      (let ((newsgroups (message-fetch-field "newsgroups"))
3210            (followup-to (message-fetch-field "followup-to"))
3211            to)
3212        (when (and newsgroups
3213                   (string-match "," newsgroups)
3214                   (not followup-to)
3215                   (not
3216                    (zerop
3217                     (length
3218                      (setq to (completing-read
3219                                "Followups to (default: no Followup-To header) "
3220                                (mapcar (lambda (g) (list g))
3221                                        (cons "poster"
3222                                              (message-tokenize-header
3223                                               newsgroups)))))))))
3224          (goto-char (point-min))
3225          (insert "Followup-To: " to "\n"))
3226        t))
3227    ;; Check "Shoot me".
3228    (message-check 'shoot
3229      (if (re-search-forward
3230           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
3231          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
3232        t))
3233    ;; Check for Approved.
3234    (message-check 'approved
3235      (if (re-search-forward "^Approved:" nil t)
3236          (y-or-n-p "The article contains an Approved header.  Really post? ")
3237        t))
3238    ;; Check the Message-ID header.
3239    (message-check 'message-id
3240      (let* ((case-fold-search t)
3241             (message-id (message-fetch-field "message-id" t)))
3242        (or (not message-id)
3243            ;; Is there an @ in the ID?
3244            (and (string-match "@" message-id)
3245                 ;; Is there a dot in the ID?
3246                 (string-match "@[^.]*\\." message-id)
3247                 ;; Does the ID end with a dot?
3248                 (not (string-match "\\.>" message-id)))
3249            (y-or-n-p
3250             (format "The Message-ID looks strange: \"%s\".  Really post? "
3251                     message-id)))))
3252    ;; Check the Newsgroups & Followup-To headers.
3253    (message-check 'existing-newsgroups
3254      (let* ((case-fold-search t)
3255             (newsgroups (message-fetch-field "newsgroups"))
3256             (followup-to (message-fetch-field "followup-to"))
3257             (groups (message-tokenize-header
3258                      (if followup-to
3259                          (concat newsgroups "," followup-to)
3260                        newsgroups)))
3261             (post-method (if (message-functionp message-post-method)
3262                              (funcall message-post-method)
3263                            message-post-method))
3264             ;; KLUDGE to handle nnvirtual groups.  Doing this right
3265             ;; would probably involve a new nnoo function.
3266             ;; -- Per Abrahamsen <abraham@dina.kvl.dk>, 2001-10-17.
3267             (method (if (and (consp post-method) 
3268                              (eq (car post-method) 'nnvirtual)
3269                              gnus-message-group-art)
3270                         (let ((group (car (nnvirtual-find-group-art
3271                                            (car gnus-message-group-art)
3272                                            (cdr gnus-message-group-art)))))
3273                           (gnus-find-method-for-group group))
3274                       post-method))
3275             (known-groups
3276              (mapcar (lambda (n)
3277                        (gnus-group-name-decode 
3278                         (gnus-group-real-name n)
3279                         (gnus-group-name-charset method n)))
3280                      (gnus-groups-from-server method)))
3281             errors)
3282        (while groups
3283          (unless (or (equal (car groups) "poster")
3284                      (member (car groups) known-groups))
3285            (push (car groups) errors))
3286          (pop groups))
3287        (cond
3288         ;; Gnus is not running.
3289         ((or (not (and (boundp 'gnus-active-hashtb)
3290                        gnus-active-hashtb))
3291              (not (boundp 'gnus-read-active-file)))
3292          t)
3293         ;; We don't have all the group names.
3294         ((and (or (not gnus-read-active-file)
3295                   (eq gnus-read-active-file 'some))
3296               errors)
3297          (y-or-n-p
3298           (format
3299            "Really post to %s possibly unknown group%s: %s? "
3300            (if (= (length errors) 1) "this" "these")
3301            (if (= (length errors) 1) "" "s")
3302            (mapconcat 'identity errors ", "))))
3303         ;; There were no errors.
3304         ((not errors)
3305          t)
3306         ;; There are unknown groups.
3307         (t
3308          (y-or-n-p
3309           (format
3310            "Really post to %s unknown group%s: %s? "
3311            (if (= (length errors) 1) "this" "these")
3312            (if (= (length errors) 1) "" "s")
3313            (mapconcat 'identity errors ", ")))))))
3314    ;; Check the Newsgroups & Followup-To headers for syntax errors.
3315    (message-check 'valid-newsgroups
3316      (let ((case-fold-search t)
3317            (headers '("Newsgroups" "Followup-To"))
3318            header error)
3319        (while (and headers (not error))
3320          (when (setq header (mail-fetch-field (car headers)))
3321            (if (or
3322                 (not
3323                  (string-match
3324                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
3325                   header))
3326                 (memq
3327                  nil (mapcar
3328                       (lambda (g)
3329                         (not (string-match "\\.\\'\\|\\.\\." g)))
3330                       (message-tokenize-header header ","))))
3331                (setq error t)))
3332          (unless error
3333            (pop headers)))
3334        (if (not error)
3335            t
3336          (y-or-n-p
3337           (format "The %s header looks odd: \"%s\".  Really post? "
3338                   (car headers) header)))))
3339    (message-check 'repeated-newsgroups
3340      (let ((case-fold-search t)
3341            (headers '("Newsgroups" "Followup-To"))
3342            header error groups group)
3343        (while (and headers
3344                    (not error))
3345          (when (setq header (mail-fetch-field (pop headers)))
3346            (setq groups (message-tokenize-header header ","))
3347            (while (setq group (pop groups))
3348              (when (member group groups)
3349                (setq error group
3350                      groups nil)))))
3351        (if (not error)
3352            t
3353          (y-or-n-p
3354           (format "Group %s is repeated in headers.  Really post? " error)))))
3355    ;; Check the From header.
3356    (message-check 'from
3357      (let* ((case-fold-search t)
3358             (from (message-fetch-field "from"))
3359             ad)
3360        (cond
3361         ((not from)
3362          (message "There is no From line.  Posting is denied.")
3363          nil)
3364         ((or (not (string-match
3365                    "@[^\\.]*\\."
3366                    (setq ad (nth 1 (mail-extract-address-components
3367                                     from))))) ;larsi@ifi
3368              (string-match "\\.\\." ad) ;larsi@ifi..uio
3369              (string-match "@\\." ad)   ;larsi@.ifi.uio
3370              (string-match "\\.$" ad)   ;larsi@ifi.uio.
3371              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
3372              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
3373          (message
3374           "Denied posting -- the From looks strange: \"%s\"." from)
3375          nil)
3376         ((let ((addresses (rfc822-addresses from)))
3377            (while (and addresses
3378                        (not (eq (string-to-char (car addresses)) ?\()))
3379              (setq addresses (cdr addresses)))
3380            addresses)
3381          (message
3382           "Denied posting -- bad From address: \"%s\"." from)
3383          nil)
3384         (t t))))
3385    ;; Check the Reply-To header.
3386    (message-check 'reply-to
3387      (let* ((case-fold-search t)
3388             (reply-to (message-fetch-field "reply-to"))
3389             ad)
3390        (cond
3391         ((not reply-to)
3392          t)
3393         ((string-match "," reply-to)
3394          (y-or-n-p
3395           (format "Multiple Reply-To addresses: \"%s\". Really post? "
3396                   reply-to)))
3397         ((or (not (string-match
3398                    "@[^\\.]*\\."
3399                    (setq ad (nth 1 (mail-extract-address-components
3400                                     reply-to))))) ;larsi@ifi
3401              (string-match "\\.\\." ad) ;larsi@ifi..uio
3402              (string-match "@\\." ad)   ;larsi@.ifi.uio
3403              (string-match "\\.$" ad)   ;larsi@ifi.uio.
3404              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
3405              (string-match "(.*).*(.*)" reply-to)) ;(lars) (lars)
3406          (y-or-n-p
3407           (format
3408            "The Reply-To looks strange: \"%s\". Really post? "
3409            reply-to)))
3410         (t t))))))
3411
3412 (defun message-check-news-body-syntax ()
3413   (and
3414    ;; Check for long lines.
3415    (message-check 'long-lines
3416      (goto-char (point-min))
3417      (re-search-forward
3418       (concat "^" (regexp-quote mail-header-separator) "$"))
3419      (forward-line 1)
3420      (while (and
3421              (or (looking-at
3422                   "<#\\(/\\)?\\(multipart\\|part\\|external\\|mml\\)")
3423                  (let ((p (point)))
3424                    (end-of-line)
3425                    (< (- (point) p) 80)))
3426              (zerop (forward-line 1))))
3427      (or (bolp)
3428          (eobp)
3429          (y-or-n-p
3430           "You have lines longer than 79 characters.  Really post? ")))
3431    ;; Check whether the article is empty.
3432    (message-check 'empty
3433      (goto-char (point-min))
3434      (re-search-forward
3435       (concat "^" (regexp-quote mail-header-separator) "$"))
3436      (forward-line 1)
3437      (let ((b (point)))
3438        (goto-char (point-max))
3439        (re-search-backward message-signature-separator nil t)
3440        (beginning-of-line)
3441        (or (re-search-backward "[^ \n\t]" b t)
3442            (if (message-gnksa-enable-p 'empty-article)
3443                (y-or-n-p "Empty article.  Really post? ")
3444              (message "Denied posting -- Empty article.")
3445              nil))))
3446    ;; Check for control characters.
3447    (message-check 'control-chars
3448      (if (re-search-forward "[\000-\007\013\015-\032\034-\037\200-\237]" nil t)
3449          (y-or-n-p
3450           "The article contains control characters.  Really post? ")
3451        t))
3452    ;; Check excessive size.
3453    (message-check 'size
3454      (if (> (buffer-size) 60000)
3455          (y-or-n-p
3456           (format "The article is %d octets long.  Really post? "
3457                   (buffer-size)))
3458        t))
3459    ;; Check whether any new text has been added.
3460    (message-check 'new-text
3461      (or
3462       (not message-checksum)
3463       (not (eq (message-checksum) message-checksum))
3464       (if (message-gnksa-enable-p 'quoted-text-only)
3465           (y-or-n-p
3466            "It looks like no new text has been added.  Really post? ")
3467         (message "Denied posting -- no new text has been added.")
3468         nil)))
3469    ;; Check the length of the signature.
3470    (message-check 'signature
3471      (goto-char (point-max))
3472      (if (> (count-lines (point) (point-max)) 5)
3473          (y-or-n-p
3474           (format
3475            "Your .sig is %d lines; it should be max 4.  Really post? "
3476            (1- (count-lines (point) (point-max)))))
3477        t))
3478    ;; Ensure that text follows last quoted portion.
3479    (message-check 'quoting-style
3480      (goto-char (point-max))
3481      (let ((no-problem t))
3482        (when (search-backward-regexp "^>[^\n]*\n" nil t)
3483          (setq no-problem (search-forward-regexp "^[ \t]*[^>\n]" nil t)))
3484        (if no-problem
3485            t
3486          (if (message-gnksa-enable-p 'quoted-text-only)
3487              (y-or-n-p "Your text should follow quoted text.  Really post? ")
3488            ;; Ensure that
3489            (goto-char (point-min))
3490            (re-search-forward
3491             (concat "^" (regexp-quote mail-header-separator) "$"))
3492            (if (search-forward-regexp "^[ \t]*[^>\n]" nil t)
3493                (y-or-n-p "Your text should follow quoted text.  Really post? ")
3494              (message "Denied posting -- only quoted text.")
3495              nil)))))))
3496
3497 (defun message-checksum ()
3498   "Return a \"checksum\" for the current buffer."
3499   (let ((sum 0))
3500     (save-excursion
3501       (goto-char (point-min))
3502       (re-search-forward
3503        (concat "^" (regexp-quote mail-header-separator) "$"))
3504       (while (not (eobp))
3505         (when (not (looking-at "[ \t\n]"))
3506           (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1)
3507                             (char-after))))
3508         (forward-char 1)))
3509     sum))
3510
3511 (defun message-do-fcc ()
3512   "Process Fcc headers in the current buffer."
3513   (let ((case-fold-search t)
3514         (buf (current-buffer))
3515         list file
3516         (mml-externalize-attachments message-fcc-externalize-attachments))
3517     (save-excursion
3518       (save-restriction
3519         (message-narrow-to-headers)
3520         (setq file (message-fetch-field "fcc" t)))
3521       (when file
3522         (set-buffer (get-buffer-create " *message temp*"))
3523         (erase-buffer)
3524         (insert-buffer-substring buf)
3525         (message-encode-message-body)
3526         (save-restriction
3527           (message-narrow-to-headers)
3528           (while (setq file (message-fetch-field "fcc" t))
3529             (push file list)
3530             (message-remove-header "fcc" nil t))
3531           (let ((mail-parse-charset message-default-charset)
3532                 (rfc2047-header-encoding-alist
3533                  (cons '("Newsgroups" . default)
3534                        rfc2047-header-encoding-alist)))
3535             (mail-encode-encoded-word-buffer)))
3536         (goto-char (point-min))
3537         (when (re-search-forward
3538                (concat "^" (regexp-quote mail-header-separator) "$")
3539                nil t)
3540           (replace-match "" t t ))
3541         ;; Process FCC operations.
3542         (while list
3543           (setq file (pop list))
3544           (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
3545               ;; Pipe the article to the program in question.
3546               (call-process-region (point-min) (point-max) shell-file-name
3547                                    nil nil nil shell-command-switch
3548                                    (match-string 1 file))
3549             ;; Save the article.
3550             (setq file (expand-file-name file))
3551             (unless (file-exists-p (file-name-directory file))
3552               (make-directory (file-name-directory file) t))
3553             (if (and message-fcc-handler-function
3554                      (not (eq message-fcc-handler-function 'rmail-output)))
3555                 (funcall message-fcc-handler-function file)
3556               (if (and (file-readable-p file) (mail-file-babyl-p file))
3557                   (rmail-output file 1 nil t)
3558                 (let ((mail-use-rfc822 t))
3559                   (rmail-output file 1 t t))))))
3560         (kill-buffer (current-buffer))))))
3561
3562 (defun message-output (filename)
3563   "Append this article to Unix/babyl mail file FILENAME."
3564   (if (and (file-readable-p filename)
3565            (mail-file-babyl-p filename))
3566       (gnus-output-to-rmail filename t)
3567     (gnus-output-to-mail filename t)))
3568
3569 (defun message-cleanup-headers ()
3570   "Do various automatic cleanups of the headers."
3571   ;; Remove empty lines in the header.
3572   (save-restriction
3573     (message-narrow-to-headers)
3574     ;; Remove blank lines.
3575     (while (re-search-forward "^[ \t]*\n" nil t)
3576       (replace-match "" t t))
3577
3578     ;; Correct Newsgroups and Followup-To headers:  Change sequence of
3579     ;; spaces to comma and eliminate spaces around commas.  Eliminate
3580     ;; embedded line breaks.
3581     (goto-char (point-min))
3582     (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
3583       (save-restriction
3584         (narrow-to-region
3585          (point)
3586          (if (re-search-forward "^[^ \t]" nil t)
3587              (match-beginning 0)
3588            (forward-line 1)
3589            (point)))
3590         (goto-char (point-min))
3591         (while (re-search-forward "\n[ \t]+" nil t)
3592           (replace-match " " t t))     ;No line breaks (too confusing)
3593         (goto-char (point-min))
3594         (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
3595           (replace-match "," t t))
3596         (goto-char (point-min))
3597         ;; Remove trailing commas.
3598         (when (re-search-forward ",+$" nil t)
3599           (replace-match "" t t))))))
3600
3601 (defun message-make-date (&optional now)
3602   "Make a valid data header.
3603 If NOW, use that time instead."
3604   (let* ((now (or now (current-time)))
3605          (zone (nth 8 (decode-time now)))
3606          (sign "+"))
3607     (when (< zone 0)
3608       (setq sign "-")
3609       (setq zone (- zone)))
3610     (concat
3611      ;; The day name of the %a spec is locale-specific.  Pfff.
3612      (format "%s, " (capitalize (car (rassoc (nth 6 (decode-time now))
3613                                              parse-time-weekdays))))
3614      (format-time-string "%d" now)
3615      ;; The month name of the %b spec is locale-specific.  Pfff.
3616      (format " %s "
3617              (capitalize (car (rassoc (nth 4 (decode-time now))
3618                                       parse-time-months))))
3619      (format-time-string "%Y %H:%M:%S " now)
3620      ;; We do all of this because XEmacs doesn't have the %z spec.
3621      (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60)))))
3622
3623 (defun message-make-message-id ()
3624   "Make a unique Message-ID."
3625   (concat "<" (message-unique-id)
3626           (let ((psubject (save-excursion (message-fetch-field "subject")))
3627                 (psupersedes
3628                  (save-excursion (message-fetch-field "supersedes"))))
3629             (if (or
3630                  (and message-reply-headers
3631                       (mail-header-references message-reply-headers)
3632                       (mail-header-subject message-reply-headers)
3633                       psubject
3634                       (not (string=
3635                             (message-strip-subject-re
3636                              (mail-header-subject message-reply-headers))
3637                             (message-strip-subject-re psubject))))
3638                  (and psupersedes
3639                       (string-match "_-_@" psupersedes)))
3640                 "_-_" ""))
3641           "@" (message-make-fqdn) ">"))
3642
3643 (defvar message-unique-id-char nil)
3644
3645 ;; If you ever change this function, make sure the new version
3646 ;; cannot generate IDs that the old version could.
3647 ;; You might for example insert a "." somewhere (not next to another dot
3648 ;; or string boundary), or modify the "fsf" string.
3649 (defun message-unique-id ()
3650   ;; Don't use microseconds from (current-time), they may be unsupported.
3651   ;; Instead we use this randomly inited counter.
3652   (setq message-unique-id-char
3653         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
3654            ;; (current-time) returns 16-bit ints,
3655            ;; and 2^16*25 just fits into 4 digits i base 36.
3656            (* 25 25)))
3657   (let ((tm (current-time)))
3658     (concat
3659      (if (memq system-type '(ms-dos emx vax-vms))
3660          (let ((user (downcase (user-login-name))))
3661            (while (string-match "[^a-z0-9_]" user)
3662              (aset user (match-beginning 0) ?_))
3663            user)
3664        (message-number-base36 (user-uid) -1))
3665      (message-number-base36 (+ (car tm)
3666                                (lsh (% message-unique-id-char 25) 16)) 4)
3667      (message-number-base36 (+ (nth 1 tm)
3668                                (lsh (/ message-unique-id-char 25) 16)) 4)
3669      ;; Append the newsreader name, because while the generated
3670      ;; ID is unique to this newsreader, other newsreaders might
3671      ;; otherwise generate the same ID via another algorithm.
3672      ".fsf")))
3673
3674 (defun message-number-base36 (num len)
3675   (if (if (< len 0)
3676           (<= num 0)
3677         (= len 0))
3678       ""
3679     (concat (message-number-base36 (/ num 36) (1- len))
3680             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
3681                                   (% num 36))))))
3682
3683 (defun message-make-organization ()
3684   "Make an Organization header."
3685   (let* ((organization
3686           (when message-user-organization
3687             (if (message-functionp message-user-organization)
3688                 (funcall message-user-organization)
3689               message-user-organization))))
3690     (save-excursion
3691       (message-set-work-buffer)
3692       (cond ((stringp organization)
3693              (insert organization))
3694             ((and (eq t organization)
3695                   message-user-organization-file
3696                   (file-exists-p message-user-organization-file))
3697              (insert-file-contents message-user-organization-file)))
3698       (goto-char (point-min))
3699       (while (re-search-forward "[\t\n]+" nil t)
3700         (replace-match "" t t))
3701       (unless (zerop (buffer-size))
3702         (buffer-string)))))
3703
3704 (defun message-make-lines ()
3705   "Count the number of lines and return numeric string."
3706   (save-excursion
3707     (save-restriction
3708       (widen)
3709       (message-goto-body)
3710       (int-to-string (count-lines (point) (point-max))))))
3711
3712 (defun message-make-in-reply-to ()
3713   "Return the In-Reply-To header for this message."
3714   (when message-reply-headers
3715     (let ((from (mail-header-from message-reply-headers))
3716           (date (mail-header-date message-reply-headers))
3717           (msg-id (mail-header-message-id message-reply-headers)))
3718       (when from
3719         (let ((stop-pos
3720                (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
3721           (concat msg-id (if msg-id " (")
3722                   (if (and stop-pos
3723                            (not (zerop stop-pos)))
3724                       (substring from 0 stop-pos) from)
3725                   "'s message of \""
3726                   (if (or (not date) (string= date ""))
3727                       "(unknown date)" date)
3728                   "\"" (if msg-id ")")))))))
3729
3730 (defun message-make-distribution ()
3731   "Make a Distribution header."
3732   (let ((orig-distribution (message-fetch-reply-field "distribution")))
3733     (cond ((message-functionp message-distribution-function)
3734            (funcall message-distribution-function))
3735           (t orig-distribution))))
3736
3737 (defun message-make-expires ()
3738   "Return an Expires header based on `message-expires'."
3739   (let ((current (current-time))
3740         (future (* 1.0 message-expires 60 60 24)))
3741     ;; Add the future to current.
3742     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
3743     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
3744     (message-make-date current)))
3745
3746 (defun message-make-path ()
3747   "Return uucp path."
3748   (let ((login-name (user-login-name)))
3749     (cond ((null message-user-path)
3750            (concat (system-name) "!" login-name))
3751           ((stringp message-user-path)
3752            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
3753            (concat message-user-path "!" login-name))
3754           (t login-name))))
3755
3756 (defun message-make-from ()
3757   "Make a From header."
3758   (let* ((style message-from-style)
3759          (login (message-make-address))
3760          (fullname
3761           (or (and (boundp 'user-full-name)
3762                    user-full-name)
3763               (user-full-name))))
3764     (when (string= fullname "&")
3765       (setq fullname (user-login-name)))
3766     (save-excursion
3767       (message-set-work-buffer)
3768       (cond
3769        ((or (null style)
3770             (equal fullname ""))
3771         (insert login))
3772        ((or (eq style 'angles)
3773             (and (not (eq style 'parens))
3774                  ;; Use angles if no quoting is needed, or if parens would
3775                  ;; need quoting too.
3776                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
3777                      (let ((tmp (concat fullname nil)))
3778                        (while (string-match "([^()]*)" tmp)
3779                          (aset tmp (match-beginning 0) ?-)
3780                          (aset tmp (1- (match-end 0)) ?-))
3781                        (string-match "[\\()]" tmp)))))
3782         (insert fullname)
3783         (insert " <" login ">"))
3784        (t                               ; 'parens or default
3785         (insert login " (")
3786         (let ((fullname-start (point)))
3787           (insert fullname)
3788           (goto-char fullname-start)
3789           ;; RFC 822 says \ and nonmatching parentheses
3790           ;; must be escaped in comments.
3791           ;; Escape every instance of ()\ ...
3792           (while (re-search-forward "[()\\]" nil 1)
3793             (replace-match "\\\\\\&" t))
3794           ;; ... then undo escaping of matching parentheses,
3795           ;; including matching nested parentheses.
3796           (goto-char fullname-start)
3797           (while (re-search-forward
3798                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
3799                   nil 1)
3800             (replace-match "\\1(\\3)" t)
3801             (goto-char fullname-start)))
3802         (insert ")")))
3803       (buffer-string))))
3804
3805 (defun message-make-sender ()
3806   "Return the \"real\" user address.
3807 This function tries to ignore all user modifications, and
3808 give as trustworthy answer as possible."
3809   (concat (user-login-name) "@" (system-name)))
3810
3811 (defun message-make-address ()
3812   "Make the address of the user."
3813   (or (message-user-mail-address)
3814       (concat (user-login-name) "@" (message-make-domain))))
3815
3816 (defun message-user-mail-address ()
3817   "Return the pertinent part of `user-mail-address'."
3818   (when user-mail-address
3819     (if (string-match " " user-mail-address)
3820         (nth 1 (mail-extract-address-components user-mail-address))
3821       user-mail-address)))
3822
3823 (defun message-make-fqdn ()
3824   "Return user's fully qualified domain name."
3825   (let ((system-name (system-name))
3826         (user-mail (message-user-mail-address)))
3827     (cond
3828      ((and (string-match "[^.]\\.[^.]" system-name)
3829            (not (string-match message-bogus-system-names system-name)))
3830       ;; `system-name' returned the right result.
3831       system-name)
3832      ;; Try `mail-host-address'.
3833      ((and (boundp 'mail-host-address)
3834            (stringp mail-host-address)
3835            (string-match "\\." mail-host-address))
3836       mail-host-address)
3837      ;; We try `user-mail-address' as a backup.
3838      ((and user-mail
3839            (string-match "\\." user-mail)
3840            (string-match "@\\(.*\\)\\'" user-mail))
3841       (match-string 1 user-mail))
3842      ;; Default to this bogus thing.
3843      (t
3844       (concat system-name ".i-did-not-set--mail-host-address--so-tickle-me")))))
3845
3846 (defun message-make-host-name ()
3847   "Return the name of the host."
3848   (let ((fqdn (message-make-fqdn)))
3849     (string-match "^[^.]+\\." fqdn)
3850     (substring fqdn 0 (1- (match-end 0)))))
3851
3852 (defun message-make-domain ()
3853   "Return the domain name."
3854   (or mail-host-address
3855       (message-make-fqdn)))
3856
3857 (defun message-make-mft ()
3858   "Return the Mail-Followup-To header."
3859   (let* ((msg-recipients (message-options-get 'message-recipients))
3860          (recipients
3861           (mapcar 'mail-strip-quoted-names
3862                   (message-tokenize-header msg-recipients)))
3863          (file-regexps
3864           (if message-subscribed-address-file
3865               (let (begin end item re)
3866                 (save-excursion
3867                   (with-temp-buffer
3868                     (insert-file-contents message-subscribed-address-file)
3869                     (while (not (eobp))
3870                       (setq begin (point))
3871                       (forward-line 1)
3872                       (setq end (point))
3873                       (if (bolp) (setq end (1- end)))
3874                       (setq item (regexp-quote (buffer-substring begin end)))
3875                       (if re (setq re (concat re "\\|" item))
3876                         (setq re (concat "\\`\\(" item))))
3877                     (and re (list (concat re "\\)\\'"))))))))
3878          (mft-regexps (apply 'append message-subscribed-regexps
3879                              (mapcar 'regexp-quote
3880                                      message-subscribed-addresses)
3881                              file-regexps
3882                              (mapcar 'funcall
3883                                      message-subscribed-address-functions))))
3884     (save-match-data
3885       (when (eval (apply 'append '(or)
3886                          (mapcar
3887                           (function (lambda (regexp)
3888                                       (mapcar
3889                                        (function (lambda (recipient)
3890                                                    `(string-match ,regexp
3891                                                                   ,recipient)))
3892                                        recipients)))
3893                           mft-regexps)))
3894         msg-recipients))))
3895
3896 (defun message-generate-headers (headers)
3897   "Prepare article HEADERS.
3898 Headers already prepared in the buffer are not modified."
3899   (save-restriction
3900     (message-narrow-to-headers)
3901     (let* ((Date (message-make-date))
3902            (Message-ID (message-make-message-id))
3903            (Organization (message-make-organization))
3904            (From (message-make-from))
3905            (Path (message-make-path))
3906            (Subject nil)
3907            (Newsgroups nil)
3908            (In-Reply-To (message-make-in-reply-to))
3909            (To nil)
3910            (Distribution (message-make-distribution))
3911            (Lines (message-make-lines))
3912            (User-Agent message-newsreader)
3913            (Expires (message-make-expires))
3914            (case-fold-search t)
3915            header value elem)
3916       ;; First we remove any old generated headers.
3917       (let ((headers message-deletable-headers))
3918         (unless (buffer-modified-p)
3919           (setq headers (delq 'Message-ID (copy-sequence headers))))
3920         (while headers
3921           (goto-char (point-min))
3922           (and (re-search-forward
3923                 (concat "^" (symbol-name (car headers)) ": *") nil t)
3924                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
3925                (message-delete-line))
3926           (pop headers)))
3927       ;; Go through all the required headers and see if they are in the
3928       ;; articles already.  If they are not, or are empty, they are
3929       ;; inserted automatically - except for Subject, Newsgroups and
3930       ;; Distribution.
3931       (while headers
3932         (goto-char (point-min))
3933         (setq elem (pop headers))
3934         (if (consp elem)
3935             (if (eq (car elem) 'optional)
3936                 (setq header (cdr elem))
3937               (setq header (car elem)))
3938           (setq header elem))
3939         (when (or (not (re-search-forward
3940                         (concat "^"
3941                                 (regexp-quote
3942                                  (downcase
3943                                   (if (stringp header)
3944                                       header
3945                                     (symbol-name header))))
3946                                 ":")
3947                         nil t))
3948                   (progn
3949                     ;; The header was found.  We insert a space after the
3950                     ;; colon, if there is none.
3951                     (if (/= (char-after) ? ) (insert " ") (forward-char 1))
3952                     ;; Find out whether the header is empty...
3953                     (looking-at "[ \t]*\n[^ \t]")))
3954           ;; So we find out what value we should insert.
3955           (setq value
3956                 (cond
3957                  ((and (consp elem) (eq (car elem) 'optional))
3958                   ;; This is an optional header.  If the cdr of this
3959                   ;; is something that is nil, then we do not insert
3960                   ;; this header.
3961                   (setq header (cdr elem))
3962                   (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
3963                       (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
3964                  ((consp elem)
3965                   ;; The element is a cons.  Either the cdr is a
3966                   ;; string to be inserted verbatim, or it is a
3967                   ;; function, and we insert the value returned from
3968                   ;; this function.
3969                   (or (and (stringp (cdr elem)) (cdr elem))
3970                       (and (fboundp (cdr elem)) (funcall (cdr elem)))))
3971                  ((and (boundp header) (symbol-value header))
3972                   ;; The element is a symbol.  We insert the value
3973                   ;; of this symbol, if any.
3974                   (symbol-value header))
3975                  ((not (message-check-element header))
3976                   ;; We couldn't generate a value for this header,
3977                   ;; so we just ask the user.
3978                   (read-from-minibuffer
3979                    (format "Empty header for %s; enter value: " header)))))
3980           ;; Finally insert the header.
3981           (when (and value
3982                      (not (equal value "")))
3983             (save-excursion
3984               (if (bolp)
3985                   (progn
3986                     ;; This header didn't exist, so we insert it.
3987                     (goto-char (point-max))
3988                     (insert (if (stringp header) header (symbol-name header))
3989                             ": " value)
3990                     ;; We check whether the value was ended by a
3991                     ;; newline.  If now, we insert one.
3992                     (unless (bolp)
3993                       (insert "\n"))
3994                     (forward-line -1))
3995                 ;; The value of this header was empty, so we clear
3996                 ;; totally and insert the new value.
3997                 (delete-region (point) (gnus-point-at-eol))
3998                 (insert value))
3999               ;; Add the deletable property to the headers that require it.
4000               (and (memq header message-deletable-headers)
4001                    (progn (beginning-of-line) (looking-at "[^:]+: "))
4002                    (add-text-properties
4003                     (point) (match-end 0)
4004                     '(message-deletable t face italic) (current-buffer)))))))
4005       ;; Insert new Sender if the From is strange.
4006       (let ((from (message-fetch-field "from"))
4007             (sender (message-fetch-field "sender"))
4008             (secure-sender (message-make-sender)))
4009         (when (and from
4010                    (not (message-check-element 'sender))
4011                    (not (string=
4012                          (downcase
4013                           (cadr (mail-extract-address-components from)))
4014                          (downcase secure-sender)))
4015                    (or (null sender)
4016                        (not
4017                         (string=
4018                          (downcase
4019                           (cadr (mail-extract-address-components sender)))
4020                          (downcase secure-sender)))))
4021           (goto-char (point-min))
4022           ;; Rename any old Sender headers to Original-Sender.
4023           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
4024             (beginning-of-line)
4025             (insert "Original-")
4026             (beginning-of-line))
4027           (when (or (message-news-p)
4028                     (string-match "@.+\\.." secure-sender))
4029             (insert "Sender: " secure-sender "\n")))))))
4030
4031 (defun message-insert-courtesy-copy ()
4032   "Insert a courtesy message in mail copies of combined messages."
4033   (let (newsgroups)
4034     (save-excursion
4035       (save-restriction
4036         (message-narrow-to-headers)
4037         (when (setq newsgroups (message-fetch-field "newsgroups"))
4038           (goto-char (point-max))
4039           (insert "Posted-To: " newsgroups "\n")))
4040       (forward-line 1)
4041       (when message-courtesy-message
4042         (cond
4043          ((string-match "%s" message-courtesy-message)
4044           (insert (format message-courtesy-message newsgroups)))
4045          (t
4046           (insert message-courtesy-message)))))))
4047
4048 ;;;
4049 ;;; Setting up a message buffer
4050 ;;;
4051
4052 (defun message-fill-address (header value)
4053   (save-restriction
4054     (narrow-to-region (point) (point))
4055     (insert (capitalize (symbol-name header))
4056             ": "
4057             (if (consp value) (car value) value)
4058             "\n")
4059     (narrow-to-region (point-min) (1- (point-max)))
4060     (let (quoted last)
4061       (goto-char (point-min))
4062       (while (not (eobp))
4063         (skip-chars-forward "^,\"" (point-max))
4064         (if (or (eq (char-after) ?,)
4065                 (eobp))
4066             (when (not quoted)
4067               (if (and (> (current-column) 78)
4068                        last)
4069                   (progn
4070                     (save-excursion
4071                       (goto-char last)
4072                       (insert "\n\t"))
4073                     (setq last (1+ (point))))
4074                 (setq last (1+ (point)))))
4075           (setq quoted (not quoted)))
4076         (unless (eobp)
4077           (forward-char 1))))
4078     (goto-char (point-max))
4079     (widen)
4080     (forward-line 1)))
4081
4082 (defun message-fill-header (header value)
4083   (let ((begin (point))
4084         (fill-column 78)
4085         (fill-prefix "\t"))
4086     (insert (capitalize (symbol-name header))
4087             ": "
4088             (if (consp value) (car value) value)
4089             "\n")
4090     (save-restriction
4091       (narrow-to-region begin (point))
4092       (fill-region-as-paragraph begin (point))
4093       ;; Tapdance around looong Message-IDs.
4094       (forward-line -1)
4095       (when (looking-at "[ \t]*$")
4096         (message-delete-line))
4097       (goto-char begin)
4098       (re-search-forward ":" nil t)
4099       (when (looking-at "\n[ \t]+")
4100         (replace-match " " t t))
4101       (goto-char (point-max)))))
4102
4103 (defun message-shorten-1 (list cut surplus)
4104   "Cut SURPLUS elements out of LIST, beginning with CUTth one."
4105   (setcdr (nthcdr (- cut 2) list)
4106           (nthcdr (+ (- cut 2) surplus 1) list)))
4107
4108 (defun message-shorten-references (header references)
4109   "Trim REFERENCES to be 21 Message-ID long or less, and fold them.
4110 If folding is disallowed, also check that the REFERENCES are less
4111 than 988 characters long, and if they are not, trim them until they are."
4112   (let ((maxcount 21)
4113         (count 0)
4114         (cut 2)
4115         refs)
4116     (with-temp-buffer
4117       (insert references)
4118       (goto-char (point-min))
4119       ;; Cons a list of valid references.
4120       (while (re-search-forward "<[^>]+>" nil t)
4121         (push (match-string 0) refs))
4122       (setq refs (nreverse refs)
4123             count (length refs)))
4124
4125     ;; If the list has more than MAXCOUNT elements, trim it by
4126     ;; removing the CUTth element and the required number of
4127     ;; elements that follow.
4128     (when (> count maxcount)
4129       (let ((surplus (- count maxcount)))
4130         (message-shorten-1 refs cut surplus)
4131         (decf count surplus)))
4132
4133     ;; If folding is disallowed, make sure the total length (including
4134     ;; the spaces between) will be less than MAXSIZE characters.
4135     ;;
4136     ;; Only disallow folding for News messages. At this point the headers
4137     ;; have not been generated, thus we use message-this-is-news directly.
4138     (when (and message-this-is-news message-cater-to-broken-inn)
4139       (let ((maxsize 988)
4140             (totalsize (+ (apply #'+ (mapcar #'length refs))
4141                           (1- count)))
4142             (surplus 0)
4143             (ptr (nthcdr (1- cut) refs)))
4144         ;; Decide how many elements to cut off...
4145         (while (> totalsize maxsize)
4146           (decf totalsize (1+ (length (car ptr))))
4147           (incf surplus)
4148           (setq ptr (cdr ptr)))
4149         ;; ...and do it.
4150         (when (> surplus 0)
4151           (message-shorten-1 refs cut surplus))))
4152
4153     ;; Finally, collect the references back into a string and insert
4154     ;; it into the buffer.
4155     (let ((refstring (mapconcat #'identity refs " ")))
4156       (if (and message-this-is-news message-cater-to-broken-inn)
4157           (insert (capitalize (symbol-name header)) ": "
4158                   refstring "\n")
4159         (message-fill-header header refstring)))))
4160
4161 (defun message-position-point ()
4162   "Move point to where the user probably wants to find it."
4163   (message-narrow-to-headers)
4164   (cond
4165    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
4166     (search-backward ":" )
4167     (widen)
4168     (forward-char 1)
4169     (if (eq (char-after) ? )
4170         (forward-char 1)
4171       (insert " ")))
4172    (t
4173     (goto-char (point-max))
4174     (widen)
4175     (forward-line 1)
4176     (unless (looking-at "$")
4177       (forward-line 2)))
4178    (sit-for 0)))
4179
4180 (defun message-beginning-of-line (&optional n)
4181   "Move point to beginning of header value or to beginning of line."
4182   (interactive "p")
4183   (if (message-point-in-header-p)
4184       (let* ((here (point))
4185              (bol (progn (beginning-of-line n) (point)))
4186              (eol (gnus-point-at-eol))
4187              (eoh (re-search-forward ": *" eol t)))
4188         (if (or (not eoh) (equal here eoh))
4189             (goto-char bol)
4190           (goto-char eoh)))
4191     (beginning-of-line n)))
4192
4193 (defun message-buffer-name (type &optional to group)
4194   "Return a new (unique) buffer name based on TYPE and TO."
4195   (cond
4196    ;; Generate a new buffer name The Message Way.
4197    ((eq message-generate-new-buffers 'unique)
4198     (generate-new-buffer-name
4199      (concat "*" type
4200              (if to
4201                  (concat " to "
4202                          (or (car (mail-extract-address-components to))
4203                              to) "")
4204                "")
4205              (if (and group (not (string= group ""))) (concat " on " group) "")
4206              "*")))
4207    ;; Check whether `message-generate-new-buffers' is a function,
4208    ;; and if so, call it.
4209    ((message-functionp message-generate-new-buffers)
4210     (funcall message-generate-new-buffers type to group))
4211    ((eq message-generate-new-buffers 'unsent)
4212     (generate-new-buffer-name
4213      (concat "*unsent " type
4214              (if to
4215                  (concat " to "
4216                          (or (car (mail-extract-address-components to))
4217                              to) "")
4218                "")
4219              (if (and group (not (string= group ""))) (concat " on " group) "")
4220              "*")))
4221    ;; Use standard name.
4222    (t
4223     (format "*%s message*" type))))
4224
4225 (defun message-pop-to-buffer (name)
4226   "Pop to buffer NAME, and warn if it already exists and is modified."
4227   (let ((buffer (get-buffer name)))
4228     (if (and buffer
4229              (buffer-name buffer))
4230         (progn
4231           (set-buffer (pop-to-buffer buffer))
4232           (when (and (buffer-modified-p)
4233                      (not (y-or-n-p
4234                            "Message already being composed; erase? ")))
4235             (error "Message being composed")))
4236       (set-buffer (pop-to-buffer name)))
4237     (erase-buffer)
4238     (message-mode)))
4239
4240 (defun message-do-send-housekeeping ()
4241   "Kill old message buffers."
4242   ;; We might have sent this buffer already.  Delete it from the
4243   ;; list of buffers.
4244   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
4245   (while (and message-max-buffers
4246               message-buffer-list
4247               (>= (length message-buffer-list) message-max-buffers))
4248     ;; Kill the oldest buffer -- unless it has been changed.
4249     (let ((buffer (pop message-buffer-list)))
4250       (when (and (buffer-name buffer)
4251                  (not (buffer-modified-p buffer)))
4252         (kill-buffer buffer))))
4253   ;; Rename the buffer.
4254   (if message-send-rename-function
4255       (funcall message-send-rename-function)
4256     ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
4257     (when (string-match
4258            "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
4259            (buffer-name))
4260       (let ((name (match-string 2 (buffer-name)))
4261             to group)
4262         (if (not (or (null name)
4263                      (string-equal name "mail")
4264                      (string-equal name "posting")))
4265             (setq name (concat "*sent " name "*"))
4266           (message-narrow-to-headers)
4267           (setq to (message-fetch-field "to"))
4268           (setq group (message-fetch-field "newsgroups"))
4269           (widen)
4270           (setq name
4271                 (cond
4272                  (to (concat "*sent mail to "
4273                              (or (car (mail-extract-address-components to))
4274                                  to) "*"))
4275                  ((and group (not (string= group "")))
4276                   (concat "*sent posting on " group "*"))
4277                  (t "*sent mail*"))))
4278         (unless (string-equal name (buffer-name))
4279           (rename-buffer name t)))))
4280   ;; Push the current buffer onto the list.
4281   (when message-max-buffers
4282     (setq message-buffer-list
4283           (nconc message-buffer-list (list (current-buffer))))))
4284
4285 (defun message-mail-user-agent ()
4286   (let ((mua (cond
4287               ((not message-mail-user-agent) nil)
4288               ((eq message-mail-user-agent t) mail-user-agent)
4289               (t message-mail-user-agent))))
4290     (if (memq mua '(message-user-agent gnus-user-agent))
4291         nil
4292       mua)))
4293
4294 (defun message-setup (headers &optional replybuffer actions switch-function)
4295   (let ((mua (message-mail-user-agent))
4296         subject to field yank-action)
4297     (if (not (and message-this-is-mail mua))
4298         (message-setup-1 headers replybuffer actions)
4299       (if replybuffer
4300           (setq yank-action (list 'insert-buffer replybuffer)))
4301       (setq headers (copy-sequence headers))
4302       (setq field (assq 'Subject headers))
4303       (when field
4304         (setq subject (cdr field))
4305         (setq headers (delq field headers)))
4306       (setq field (assq 'To headers))
4307       (when field
4308         (setq to (cdr field))
4309         (setq headers (delq field headers)))
4310       (let ((mail-user-agent mua))
4311         (compose-mail to subject
4312                       (mapcar (lambda (item)
4313                                 (cons
4314                                  (format "%s" (car item))
4315                                  (cdr item)))
4316                               headers)
4317                       nil switch-function yank-action actions)))))
4318
4319 (defun message-setup-1 (headers &optional replybuffer actions)
4320   (dolist (action actions)
4321     (condition-case nil
4322         (add-to-list 'message-send-actions
4323                      `(apply ',(car action) ',(cdr action)))))
4324   (setq message-reply-buffer replybuffer)
4325   (goto-char (point-min))
4326   ;; Insert all the headers.
4327   (mail-header-format
4328    (let ((h headers)
4329          (alist message-header-format-alist))
4330      (while h
4331        (unless (assq (caar h) message-header-format-alist)
4332          (push (list (caar h)) alist))
4333        (pop h))
4334      alist)
4335    headers)
4336   (delete-region (point) (progn (forward-line -1) (point)))
4337   (when message-default-headers
4338     (insert message-default-headers)
4339     (or (bolp) (insert ?\n)))
4340   (put-text-property
4341    (point)
4342    (progn
4343      (insert mail-header-separator "\n")
4344      (1- (point)))
4345    'read-only nil)
4346   (forward-line -1)
4347   (when (message-news-p)
4348     (when message-default-news-headers
4349       (insert message-default-news-headers)
4350       (or (bolp) (insert ?\n)))
4351     (when message-generate-headers-first
4352       (message-generate-headers
4353        (delq 'Lines
4354              (delq 'Subject
4355                    (copy-sequence message-required-news-headers))))))
4356   (when (message-mail-p)
4357     (when message-default-mail-headers
4358       (insert message-default-mail-headers)
4359       (or (bolp) (insert ?\n)))
4360     (when message-generate-headers-first
4361       (message-generate-headers
4362        (delq 'Lines
4363              (delq 'Subject
4364                    (copy-sequence message-required-mail-headers))))))
4365   (run-hooks 'message-signature-setup-hook)
4366   (message-insert-signature)
4367   (save-restriction
4368     (message-narrow-to-headers)
4369     (if message-alternative-emails
4370         (message-use-alternative-email-as-from))
4371     (run-hooks 'message-header-setup-hook))
4372   (set-buffer-modified-p nil)
4373   (setq buffer-undo-list nil)
4374   (run-hooks 'message-setup-hook)
4375   (message-position-point)
4376   (undo-boundary))
4377
4378 (defun message-set-auto-save-file-name ()
4379   "Associate the message buffer with a file in the drafts directory."
4380   (when message-auto-save-directory
4381     (unless (file-directory-p
4382              (directory-file-name message-auto-save-directory))
4383       (gnus-make-directory message-auto-save-directory))
4384     (if (gnus-alive-p)
4385         (setq message-draft-article
4386               (nndraft-request-associate-buffer "drafts"))
4387       (setq buffer-file-name (expand-file-name
4388                               (if (memq system-type 
4389                                         '(ms-dos ms-windows windows-nt 
4390                                                  cygwin32 win32 w32 
4391                                                  mswindows))
4392                                   "message"
4393                                 "*message*")
4394                               message-auto-save-directory))
4395       (setq buffer-auto-save-file-name (make-auto-save-file-name)))
4396     (clear-visited-file-modtime)
4397     (setq buffer-file-coding-system message-draft-coding-system)))
4398
4399 (defun message-disassociate-draft ()
4400   "Disassociate the message buffer from the drafts directory."
4401   (when message-draft-article
4402     (nndraft-request-expire-articles
4403      (list message-draft-article) "drafts" nil t)))
4404
4405 (defun message-insert-headers ()
4406   "Generate the headers for the article."
4407   (interactive)
4408   (save-excursion
4409     (save-restriction
4410       (message-narrow-to-headers)
4411       (when (message-news-p)
4412         (message-generate-headers
4413          (delq 'Lines
4414                (delq 'Subject
4415                      (copy-sequence message-required-news-headers)))))
4416       (when (message-mail-p)
4417         (message-generate-headers
4418          (delq 'Lines
4419                (delq 'Subject
4420                      (copy-sequence message-required-mail-headers))))))))
4421
4422 \f
4423
4424 ;;;
4425 ;;; Commands for interfacing with message
4426 ;;;
4427
4428 ;;;###autoload
4429 (defun message-mail (&optional to subject
4430                                other-headers continue switch-function
4431                                yank-action send-actions)
4432   "Start editing a mail message to be sent.
4433 OTHER-HEADERS is an alist of header/value pairs."
4434   (interactive)
4435   (let ((message-this-is-mail t) replybuffer)
4436     (unless (message-mail-user-agent)
4437       (message-pop-to-buffer (message-buffer-name "mail" to)))
4438     ;; FIXME: message-mail should do something if YANK-ACTION is not
4439     ;; insert-buffer.
4440     (and (consp yank-action) (eq (car yank-action) 'insert-buffer)
4441          (setq replybuffer (nth 1 yank-action)))
4442     (message-setup
4443      (nconc
4444       `((To . ,(or to "")) (Subject . ,(or subject "")))
4445       (when other-headers other-headers))
4446      replybuffer send-actions)
4447     ;; FIXME: Should return nil if failure.
4448     t))
4449
4450 ;;;###autoload
4451 (defun message-news (&optional newsgroups subject)
4452   "Start editing a news article to be sent."
4453   (interactive)
4454   (let ((message-this-is-news t))
4455     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups))
4456     (message-setup `((Newsgroups . ,(or newsgroups ""))
4457                      (Subject . ,(or subject ""))))))
4458
4459 (defun message-get-reply-headers (wide &optional to-address)
4460   (let (follow-to mct never-mct to cc author mft recipients)
4461     ;; Find all relevant headers we need.
4462     (setq to (message-fetch-field "to")
4463           cc (message-fetch-field "cc")
4464           mct (message-fetch-field "mail-copies-to")
4465           author (or (message-fetch-field "mail-reply-to")
4466                      (message-fetch-field "reply-to")
4467                      (message-fetch-field "from")
4468                      "")
4469           mft (and message-use-mail-followup-to
4470                    (message-fetch-field "mail-followup-to")))
4471
4472     ;; Handle special values of Mail-Copies-To.
4473     (when mct
4474       (cond ((or (equal (downcase mct) "never")
4475                  (equal (downcase mct) "nobody"))
4476              (setq never-mct t)
4477              (setq mct nil))
4478             ((or (equal (downcase mct) "always")
4479                  (equal (downcase mct) "poster"))
4480              (setq mct author))))
4481
4482     (save-match-data
4483       ;; Build (textual) list of new recipient addresses.
4484       (cond
4485        ((not wide)
4486         (setq recipients (concat ", " author)))
4487        ((and mft
4488              (string-match "[^ \t,]" mft)
4489              (or (not (eq message-use-mail-followup-to 'ask))
4490                  (message-y-or-n-p "Obey Mail-Followup-To? " t "\
4491 You should normally obey the Mail-Followup-To: header.  In this
4492 article, it has the value of
4493
4494 " mft "
4495
4496 which directs your response to " (if (string-match "," mft)
4497                                      "the specified addresses"
4498                                    "that address only") ".
4499
4500 Most commonly, Mail-Followup-To is used by a mailing list poster to
4501 express that responses should be sent to just the list, and not the
4502 poster as well.
4503
4504 If a message is posted to several mailing lists, Mail-Followup-To may
4505 also be used to direct the following discussion to one list only,
4506 because discussions that are spread over several lists tend to be
4507 fragmented and very difficult to follow.
4508
4509 Also, some source/announcement lists are not intended for discussion;
4510 responses here are directed to other addresses.")))
4511         (setq recipients (concat ", " mft)))
4512        (to-address
4513         (setq recipients (concat ", " to-address))
4514         ;; If the author explicitly asked for a copy, we don't deny it to them.
4515         (if mct (setq recipients (concat recipients ", " mct))))
4516        (t
4517         (setq recipients (if never-mct "" (concat ", " author)))
4518         (if to  (setq recipients (concat recipients ", " to)))
4519         (if cc  (setq recipients (concat recipients ", " cc)))
4520         (if mct (setq recipients (concat recipients ", " mct)))))
4521       (if (>= (length recipients) 2)
4522           ;; Strip the leading ", ".
4523           (setq recipients (substring recipients 2)))
4524       ;; Squeeze whitespace.
4525       (while (string-match "[ \t][ \t]+" recipients)
4526         (setq recipients (replace-match " " t t recipients)))
4527       ;; Remove addresses that match `rmail-dont-reply-to-names'.
4528       (let ((rmail-dont-reply-to-names message-dont-reply-to-names))
4529         (setq recipients (rmail-dont-reply-to recipients)))
4530       ;; Perhaps "Mail-Copies-To: never" removed the only address?
4531       (if (string-equal recipients "")
4532           (setq recipients author))
4533       ;; Convert string to a list of (("foo@bar" . "Name <foo@bar>") ...).
4534       (setq recipients
4535             (mapcar
4536              (lambda (addr)
4537                (cons (mail-strip-quoted-names addr) addr))
4538              (message-tokenize-header recipients)))
4539       ;; Remove first duplicates.  (Why not all duplicates?  Is this a bug?)
4540       (let ((s recipients))
4541         (while s
4542           (setq recipients (delq (assoc (car (pop s)) s) recipients))))
4543       ;; Build the header alist.  Allow the user to be asked whether
4544       ;; or not to reply to all recipients in a wide reply.
4545       (setq follow-to (list (cons 'To (cdr (pop recipients)))))
4546       (when (and recipients
4547                  (or (not message-wide-reply-confirm-recipients)
4548                      (y-or-n-p "Reply to all recipients? ")))
4549         (setq recipients (mapconcat
4550                           (lambda (addr) (cdr addr)) recipients ", "))
4551         (if (string-match "^ +" recipients)
4552             (setq recipients (substring recipients (match-end 0))))
4553         (push (cons 'Cc recipients) follow-to)))
4554     follow-to))
4555
4556 ;;;###autoload
4557 (defun message-reply (&optional to-address wide)
4558   "Start editing a reply to the article in the current buffer."
4559   (interactive)
4560   (require 'gnus-sum)                   ; for gnus-list-identifiers
4561   (let ((cur (current-buffer))
4562         from subject date reply-to to cc
4563         references message-id follow-to
4564         (inhibit-point-motion-hooks t)
4565         (message-this-is-mail t)
4566         gnus-warning)
4567     (save-restriction
4568       (message-narrow-to-head-1)
4569       ;; Allow customizations to have their say.
4570       (if (not wide)
4571           ;; This is a regular reply.
4572           (when (message-functionp message-reply-to-function)
4573             (save-excursion
4574               (setq follow-to (funcall message-reply-to-function))))
4575         ;; This is a followup.
4576         (when (message-functionp message-wide-reply-to-function)
4577           (save-excursion
4578             (setq follow-to
4579                   (funcall message-wide-reply-to-function)))))
4580       (setq message-id (message-fetch-field "message-id" t)
4581             references (message-fetch-field "references")
4582             date (message-fetch-field "date")
4583             from (message-fetch-field "from")
4584             subject (or (message-fetch-field "subject") "none"))
4585       (when gnus-list-identifiers
4586         (setq subject (message-strip-list-identifiers subject)))
4587       (setq subject (concat "Re: " (message-strip-subject-re subject)))
4588
4589       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
4590                  (string-match "<[^>]+>" gnus-warning))
4591         (setq message-id (match-string 0 gnus-warning)))
4592
4593       (unless follow-to
4594         (setq follow-to (message-get-reply-headers wide to-address))))
4595
4596     (unless (message-mail-user-agent)
4597       (message-pop-to-buffer
4598        (message-buffer-name
4599         (if wide "wide reply" "reply") from
4600         (if wide to-address nil))))
4601
4602     (setq message-reply-headers
4603           (vector 0 subject from date message-id references 0 0 ""))
4604
4605     (message-setup
4606      `((Subject . ,subject)
4607        ,@follow-to
4608        ,@(if (or references message-id)
4609              `((References . ,(concat (or references "") (and references " ")
4610                                       (or message-id ""))))
4611            nil))
4612      cur)))
4613
4614 ;;;###autoload
4615 (defun message-wide-reply (&optional to-address)
4616   "Make a \"wide\" reply to the message in the current buffer."
4617   (interactive)
4618   (message-reply to-address t))
4619
4620 ;;;###autoload
4621 (defun message-followup (&optional to-newsgroups)
4622   "Follow up to the message in the current buffer.
4623 If TO-NEWSGROUPS, use that as the new Newsgroups line."
4624   (interactive)
4625   (require 'gnus-sum)                   ; for gnus-list-identifiers
4626   (let ((cur (current-buffer))
4627         from subject date reply-to mrt mct
4628         references message-id follow-to
4629         (inhibit-point-motion-hooks t)
4630         (message-this-is-news t)
4631         followup-to distribution newsgroups gnus-warning posted-to)
4632     (save-restriction
4633       (narrow-to-region
4634        (goto-char (point-min))
4635        (if (search-forward "\n\n" nil t)
4636            (1- (point))
4637          (point-max)))
4638       (when (message-functionp message-followup-to-function)
4639         (setq follow-to
4640               (funcall message-followup-to-function)))
4641       (setq from (message-fetch-field "from")
4642             date (message-fetch-field "date")
4643             subject (or (message-fetch-field "subject") "none")
4644             references (message-fetch-field "references")
4645             message-id (message-fetch-field "message-id" t)
4646             followup-to (message-fetch-field "followup-to")
4647             newsgroups (message-fetch-field "newsgroups")
4648             posted-to (message-fetch-field "posted-to")
4649             reply-to (message-fetch-field "reply-to")
4650             mrt (message-fetch-field "mail-reply-to")
4651             distribution (message-fetch-field "distribution")
4652             mct (message-fetch-field "mail-copies-to"))
4653       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
4654                  (string-match "<[^>]+>" gnus-warning))
4655         (setq message-id (match-string 0 gnus-warning)))
4656       ;; Remove bogus distribution.
4657       (when (and (stringp distribution)
4658                  (let ((case-fold-search t))
4659                    (string-match "world" distribution)))
4660         (setq distribution nil))
4661       (if gnus-list-identifiers
4662           (setq subject (message-strip-list-identifiers subject)))
4663       (setq subject (concat "Re: " (message-strip-subject-re subject)))
4664       (widen))
4665
4666     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
4667
4668     (message-setup
4669      `((Subject . ,subject)
4670        ,@(cond
4671           (to-newsgroups
4672            (list (cons 'Newsgroups to-newsgroups)))
4673           (follow-to follow-to)
4674           ((and followup-to message-use-followup-to)
4675            (list
4676             (cond
4677              ((equal (downcase followup-to) "poster")
4678               (if (or (eq message-use-followup-to 'use)
4679                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
4680 You should normally obey the Followup-To: header.
4681
4682 `Followup-To: poster' sends your response via e-mail instead of news.
4683
4684 A typical situation where `Followup-To: poster' is used is when the poster
4685 does not read the newsgroup, so he wouldn't see any replies sent to it."))
4686                   (progn
4687                     (setq message-this-is-news nil)
4688                     (cons 'To (or mrt reply-to from "")))
4689                 (cons 'Newsgroups newsgroups)))
4690              (t
4691               (if (or (equal followup-to newsgroups)
4692                       (not (eq message-use-followup-to 'ask))
4693                       (message-y-or-n-p
4694                        (concat "Obey Followup-To: " followup-to "? ") t "\
4695 You should normally obey the Followup-To: header.
4696
4697         `Followup-To: " followup-to "'
4698 directs your response to " (if (string-match "," followup-to)
4699                                "the specified newsgroups"
4700                              "that newsgroup only") ".
4701
4702 If a message is posted to several newsgroups, Followup-To is often
4703 used to direct the following discussion to one newsgroup only,
4704 because discussions that are spread over several newsgroup tend to
4705 be fragmented and very difficult to follow.
4706
4707 Also, some source/announcement newsgroups are not intended for discussion;
4708 responses here are directed to other newsgroups."))
4709                   (cons 'Newsgroups followup-to)
4710                 (cons 'Newsgroups newsgroups))))))
4711           (posted-to
4712            `((Newsgroups . ,posted-to)))
4713           (t
4714            `((Newsgroups . ,newsgroups))))
4715        ,@(and distribution (list (cons 'Distribution distribution)))
4716        ,@(if (or references message-id)
4717              `((References . ,(concat (or references "") (and references " ")
4718                                       (or message-id "")))))
4719        ,@(when (and mct
4720                     (not (or (equal (downcase mct) "never")
4721                              (equal (downcase mct) "nobody"))))
4722            (list (cons 'Cc (if (or (equal (downcase mct) "always")
4723                                    (equal (downcase mct) "poster"))
4724                                (or mrt reply-to from "")
4725                              mct)))))
4726
4727      cur)
4728
4729     (setq message-reply-headers
4730           (vector 0 subject from date message-id references 0 0 ""))))
4731
4732
4733 ;;;###autoload
4734 (defun message-cancel-news (&optional arg)
4735   "Cancel an article you posted.
4736 If ARG, allow editing of the cancellation message."
4737   (interactive "P")
4738   (unless (message-news-p)
4739     (error "This is not a news article; canceling is impossible"))
4740   (let (from newsgroups message-id distribution buf sender)
4741     (save-excursion
4742       ;; Get header info from original article.
4743       (save-restriction
4744         (message-narrow-to-head-1)
4745         (setq from (message-fetch-field "from")
4746               sender (message-fetch-field "sender")
4747               newsgroups (message-fetch-field "newsgroups")
4748               message-id (message-fetch-field "message-id" t)
4749               distribution (message-fetch-field "distribution")))
4750       ;; Make sure that this article was written by the user.
4751       (unless (or
4752                ;; Canlock-logic as suggested by Per Abrahamsen
4753                ;; <abraham@dina.kvl.dk>
4754                ;;
4755                ;; IF article has cancel-lock THEN
4756                ;;   IF we can verify it THEN
4757                ;;     issue cancel
4758                ;;   ELSE
4759                ;;     error: cancellock: article is not yours
4760                ;; ELSE
4761                ;;   Use old rules, comparing sender...
4762                (if (message-fetch-field "Cancel-Lock")
4763                    (if (null (canlock-verify))
4764                        t
4765                      (error "Failed to verify Cancel-lock: This article is not yours"))
4766                  nil)
4767                (message-gnksa-enable-p 'cancel-messages)
4768                (and sender
4769                     (string-equal
4770                      (downcase sender)
4771                      (downcase (message-make-sender))))
4772                (string-equal
4773                 (downcase (cadr (mail-extract-address-components from)))
4774                 (downcase (cadr (mail-extract-address-components
4775                                  (message-make-from))))))
4776         (error "This article is not yours"))
4777       (when (yes-or-no-p "Do you really want to cancel this article? ")
4778         ;; Make control message.
4779         (if arg
4780             (message-news)
4781           (setq buf (set-buffer (get-buffer-create " *message cancel*"))))
4782         (erase-buffer)
4783         (insert "Newsgroups: " newsgroups "\n"
4784                 "From: " from "\n"
4785                 "Subject: cmsg cancel " message-id "\n"
4786                 "Control: cancel " message-id "\n"
4787                 (if distribution
4788                     (concat "Distribution: " distribution "\n")
4789                   "")
4790                 mail-header-separator "\n"
4791                 message-cancel-message)
4792         (run-hooks 'message-cancel-hook)
4793         (unless arg
4794           (message "Canceling your article...")
4795           (if (let ((message-syntax-checks
4796                      'dont-check-for-anything-just-trust-me))
4797                 (funcall message-send-news-function))
4798               (message "Canceling your article...done"))
4799           (kill-buffer buf))))))
4800
4801 ;;;###autoload
4802 (defun message-supersede ()
4803   "Start composing a message to supersede the current message.
4804 This is done simply by taking the old article and adding a Supersedes
4805 header line with the old Message-ID."
4806   (interactive)
4807   (let ((cur (current-buffer))
4808         (sender (message-fetch-field "sender"))
4809         (from (message-fetch-field "from")))
4810     ;; Check whether the user owns the article that is to be superseded.
4811     (unless (or
4812              ;; Canlock-logic as suggested by Per Abrahamsen
4813              ;; <abraham@dina.kvl.dk>
4814              ;;
4815              ;; IF article has cancel-lock THEN
4816              ;;   IF we can verify it THEN
4817              ;;     issue cancel
4818              ;;   ELSE
4819              ;;     error: cancellock: article is not yours
4820              ;; ELSE
4821              ;;   Use old rules, comparing sender...
4822              (if (message-fetch-field "Cancel-Lock")
4823                  (if (null (canlock-verify))
4824                      t
4825                    (error "Failed to verify Cancel-lock: This article is not yours"))
4826                nil)
4827              (message-gnksa-enable-p 'cancel-messages)
4828                 (and sender
4829                      (string-equal
4830                       (downcase sender)
4831                       (downcase (message-make-sender))))
4832                 (string-equal
4833                  (downcase (cadr (mail-extract-address-components from)))
4834                  (downcase (cadr (mail-extract-address-components
4835                                   (message-make-from))))))
4836       (error "This article is not yours"))
4837     ;; Get a normal message buffer.
4838     (message-pop-to-buffer (message-buffer-name "supersede"))
4839     (insert-buffer-substring cur)
4840     (mime-to-mml)
4841     (message-narrow-to-head-1)
4842     ;; Remove unwanted headers.
4843     (when message-ignored-supersedes-headers
4844       (message-remove-header message-ignored-supersedes-headers t))
4845     (goto-char (point-min))
4846     (if (not (re-search-forward "^Message-ID: " nil t))
4847         (error "No Message-ID in this article")
4848       (replace-match "Supersedes: " t t))
4849     (goto-char (point-max))
4850     (insert mail-header-separator)
4851     (widen)
4852     (forward-line 1)))
4853
4854 ;;;###autoload
4855 (defun message-recover ()
4856   "Reread contents of current buffer from its last auto-save file."
4857   (interactive)
4858   (let ((file-name (make-auto-save-file-name)))
4859     (cond ((save-window-excursion
4860              (if (not (eq system-type 'vax-vms))
4861                  (with-output-to-temp-buffer "*Directory*"
4862                    (with-current-buffer standard-output
4863                      (fundamental-mode)) ; for Emacs 20.4+
4864                    (buffer-disable-undo standard-output)
4865                    (let ((default-directory "/"))
4866                      (call-process
4867                       "ls" nil standard-output nil "-l" file-name))))
4868              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
4869            (let ((buffer-read-only nil))
4870              (erase-buffer)
4871              (insert-file-contents file-name nil)))
4872           (t (error "message-recover cancelled")))))
4873
4874 ;;; Washing Subject:
4875
4876 (defun message-wash-subject (subject)
4877   "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
4878 Previous forwarders, replyers, etc. may add it."
4879   (with-temp-buffer
4880     (insert subject)
4881     (goto-char (point-min))
4882     ;; strip Re/Fwd stuff off the beginning
4883     (while (re-search-forward
4884             "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t)
4885       (replace-match ""))
4886
4887     ;; and gnus-style forwards [foo@bar.com] subject
4888     (goto-char (point-min))
4889     (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t)
4890       (replace-match ""))
4891
4892     ;; and off the end
4893     (goto-char (point-max))
4894     (while (re-search-backward "([Ff][Ww][Dd])" nil t)
4895       (replace-match ""))
4896
4897     ;; and finally, any whitespace that was left-over
4898     (goto-char (point-min))
4899     (while (re-search-forward "^[ \t]+" nil t)
4900       (replace-match ""))
4901     (goto-char (point-max))
4902     (while (re-search-backward "[ \t]+$" nil t)
4903       (replace-match ""))
4904
4905     (buffer-string)))
4906
4907 ;;; Forwarding messages.
4908
4909 (defvar message-forward-decoded-p nil
4910   "Non-nil means the original message is decoded.")
4911
4912 (defun message-forward-subject-author-subject (subject)
4913   "Generate a SUBJECT for a forwarded message.
4914 The form is: [Source] Subject, where if the original message was mail,
4915 Source is the sender, and if the original message was news, Source is
4916 the list of newsgroups is was posted to."
4917   (concat "["
4918           (let ((prefix
4919                  (or (message-fetch-field "newsgroups")
4920                      (message-fetch-field "from")
4921                      "(nowhere)")))
4922             (if message-forward-decoded-p
4923                 prefix
4924               (mail-decode-encoded-word-string prefix)))
4925           "] " subject))
4926
4927 (defun message-forward-subject-fwd (subject)
4928   "Generate a SUBJECT for a forwarded message.
4929 The form is: Fwd: Subject, where Subject is the original subject of
4930 the message."
4931   (concat "Fwd: " subject))
4932
4933 (defun message-make-forward-subject ()
4934   "Return a Subject header suitable for the message in the current buffer."
4935   (save-excursion
4936     (save-restriction
4937       (message-narrow-to-head-1)
4938       (let ((funcs message-make-forward-subject-function)
4939             (subject (message-fetch-field "Subject")))
4940         (setq subject
4941               (if subject
4942                   (if message-forward-decoded-p
4943                       subject
4944                     (mail-decode-encoded-word-string subject))
4945                 ""))
4946         (if message-wash-forwarded-subjects
4947             (setq subject (message-wash-subject subject)))
4948         ;; Make sure funcs is a list.
4949         (and funcs
4950              (not (listp funcs))
4951              (setq funcs (list funcs)))
4952         ;; Apply funcs in order, passing subject generated by previous
4953         ;; func to the next one.
4954         (while funcs
4955           (when (message-functionp (car funcs))
4956             (setq subject (funcall (car funcs) subject)))
4957           (setq funcs (cdr funcs)))
4958         subject))))
4959
4960 (eval-when-compile
4961   (defvar gnus-article-decoded-p))
4962
4963
4964 ;;;###autoload
4965 (defun message-forward (&optional news digest)
4966   "Forward the current message via mail.
4967 Optional NEWS will use news to forward instead of mail.
4968 Optional DIGEST will use digest to forward."
4969   (interactive "P")
4970   (let* ((cur (current-buffer))
4971          (message-forward-decoded-p
4972           (if (local-variable-p 'gnus-article-decoded-p (current-buffer))
4973               gnus-article-decoded-p ;; In an article buffer.
4974             message-forward-decoded-p))
4975          (subject (message-make-forward-subject)))
4976     (if news
4977         (message-news nil subject)
4978       (message-mail nil subject))
4979     (message-forward-make-body cur digest)))
4980
4981 ;;;###autoload
4982 (defun message-forward-make-body (forward-buffer &optional digest)
4983   ;; Put point where we want it before inserting the forwarded
4984   ;; message.
4985   (if message-forward-before-signature
4986       (message-goto-body)
4987     (goto-char (point-max)))
4988   (if message-forward-as-mime
4989       (if digest
4990           (insert "\n<#multipart type=digest>\n")
4991         (if message-forward-show-mml
4992             (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
4993           (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n")))
4994     (insert "\n-------------------- Start of forwarded message --------------------\n"))
4995   (let ((b (point)) e)
4996     (if digest
4997         (if message-forward-as-mime
4998             (insert-buffer-substring forward-buffer)
4999           (mml-insert-buffer forward-buffer))
5000       (if (and message-forward-show-mml
5001                (not message-forward-decoded-p))
5002           (insert
5003            (with-temp-buffer
5004              (if (with-current-buffer forward-buffer
5005                    (mm-multibyte-p))
5006                  (insert-buffer-substring forward-buffer)
5007                (mm-disable-multibyte-mule4)
5008                (insert
5009                 (with-current-buffer forward-buffer
5010                   (mm-string-as-unibyte (buffer-string))))
5011                (mm-enable-multibyte-mule4))
5012              (mime-to-mml)
5013              (goto-char (point-min))
5014              (when (looking-at "From ")
5015                (replace-match "X-From-Line: "))
5016              (buffer-string)))
5017         (save-restriction
5018           (narrow-to-region (point) (point))
5019           (mml-insert-buffer forward-buffer)
5020           (goto-char (point-min))
5021           (when (looking-at "From ")
5022             (replace-match "X-From-Line: "))
5023           (goto-char (point-max)))))
5024     (setq e (point))
5025     (if message-forward-as-mime
5026         (if digest
5027             (insert "<#/multipart>\n")
5028           (if message-forward-show-mml
5029               (insert "<#/mml>\n")
5030             (insert "<#/part>\n")))
5031       (insert "\n-------------------- End of forwarded message --------------------\n"))
5032     (if (and digest message-forward-as-mime)
5033         (save-restriction
5034           (narrow-to-region b e)
5035           (goto-char b)
5036           (narrow-to-region (point)
5037                             (or (search-forward "\n\n" nil t) (point)))
5038           (delete-region (point-min) (point-max)))
5039       (when (and (not current-prefix-arg)
5040                  message-forward-ignored-headers)
5041         (save-restriction
5042           (narrow-to-region b e)
5043           (goto-char b)
5044           (narrow-to-region (point)
5045                             (or (search-forward "\n\n" nil t) (point)))
5046           (message-remove-header message-forward-ignored-headers t)))))
5047   (message-position-point))
5048
5049 ;;;###autoload
5050 (defun message-forward-rmail-make-body (forward-buffer)
5051   (save-window-excursion
5052     (set-buffer forward-buffer)
5053     ;; Rmail doesn't have rmail-msg-restore-non-pruned-header in Emacs
5054     ;; 20.  FIXIT, or we drop support for rmail in Emacs 20.
5055     (if (rmail-msg-is-pruned)
5056         (rmail-msg-restore-non-pruned-header)))
5057   (message-forward-make-body forward-buffer))
5058
5059 ;;;###autoload
5060 (defun message-insinuate-rmail ()
5061   "Let RMAIL uses message to forward."
5062   (interactive)
5063   (setq rmail-enable-mime-composing t)
5064   (setq rmail-insert-mime-forwarded-message-function 
5065         'message-forward-rmail-make-body))
5066
5067 ;;;###autoload
5068 (defun message-resend (address)
5069   "Resend the current article to ADDRESS."
5070   (interactive
5071    (list (message-read-from-minibuffer "Resend message to: ")))
5072   (message "Resending message to %s..." address)
5073   (save-excursion
5074     (let ((cur (current-buffer))
5075           beg)
5076       ;; We first set up a normal mail buffer.
5077       (unless (message-mail-user-agent)
5078         (set-buffer (get-buffer-create " *message resend*"))
5079         (erase-buffer))
5080       (let ((message-this-is-mail t))
5081         (message-setup `((To . ,address))))
5082       ;; Insert our usual headers.
5083       (message-generate-headers '(From Date To))
5084       (message-narrow-to-headers)
5085       ;; Rename them all to "Resent-*".
5086       (while (re-search-forward "^[A-Za-z]" nil t)
5087         (forward-char -1)
5088         (insert "Resent-"))
5089       (widen)
5090       (forward-line)
5091       (delete-region (point) (point-max))
5092       (setq beg (point))
5093       ;; Insert the message to be resent.
5094       (insert-buffer-substring cur)
5095       (goto-char (point-min))
5096       (search-forward "\n\n")
5097       (forward-char -1)
5098       (save-restriction
5099         (narrow-to-region beg (point))
5100         (message-remove-header message-ignored-resent-headers t)
5101         (goto-char (point-max)))
5102       (insert mail-header-separator)
5103       ;; Rename all old ("Also-")Resent headers.
5104       (while (re-search-backward "^\\(Also-\\)*Resent-" beg t)
5105         (beginning-of-line)
5106         (insert "Also-"))
5107       ;; Quote any "From " lines at the beginning.
5108       (goto-char beg)
5109       (when (looking-at "From ")
5110         (replace-match "X-From-Line: "))
5111       ;; Send it.
5112       (let ((message-inhibit-body-encoding t)
5113             message-required-mail-headers)
5114         (message-send-mail))
5115       (kill-buffer (current-buffer)))
5116     (message "Resending message to %s...done" address)))
5117
5118 ;;;###autoload
5119 (defun message-bounce ()
5120   "Re-mail the current message.
5121 This only makes sense if the current message is a bounce message that
5122 contains some mail you have written which has been bounced back to
5123 you."
5124   (interactive)
5125   (let ((handles (mm-dissect-buffer t))
5126         boundary)
5127     (message-pop-to-buffer (message-buffer-name "bounce"))
5128     (if (stringp (car handles))
5129         ;; This is a MIME bounce.
5130         (mm-insert-part (car (last handles)))
5131       ;; This is a non-MIME bounce, so we try to remove things
5132       ;; manually.
5133       (mm-insert-part handles)
5134       (undo-boundary)
5135       (goto-char (point-min))
5136       (search-forward "\n\n" nil t)
5137       (if (or (and (re-search-forward message-unsent-separator nil t)
5138                    (forward-line 1))
5139               (re-search-forward "^Return-Path:.*\n" nil t))
5140           ;; We remove everything before the bounced mail.
5141           (delete-region
5142            (point-min)
5143            (if (re-search-forward "^[^ \n\t]+:" nil t)
5144                (match-beginning 0)
5145              (point)))
5146         (when (re-search-backward "^.?From .*\n" nil t)
5147           (delete-region (match-beginning 0) (match-end 0)))))
5148     (mm-enable-multibyte)
5149     (mime-to-mml)
5150     (save-restriction
5151       (message-narrow-to-head-1)
5152       (message-remove-header message-ignored-bounced-headers t)
5153       (goto-char (point-max))
5154       (insert mail-header-separator))
5155     (message-position-point)))
5156
5157 ;;;
5158 ;;; Interactive entry points for new message buffers.
5159 ;;;
5160
5161 ;;;###autoload
5162 (defun message-mail-other-window (&optional to subject)
5163   "Like `message-mail' command, but display mail buffer in another window."
5164   (interactive)
5165   (unless (message-mail-user-agent)
5166     (let ((pop-up-windows t)
5167           (special-display-buffer-names nil)
5168           (special-display-regexps nil)
5169           (same-window-buffer-names nil)
5170           (same-window-regexps nil))
5171       (message-pop-to-buffer (message-buffer-name "mail" to))))
5172   (let ((message-this-is-mail t))
5173     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5174                    nil nil 'switch-to-buffer-other-window)))
5175
5176 ;;;###autoload
5177 (defun message-mail-other-frame (&optional to subject)
5178   "Like `message-mail' command, but display mail buffer in another frame."
5179   (interactive)
5180   (unless (message-mail-user-agent)
5181     (let ((pop-up-frames t)
5182           (special-display-buffer-names nil)
5183           (special-display-regexps nil)
5184           (same-window-buffer-names nil)
5185           (same-window-regexps nil))
5186       (message-pop-to-buffer (message-buffer-name "mail" to))))
5187   (let ((message-this-is-mail t))
5188     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5189                    nil nil 'switch-to-buffer-other-frame)))
5190
5191 ;;;###autoload
5192 (defun message-news-other-window (&optional newsgroups subject)
5193   "Start editing a news article to be sent."
5194   (interactive)
5195   (let ((pop-up-windows t)
5196         (special-display-buffer-names nil)
5197         (special-display-regexps nil)
5198         (same-window-buffer-names nil)
5199         (same-window-regexps nil))
5200     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
5201   (let ((message-this-is-news t))
5202     (message-setup `((Newsgroups . ,(or newsgroups ""))
5203                      (Subject . ,(or subject ""))))))
5204
5205 ;;;###autoload
5206 (defun message-news-other-frame (&optional newsgroups subject)
5207   "Start editing a news article to be sent."
5208   (interactive)
5209   (let ((pop-up-frames t)
5210         (special-display-buffer-names nil)
5211         (special-display-regexps nil)
5212         (same-window-buffer-names nil)
5213         (same-window-regexps nil))
5214     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
5215   (let ((message-this-is-news t))
5216     (message-setup `((Newsgroups . ,(or newsgroups ""))
5217                      (Subject . ,(or subject ""))))))
5218
5219 ;;; underline.el
5220
5221 ;; This code should be moved to underline.el (from which it is stolen).
5222
5223 ;;;###autoload
5224 (defun bold-region (start end)
5225   "Bold all nonblank characters in the region.
5226 Works by overstriking characters.
5227 Called from program, takes two arguments START and END
5228 which specify the range to operate on."
5229   (interactive "r")
5230   (save-excursion
5231     (let ((end1 (make-marker)))
5232       (move-marker end1 (max start end))
5233       (goto-char (min start end))
5234       (while (< (point) end1)
5235         (or (looking-at "[_\^@- ]")
5236             (insert (char-after) "\b"))
5237         (forward-char 1)))))
5238
5239 ;;;###autoload
5240 (defun unbold-region (start end)
5241   "Remove all boldness (overstruck characters) in the region.
5242 Called from program, takes two arguments START and END
5243 which specify the range to operate on."
5244   (interactive "r")
5245   (save-excursion
5246     (let ((end1 (make-marker)))
5247       (move-marker end1 (max start end))
5248       (goto-char (min start end))
5249       (while (re-search-forward "\b" end1 t)
5250         (if (eq (char-after) (char-after (- (point) 2)))
5251             (delete-char -2))))))
5252
5253 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
5254
5255 ;; Support for toolbar
5256 (eval-when-compile
5257   (defvar tool-bar-map)
5258   (defvar tool-bar-mode))
5259
5260 (defun message-tool-bar-map ()
5261   (or message-tool-bar-map
5262       (setq message-tool-bar-map
5263             (and (fboundp 'tool-bar-add-item-from-menu)
5264                  tool-bar-mode
5265                  (let ((tool-bar-map (copy-keymap tool-bar-map))
5266                        (load-path (mm-image-load-path)))
5267                    ;; Zap some items which aren't so relevant and take
5268                    ;; up space.
5269                    (dolist (key '(print-buffer kill-buffer save-buffer
5270                                                write-file dired open-file))
5271                      (define-key tool-bar-map (vector key) nil))
5272                    (tool-bar-add-item-from-menu
5273                     'message-send-and-exit "mail_send" message-mode-map)
5274                    (tool-bar-add-item-from-menu
5275                     'message-kill-buffer "close" message-mode-map)
5276                    (tool-bar-add-item-from-menu
5277                     'message-dont-send "cancel" message-mode-map)
5278                    (tool-bar-add-item-from-menu
5279                     'mml-attach-file "attach" mml-mode-map)
5280                    (tool-bar-add-item-from-menu
5281                     'ispell-message "spell" message-mode-map)
5282                    (tool-bar-add-item-from-menu
5283                     'message-insert-importance-high "important"
5284                     message-mode-map)
5285                    (tool-bar-add-item-from-menu
5286                     'message-insert-importance-low "unimportant"
5287                     message-mode-map)
5288                    (tool-bar-add-item-from-menu
5289                     'message-insert-disposition-notification-to "receipt"
5290                     message-mode-map)
5291                    tool-bar-map)))))
5292
5293 ;;; Group name completion.
5294
5295 (defcustom message-newgroups-header-regexp
5296   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
5297   "Regexp that match headers that lists groups."
5298   :group 'message
5299   :type 'regexp)
5300
5301 (defcustom message-completion-alist
5302   (list (cons message-newgroups-header-regexp 'message-expand-group)
5303         '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name))
5304   "Alist of (RE . FUN).  Use FUN for completion on header lines matching RE."
5305   :group 'message
5306   :type '(alist :key-type regexp :value-type function))
5307
5308 (defcustom message-tab-body-function nil
5309   "*Function to execute when `message-tab' (TAB) is executed in the body.
5310 If nil, the function bound in `text-mode-map' or `global-map' is executed."
5311   :group 'message
5312   :type 'function)
5313
5314 (defun message-tab ()
5315   "Complete names according to `message-completion-alist'.
5316 Execute function specified by `message-tab-body-function' when not in
5317 those headers."
5318   (interactive)
5319   (let ((alist message-completion-alist))
5320     (while (and alist
5321                 (let ((mail-abbrev-mode-regexp (caar alist)))
5322                   (not (mail-abbrev-in-expansion-header-p))))
5323       (setq alist (cdr alist)))
5324     (funcall (or (cdar alist) message-tab-body-function
5325                  (lookup-key text-mode-map "\t")
5326                  (lookup-key global-map "\t")
5327                  'indent-relative))))
5328
5329 (defun message-expand-group ()
5330   "Expand the group name under point."
5331   (let* ((b (save-excursion
5332               (save-restriction
5333                 (narrow-to-region
5334                  (save-excursion
5335                    (beginning-of-line)
5336                    (skip-chars-forward "^:")
5337                    (1+ (point)))
5338                  (point))
5339                 (skip-chars-backward "^, \t\n") (point))))
5340          (completion-ignore-case t)
5341          (string (buffer-substring b (progn (skip-chars-forward "^,\t\n ")
5342                                             (point))))
5343          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
5344          (completions (all-completions string hashtb))
5345          comp)
5346     (delete-region b (point))
5347     (cond
5348      ((= (length completions) 1)
5349       (if (string= (car completions) string)
5350           (progn
5351             (insert string)
5352             (message "Only matching group"))
5353         (insert (car completions))))
5354      ((and (setq comp (try-completion string hashtb))
5355            (not (string= comp string)))
5356       (insert comp))
5357      (t
5358       (insert string)
5359       (if (not comp)
5360           (message "No matching groups")
5361         (save-selected-window
5362           (pop-to-buffer "*Completions*")
5363           (buffer-disable-undo)
5364           (let ((buffer-read-only nil))
5365             (erase-buffer)
5366             (let ((standard-output (current-buffer)))
5367               (display-completion-list (sort completions 'string<)))
5368             (goto-char (point-min))
5369             (delete-region (point) (progn (forward-line 3) (point))))))))))
5370
5371 (defun message-expand-name ()
5372   (if (fboundp 'bbdb-complete-name)
5373       (bbdb-complete-name)
5374     (expand-abbrev)))
5375
5376 ;;; Help stuff.
5377
5378 (defun message-talkative-question (ask question show &rest text)
5379   "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
5380 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
5381 The following arguments may contain lists of values."
5382   (if (and show
5383            (setq text (message-flatten-list text)))
5384       (save-window-excursion
5385         (save-excursion
5386           (with-output-to-temp-buffer " *MESSAGE information message*"
5387             (set-buffer " *MESSAGE information message*")
5388             (fundamental-mode)          ; for Emacs 20.4+
5389             (mapcar 'princ text)
5390             (goto-char (point-min))))
5391         (funcall ask question))
5392     (funcall ask question)))
5393
5394 (defun message-flatten-list (list)
5395   "Return a new, flat list that contains all elements of LIST.
5396
5397 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
5398 => (1 2 3 4 5 6 7)"
5399   (cond ((consp list)
5400          (apply 'append (mapcar 'message-flatten-list list)))
5401         (list
5402          (list list))))
5403
5404 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
5405   "Create and return a buffer with name based on NAME using `generate-new-buffer.'
5406 Then clone the local variables and values from the old buffer to the
5407 new one, cloning only the locals having a substring matching the
5408 regexp varstr."
5409   (let ((oldbuf (current-buffer)))
5410     (save-excursion
5411       (set-buffer (generate-new-buffer name))
5412       (message-clone-locals oldbuf varstr)
5413       (current-buffer))))
5414
5415 (defun message-clone-locals (buffer &optional varstr)
5416   "Clone the local variables from BUFFER to the current buffer."
5417   (let ((locals (save-excursion
5418                   (set-buffer buffer)
5419                   (buffer-local-variables)))
5420         (regexp "^gnus\\|^nn\\|^message\\|^user-mail-address"))
5421     (mapcar
5422      (lambda (local)
5423        (when (and (consp local)
5424                   (car local)
5425                   (string-match regexp (symbol-name (car local)))
5426                   (or (null varstr)
5427                       (string-match varstr (symbol-name (car local)))))
5428          (ignore-errors
5429            (set (make-local-variable (car local))
5430                 (cdr local)))))
5431      locals)))
5432
5433 ;;; Miscellaneous functions
5434
5435 (defsubst message-replace-chars-in-string (string from to)
5436   (mm-subst-char-in-string from to string))
5437
5438 ;;;
5439 ;;; MIME functions
5440 ;;;
5441
5442 (defvar message-inhibit-body-encoding nil)
5443
5444 (defun message-encode-message-body ()
5445   (unless message-inhibit-body-encoding
5446     (let ((mail-parse-charset (or mail-parse-charset
5447                                   message-default-charset))
5448           (case-fold-search t)
5449           lines content-type-p)
5450       (message-goto-body)
5451       (save-restriction
5452         (narrow-to-region (point) (point-max))
5453         (let ((new (mml-generate-mime)))
5454           (when new
5455             (delete-region (point-min) (point-max))
5456             (insert new)
5457             (goto-char (point-min))
5458             (if (eq (aref new 0) ?\n)
5459                 (delete-char 1)
5460               (search-forward "\n\n")
5461               (setq lines (buffer-substring (point-min) (1- (point))))
5462               (delete-region (point-min) (point))))))
5463       (save-restriction
5464         (message-narrow-to-headers-or-head)
5465         (message-remove-header "Mime-Version")
5466         (goto-char (point-max))
5467         (insert "MIME-Version: 1.0\n")
5468         (when lines
5469           (insert lines))
5470         (setq content-type-p
5471               (or mml-boundary
5472                   (re-search-backward "^Content-Type:" nil t))))
5473       (save-restriction
5474         (message-narrow-to-headers-or-head)
5475         (message-remove-first-header "Content-Type")
5476         (message-remove-first-header "Content-Transfer-Encoding"))
5477       ;; We always make sure that the message has a Content-Type
5478       ;; header.  This is because some broken MTAs and MUAs get
5479       ;; awfully confused when confronted with a message with a
5480       ;; MIME-Version header and without a Content-Type header.  For
5481       ;; instance, Solaris' /usr/bin/mail.
5482       (unless content-type-p
5483         (goto-char (point-min))
5484         ;; For unknown reason, MIME-Version doesn't exist.
5485         (when (re-search-forward "^MIME-Version:" nil t)
5486           (forward-line 1)
5487           (insert "Content-Type: text/plain; charset=us-ascii\n"))))))
5488
5489 (defun message-read-from-minibuffer (prompt &optional initial-contents)
5490   "Read from the minibuffer while providing abbrev expansion."
5491   (if (fboundp 'mail-abbrevs-setup)
5492       (let ((mail-abbrev-mode-regexp "")
5493             (minibuffer-setup-hook 'mail-abbrevs-setup)
5494             (minibuffer-local-map message-minibuffer-local-map))
5495         (read-from-minibuffer prompt initial-contents))
5496     (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)
5497           (minibuffer-local-map message-minibuffer-local-map))
5498       (read-string prompt initial-contents))))
5499
5500 (defun message-use-alternative-email-as-from ()
5501   (require 'mail-utils)
5502   (let* ((fields '("To" "Cc"))
5503          (emails
5504           (split-string
5505            (mail-strip-quoted-names
5506             (mapconcat 'message-fetch-reply-field fields ","))
5507            "[ \f\t\n\r\v,]+"))
5508          email)
5509     (while emails
5510       (if (string-match message-alternative-emails (car emails))
5511           (setq email (car emails)
5512                 emails nil))
5513       (pop emails))
5514     (unless (or (not email) (equal email user-mail-address))
5515       (goto-char (point-max))
5516       (insert "From: " email "\n"))))
5517
5518 (defun message-options-get (symbol)
5519   (cdr (assq symbol message-options)))
5520
5521 (defun message-options-set (symbol value)
5522   (let ((the-cons (assq symbol message-options)))
5523     (if the-cons
5524         (if value
5525             (setcdr the-cons value)
5526           (setq message-options (delq the-cons message-options)))
5527       (and value
5528            (push (cons symbol value) message-options))))
5529   value)
5530
5531 (defun message-options-set-recipient ()
5532   (save-restriction
5533     (message-narrow-to-headers-or-head)
5534     (message-options-set 'message-sender
5535                          (mail-strip-quoted-names
5536                           (message-fetch-field "from")))
5537     (message-options-set 'message-recipients
5538                          (mail-strip-quoted-names
5539                           (let ((to (message-fetch-field "to"))
5540                                 (cc (message-fetch-field "cc"))
5541                                 (bcc (message-fetch-field "bcc")))
5542                             (concat
5543                              (or to "")
5544                              (if (and to cc) ", ")
5545                              (or cc "")
5546                              (if (and (or to cc) bcc) ", ")
5547                              (or bcc "")))))))
5548
5549 (when (featurep 'xemacs)
5550   (require 'messagexmas)
5551   (message-xmas-redefine))
5552
5553 (provide 'message)
5554
5555 (run-hooks 'message-load-hook)
5556
5557 ;; Local Variables:
5558 ;; coding: iso-8859-1
5559 ;; End:
5560
5561 ;;; message.el ends here