(message-shorten-references): Be more strict when building list of
[gnus] / lisp / message.el
1 ;;; message.el --- composing mail and news messages
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: mail, news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; This mode provides mail-sending facilities from within Emacs.  It
29 ;; consists mainly of large chunks of code from the sendmail.el,
30 ;; gnus-msg.el and rnewspost.el files.
31
32 ;;; Code:
33
34 (eval-and-compile
35   (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
36 (eval-when-compile
37   (require 'cl))
38
39 (require 'hashcash)
40 (require 'canlock)
41 (require 'mailheader)
42 (require 'gmm-utils)
43 (require 'nnheader)
44 ;; This is apparently necessary even though things are autoloaded.
45 ;; Because we dynamically bind mail-abbrev-mode-regexp, we'd better
46 ;; require mailabbrev here.
47 (if (featurep 'xemacs)
48     (require 'mail-abbrevs)
49   (require 'mailabbrev))
50 (require 'mail-parse)
51 (require 'mml)
52 (require 'rfc822)
53 (require 'ecomplete)
54
55 (autoload 'mailclient-send-it "mailclient") ;; Emacs 22 or contrib/
56
57 (defvar gnus-message-group-art)
58 (defvar gnus-list-identifiers) ; gnus-sum is required where necessary
59 (defvar rmail-enable-mime-composing)
60
61 (defgroup message '((user-mail-address custom-variable)
62                     (user-full-name custom-variable))
63   "Mail and news message composing."
64   :link '(custom-manual "(message)Top")
65   :group 'mail
66   :group 'news)
67
68 (put 'user-mail-address 'custom-type 'string)
69 (put 'user-full-name 'custom-type 'string)
70
71 (defgroup message-various nil
72   "Various Message Variables."
73   :link '(custom-manual "(message)Various Message Variables")
74   :group 'message)
75
76 (defgroup message-buffers nil
77   "Message Buffers."
78   :link '(custom-manual "(message)Message Buffers")
79   :group 'message)
80
81 (defgroup message-sending nil
82   "Message Sending."
83   :link '(custom-manual "(message)Sending Variables")
84   :group 'message)
85
86 (defgroup message-interface nil
87   "Message Interface."
88   :link '(custom-manual "(message)Interface")
89   :group 'message)
90
91 (defgroup message-forwarding nil
92   "Message Forwarding."
93   :link '(custom-manual "(message)Forwarding")
94   :group 'message-interface)
95
96 (defgroup message-insertion nil
97   "Message Insertion."
98   :link '(custom-manual "(message)Insertion")
99   :group 'message)
100
101 (defgroup message-headers nil
102   "Message Headers."
103   :link '(custom-manual "(message)Message Headers")
104   :group 'message)
105
106 (defgroup message-news nil
107   "Composing News Messages."
108   :group 'message)
109
110 (defgroup message-mail nil
111   "Composing Mail Messages."
112   :group 'message)
113
114 (defgroup message-faces nil
115   "Faces used for message composing."
116   :group 'message
117   :group 'faces)
118
119 (defcustom message-directory "~/Mail/"
120   "*Directory from which all other mail file variables are derived."
121   :group 'message-various
122   :type 'directory)
123
124 (defcustom message-max-buffers 10
125   "*How many buffers to keep before starting to kill them off."
126   :group 'message-buffers
127   :type 'integer)
128
129 (defcustom message-send-rename-function nil
130   "Function called to rename the buffer after sending it."
131   :group 'message-buffers
132   :type '(choice function (const nil)))
133
134 (defcustom message-fcc-handler-function 'message-output
135   "*A function called to save outgoing articles.
136 This function will be called with the name of the file to store the
137 article in.  The default function is `message-output' which saves in Unix
138 mailbox format."
139   :type '(radio (function-item message-output)
140                 (function :tag "Other"))
141   :group 'message-sending)
142
143 (defcustom message-fcc-externalize-attachments nil
144   "If non-nil, attachments are included as external parts in Fcc copies."
145   :version "22.1"
146   :type 'boolean
147   :group 'message-sending)
148
149 (defcustom message-courtesy-message
150   "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
151   "*This is inserted at the start of a mailed copy of a posted message.
152 If the string contains the format spec \"%s\", the Newsgroups
153 the article has been posted to will be inserted there.
154 If this variable is nil, no such courtesy message will be added."
155   :group 'message-sending
156   :type '(radio string (const nil)))
157
158 (defcustom message-ignored-bounced-headers
159   "^\\(Received\\|Return-Path\\|Delivered-To\\):"
160   "*Regexp that matches headers to be removed in resent bounced mail."
161   :group 'message-interface
162   :type 'regexp)
163
164 (defcustom message-from-style 'default
165   "*Specifies how \"From\" headers look.
166
167 If nil, they contain just the return address like:
168         king@grassland.com
169 If `parens', they look like:
170         king@grassland.com (Elvis Parsley)
171 If `angles', they look like:
172         Elvis Parsley <king@grassland.com>
173
174 Otherwise, most addresses look like `angles', but they look like
175 `parens' if `angles' would need quoting and `parens' would not."
176   :type '(choice (const :tag "simple" nil)
177                  (const parens)
178                  (const angles)
179                  (const default))
180   :group 'message-headers)
181
182 (defcustom message-insert-canlock t
183   "Whether to insert a Cancel-Lock header in news postings."
184   :version "22.1"
185   :group 'message-headers
186   :type 'boolean)
187
188 (defcustom message-syntax-checks
189   (if message-insert-canlock '((sender . disabled)) nil)
190   ;; Guess this one shouldn't be easy to customize...
191   "*Controls what syntax checks should not be performed on outgoing posts.
192 To disable checking of long signatures, for instance, add
193  `(signature . disabled)' to this list.
194
195 Don't touch this variable unless you really know what you're doing.
196
197 Checks include `approved', `bogus-recipient', `continuation-headers',
198 `control-chars', `empty', `existing-newsgroups', `from', `illegible-text',
199 `invisible-text', `long-header-lines', `long-lines', `message-id',
200 `multiple-headers', `new-text', `newsgroups', `quoting-style',
201 `repeated-newsgroups', `reply-to', `sender', `sendsys', `shoot',
202 `shorten-followup-to', `signature', `size', `subject', `subject-cmsg'
203 and `valid-newsgroups'."
204   :group 'message-news
205   :type '(repeat sexp))                 ; Fixme: improve this
206
207 (defcustom message-required-headers '((optional . References)
208                                       From)
209   "*Headers to be generated or prompted for when sending a message.
210 Also see `message-required-news-headers' and
211 `message-required-mail-headers'."
212   :version "22.1"
213   :group 'message-news
214   :group 'message-headers
215   :link '(custom-manual "(message)Message Headers")
216   :type '(repeat sexp))
217
218 (defcustom message-draft-headers '(References From Date)
219   "*Headers to be generated when saving a draft message."
220   :version "22.1"
221   :group 'message-news
222   :group 'message-headers
223   :link '(custom-manual "(message)Message Headers")
224   :type '(repeat sexp))
225
226 (defcustom message-required-news-headers
227   '(From Newsgroups Subject Date Message-ID
228          (optional . Organization)
229          (optional . User-Agent))
230   "*Headers to be generated or prompted for when posting an article.
231 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
232 Message-ID.  Organization, Lines, In-Reply-To, Expires, and
233 User-Agent are optional.  If you don't want message to insert some
234 header, remove it from this list."
235   :group 'message-news
236   :group 'message-headers
237   :link '(custom-manual "(message)Message Headers")
238   :type '(repeat sexp))
239
240 (defcustom message-required-mail-headers
241   '(From Subject Date (optional . In-Reply-To) Message-ID
242          (optional . User-Agent))
243   "*Headers to be generated or prompted for when mailing a message.
244 It is recommended that From, Date, To, Subject and Message-ID be
245 included.  Organization and User-Agent are optional."
246   :group 'message-mail
247   :group 'message-headers
248   :link '(custom-manual "(message)Message Headers")
249   :type '(repeat sexp))
250
251 (defcustom message-deletable-headers '(Message-ID Date Lines)
252   "Headers to be deleted if they already exist and were generated by message previously."
253   :group 'message-headers
254   :link '(custom-manual "(message)Message Headers")
255   :type 'sexp)
256
257 (defcustom message-ignored-news-headers
258   "^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
259   "*Regexp of headers to be removed unconditionally before posting."
260   :group 'message-news
261   :group 'message-headers
262   :link '(custom-manual "(message)Message Headers")
263   :type '(repeat :value-to-internal (lambda (widget value)
264                                       (custom-split-regexp-maybe value))
265                  :match (lambda (widget value)
266                           (or (stringp value)
267                               (widget-editable-list-match widget value)))
268                  regexp))
269
270 (defcustom message-ignored-mail-headers
271   "^[GF]cc:\\|^Resent-Fcc:\\|^Xref:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
272   "*Regexp of headers to be removed unconditionally before mailing."
273   :group 'message-mail
274   :group 'message-headers
275   :link '(custom-manual "(message)Mail Headers")
276   :type 'regexp)
277
278 (defcustom message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|^X-Trace:\\|^X-ID:\\|^X-Complaints-To:\\|Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|^X-Complaints-To:\\|^Cancel-Lock:\\|^Cancel-Key:\\|^X-Hashcash:\\|^X-Payment:\\|^Approved:"
279   "*Header lines matching this regexp will be deleted before posting.
280 It's best to delete old Path and Date headers before posting to avoid
281 any confusion."
282   :group 'message-interface
283   :link '(custom-manual "(message)Superseding")
284   :type '(repeat :value-to-internal (lambda (widget value)
285                                       (custom-split-regexp-maybe value))
286                  :match (lambda (widget value)
287                           (or (stringp value)
288                               (widget-editable-list-match widget value)))
289                  regexp))
290
291 (defcustom message-subject-re-regexp
292   "^[ \t]*\\([Rr][Ee]\\(\\[[0-9]*\\]\\)*:[ \t]*\\)*[ \t]*"
293   "*Regexp matching \"Re: \" in the subject line."
294   :group 'message-various
295   :link '(custom-manual "(message)Message Headers")
296   :type 'regexp)
297
298 ;;; Start of variables adopted from `message-utils.el'.
299
300 (defcustom message-subject-trailing-was-query 'ask
301   "*What to do with trailing \"(was: <old subject>)\" in subject lines.
302 If nil, leave the subject unchanged.  If it is the symbol `ask', query
303 the user what do do.  In this case, the subject is matched against
304 `message-subject-trailing-was-ask-regexp'.  If
305 `message-subject-trailing-was-query' is t, always strip the trailing
306 old subject.  In this case, `message-subject-trailing-was-regexp' is
307 used."
308   :version "22.1"
309   :type '(choice (const :tag "never" nil)
310                  (const :tag "always strip" t)
311                  (const ask))
312   :link '(custom-manual "(message)Message Headers")
313   :group 'message-various)
314
315 (defcustom message-subject-trailing-was-ask-regexp
316   "[ \t]*\\([[(]+[Ww][Aa][Ss][ \t]*.*[\])]+\\)"
317   "*Regexp matching \"(was: <old subject>)\" in the subject line.
318
319 The function `message-strip-subject-trailing-was' uses this regexp if
320 `message-subject-trailing-was-query' is set to the symbol `ask'.  If
321 the variable is t instead of `ask', use
322 `message-subject-trailing-was-regexp' instead.
323
324 It is okay to create some false positives here, as the user is asked."
325   :version "22.1"
326   :group 'message-various
327   :link '(custom-manual "(message)Message Headers")
328   :type 'regexp)
329
330 (defcustom message-subject-trailing-was-regexp
331   "[ \t]*\\((*[Ww][Aa][Ss]:[ \t]*.*)\\)"
332   "*Regexp matching \"(was: <old subject>)\" in the subject line.
333
334 If `message-subject-trailing-was-query' is set to t, the subject is
335 matched against `message-subject-trailing-was-regexp' in
336 `message-strip-subject-trailing-was'.  You should use a regexp creating very
337 few false positives here."
338   :version "22.1"
339   :group 'message-various
340   :link '(custom-manual "(message)Message Headers")
341   :type 'regexp)
342
343 ;;; marking inserted text
344
345 (defcustom message-mark-insert-begin
346   "--8<---------------cut here---------------start------------->8---\n"
347   "How to mark the beginning of some inserted text."
348   :version "22.1"
349   :type 'string
350   :link '(custom-manual "(message)Insertion Variables")
351   :group 'message-various)
352
353 (defcustom message-mark-insert-end
354   "--8<---------------cut here---------------end--------------->8---\n"
355   "How to mark the end of some inserted text."
356   :version "22.1"
357   :type 'string
358   :link '(custom-manual "(message)Insertion Variables")
359   :group 'message-various)
360
361 (defcustom message-archive-header "X-No-Archive: Yes\n"
362   "Header to insert when you don't want your article to be archived.
363 Archives \(such as groups.google.com\) respect this header."
364   :version "22.1"
365   :type 'string
366   :link '(custom-manual "(message)Header Commands")
367   :group 'message-various)
368
369 (defcustom message-archive-note
370   "X-No-Archive: Yes - save http://groups.google.com/"
371   "Note to insert why you wouldn't want this posting archived.
372 If nil, don't insert any text in the body."
373   :version "22.1"
374   :type '(radio string (const nil))
375   :link '(custom-manual "(message)Header Commands")
376   :group 'message-various)
377
378 ;;; Crossposts and Followups
379 ;; inspired by JoH-followup-to by Jochem Huhman <joh  at gmx.de>
380 ;; new suggestions by R. Weikusat <rw at another.de>
381
382 (defvar message-cross-post-old-target nil
383   "Old target for cross-posts or follow-ups.")
384 (make-variable-buffer-local 'message-cross-post-old-target)
385
386 (defcustom message-cross-post-default t
387   "When non-nil `message-cross-post-followup-to' will perform a crosspost.
388 If nil, `message-cross-post-followup-to' will only do a followup.  Note that
389 you can explicitly override this setting by calling
390 `message-cross-post-followup-to' with a prefix."
391   :version "22.1"
392   :type 'boolean
393   :group 'message-various)
394
395 (defcustom message-cross-post-note "Crosspost & Followup-To: "
396   "Note to insert before signature to notify of cross-post and follow-up."
397   :version "22.1"
398   :type 'string
399   :group 'message-various)
400
401 (defcustom message-followup-to-note "Followup-To: "
402   "Note to insert before signature to notify of follow-up only."
403   :version "22.1"
404   :type 'string
405   :group 'message-various)
406
407 (defcustom message-cross-post-note-function 'message-cross-post-insert-note
408   "Function to use to insert note about Crosspost or Followup-To.
409 The function will be called with four arguments.  The function should not only
410 insert a note, but also ensure old notes are deleted.  See the documentation
411 for `message-cross-post-insert-note'."
412   :version "22.1"
413   :type 'function
414   :group 'message-various)
415
416 ;;; End of variables adopted from `message-utils.el'.
417
418 (defcustom message-signature-separator "^-- *$"
419   "Regexp matching the signature separator."
420   :type 'regexp
421   :link '(custom-manual "(message)Various Message Variables")
422   :group 'message-various)
423
424 (defcustom message-elide-ellipsis "\n[...]\n\n"
425   "*The string which is inserted for elided text."
426   :type 'string
427   :link '(custom-manual "(message)Various Commands")
428   :group 'message-various)
429
430 (defcustom message-interactive t
431   "Non-nil means when sending a message wait for and display errors.
432 nil means let mailer mail back a message to report errors."
433   :group 'message-sending
434   :group 'message-mail
435   :link '(custom-manual "(message)Sending Variables")
436   :type 'boolean)
437
438 (defcustom message-generate-new-buffers 'unique
439   "*Say whether to create a new message buffer to compose a message.
440 Valid values include:
441
442 nil
443   Generate the buffer name in the Message way (e.g., *mail*, *news*,
444   *mail to whom*, *news on group*, etc.) and continue editing in the
445   existing buffer of that name.  If there is no such buffer, it will
446   be newly created.
447
448 `unique' or t
449   Create the new buffer with the name generated in the Message way.
450
451 `unsent'
452   Similar to `unique' but the buffer name begins with \"*unsent \".
453
454 `standard'
455   Similar to nil but the buffer name is simpler like *mail message*.
456
457 function
458   If this is a function, call that function with three parameters:
459   The type, the To address and the group name (any of these may be nil).
460   The function should return the new buffer name."
461   :group 'message-buffers
462   :link '(custom-manual "(message)Message Buffers")
463   :type '(choice (const nil)
464                  (sexp :tag "unique" :format "unique\n" :value unique
465                        :match (lambda (widget value) (memq value '(unique t))))
466                  (const unsent)
467                  (const standard)
468                  (function :format "\n    %{%t%}: %v")))
469
470 (defcustom message-kill-buffer-on-exit nil
471   "*Non-nil means that the message buffer will be killed after sending a message."
472   :group 'message-buffers
473   :link '(custom-manual "(message)Message Buffers")
474   :type 'boolean)
475
476 (defcustom message-kill-buffer-query t
477   "*Non-nil means that killing a modified message buffer has to be confirmed.
478 This is used by `message-kill-buffer'."
479   :version "23.1" ;; No Gnus
480   :group 'message-buffers
481   :type 'boolean)
482
483 (defvar gnus-local-organization)
484 (defcustom message-user-organization
485   (or (and (boundp 'gnus-local-organization)
486            (stringp gnus-local-organization)
487            gnus-local-organization)
488       (getenv "ORGANIZATION")
489       t)
490   "*String to be used as an Organization header.
491 If t, use `message-user-organization-file'."
492   :group 'message-headers
493   :type '(choice string
494                  (const :tag "consult file" t)))
495
496 (defcustom message-user-organization-file
497   (let (orgfile)
498     (dolist (f (list "/etc/organization"
499                      "/etc/news/organization"
500                      "/usr/lib/news/organization"))
501       (when (file-readable-p f)
502         (setq orgfile f)))
503     orgfile)
504   "*Local news organization file."
505   :type 'file
506   :link '(custom-manual "(message)News Headers")
507   :group 'message-headers)
508
509 (defcustom message-make-forward-subject-function
510   #'message-forward-subject-name-subject
511   "*List of functions called to generate subject headers for forwarded messages.
512 The subject generated by the previous function is passed into each
513 successive function.
514
515 The provided functions are:
516
517 * `message-forward-subject-author-subject' Source of article (author or
518       newsgroup), in brackets followed by the subject
519 * `message-forward-subject-name-subject' Source of article (name of author
520       or newsgroup), in brackets followed by the subject
521 * `message-forward-subject-fwd' Subject of article with 'Fwd:' prepended
522       to it."
523   :group 'message-forwarding
524   :link '(custom-manual "(message)Forwarding")
525   :type '(radio (function-item message-forward-subject-author-subject)
526                 (function-item message-forward-subject-fwd)
527                 (function-item message-forward-subject-name-subject)
528                 (repeat :tag "List of functions" function)))
529
530 (defcustom message-forward-as-mime t
531   "*Non-nil means forward messages as an inline/rfc822 MIME section.
532 Otherwise, directly inline the old message in the forwarded message."
533   :version "21.1"
534   :group 'message-forwarding
535   :link '(custom-manual "(message)Forwarding")
536   :type 'boolean)
537
538 (defcustom message-forward-show-mml 'best
539   "*Non-nil means show forwarded messages as MML (decoded from MIME).
540 Otherwise, forwarded messages are unchanged.
541 Can also be the symbol `best' to indicate that MML should be
542 used, except when it is a bad idea to use MML.  One example where
543 it is a bad idea is when forwarding a signed or encrypted
544 message, because converting MIME to MML would invalidate the
545 digital signature."
546   :version "21.1"
547   :group 'message-forwarding
548   :type '(choice (const :tag "use MML" t)
549                  (const :tag "don't use MML " nil)
550                  (const :tag "use MML when appropriate" best)))
551
552 (defcustom message-forward-before-signature t
553   "*Non-nil means put forwarded message before signature, else after."
554   :group 'message-forwarding
555   :type 'boolean)
556
557 (defcustom message-wash-forwarded-subjects nil
558   "*Non-nil means try to remove as much cruft as possible from the subject.
559 Done before generating the new subject of a forward."
560   :group 'message-forwarding
561   :link '(custom-manual "(message)Forwarding")
562   :type 'boolean)
563
564 (defcustom message-ignored-resent-headers "^Return-receipt\\|^X-Gnus\\|^Gnus-Warning:\\|^>?From "
565   "*All headers that match this regexp will be deleted when resending a message."
566   :group 'message-interface
567   :link '(custom-manual "(message)Resending")
568   :type '(repeat :value-to-internal (lambda (widget value)
569                                       (custom-split-regexp-maybe value))
570                  :match (lambda (widget value)
571                           (or (stringp value)
572                               (widget-editable-list-match widget value)))
573                  regexp))
574
575 (defcustom message-forward-ignored-headers "^Content-Transfer-Encoding:\\|^X-Gnus"
576   "*All headers that match this regexp will be deleted when forwarding a message."
577   :version "21.1"
578   :group 'message-forwarding
579   :type '(repeat :value-to-internal (lambda (widget value)
580                                       (custom-split-regexp-maybe value))
581                  :match (lambda (widget value)
582                           (or (stringp value)
583                               (widget-editable-list-match widget value)))
584                  regexp))
585
586 (defcustom message-ignored-cited-headers "."
587   "*Delete these headers from the messages you yank."
588   :group 'message-insertion
589   :link '(custom-manual "(message)Insertion Variables")
590   :type 'regexp)
591
592 (defcustom message-cite-prefix-regexp
593   (if (string-match "[[:digit:]]" "1")
594       ;; Support POSIX?  XEmacs 21.5.27 doesn't.
595       "\\([ \t]*[_.[:word:]]+>+\\|[ \t]*[]>|}]\\)+"
596     ;; ?-, ?_ or ?. MUST NOT be in syntax entry w.
597     (let (non-word-constituents)
598       (with-syntax-table text-mode-syntax-table
599         (setq non-word-constituents
600               (concat
601                (if (string-match "\\w" "_")  "" "_")
602                (if (string-match "\\w" ".")  "" "."))))
603       (if (equal non-word-constituents "")
604           "\\([ \t]*\\(\\w\\)+>+\\|[ \t]*[]>|}]\\)+"
605         (concat "\\([ \t]*\\(\\w\\|["
606                 non-word-constituents
607                 "]\\)+>+\\|[ \t]*[]>|}]\\)+"))))
608   "*Regexp matching the longest possible citation prefix on a line."
609   :version "22.1"
610   :group 'message-insertion
611   :link '(custom-manual "(message)Insertion Variables")
612   :type 'regexp
613   :set (lambda (symbol value)
614          (prog1
615              (custom-set-default symbol value)
616            (if (boundp 'gnus-message-cite-prefix-regexp)
617                (setq gnus-message-cite-prefix-regexp
618                      (concat "^\\(?:" value "\\)"))))))
619
620 (defcustom message-cancel-message "I am canceling my own article.\n"
621   "Message to be inserted in the cancel message."
622   :group 'message-interface
623   :link '(custom-manual "(message)Canceling News")
624   :type 'string)
625
626 (defvar smtpmail-default-smtp-server)
627
628 (defun message-send-mail-function ()
629   "Return suitable value for the variable `message-send-mail-function'."
630   (cond ((and (require 'sendmail)
631               (boundp 'sendmail-program)
632               sendmail-program
633               (executable-find sendmail-program))
634          'message-send-mail-with-sendmail)
635         ((and (locate-library "smtpmail")
636               (require 'smtpmail)
637               smtpmail-default-smtp-server)
638          'message-smtpmail-send-it)
639         ((locate-library "mailclient")
640          'message-send-mail-with-mailclient)
641         (t
642          (lambda ()
643            (error "Don't know how to send mail.  Please customize `message-send-mail-function'")))))
644
645 ;; Useful to set in site-init.el
646 (defcustom message-send-mail-function (message-send-mail-function)
647   "Function to call to send the current buffer as mail.
648 The headers should be delimited by a line whose contents match the
649 variable `mail-header-separator'.
650
651 Valid values include `message-send-mail-with-sendmail'
652 `message-send-mail-with-mh', `message-send-mail-with-qmail',
653 `message-smtpmail-send-it', `smtpmail-send-it',
654 `feedmail-send-it' and `message-send-mail-with-mailclient'.  The
655 default is system dependent and determined by the function
656 `message-send-mail-function'.
657
658 See also `send-mail-function'."
659   :type '(radio (function-item message-send-mail-with-sendmail)
660                 (function-item message-send-mail-with-mh)
661                 (function-item message-send-mail-with-qmail)
662                 (function-item message-smtpmail-send-it)
663                 (function-item smtpmail-send-it)
664                 (function-item feedmail-send-it)
665                 (function-item message-send-mail-with-mailclient
666                                :tag "Use Mailclient package")
667                 (function :tag "Other"))
668   :group 'message-sending
669   :version "23.1" ;; No Gnus
670   :initialize 'custom-initialize-default
671   :link '(custom-manual "(message)Mail Variables")
672   :group 'message-mail)
673
674 (defcustom message-send-news-function 'message-send-news
675   "Function to call to send the current buffer as news.
676 The headers should be delimited by a line whose contents match the
677 variable `mail-header-separator'."
678   :group 'message-sending
679   :group 'message-news
680   :link '(custom-manual "(message)News Variables")
681   :type 'function)
682
683 (defcustom message-reply-to-function nil
684   "If non-nil, function that should return a list of headers.
685 This function should pick out addresses from the To, Cc, and From headers
686 and respond with new To and Cc headers."
687   :group 'message-interface
688   :link '(custom-manual "(message)Reply")
689   :type '(choice function (const nil)))
690
691 (defcustom message-wide-reply-to-function nil
692   "If non-nil, function that should return a list of headers.
693 This function should pick out addresses from the To, Cc, and From headers
694 and respond with new To and Cc headers."
695   :group 'message-interface
696   :link '(custom-manual "(message)Wide Reply")
697   :type '(choice function (const nil)))
698
699 (defcustom message-followup-to-function nil
700   "If non-nil, function that should return a list of headers.
701 This function should pick out addresses from the To, Cc, and From headers
702 and respond with new To and Cc headers."
703   :group 'message-interface
704   :link '(custom-manual "(message)Followup")
705   :type '(choice function (const nil)))
706
707 (defcustom message-extra-wide-headers nil
708   "If non-nil, a list of additional address headers.
709 These are used when composing a wide reply."
710   :group 'message-sending
711   :type '(repeat string))
712
713 (defcustom message-use-followup-to 'ask
714   "*Specifies what to do with Followup-To header.
715 If nil, always ignore the header.  If it is t, use its value, but
716 query before using the \"poster\" value.  If it is the symbol `ask',
717 always query the user whether to use the value.  If it is the symbol
718 `use', always use the value."
719   :group 'message-interface
720   :link '(custom-manual "(message)Followup")
721   :type '(choice (const :tag "ignore" nil)
722                  (const :tag "use & query" t)
723                  (const use)
724                  (const ask)))
725
726 (defcustom message-use-mail-followup-to 'use
727   "*Specifies what to do with Mail-Followup-To header.
728 If nil, always ignore the header.  If it is the symbol `ask', always
729 query the user whether to use the value.  If it is the symbol `use',
730 always use the value."
731   :version "22.1"
732   :group 'message-interface
733   :link '(custom-manual "(message)Mailing Lists")
734   :type '(choice (const :tag "ignore" nil)
735                  (const use)
736                  (const ask)))
737
738 (defcustom message-subscribed-address-functions nil
739   "*Specifies functions for determining list subscription.
740 If nil, do not attempt to determine list subscription with functions.
741 If non-nil, this variable contains a list of functions which return
742 regular expressions to match lists.  These functions can be used in
743 conjunction with `message-subscribed-regexps' and
744 `message-subscribed-addresses'."
745   :version "22.1"
746   :group 'message-interface
747   :link '(custom-manual "(message)Mailing Lists")
748   :type '(repeat sexp))
749
750 (defcustom message-subscribed-address-file nil
751   "*A file containing addresses the user is subscribed to.
752 If nil, do not look at any files to determine list subscriptions.  If
753 non-nil, each line of this file should be a mailing list address."
754   :version "22.1"
755   :group 'message-interface
756   :link '(custom-manual "(message)Mailing Lists")
757   :type '(radio file (const nil)))
758
759 (defcustom message-subscribed-addresses nil
760   "*Specifies a list of addresses the user is subscribed to.
761 If nil, do not use any predefined list subscriptions.  This list of
762 addresses can be used in conjunction with
763 `message-subscribed-address-functions' and `message-subscribed-regexps'."
764   :version "22.1"
765   :group 'message-interface
766   :link '(custom-manual "(message)Mailing Lists")
767   :type '(repeat string))
768
769 (defcustom message-subscribed-regexps nil
770   "*Specifies a list of addresses the user is subscribed to.
771 If nil, do not use any predefined list subscriptions.  This list of
772 regular expressions can be used in conjunction with
773 `message-subscribed-address-functions' and `message-subscribed-addresses'."
774   :version "22.1"
775   :group 'message-interface
776   :link '(custom-manual "(message)Mailing Lists")
777   :type '(repeat regexp))
778
779 (defcustom message-allow-no-recipients 'ask
780   "Specifies what to do when there are no recipients other than Gcc/Fcc.
781 If it is the symbol `always', the posting is allowed.  If it is the
782 symbol `never', the posting is not allowed.  If it is the symbol
783 `ask', you are prompted."
784   :version "22.1"
785   :group 'message-interface
786   :link '(custom-manual "(message)Message Headers")
787   :type '(choice (const always)
788                  (const never)
789                  (const ask)))
790
791 (defcustom message-sendmail-f-is-evil nil
792   "*Non-nil means don't add \"-f username\" to the sendmail command line.
793 Doing so would be even more evil than leaving it out."
794   :group 'message-sending
795   :link '(custom-manual "(message)Mail Variables")
796   :type 'boolean)
797
798 (defcustom message-sendmail-envelope-from nil
799   "*Envelope-from when sending mail with sendmail.
800 If this is nil, use `user-mail-address'.  If it is the symbol
801 `header', use the From: header of the message."
802   :version "22.1"
803   :type '(choice (string :tag "From name")
804                  (const :tag "Use From: header from message" header)
805                  (const :tag "Use `user-mail-address'" nil))
806   :link '(custom-manual "(message)Mail Variables")
807   :group 'message-sending)
808
809 (defcustom message-sendmail-extra-arguments nil
810   "Additional arguments to `sendmail-program'."
811   ;; E.g. '("-a" "account") for msmtp
812   :version "23.1" ;; No Gnus
813   :type '(repeat string)
814   ;; :link '(custom-manual "(message)Mail Variables")
815   :group 'message-sending)
816
817 ;; qmail-related stuff
818 (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject"
819   "Location of the qmail-inject program."
820   :group 'message-sending
821   :link '(custom-manual "(message)Mail Variables")
822   :type 'file)
823
824 (defcustom message-qmail-inject-args nil
825   "Arguments passed to qmail-inject programs.
826 This should be a list of strings, one string for each argument.  It
827 may also be a function.
828
829 For e.g., if you wish to set the envelope sender address so that bounces
830 go to the right place or to deal with listserv's usage of that address, you
831 might set this variable to '(\"-f\" \"you@some.where\")."
832   :group 'message-sending
833   :link '(custom-manual "(message)Mail Variables")
834   :type '(choice (function)
835                  (repeat string)))
836
837 (defvar gnus-post-method)
838 (defvar gnus-select-method)
839 (defcustom message-post-method
840   (cond ((and (boundp 'gnus-post-method)
841               (listp gnus-post-method)
842               gnus-post-method)
843          gnus-post-method)
844         ((boundp 'gnus-select-method)
845          gnus-select-method)
846         (t '(nnspool "")))
847   "*Method used to post news.
848 Note that when posting from inside Gnus, for instance, this
849 variable isn't used."
850   :group 'message-news
851   :group 'message-sending
852   ;; This should be the `gnus-select-method' widget, but that might
853   ;; create a dependence to `gnus.el'.
854   :type 'sexp)
855
856 ;; FIXME: This should be a temporary workaround until someone implements a
857 ;; proper solution.  If a crash happens while replying, the auto-save file
858 ;; will *not* have a `References:' header if `message-generate-headers-first'
859 ;; is nil.  See: http://article.gmane.org/gmane.emacs.gnus.general/51138
860 (defcustom message-generate-headers-first '(references)
861   "Which headers should be generated before starting to compose a message.
862 If t, generate all required headers.  This can also be a list of headers to
863 generate.  The variables `message-required-news-headers' and
864 `message-required-mail-headers' specify which headers to generate.
865
866 Note that the variable `message-deletable-headers' specifies headers which
867 are to be deleted and then re-generated before sending, so this variable
868 will not have a visible effect for those headers."
869   :group 'message-headers
870   :link '(custom-manual "(message)Message Headers")
871   :type '(choice (const :tag "None" nil)
872                  (const :tag "References" '(references))
873                  (const :tag "All" t)
874                  (repeat (sexp :tag "Header"))))
875
876 (defcustom message-fill-column 72
877   "Column beyond which automatic line-wrapping should happen.
878 Local value for message buffers.  If non-nil, also turn on
879 auto-fill in message buffers."
880   :group 'message-various
881   ;; :link '(custom-manual "(message)Message Headers")
882   :type '(choice (const :tag "Don't turn on auto fill" nil)
883                  (integer)))
884
885 (defcustom message-setup-hook nil
886   "Normal hook, run each time a new outgoing message is initialized.
887 The function `message-setup' runs this hook."
888   :group 'message-various
889   :link '(custom-manual "(message)Various Message Variables")
890   :type 'hook)
891
892 (defcustom message-cancel-hook nil
893   "Hook run when cancelling articles."
894   :group 'message-various
895   :link '(custom-manual "(message)Various Message Variables")
896   :type 'hook)
897
898 (defcustom message-signature-setup-hook nil
899   "Normal hook, run each time a new outgoing message is initialized.
900 It is run after the headers have been inserted and before
901 the signature is inserted."
902   :group 'message-various
903   :link '(custom-manual "(message)Various Message Variables")
904   :type 'hook)
905
906 (defcustom message-mode-hook nil
907   "Hook run in message mode buffers."
908   :group 'message-various
909   :type 'hook)
910
911 (defcustom message-header-hook nil
912   "Hook run in a message mode buffer narrowed to the headers."
913   :group 'message-various
914   :type 'hook)
915
916 (defcustom message-header-setup-hook nil
917   "Hook called narrowed to the headers when setting up a message buffer."
918   :group 'message-various
919   :link '(custom-manual "(message)Various Message Variables")
920   :type 'hook)
921
922 (defcustom message-minibuffer-local-map
923   (let ((map (make-sparse-keymap 'message-minibuffer-local-map)))
924     (set-keymap-parent map minibuffer-local-map)
925     map)
926   "Keymap for `message-read-from-minibuffer'."
927   :version "22.1"
928   :group 'message-various)
929
930 (defcustom message-citation-line-function 'message-insert-citation-line
931   "*Function called to insert the \"Whomever writes:\" line.
932
933 Predefined functions include `message-insert-citation-line' and
934 `message-insert-formatted-citation-line' (see the variable
935 `message-citation-line-format').
936
937 Note that Gnus provides a feature where the reader can click on
938 `writes:' to hide the cited text.  If you change this line too much,
939 people who read your message will have to change their Gnus
940 configuration.  See the variable `gnus-cite-attribution-suffix'."
941   :type '(choice
942           (function-item :tag "plain" message-insert-citation-line)
943           (function-item :tag "formatted" message-insert-formatted-citation-line)
944           (function :tag "Other"))
945   :link '(custom-manual "(message)Insertion Variables")
946   :group 'message-insertion)
947
948 (defcustom message-citation-line-format "On %a, %b %d %Y, %N wrote:\n"
949   "Format of the \"Whomever writes:\" line.
950
951 The string is formatted using `format-spec'.  The following
952 constructs are replaced:
953
954   %f   The full From, e.g. \"John Doe <john.doe@example.invalid>\".
955   %n   The mail address, e.g. \"john.doe@example.invalid\".
956   %N   The real name if present, e.g.: \"John Doe\", else fall
957        back to the mail address.
958   %F   The first name if present, e.g.: \"John\".
959   %L   The last name if present, e.g.: \"Doe\".
960
961 All other format specifiers are passed to `format-time-string'
962 which is called using the date from the article your replying to.
963 Extracting the first (%F) and last name (%L) is done
964 heuristically, so you should always check it yourself.
965
966 Please also read the note in the documentation of
967 `message-citation-line-function'."
968   :type '(choice (const :tag "Plain" "%f writes:")
969                  (const :tag "Include date" "On %a, %b %d %Y, %n wrote:")
970                  string)
971   :link '(custom-manual "(message)Insertion Variables")
972   :version "23.1" ;; No Gnus
973   :group 'message-insertion)
974
975 (defcustom message-yank-prefix "> "
976   "*Prefix inserted on the lines of yanked messages.
977 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
978 See also `message-yank-cited-prefix' and `message-yank-empty-prefix'."
979   :type 'string
980   :link '(custom-manual "(message)Insertion Variables")
981   :group 'message-insertion)
982
983 (defcustom message-yank-cited-prefix ">"
984   "*Prefix inserted on cited lines of yanked messages.
985 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
986 See also `message-yank-prefix' and `message-yank-empty-prefix'."
987   :version "22.1"
988   :type 'string
989   :link '(custom-manual "(message)Insertion Variables")
990   :group 'message-insertion)
991
992 (defcustom message-yank-empty-prefix ">"
993   "*Prefix inserted on empty lines of yanked messages.
994 See also `message-yank-prefix' and `message-yank-cited-prefix'."
995   :version "22.1"
996   :type 'string
997   :link '(custom-manual "(message)Insertion Variables")
998   :group 'message-insertion)
999
1000 (defcustom message-indentation-spaces 3
1001   "*Number of spaces to insert at the beginning of each cited line.
1002 Used by `message-yank-original' via `message-yank-cite'."
1003   :group 'message-insertion
1004   :link '(custom-manual "(message)Insertion Variables")
1005   :type 'integer)
1006
1007 (defcustom message-cite-function 'message-cite-original
1008   "*Function for citing an original message.
1009 Predefined functions include `message-cite-original' and
1010 `message-cite-original-without-signature'.
1011 Note that these functions use `mail-citation-hook' if that is non-nil."
1012   :type '(radio (function-item message-cite-original)
1013                 (function-item message-cite-original-without-signature)
1014                 (function-item sc-cite-original)
1015                 (function :tag "Other"))
1016   :link '(custom-manual "(message)Insertion Variables")
1017   :group 'message-insertion)
1018
1019 (defcustom message-indent-citation-function 'message-indent-citation
1020   "*Function for modifying a citation just inserted in the mail buffer.
1021 This can also be a list of functions.  Each function can find the
1022 citation between (point) and (mark t).  And each function should leave
1023 point and mark around the citation text as modified."
1024   :type 'function
1025   :link '(custom-manual "(message)Insertion Variables")
1026   :group 'message-insertion)
1027
1028 (defcustom message-signature t
1029   "*String to be inserted at the end of the message buffer.
1030 If t, the `message-signature-file' file will be inserted instead.
1031 If a function, the result from the function will be used instead.
1032 If a form, the result from the form will be used instead."
1033   :type 'sexp
1034   :link '(custom-manual "(message)Insertion Variables")
1035   :group 'message-insertion)
1036
1037 (defcustom message-signature-file "~/.signature"
1038   "*Name of file containing the text inserted at end of message buffer.
1039 Ignored if the named file doesn't exist.
1040 If nil, don't insert a signature.
1041 If a path is specified, the value of `message-signature-directory' is ignored,
1042 even if set."
1043   :type '(choice file (const :tags "None" nil))
1044   :link '(custom-manual "(message)Insertion Variables")
1045   :group 'message-insertion)
1046
1047 (defcustom message-signature-directory nil
1048   "*Name of directory containing signature files.
1049 Comes in handy if you have many such files, handled via posting styles for
1050 instance.
1051 If nil, `message-signature-file' is expected to specify the directory if
1052 needed."
1053   :type '(choice string (const :tags "None" nil))
1054   :link '(custom-manual "(message)Insertion Variables")
1055   :group 'message-insertion)
1056
1057 (defcustom message-signature-insert-empty-line t
1058   "*If non-nil, insert an empty line before the signature separator."
1059   :version "22.1"
1060   :type 'boolean
1061   :link '(custom-manual "(message)Insertion Variables")
1062   :group 'message-insertion)
1063
1064 (defcustom message-distribution-function nil
1065   "*Function called to return a Distribution header."
1066   :group 'message-news
1067   :group 'message-headers
1068   :link '(custom-manual "(message)News Headers")
1069   :type '(choice function (const nil)))
1070
1071 (defcustom message-expires 14
1072   "Number of days before your article expires."
1073   :group 'message-news
1074   :group 'message-headers
1075   :link '(custom-manual "(message)News Headers")
1076   :type 'integer)
1077
1078 (defcustom message-user-path nil
1079   "If nil, use the NNTP server name in the Path header.
1080 If stringp, use this; if non-nil, use no host name (user name only)."
1081   :group 'message-news
1082   :group 'message-headers
1083   :link '(custom-manual "(message)News Headers")
1084   :type '(choice (const :tag "nntp" nil)
1085                  (string :tag "name")
1086                  (sexp :tag "none" :format "%t" t)))
1087
1088 (defvar message-reply-buffer nil)
1089 (defvar message-reply-headers nil
1090   "The headers of the current replied article.
1091 It is a vector of the following headers:
1092 \[number subject from date id references chars lines xref extra].")
1093 (defvar message-newsreader nil)
1094 (defvar message-mailer nil)
1095 (defvar message-sent-message-via nil)
1096 (defvar message-checksum nil)
1097 (defvar message-send-actions nil
1098   "A list of actions to be performed upon successful sending of a message.")
1099 (defvar message-exit-actions nil
1100   "A list of actions to be performed upon exiting after sending a message.")
1101 (defvar message-kill-actions nil
1102   "A list of actions to be performed before killing a message buffer.")
1103 (defvar message-postpone-actions nil
1104   "A list of actions to be performed after postponing a message.")
1105
1106 (define-widget 'message-header-lines 'text
1107   "All header lines must be LFD terminated."
1108   :format "%{%t%}:%n%v"
1109   :valid-regexp "^\\'"
1110   :error "All header lines must be newline terminated")
1111
1112 (defcustom message-default-headers ""
1113   "*A string containing header lines to be inserted in outgoing messages.
1114 It is inserted before you edit the message, so you can edit or delete
1115 these lines."
1116   :group 'message-headers
1117   :link '(custom-manual "(message)Message Headers")
1118   :type 'message-header-lines)
1119
1120 (defcustom message-default-mail-headers ""
1121   "*A string of header lines to be inserted in outgoing mails."
1122   :group 'message-headers
1123   :group 'message-mail
1124   :link '(custom-manual "(message)Mail Headers")
1125   :type 'message-header-lines)
1126
1127 (defcustom message-default-news-headers ""
1128   "*A string of header lines to be inserted in outgoing news articles."
1129   :group 'message-headers
1130   :group 'message-news
1131   :link '(custom-manual "(message)News Headers")
1132   :type 'message-header-lines)
1133
1134 ;; Note: could use /usr/ucb/mail instead of sendmail;
1135 ;; options -t, and -v if not interactive.
1136 (defcustom message-mailer-swallows-blank-line
1137   (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
1138                          system-configuration)
1139            (file-readable-p "/etc/sendmail.cf")
1140            (let ((buffer (get-buffer-create " *temp*")))
1141              (unwind-protect
1142                  (with-current-buffer buffer
1143                    (insert-file-contents "/etc/sendmail.cf")
1144                    (goto-char (point-min))
1145                    (let ((case-fold-search nil))
1146                      (re-search-forward "^OR\\>" nil t)))
1147                (kill-buffer buffer))))
1148       ;; According to RFC822, "The field-name must be composed of printable
1149       ;; ASCII characters (i. e., characters that have decimal values between
1150       ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
1151       ;; space, or colon.
1152       '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
1153   "*Set this non-nil if the system's mailer runs the header and body together.
1154 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
1155 The value should be an expression to test whether the problem will
1156 actually occur."
1157   :group 'message-sending
1158   :link '(custom-manual "(message)Mail Variables")
1159   :type 'sexp)
1160
1161 ;;;###autoload
1162 (define-mail-user-agent 'message-user-agent
1163   'message-mail 'message-send-and-exit
1164   'message-kill-buffer 'message-send-hook)
1165
1166 (defvar message-mh-deletable-headers '(Message-ID Date Lines Sender)
1167   "If non-nil, delete the deletable headers before feeding to mh.")
1168
1169 (defvar message-send-method-alist
1170   '((news message-news-p message-send-via-news)
1171     (mail message-mail-p message-send-via-mail))
1172   "Alist of ways to send outgoing messages.
1173 Each element has the form
1174
1175   \(TYPE PREDICATE FUNCTION)
1176
1177 where TYPE is a symbol that names the method; PREDICATE is a function
1178 called without any parameters to determine whether the message is
1179 a message of type TYPE; and FUNCTION is a function to be called if
1180 PREDICATE returns non-nil.  FUNCTION is called with one parameter --
1181 the prefix.")
1182
1183 (defcustom message-mail-alias-type 'abbrev
1184   "*What alias expansion type to use in Message buffers.
1185 The default is `abbrev', which uses mailabbrev.  `ecomplete' uses
1186 an electric completion mode.  nil switches mail aliases off.
1187 This can also be a list of values."
1188   :group 'message
1189   :link '(custom-manual "(message)Mail Aliases")
1190   :type '(choice (const :tag "Use Mailabbrev" abbrev)
1191                  (const :tag "Use ecomplete" ecomplete)
1192                  (const :tag "No expansion" nil)))
1193
1194 (defcustom message-self-insert-commands '(self-insert-command)
1195   "List of `self-insert-command's used to trigger ecomplete.
1196 When one of those commands is invoked to enter a character in To or Cc
1197 header, ecomplete will suggest the candidates of recipients (see also
1198 `message-mail-alias-type').  If you use some tool to enter non-ASCII
1199 text and it replaces `self-insert-command' with the other command, e.g.
1200 `egg-self-insert-command', you may want to add it to this list."
1201   :group 'message-various
1202   :type '(repeat function))
1203
1204 (defcustom message-auto-save-directory
1205   (file-name-as-directory (nnheader-concat message-directory "drafts"))
1206   "*Directory where Message auto-saves buffers if Gnus isn't running.
1207 If nil, Message won't auto-save."
1208   :group 'message-buffers
1209   :link '(custom-manual "(message)Various Message Variables")
1210   :type '(choice directory (const :tag "Don't auto-save" nil)))
1211
1212 (defcustom message-default-charset
1213   (and (not (mm-multibyte-p)) 'iso-8859-1)
1214   "Default charset used in non-MULE Emacsen.
1215 If nil, you might be asked to input the charset."
1216   :version "21.1"
1217   :group 'message
1218   :link '(custom-manual "(message)Various Message Variables")
1219   :type 'symbol)
1220
1221 (defcustom message-dont-reply-to-names
1222   (and (boundp 'rmail-dont-reply-to-names) rmail-dont-reply-to-names)
1223   "*Addresses to prune when doing wide replies.
1224 This can be a regexp or a list of regexps.  Also, a value of nil means
1225 exclude your own user name only."
1226   :version "21.1"
1227   :group 'message
1228   :link '(custom-manual "(message)Wide Reply")
1229   :type '(choice (const :tag "Yourself" nil)
1230                  regexp
1231                  (repeat :tag "Regexp List" regexp)))
1232
1233 (defsubst message-dont-reply-to-names ()
1234   (gmm-regexp-concat message-dont-reply-to-names))
1235
1236 (defvar message-shoot-gnksa-feet nil
1237   "*A list of GNKSA feet you are allowed to shoot.
1238 Gnus gives you all the opportunity you could possibly want for
1239 shooting yourself in the foot.  Also, Gnus allows you to shoot the
1240 feet of Good Net-Keeping Seal of Approval.  The following are foot
1241 candidates:
1242 `empty-article'     Allow you to post an empty article;
1243 `quoted-text-only'  Allow you to post quoted text only;
1244 `multiple-copies'   Allow you to post multiple copies;
1245 `cancel-messages'   Allow you to cancel or supersede messages from
1246                     your other email addresses.")
1247
1248 (defsubst message-gnksa-enable-p (feature)
1249   (or (not (listp message-shoot-gnksa-feet))
1250       (memq feature message-shoot-gnksa-feet)))
1251
1252 (defcustom message-hidden-headers '("^References:" "^Face:" "^X-Face:"
1253                                     "^X-Draft-From:")
1254   "Regexp of headers to be hidden when composing new messages.
1255 This can also be a list of regexps to match headers.  Or a list
1256 starting with `not' and followed by regexps."
1257   :version "22.1"
1258   :group 'message
1259   :link '(custom-manual "(message)Message Headers")
1260   :type '(choice
1261           :format "%{%t%}: %[Value Type%] %v"
1262           (regexp :menu-tag "regexp" :format "regexp\n%t: %v")
1263           (repeat :menu-tag "(regexp ...)" :format "(regexp ...)\n%v%i"
1264                   (regexp :format "%t: %v"))
1265           (cons :menu-tag "(not regexp ...)" :format "(not regexp ...)\n%v"
1266                 (const not)
1267                 (repeat :format "%v%i"
1268                         (regexp :format "%t: %v")))))
1269
1270 (defcustom message-cite-articles-with-x-no-archive t
1271   "If non-nil, cite text from articles that has X-No-Archive set."
1272   :group 'message
1273   :type 'boolean)
1274
1275 ;;; Internal variables.
1276 ;;; Well, not really internal.
1277
1278 (defvar message-mode-syntax-table
1279   (let ((table (copy-syntax-table text-mode-syntax-table)))
1280     (modify-syntax-entry ?% ". " table)
1281     (modify-syntax-entry ?> ". " table)
1282     (modify-syntax-entry ?< ". " table)
1283     table)
1284   "Syntax table used while in Message mode.")
1285
1286 (defface message-header-to
1287   '((((class color)
1288       (background dark))
1289      (:foreground "DarkOliveGreen1" :bold t))
1290     (((class color)
1291       (background light))
1292      (:foreground "MidnightBlue" :bold t))
1293     (t
1294      (:bold t :italic t)))
1295   "Face used for displaying From headers."
1296   :group 'message-faces)
1297 ;; backward-compatibility alias
1298 (put 'message-header-to-face 'face-alias 'message-header-to)
1299
1300 (defface message-header-cc
1301   '((((class color)
1302       (background dark))
1303      (:foreground "chartreuse1" :bold t))
1304     (((class color)
1305       (background light))
1306      (:foreground "MidnightBlue"))
1307     (t
1308      (:bold t)))
1309   "Face used for displaying Cc headers."
1310   :group 'message-faces)
1311 ;; backward-compatibility alias
1312 (put 'message-header-cc-face 'face-alias 'message-header-cc)
1313
1314 (defface message-header-subject
1315   '((((class color)
1316       (background dark))
1317      (:foreground "OliveDrab1"))
1318     (((class color)
1319       (background light))
1320      (:foreground "navy blue" :bold t))
1321     (t
1322      (:bold t)))
1323   "Face used for displaying subject headers."
1324   :group 'message-faces)
1325 ;; backward-compatibility alias
1326 (put 'message-header-subject-face 'face-alias 'message-header-subject)
1327
1328 (defface message-header-newsgroups
1329   '((((class color)
1330       (background dark))
1331      (:foreground "yellow" :bold t :italic t))
1332     (((class color)
1333       (background light))
1334      (:foreground "blue4" :bold t :italic t))
1335     (t
1336      (:bold t :italic t)))
1337   "Face used for displaying newsgroups headers."
1338   :group 'message-faces)
1339 ;; backward-compatibility alias
1340 (put 'message-header-newsgroups-face 'face-alias 'message-header-newsgroups)
1341
1342 (defface message-header-other
1343   '((((class color)
1344       (background dark))
1345      (:foreground "VioletRed1"))
1346     (((class color)
1347       (background light))
1348      (:foreground "steel blue"))
1349     (t
1350      (:bold t :italic t)))
1351   "Face used for displaying newsgroups headers."
1352   :group 'message-faces)
1353 ;; backward-compatibility alias
1354 (put 'message-header-other-face 'face-alias 'message-header-other)
1355
1356 (defface message-header-name
1357   '((((class color)
1358       (background dark))
1359      (:foreground "green"))
1360     (((class color)
1361       (background light))
1362      (:foreground "cornflower blue"))
1363     (t
1364      (:bold t)))
1365   "Face used for displaying header names."
1366   :group 'message-faces)
1367 ;; backward-compatibility alias
1368 (put 'message-header-name-face 'face-alias 'message-header-name)
1369
1370 (defface message-header-xheader
1371   '((((class color)
1372       (background dark))
1373      (:foreground "DeepSkyBlue1"))
1374     (((class color)
1375       (background light))
1376      (:foreground "blue"))
1377     (t
1378      (:bold t)))
1379   "Face used for displaying X-Header headers."
1380   :group 'message-faces)
1381 ;; backward-compatibility alias
1382 (put 'message-header-xheader-face 'face-alias 'message-header-xheader)
1383
1384 (defface message-separator
1385   '((((class color)
1386       (background dark))
1387      (:foreground "LightSkyBlue1"))
1388     (((class color)
1389       (background light))
1390      (:foreground "brown"))
1391     (t
1392      (:bold t)))
1393   "Face used for displaying the separator."
1394   :group 'message-faces)
1395 ;; backward-compatibility alias
1396 (put 'message-separator-face 'face-alias 'message-separator)
1397
1398 (defface message-cited-text
1399   '((((class color)
1400       (background dark))
1401      (:foreground "LightPink1"))
1402     (((class color)
1403       (background light))
1404      (:foreground "red"))
1405     (t
1406      (:bold t)))
1407   "Face used for displaying cited text names."
1408   :group 'message-faces)
1409 ;; backward-compatibility alias
1410 (put 'message-cited-text-face 'face-alias 'message-cited-text)
1411
1412 (defface message-mml
1413   '((((class color)
1414       (background dark))
1415      (:foreground "MediumSpringGreen"))
1416     (((class color)
1417       (background light))
1418      (:foreground "ForestGreen"))
1419     (t
1420      (:bold t)))
1421   "Face used for displaying MML."
1422   :group 'message-faces)
1423 ;; backward-compatibility alias
1424 (put 'message-mml-face 'face-alias 'message-mml)
1425
1426 (defun message-font-lock-make-header-matcher (regexp)
1427   (let ((form
1428          `(lambda (limit)
1429             (let ((start (point)))
1430               (save-restriction
1431                 (widen)
1432                 (goto-char (point-min))
1433                 (if (re-search-forward
1434                      (concat "^" (regexp-quote mail-header-separator) "$")
1435                      nil t)
1436                     (setq limit (min limit (match-beginning 0))))
1437                 (goto-char start))
1438               (and (< start limit)
1439                    (re-search-forward ,regexp limit t))))))
1440     (if (featurep 'bytecomp)
1441         (byte-compile form)
1442       form)))
1443
1444 (defvar message-font-lock-keywords
1445   (let ((content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)\n?"))
1446     `((,(message-font-lock-make-header-matcher
1447          (concat "^\\([Tt]o:\\)" content))
1448        (1 'message-header-name)
1449        (2 'message-header-to nil t))
1450       (,(message-font-lock-make-header-matcher
1451          (concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content))
1452        (1 'message-header-name)
1453        (2 'message-header-cc nil t))
1454       (,(message-font-lock-make-header-matcher
1455          (concat "^\\([Ss]ubject:\\)" content))
1456        (1 'message-header-name)
1457        (2 'message-header-subject nil t))
1458       (,(message-font-lock-make-header-matcher
1459          (concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content))
1460        (1 'message-header-name)
1461        (2 'message-header-newsgroups nil t))
1462       (,(message-font-lock-make-header-matcher
1463          (concat "^\\(X-[A-Za-z0-9-]+:\\|In-Reply-To:\\)" content))
1464        (1 'message-header-name)
1465        (2 'message-header-xheader))
1466       (,(message-font-lock-make-header-matcher
1467          (concat "^\\([A-Z][^: \n\t]+:\\)" content))
1468        (1 'message-header-name)
1469        (2 'message-header-other nil t))
1470       ,@(if (and mail-header-separator
1471                  (not (equal mail-header-separator "")))
1472             `((,(concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
1473                1 'message-separator))
1474           nil)
1475       ((lambda (limit)
1476          (re-search-forward (concat "^\\("
1477                                     message-cite-prefix-regexp
1478                                     "\\).*")
1479                             limit t))
1480        (0 'message-cited-text))
1481       ("<#/?\\(multipart\\|part\\|external\\|mml\\|secure\\)[^>]*>"
1482        (0 'message-mml))))
1483   "Additional expressions to highlight in Message mode.")
1484
1485
1486 ;; XEmacs does it like this.  For Emacs, we have to set the
1487 ;; `font-lock-defaults' buffer-local variable.
1488 (put 'message-mode 'font-lock-defaults '(message-font-lock-keywords t))
1489
1490 (defvar message-face-alist
1491   '((bold . message-bold-region)
1492     (underline . underline-region)
1493     (default . (lambda (b e)
1494                  (message-unbold-region b e)
1495                  (ununderline-region b e))))
1496   "Alist of mail and news faces for facemenu.
1497 The cdr of each entry is a function for applying the face to a region.")
1498
1499 (defcustom message-send-hook nil
1500   "Hook run before sending messages.
1501 This hook is run quite early when sending."
1502   :group 'message-various
1503   :options '(ispell-message)
1504   :link '(custom-manual "(message)Various Message Variables")
1505   :type 'hook)
1506
1507 (defcustom message-send-mail-hook nil
1508   "Hook run before sending mail messages.
1509 This hook is run very late -- just before the message is sent as
1510 mail."
1511   :group 'message-various
1512   :link '(custom-manual "(message)Various Message Variables")
1513   :type 'hook)
1514
1515 (defcustom message-send-news-hook nil
1516   "Hook run before sending news messages.
1517 This hook is run very late -- just before the message is sent as
1518 news."
1519   :group 'message-various
1520   :link '(custom-manual "(message)Various Message Variables")
1521   :type 'hook)
1522
1523 (defcustom message-sent-hook nil
1524   "Hook run after sending messages."
1525   :group 'message-various
1526   :type 'hook)
1527
1528 (defvar message-send-coding-system 'binary
1529   "Coding system to encode outgoing mail.")
1530
1531 (defvar message-draft-coding-system
1532   mm-auto-save-coding-system
1533   "*Coding system to compose mail.
1534 If you'd like to make it possible to share draft files between XEmacs
1535 and Emacs, you may use `iso-2022-7bit' for this value at your own risk.
1536 Note that the coding-system `iso-2022-7bit' isn't suitable to all data.")
1537
1538 (defcustom message-send-mail-partially-limit 1000000
1539   "The limitation of messages sent as message/partial.
1540 The lower bound of message size in characters, beyond which the message
1541 should be sent in several parts.  If it is nil, the size is unlimited."
1542   :version "21.1"
1543   :group 'message-buffers
1544   :link '(custom-manual "(message)Mail Variables")
1545   :type '(choice (const :tag "unlimited" nil)
1546                  (integer 1000000)))
1547
1548 (defcustom message-alternative-emails nil
1549   "*Regexp matching alternative email addresses.
1550 The first address in the To, Cc or From headers of the original
1551 article matching this variable is used as the From field of
1552 outgoing messages.
1553
1554 This variable has precedence over posting styles and anything that runs
1555 off `message-setup-hook'."
1556   :group 'message-headers
1557   :link '(custom-manual "(message)Message Headers")
1558   :type '(choice (const :tag "Always use primary" nil)
1559                  regexp))
1560
1561 (defcustom message-hierarchical-addresses nil
1562   "A list of hierarchical mail address definitions.
1563
1564 Inside each entry, the first address is the \"top\" address, and
1565 subsequent addresses are subaddresses; this is used to indicate that
1566 mail sent to the first address will automatically be delivered to the
1567 subaddresses.  So if the first address appears in the recipient list
1568 for a message, the subaddresses will be removed (if present) before
1569 the mail is sent.  All addresses in this structure should be
1570 downcased."
1571   :version "22.1"
1572   :group 'message-headers
1573   :type '(repeat (repeat string)))
1574
1575 (defcustom message-mail-user-agent nil
1576   "Like `mail-user-agent'.
1577 Except if it is nil, use Gnus native MUA; if it is t, use
1578 `mail-user-agent'."
1579   :version "22.1"
1580   :type '(radio (const :tag "Gnus native"
1581                        :format "%t\n"
1582                        nil)
1583                 (const :tag "`mail-user-agent'"
1584                        :format "%t\n"
1585                        t)
1586                 (function-item :tag "Default Emacs mail"
1587                                :format "%t\n"
1588                                sendmail-user-agent)
1589                 (function-item :tag "Emacs interface to MH"
1590                                :format "%t\n"
1591                                mh-e-user-agent)
1592                 (function :tag "Other"))
1593   :version "21.1"
1594   :group 'message)
1595
1596 (defcustom message-wide-reply-confirm-recipients nil
1597   "Whether to confirm a wide reply to multiple email recipients.
1598 If this variable is nil, don't ask whether to reply to all recipients.
1599 If this variable is non-nil, pose the question \"Reply to all
1600 recipients?\" before a wide reply to multiple recipients.  If the user
1601 answers yes, reply to all recipients as usual.  If the user answers
1602 no, only reply back to the author."
1603   :version "22.1"
1604   :group 'message-headers
1605   :link '(custom-manual "(message)Wide Reply")
1606   :type 'boolean)
1607
1608 (defcustom message-user-fqdn nil
1609   "*Domain part of Message-Ids."
1610   :version "22.1"
1611   :group 'message-headers
1612   :link '(custom-manual "(message)News Headers")
1613   :type '(radio (const :format "%v  " nil)
1614                 (string :format "FQDN: %v")))
1615
1616 (defcustom message-use-idna (and (condition-case nil (require 'idna)
1617                                    (file-error))
1618                                  (mm-coding-system-p 'utf-8)
1619                                  (executable-find idna-program)
1620                                  (string= (idna-to-ascii "räksmörgÃ¥s")
1621                                           "xn--rksmrgs-5wao1o")
1622                                  t)
1623   "Whether to encode non-ASCII in domain names into ASCII according to IDNA.
1624 GNU Libidn, and in particular the elisp package \"idna.el\" and
1625 the external program \"idn\", must be installed for this
1626 functionality to work."
1627   :version "22.1"
1628   :group 'message-headers
1629   :link '(custom-manual "(message)IDNA")
1630   :type '(choice (const :tag "Ask" ask)
1631                  (const :tag "Never" nil)
1632                  (const :tag "Always" t)))
1633
1634 (defcustom message-generate-hashcash (if (executable-find "hashcash") t)
1635   "*Whether to generate X-Hashcash: headers.
1636 If t, always generate hashcash headers.  If `opportunistic',
1637 only generate hashcash headers if it can be done without the user
1638 waiting (i.e., only asynchronously).
1639
1640 You must have the \"hashcash\" binary installed, see `hashcash-path'."
1641   :group 'message-headers
1642   :link '(custom-manual "(message)Mail Headers")
1643   :type '(choice (const :tag "Always" t)
1644                  (const :tag "Never" nil)
1645                  (const :tag "Opportunistic" opportunistic)))
1646
1647 ;;; Internal variables.
1648
1649 (defvar message-sending-message "Sending...")
1650 (defvar message-buffer-list nil)
1651 (defvar message-this-is-news nil)
1652 (defvar message-this-is-mail nil)
1653 (defvar message-draft-article nil)
1654 (defvar message-mime-part nil)
1655 (defvar message-posting-charset nil)
1656 (defvar message-inserted-headers nil)
1657
1658 ;; Byte-compiler warning
1659 (defvar gnus-active-hashtb)
1660 (defvar gnus-read-active-file)
1661
1662 ;;; Regexp matching the delimiter of messages in UNIX mail format
1663 ;;; (UNIX From lines), minus the initial ^.  It should be a copy
1664 ;;; of rmail.el's rmail-unix-mail-delimiter.
1665 (defvar message-unix-mail-delimiter
1666   (let ((time-zone-regexp
1667          (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
1668                  "\\|[-+]?[0-9][0-9][0-9][0-9]"
1669                  "\\|"
1670                  "\\) *")))
1671     (concat
1672      "From "
1673
1674      ;; Many things can happen to an RFC 822 mailbox before it is put into
1675      ;; a `From' line.  The leading phrase can be stripped, e.g.
1676      ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'.  The <> can be stripped, e.g.
1677      ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'.  Everything starting with a CRLF
1678      ;; can be removed, e.g.
1679      ;;         From: joe@y.z (Joe      K
1680      ;;                 User)
1681      ;; can yield `From joe@y.z (Joe    K Fri Mar 22 08:11:15 1996', and
1682      ;;         From: Joe User
1683      ;;                 <joe@y.z>
1684      ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
1685      ;; The mailbox can be removed or be replaced by white space, e.g.
1686      ;;         From: "Joe User"{space}{tab}
1687      ;;                 <joe@y.z>
1688      ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
1689      ;; where {space} and {tab} represent the Ascii space and tab characters.
1690      ;; We want to match the results of any of these manglings.
1691      ;; The following regexp rejects names whose first characters are
1692      ;; obviously bogus, but after that anything goes.
1693      "\\([^\0-\b\n-\r\^?].*\\)?"
1694
1695      ;; The time the message was sent.
1696      "\\([^\0-\r \^?]+\\) +"            ; day of the week
1697      "\\([^\0-\r \^?]+\\) +"            ; month
1698      "\\([0-3]?[0-9]\\) +"              ; day of month
1699      "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day
1700
1701      ;; Perhaps a time zone, specified by an abbreviation, or by a
1702      ;; numeric offset.
1703      time-zone-regexp
1704
1705      ;; The year.
1706      " \\([0-9][0-9]+\\) *"
1707
1708      ;; On some systems the time zone can appear after the year, too.
1709      time-zone-regexp
1710
1711      ;; Old uucp cruft.
1712      "\\(remote from .*\\)?"
1713
1714      "\n"))
1715   "Regexp matching the delimiter of messages in UNIX mail format.")
1716
1717 (defvar message-unsent-separator
1718   (concat "^ *---+ +Unsent message follows +---+ *$\\|"
1719           "^ *---+ +Returned message +---+ *$\\|"
1720           "^Start of returned message$\\|"
1721           "^ *---+ +Original message +---+ *$\\|"
1722           "^ *--+ +begin message +--+ *$\\|"
1723           "^ *---+ +Original message follows +---+ *$\\|"
1724           "^ *---+ +Undelivered message follows +---+ *$\\|"
1725           "^------ This is a copy of the message, including all the headers. ------ *$\\|"
1726           "^|? *---+ +Message text follows: +---+ *|?$")
1727   "A regexp that matches the separator before the text of a failed message.")
1728
1729 (defvar message-field-fillers
1730   '((To message-fill-field-address)
1731     (Cc message-fill-field-address)
1732     (From message-fill-field-address))
1733   "Alist of header names/filler functions.")
1734
1735 (defvar message-header-format-alist
1736   `((From)
1737     (Newsgroups)
1738     (To)
1739     (Cc)
1740     (Subject)
1741     (In-Reply-To)
1742     (Fcc)
1743     (Bcc)
1744     (Date)
1745     (Organization)
1746     (Distribution)
1747     (Lines)
1748     (Expires)
1749     (Message-ID)
1750     (References . message-shorten-references)
1751     (User-Agent))
1752   "Alist used for formatting headers.")
1753
1754 (defvar message-options nil
1755   "Some saved answers when sending message.")
1756
1757 (defvar message-send-mail-real-function nil
1758   "Internal send mail function.")
1759
1760 (defvar message-bogus-system-names "^localhost\\.\\|\\.local$"
1761   "The regexp of bogus system names.")
1762
1763 (defcustom message-valid-fqdn-regexp
1764   (concat "[a-z0-9][-.a-z0-9]+\\." ;; [hostname.subdomain.]domain.
1765           ;; valid TLDs:
1766           "\\([a-z][a-z]\\|" ;; two letter country TDLs
1767           "aero\\|arpa\\|bitnet\\|biz\\|bofh\\|"
1768           "cat\\|com\\|coop\\|edu\\|gov\\|"
1769           "info\\|int\\|jobs\\|"
1770           "mil\\|mobi\\|museum\\|name\\|net\\|"
1771           "org\\|pro\\|travel\\|uucp\\)")
1772   ;; http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains
1773   ;; http://en.wikipedia.org/wiki/GTLD
1774   ;; `in the process of being approved': .asia .post .tel .sex
1775   ;; "dead" nato bitnet uucp
1776   "Regular expression that matches a valid FQDN."
1777   ;; see also: gnus-button-valid-fqdn-regexp
1778   :version "22.1"
1779   :group 'message-headers
1780   :type 'regexp)
1781
1782 (eval-and-compile
1783   (autoload 'gnus-alive-p "gnus-util")
1784   (autoload 'gnus-delay-article "gnus-delay")
1785   (autoload 'gnus-extract-address-components "gnus-util")
1786   (autoload 'gnus-find-method-for-group "gnus")
1787   (autoload 'gnus-group-decoded-name "gnus-group")
1788   (autoload 'gnus-group-name-charset "gnus-group")
1789   (autoload 'gnus-group-name-decode "gnus-group")
1790   (autoload 'gnus-groups-from-server "gnus")
1791   (autoload 'gnus-make-local-hook "gnus-util")
1792   (autoload 'gnus-open-server "gnus-int")
1793   (autoload 'gnus-output-to-mail "gnus-util")
1794   (autoload 'gnus-output-to-rmail "gnus-util")
1795   (autoload 'gnus-request-post "gnus-int")
1796   (autoload 'gnus-select-frame-set-input-focus "gnus-util")
1797   (autoload 'gnus-server-string "gnus")
1798   (autoload 'idna-to-ascii "idna")
1799   (autoload 'message-setup-toolbar "messagexmas")
1800   (autoload 'mh-new-draft-name "mh-comp")
1801   (autoload 'mh-send-letter "mh-comp")
1802   (autoload 'nndraft-request-associate-buffer "nndraft")
1803   (autoload 'nndraft-request-expire-articles "nndraft")
1804   (autoload 'nnvirtual-find-group-art "nnvirtual")
1805   (autoload 'rmail-dont-reply-to "mail-utils")
1806   (autoload 'rmail-msg-is-pruned "rmail")
1807   (autoload 'rmail-msg-restore-non-pruned-header "rmail")
1808   (autoload 'rmail-output "rmailout"))
1809
1810 \f
1811
1812 ;;;
1813 ;;; Utility functions.
1814 ;;;
1815
1816 (defmacro message-y-or-n-p (question show &rest text)
1817   "Ask QUESTION, displaying remaining args in a temporary buffer if SHOW."
1818   `(message-talkative-question 'y-or-n-p ,question ,show ,@text))
1819
1820 (defmacro message-delete-line (&optional n)
1821   "Delete the current line (and the next N lines)."
1822   `(delete-region (progn (beginning-of-line) (point))
1823                   (progn (forward-line ,(or n 1)) (point))))
1824
1825 (defun message-mark-active-p ()
1826   "Non-nil means the mark and region are currently active in this buffer."
1827   mark-active)
1828
1829 (defun message-unquote-tokens (elems)
1830   "Remove double quotes (\") from strings in list ELEMS."
1831   (mapcar (lambda (item)
1832             (while (string-match "^\\(.*\\)\"\\(.*\\)$" item)
1833               (setq item (concat (match-string 1 item)
1834                                  (match-string 2 item))))
1835             item)
1836           elems))
1837
1838 (defun message-tokenize-header (header &optional separator)
1839   "Split HEADER into a list of header elements.
1840 SEPARATOR is a string of characters to be used as separators.  \",\"
1841 is used by default."
1842   (if (not header)
1843       nil
1844     (let ((regexp (format "[%s]+" (or separator ",")))
1845           (first t)
1846           beg quoted elems paren)
1847       (with-temp-buffer
1848         (mm-enable-multibyte)
1849         (setq beg (point-min))
1850         (insert header)
1851         (goto-char (point-min))
1852         (while (not (eobp))
1853           (if first
1854               (setq first nil)
1855             (forward-char 1))
1856           (cond ((and (> (point) beg)
1857                       (or (eobp)
1858                           (and (looking-at regexp)
1859                                (not quoted)
1860                                (not paren))))
1861                  (push (buffer-substring beg (point)) elems)
1862                  (setq beg (match-end 0)))
1863                 ((eq (char-after) ?\")
1864                  (setq quoted (not quoted)))
1865                 ((and (eq (char-after) ?\()
1866                       (not quoted))
1867                  (setq paren t))
1868                 ((and (eq (char-after) ?\))
1869                       (not quoted))
1870                  (setq paren nil))))
1871         (nreverse elems)))))
1872
1873 (defun message-mail-file-mbox-p (file)
1874   "Say whether FILE looks like a Unix mbox file."
1875   (when (and (file-exists-p file)
1876              (file-readable-p file)
1877              (file-regular-p file))
1878     (with-temp-buffer
1879       (nnheader-insert-file-contents file)
1880       (goto-char (point-min))
1881       (looking-at message-unix-mail-delimiter))))
1882
1883 (defun message-fetch-field (header &optional not-all)
1884   "The same as `mail-fetch-field', only remove all newlines.
1885 The buffer is expected to be narrowed to just the header of the message;
1886 see `message-narrow-to-headers-or-head'."
1887   (let* ((inhibit-point-motion-hooks t)
1888          (value (mail-fetch-field header nil (not not-all))))
1889     (when value
1890       (while (string-match "\n[\t ]+" value)
1891         (setq value (replace-match " " t t value)))
1892       value)))
1893
1894 (defun message-field-value (header &optional not-all)
1895   "The same as `message-fetch-field', only narrow to the headers first."
1896   (save-excursion
1897     (save-restriction
1898       (message-narrow-to-headers-or-head)
1899       (message-fetch-field header not-all))))
1900
1901 (defun message-narrow-to-field ()
1902   "Narrow the buffer to the header on the current line."
1903   (beginning-of-line)
1904   (while (looking-at "[ \t]")
1905     (forward-line -1))
1906   (narrow-to-region
1907    (point)
1908    (progn
1909      (forward-line 1)
1910      (if (re-search-forward "^[^ \n\t]" nil t)
1911          (point-at-bol)
1912        (point-max))))
1913   (goto-char (point-min)))
1914
1915 (defun message-add-header (&rest headers)
1916   "Add the HEADERS to the message header, skipping those already present."
1917   (while headers
1918     (let (hclean)
1919       (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers))
1920         (error "Invalid header `%s'" (car headers)))
1921       (setq hclean (match-string 1 (car headers)))
1922       (save-restriction
1923         (message-narrow-to-headers)
1924         (unless (re-search-forward (concat "^" (regexp-quote hclean) ":") nil t)
1925           (goto-char (point-max))
1926           (if (string-match "\n$" (car headers))
1927               (insert (car headers))
1928             (insert (car headers) ?\n)))))
1929     (setq headers (cdr headers))))
1930
1931 (defmacro message-with-reply-buffer (&rest forms)
1932   "Evaluate FORMS in the reply buffer, if it exists."
1933   `(when (and message-reply-buffer
1934               (buffer-name message-reply-buffer))
1935      (with-current-buffer message-reply-buffer
1936        ,@forms)))
1937
1938 (put 'message-with-reply-buffer 'lisp-indent-function 0)
1939 (put 'message-with-reply-buffer 'edebug-form-spec '(body))
1940
1941 (defun message-fetch-reply-field (header)
1942   "Fetch field HEADER from the message we're replying to."
1943   (message-with-reply-buffer
1944     (save-restriction
1945       (mail-narrow-to-head)
1946       (message-fetch-field header))))
1947
1948 (defun message-strip-list-identifiers (subject)
1949   "Remove list identifiers in `gnus-list-identifiers' from string SUBJECT."
1950   (require 'gnus-sum)                   ; for gnus-list-identifiers
1951   (let ((regexp (if (stringp gnus-list-identifiers)
1952                     gnus-list-identifiers
1953                   (mapconcat 'identity gnus-list-identifiers " *\\|"))))
1954     (if (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
1955                               " *\\)\\)+\\(Re: +\\)?\\)") subject)
1956         (concat (substring subject 0 (match-beginning 1))
1957                 (or (match-string 3 subject)
1958                     (match-string 5 subject))
1959                 (substring subject
1960                            (match-end 1)))
1961       subject)))
1962
1963 (defun message-strip-subject-re (subject)
1964   "Remove \"Re:\" from subject lines in string SUBJECT."
1965   (if (string-match message-subject-re-regexp subject)
1966       (substring subject (match-end 0))
1967     subject))
1968
1969 (defcustom message-replacement-char "."
1970   "Replacement character used instead of unprintable or not decodable chars."
1971   :group 'message-various
1972   :version "22.1" ;; Gnus 5.10.9
1973   :type '(choice string
1974                  (const ".")
1975                  (const "?")))
1976
1977 ;; FIXME: We also should call `message-strip-subject-encoded-words'
1978 ;; when forwarding.  Probably in `message-make-forward-subject' and
1979 ;; `message-forward-make-body'.
1980
1981 (defun message-strip-subject-encoded-words (subject)
1982   "Fix non-decodable words in SUBJECT."
1983   ;; Cf. `gnus-simplify-subject-fully'.
1984   (let* ((case-fold-search t)
1985          (replacement-chars (format "[%s%s%s]"
1986                                     message-replacement-char
1987                                     message-replacement-char
1988                                     message-replacement-char))
1989          (enc-word-re "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?\\([^?]+\\)\\(\\?=\\)")
1990          cs-string
1991          (have-marker
1992           (with-temp-buffer
1993             (insert subject)
1994             (goto-char (point-min))
1995             (when (re-search-forward enc-word-re nil t)
1996               (setq cs-string (match-string 1)))))
1997          cs-coding q-or-b word-beg word-end)
1998     (if (or (not have-marker) ;; No encoded word found...
1999             ;; ... or double encoding was correct:
2000             (and (stringp cs-string)
2001                  (setq cs-string (downcase cs-string))
2002                  (mm-coding-system-p (intern cs-string))
2003                  (not (prog1
2004                           (y-or-n-p
2005                            (format "\
2006 Decoded Subject \"%s\"
2007 contains a valid encoded word.  Decode again? "
2008                                    subject))
2009                         (setq cs-coding (intern cs-string))))))
2010         subject
2011       (with-temp-buffer
2012         (insert subject)
2013         (goto-char (point-min))
2014         (while (re-search-forward enc-word-re nil t)
2015           (setq cs-string (downcase (match-string 1))
2016                 q-or-b    (match-string 2)
2017                 word-beg (match-beginning 0)
2018                 word-end (match-end 0))
2019           (setq cs-coding
2020                 (if (mm-coding-system-p (intern cs-string))
2021                     (setq cs-coding (intern cs-string))
2022                   nil))
2023           ;; No double encoded subject? => bogus charset.
2024           (unless cs-coding
2025             (setq cs-coding
2026                   (mm-read-coding-system
2027                    (format "\
2028 Decoded Subject \"%s\"
2029 contains an encoded word.  The charset `%s' is unknown or invalid.
2030 Hit RET to replace non-decodable characters with \"%s\" or enter replacement
2031 charset: "
2032                            subject cs-string message-replacement-char)))
2033             (if cs-coding
2034                 (replace-match (concat "=?" (symbol-name cs-coding)
2035                                        "?\\2?\\3\\4\\5"))
2036               (save-excursion
2037                 (goto-char word-beg)
2038                 (re-search-forward "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?" word-end t)
2039                 (replace-match "")
2040                 ;; QP or base64
2041                 (if (string-match "\\`Q\\'" q-or-b)
2042                     ;; QP
2043                     (progn
2044                       (message "Replacing non-decodable characters with \"%s\"."
2045                                message-replacement-char)
2046                       (while (re-search-forward "\\(=[A-F0-9][A-F0-9]\\)+"
2047                                                 word-end t)
2048                         (replace-match message-replacement-char)))
2049                   ;; base64
2050                   (message "Replacing non-decodable characters with \"%s\"."
2051                            replacement-chars)
2052                   (re-search-forward "[^?]+" word-end t)
2053                   (replace-match replacement-chars))
2054                 (re-search-forward "\\?=")
2055                 (replace-match "")))))
2056         (rfc2047-decode-region (point-min) (point-max))
2057         (buffer-string)))))
2058
2059 ;;; Start of functions adopted from `message-utils.el'.
2060
2061 (defun message-strip-subject-trailing-was (subject)
2062   "Remove trailing \"(was: <old subject>)\" from SUBJECT lines.
2063 Leading \"Re: \" is not stripped by this function.  Use the function
2064 `message-strip-subject-re' for this."
2065   (let* ((query message-subject-trailing-was-query)
2066          (new) (found))
2067     (setq found
2068           (string-match
2069            (if (eq query 'ask)
2070                message-subject-trailing-was-ask-regexp
2071              message-subject-trailing-was-regexp)
2072            subject))
2073     (if found
2074         (setq new (substring subject 0 (match-beginning 0))))
2075     (if (or (not found) (eq query nil))
2076         subject
2077       (if (eq query 'ask)
2078           (if (message-y-or-n-p
2079                "Strip `(was: <old subject>)' in subject? " t
2080                (concat
2081                 "Strip `(was: <old subject>)' in subject "
2082                 "and use the new one instead?\n\n"
2083                 "Current subject is:   \""
2084                 subject "\"\n\n"
2085                 "New subject would be: \""
2086                 new "\"\n\n"
2087                 "See the variable `message-subject-trailing-was-query' "
2088                 "to get rid of this query."
2089                 ))
2090               new subject)
2091         new))))
2092
2093 ;;; Suggested by Jonas Steverud  @  www.dtek.chalmers.se/~d4jonas/
2094
2095 (defun message-change-subject (new-subject)
2096   "Ask for NEW-SUBJECT header, append (was: <Old Subject>)."
2097   ;; <URL:http://www.landfield.com/usefor/drafts/draft-ietf-usefor-useage--1.02.unpaged>
2098   (interactive
2099    (list
2100     (read-from-minibuffer "New subject: ")))
2101   (cond ((and (not (or (null new-subject) ; new subject not empty
2102                        (zerop (string-width new-subject))
2103                        (string-match "^[ \t]*$" new-subject))))
2104          (save-excursion
2105            (let ((old-subject
2106                   (save-restriction
2107                     (message-narrow-to-headers)
2108                     (message-fetch-field "Subject"))))
2109              (cond ((not old-subject)
2110                     (error "No current subject"))
2111                    ((not (string-match
2112                           (concat "^[ \t]*"
2113                                   (regexp-quote new-subject)
2114                                   " \t]*$")
2115                           old-subject))  ; yes, it really is a new subject
2116                     ;; delete eventual Re: prefix
2117                     (setq old-subject
2118                           (message-strip-subject-re old-subject))
2119                     (message-goto-subject)
2120                     (message-delete-line)
2121                     (insert (concat "Subject: "
2122                                     new-subject
2123                                     " (was: "
2124                                     old-subject ")\n")))))))))
2125
2126 (defun message-mark-inserted-region (beg end &optional verbatim)
2127   "Mark some region in the current article with enclosing tags.
2128 See `message-mark-insert-begin' and `message-mark-insert-end'.
2129 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2130   (interactive "r\nP")
2131   (save-excursion
2132     ;; add to the end of the region first, otherwise end would be invalid
2133     (goto-char end)
2134     (insert (if verbatim "#v-\n" message-mark-insert-end))
2135     (goto-char beg)
2136     (insert (if verbatim "#v+\n" message-mark-insert-begin))))
2137
2138 (defun message-mark-insert-file (file &optional verbatim)
2139   "Insert FILE at point, marking it with enclosing tags.
2140 See `message-mark-insert-begin' and `message-mark-insert-end'.
2141 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2142   (interactive "fFile to insert: \nP")
2143     ;; reverse insertion to get correct result.
2144   (let ((p (point)))
2145     (insert (if verbatim "#v-\n" message-mark-insert-end))
2146     (goto-char p)
2147     (insert-file-contents file)
2148     (goto-char p)
2149     (insert (if verbatim "#v+\n" message-mark-insert-begin))))
2150
2151 (defun message-add-archive-header ()
2152   "Insert \"X-No-Archive: Yes\" in the header and a note in the body.
2153 The note can be customized using `message-archive-note'.  When called with a
2154 prefix argument, ask for a text to insert.  If you don't want the note in the
2155 body, set  `message-archive-note' to nil."
2156   (interactive)
2157   (if current-prefix-arg
2158       (setq message-archive-note
2159             (read-from-minibuffer "Reason for No-Archive: "
2160                                   (cons message-archive-note 0))))
2161     (save-excursion
2162       (if (message-goto-signature)
2163           (re-search-backward message-signature-separator))
2164       (when message-archive-note
2165         (insert message-archive-note)
2166         (newline))
2167       (message-add-header message-archive-header)
2168       (message-sort-headers)))
2169
2170 (defun message-cross-post-followup-to-header (target-group)
2171   "Mangles FollowUp-To and Newsgroups header to point to TARGET-GROUP.
2172 With prefix-argument just set Follow-Up, don't cross-post."
2173   (interactive
2174    (list ; Completion based on Gnus
2175     (completing-read "Followup To: "
2176                      (if (boundp 'gnus-newsrc-alist)
2177                          gnus-newsrc-alist)
2178                      nil nil '("poster" . 0)
2179                      (if (boundp 'gnus-group-history)
2180                          'gnus-group-history))))
2181   (message-remove-header "Follow[Uu]p-[Tt]o" t)
2182   (message-goto-newsgroups)
2183   (beginning-of-line)
2184   ;; if we already did a crosspost before, kill old target
2185   (if (and message-cross-post-old-target
2186            (re-search-forward
2187             (regexp-quote (concat "," message-cross-post-old-target))
2188             nil t))
2189       (replace-match ""))
2190   ;; unless (followup is to poster or user explicitly asked not
2191   ;; to cross-post, or target-group is already in Newsgroups)
2192   ;; add target-group to Newsgroups line.
2193   (cond ((and (or
2194                ;; def: cross-post, req:no
2195                (and message-cross-post-default (not current-prefix-arg))
2196                ;; def: no-cross-post, req:yes
2197                (and (not message-cross-post-default) current-prefix-arg))
2198               (not (string-match "poster" target-group))
2199               (not (string-match (regexp-quote target-group)
2200                                  (message-fetch-field "Newsgroups"))))
2201          (end-of-line)
2202          (insert (concat "," target-group))))
2203   (end-of-line) ; ensure Followup: comes after Newsgroups:
2204   ;; unless new followup would be identical to Newsgroups line
2205   ;; make a new Followup-To line
2206   (if (not (string-match (concat "^[ \t]*"
2207                                  target-group
2208                                  "[ \t]*$")
2209                          (message-fetch-field "Newsgroups")))
2210       (insert (concat "\nFollowup-To: " target-group)))
2211   (setq message-cross-post-old-target target-group))
2212
2213 (defun message-cross-post-insert-note (target-group cross-post in-old
2214                                                     old-groups)
2215   "Insert a in message body note about a set Followup or Crosspost.
2216 If there have been previous notes, delete them.  TARGET-GROUP specifies the
2217 group to Followup-To.  When CROSS-POST is t, insert note about
2218 crossposting.  IN-OLD specifies whether TARGET-GROUP is a member of
2219 OLD-GROUPS.  OLD-GROUPS lists the old-groups the posting would have
2220 been made to before the user asked for a Crosspost."
2221   ;; start scanning body for previous uses
2222   (message-goto-signature)
2223   (let ((head (re-search-backward
2224                (concat "^" mail-header-separator)
2225                nil t))) ; just search in body
2226     (message-goto-signature)
2227     (while (re-search-backward
2228             (concat "^" (regexp-quote message-cross-post-note) ".*")
2229             head t)
2230       (message-delete-line))
2231     (message-goto-signature)
2232     (while (re-search-backward
2233             (concat "^" (regexp-quote message-followup-to-note) ".*")
2234             head t)
2235       (message-delete-line))
2236     ;; insert new note
2237     (if (message-goto-signature)
2238         (re-search-backward message-signature-separator))
2239     (if (or in-old
2240             (not cross-post)
2241             (string-match "^[ \t]*poster[ \t]*$" target-group))
2242         (insert (concat message-followup-to-note target-group "\n"))
2243       (insert (concat message-cross-post-note target-group "\n")))))
2244
2245 (defun message-cross-post-followup-to (target-group)
2246   "Crossposts message and set Followup-To to TARGET-GROUP.
2247 With prefix-argument just set Follow-Up, don't cross-post."
2248   (interactive
2249    (list ; Completion based on Gnus
2250     (completing-read "Followup To: "
2251                      (if (boundp 'gnus-newsrc-alist)
2252                          gnus-newsrc-alist)
2253                      nil nil '("poster" . 0)
2254                      (if (boundp 'gnus-group-history)
2255                          'gnus-group-history))))
2256   (cond ((not (or (null target-group) ; new subject not empty
2257                   (zerop (string-width target-group))
2258                   (string-match "^[ \t]*$" target-group)))
2259          (save-excursion
2260            (let* ((old-groups (message-fetch-field "Newsgroups"))
2261                   (in-old (string-match
2262                            (regexp-quote target-group)
2263                            (or old-groups ""))))
2264              ;; check whether target exactly matches old Newsgroups
2265              (cond ((not old-groups)
2266                     (error "No current newsgroup"))
2267                    ((or (not in-old)
2268                         (not (string-match
2269                               (concat "^[ \t]*"
2270                                       (regexp-quote target-group)
2271                                       "[ \t]*$")
2272                               old-groups)))
2273                     ;; yes, Newsgroups line must change
2274                     (message-cross-post-followup-to-header target-group)
2275                     ;; insert note whether we do cross-post or followup-to
2276                     (funcall message-cross-post-note-function
2277                              target-group
2278                              (if (or (and message-cross-post-default
2279                                           (not current-prefix-arg))
2280                                      (and (not message-cross-post-default)
2281                                           current-prefix-arg)) t)
2282                              in-old old-groups))))))))
2283
2284 ;;; Reduce To: to Cc: or Bcc: header
2285
2286 (defun message-reduce-to-to-cc ()
2287  "Replace contents of To: header with contents of Cc: or Bcc: header."
2288  (interactive)
2289  (let ((cc-content
2290         (save-restriction (message-narrow-to-headers)
2291                           (message-fetch-field "cc")))
2292        (bcc nil))
2293    (if (and (not cc-content)
2294             (setq cc-content
2295                   (save-restriction
2296                     (message-narrow-to-headers)
2297                     (message-fetch-field "bcc"))))
2298        (setq bcc t))
2299    (cond (cc-content
2300           (save-excursion
2301             (message-goto-to)
2302             (message-delete-line)
2303             (insert (concat "To: " cc-content "\n"))
2304             (save-restriction
2305               (message-narrow-to-headers)
2306               (message-remove-header (if bcc
2307                                          "bcc"
2308                                        "cc"))))))))
2309
2310 ;;; End of functions adopted from `message-utils.el'.
2311
2312 (defun message-remove-header (header &optional is-regexp first reverse)
2313   "Remove HEADER in the narrowed buffer.
2314 If IS-REGEXP, HEADER is a regular expression.
2315 If FIRST, only remove the first instance of the header.
2316 Return the number of headers removed."
2317   (goto-char (point-min))
2318   (let ((regexp (if is-regexp header (concat "^" (regexp-quote header) ":")))
2319         (number 0)
2320         (case-fold-search t)
2321         last)
2322     (while (and (not (eobp))
2323                 (not last))
2324       (if (if reverse
2325               (not (looking-at regexp))
2326             (looking-at regexp))
2327           (progn
2328             (incf number)
2329             (when first
2330               (setq last t))
2331             (delete-region
2332              (point)
2333              ;; There might be a continuation header, so we have to search
2334              ;; until we find a new non-continuation line.
2335              (progn
2336                (forward-line 1)
2337                (if (re-search-forward "^[^ \t]" nil t)
2338                    (goto-char (match-beginning 0))
2339                  (point-max)))))
2340         (forward-line 1)
2341         (if (re-search-forward "^[^ \t]" nil t)
2342             (goto-char (match-beginning 0))
2343           (goto-char (point-max)))))
2344     number))
2345
2346 (defun message-remove-first-header (header)
2347   "Remove the first instance of HEADER if there is more than one."
2348   (let ((count 0)
2349         (regexp (concat "^" (regexp-quote header) ":")))
2350     (save-excursion
2351       (goto-char (point-min))
2352       (while (re-search-forward regexp nil t)
2353         (incf count)))
2354     (while (> count 1)
2355       (message-remove-header header nil t)
2356       (decf count))))
2357
2358 (defun message-narrow-to-headers ()
2359   "Narrow the buffer to the head of the message."
2360   (widen)
2361   (narrow-to-region
2362    (goto-char (point-min))
2363    (if (re-search-forward
2364         (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
2365        (match-beginning 0)
2366      (point-max)))
2367   (goto-char (point-min)))
2368
2369 (defun message-narrow-to-head-1 ()
2370   "Like `message-narrow-to-head'.  Don't widen."
2371   (narrow-to-region
2372    (goto-char (point-min))
2373    (if (search-forward "\n\n" nil 1)
2374        (1- (point))
2375      (point-max)))
2376   (goto-char (point-min)))
2377
2378 (defun message-narrow-to-head ()
2379   "Narrow the buffer to the head of the message.
2380 Point is left at the beginning of the narrowed-to region."
2381   (widen)
2382   (message-narrow-to-head-1))
2383
2384 (defun message-narrow-to-headers-or-head ()
2385   "Narrow the buffer to the head of the message."
2386   (widen)
2387   (narrow-to-region
2388    (goto-char (point-min))
2389    (if (re-search-forward (concat "\\(\n\\)\n\\|^\\("
2390                                   (regexp-quote mail-header-separator)
2391                                   "\n\\)")
2392                           nil t)
2393        (or (match-end 1) (match-beginning 2))
2394      (point-max)))
2395   (goto-char (point-min)))
2396
2397 (defun message-news-p ()
2398   "Say whether the current buffer contains a news message."
2399   (and (not message-this-is-mail)
2400        (or message-this-is-news
2401            (save-excursion
2402              (save-restriction
2403                (message-narrow-to-headers)
2404                (and (message-fetch-field "newsgroups")
2405                     (not (message-fetch-field "posted-to"))))))))
2406
2407 (defun message-mail-p ()
2408   "Say whether the current buffer contains a mail message."
2409   (and (not message-this-is-news)
2410        (or message-this-is-mail
2411            (save-excursion
2412              (save-restriction
2413                (message-narrow-to-headers)
2414                (or (message-fetch-field "to")
2415                    (message-fetch-field "cc")
2416                    (message-fetch-field "bcc")))))))
2417
2418 (defun message-subscribed-p ()
2419   "Say whether we need to insert a MFT header."
2420   (or message-subscribed-regexps
2421       message-subscribed-addresses
2422       message-subscribed-address-file
2423       message-subscribed-address-functions))
2424
2425 (defun message-next-header ()
2426   "Go to the beginning of the next header."
2427   (beginning-of-line)
2428   (or (eobp) (forward-char 1))
2429   (not (if (re-search-forward "^[^ \t]" nil t)
2430            (beginning-of-line)
2431          (goto-char (point-max)))))
2432
2433 (defun message-sort-headers-1 ()
2434   "Sort the buffer as headers using `message-rank' text props."
2435   (goto-char (point-min))
2436   (require 'sort)
2437   (sort-subr
2438    nil 'message-next-header
2439    (lambda ()
2440      (message-next-header)
2441      (unless (bobp)
2442        (forward-char -1)))
2443    (lambda ()
2444      (or (get-text-property (point) 'message-rank)
2445          10000))))
2446
2447 (defun message-sort-headers ()
2448   "Sort the headers of the current message according to `message-header-format-alist'."
2449   (interactive)
2450   (save-excursion
2451     (save-restriction
2452       (let ((max (1+ (length message-header-format-alist)))
2453             rank)
2454         (message-narrow-to-headers)
2455         (while (re-search-forward "^[^ \n]+:" nil t)
2456           (put-text-property
2457            (match-beginning 0) (1+ (match-beginning 0))
2458            'message-rank
2459            (if (setq rank (length (memq (assq (intern (buffer-substring
2460                                                        (match-beginning 0)
2461                                                        (1- (match-end 0))))
2462                                               message-header-format-alist)
2463                                         message-header-format-alist)))
2464                (- max rank)
2465              (1+ max)))))
2466       (message-sort-headers-1))))
2467
2468 (defun message-kill-address ()
2469   "Kill the address under point."
2470   (interactive)
2471   (let ((start (point)))
2472     (message-skip-to-next-address)
2473     (kill-region start (point))))
2474
2475
2476 (autoload 'Info-goto-node "info")
2477
2478 (defun message-info (&optional arg)
2479   "Display the Message manual.
2480
2481 Prefixed with one \\[universal-argument], display the Emacs MIME
2482 manual.  With two \\[universal-argument]'s, display the EasyPG or
2483 PGG manual, depending on the value of `mml2015-use'."
2484   (interactive "p")
2485   (Info-goto-node (format "(%s)Top"
2486                           (cond ((eq arg 16) mml2015-use)
2487                                 ((eq arg  4) 'emacs-mime)
2488                                 ;; `booleanp' only available in Emacs 22+
2489                                 ((and (not (memq arg '(nil t)))
2490                                       (symbolp arg))
2491                                  arg)
2492                                 (t
2493                                  'message)))))
2494
2495 \f
2496
2497 ;;;
2498 ;;; Message mode
2499 ;;;
2500
2501 ;;; Set up keymap.
2502
2503 (defvar message-mode-map nil)
2504
2505 (unless message-mode-map
2506   (setq message-mode-map (make-keymap))
2507   (set-keymap-parent message-mode-map text-mode-map)
2508   (define-key message-mode-map "\C-c?" 'describe-mode)
2509
2510   (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to)
2511   (define-key message-mode-map "\C-c\C-f\C-o" 'message-goto-from)
2512   (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc)
2513   (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc)
2514   (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc)
2515   (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject)
2516   (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to)
2517   (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups)
2518   (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution)
2519   (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to)
2520   (define-key message-mode-map "\C-c\C-f\C-m" 'message-goto-mail-followup-to)
2521   (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords)
2522   (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary)
2523   (define-key message-mode-map "\C-c\C-f\C-i"
2524     'message-insert-or-toggle-importance)
2525   (define-key message-mode-map "\C-c\C-f\C-a"
2526     'message-generate-unsubscribed-mail-followup-to)
2527
2528   ;; modify headers (and insert notes in body)
2529   (define-key message-mode-map "\C-c\C-fs"    'message-change-subject)
2530   ;;
2531   (define-key message-mode-map "\C-c\C-fx"    'message-cross-post-followup-to)
2532   ;; prefix+message-cross-post-followup-to = same w/o cross-post
2533   (define-key message-mode-map "\C-c\C-ft"    'message-reduce-to-to-cc)
2534   (define-key message-mode-map "\C-c\C-fa"    'message-add-archive-header)
2535   ;; mark inserted text
2536   (define-key message-mode-map "\C-c\M-m" 'message-mark-inserted-region)
2537   (define-key message-mode-map "\C-c\M-f" 'message-mark-insert-file)
2538
2539   (define-key message-mode-map "\C-c\C-b" 'message-goto-body)
2540   (define-key message-mode-map "\C-c\C-i" 'message-goto-signature)
2541
2542   (define-key message-mode-map "\C-c\C-t" 'message-insert-to)
2543   (define-key message-mode-map "\C-c\C-fw" 'message-insert-wide-reply)
2544   (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups)
2545   (define-key message-mode-map "\C-c\C-l" 'message-to-list-only)
2546   (define-key message-mode-map "\C-c\C-f\C-e" 'message-insert-expires)
2547
2548   (define-key message-mode-map "\C-c\C-u" 'message-insert-or-toggle-importance)
2549   (define-key message-mode-map "\C-c\M-n"
2550     'message-insert-disposition-notification-to)
2551
2552   (define-key message-mode-map "\C-c\C-y" 'message-yank-original)
2553   (define-key message-mode-map "\C-c\M-\C-y" 'message-yank-buffer)
2554   (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message)
2555   (define-key message-mode-map "\C-c\C-w" 'message-insert-signature)
2556   (define-key message-mode-map "\C-c\M-h" 'message-insert-headers)
2557   (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body)
2558   (define-key message-mode-map "\C-c\C-o" 'message-sort-headers)
2559   (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer)
2560
2561   (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit)
2562   (define-key message-mode-map "\C-c\C-s" 'message-send)
2563   (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer)
2564   (define-key message-mode-map "\C-c\C-d" 'message-dont-send)
2565   (define-key message-mode-map "\C-c\n" 'gnus-delay-article)
2566
2567   (define-key message-mode-map "\C-c\M-k" 'message-kill-address)
2568   (define-key message-mode-map "\C-c\C-e" 'message-elide-region)
2569   (define-key message-mode-map "\C-c\C-v" 'message-delete-not-region)
2570   (define-key message-mode-map "\C-c\C-z" 'message-kill-to-signature)
2571   (define-key message-mode-map "\M-\r" 'message-newline-and-reformat)
2572   (define-key message-mode-map [remap split-line]  'message-split-line)
2573
2574   (define-key message-mode-map "\C-c\C-a" 'mml-attach-file)
2575
2576   (define-key message-mode-map "\C-a" 'message-beginning-of-line)
2577   (define-key message-mode-map "\t" 'message-tab)
2578   (define-key message-mode-map "\M-;" 'comment-region)
2579
2580   (define-key message-mode-map "\M-n" 'message-display-abbrev))
2581
2582 (easy-menu-define
2583   message-mode-menu message-mode-map "Message Menu."
2584   `("Message"
2585     ["Yank Original" message-yank-original message-reply-buffer]
2586     ["Fill Yanked Message" message-fill-yanked-message t]
2587     ["Insert Signature" message-insert-signature t]
2588     ["Caesar (rot13) Message" message-caesar-buffer-body t]
2589     ["Caesar (rot13) Region" message-caesar-region (message-mark-active-p)]
2590     ["Elide Region" message-elide-region
2591      :active (message-mark-active-p)
2592      ,@(if (featurep 'xemacs) nil
2593          '(:help "Replace text in region with an ellipsis"))]
2594     ["Delete Outside Region" message-delete-not-region
2595      :active (message-mark-active-p)
2596      ,@(if (featurep 'xemacs) nil
2597          '(:help "Delete all quoted text outside region"))]
2598     ["Kill To Signature" message-kill-to-signature t]
2599     ["Newline and Reformat" message-newline-and-reformat t]
2600     ["Rename buffer" message-rename-buffer t]
2601     ["Spellcheck" ispell-message
2602      ,@(if (featurep 'xemacs) '(t)
2603          '(:help "Spellcheck this message"))]
2604     "----"
2605     ["Insert Region Marked" message-mark-inserted-region
2606      :active (message-mark-active-p)
2607      ,@(if (featurep 'xemacs) nil
2608          '(:help "Mark region with enclosing tags"))]
2609     ["Insert File Marked..." message-mark-insert-file
2610      ,@(if (featurep 'xemacs) '(t)
2611          '(:help "Insert file at point marked with enclosing tags"))]
2612     "----"
2613     ["Send Message" message-send-and-exit
2614      ,@(if (featurep 'xemacs) '(t)
2615          '(:help "Send this message"))]
2616     ["Postpone Message" message-dont-send
2617      ,@(if (featurep 'xemacs) '(t)
2618          '(:help "File this draft message and exit"))]
2619     ["Send at Specific Time..." gnus-delay-article
2620      ,@(if (featurep 'xemacs) '(t)
2621          '(:help "Ask, then arrange to send message at that time"))]
2622     ["Kill Message" message-kill-buffer
2623      ,@(if (featurep 'xemacs) '(t)
2624          '(:help "Delete this message without sending"))]
2625     "----"
2626     ["Message manual" message-info
2627      ,@(if (featurep 'xemacs) '(t)
2628          '(:help "Display the Message manual"))]))
2629
2630 (easy-menu-define
2631   message-mode-field-menu message-mode-map ""
2632   `("Field"
2633     ["To" message-goto-to t]
2634     ["From" message-goto-from t]
2635     ["Subject" message-goto-subject t]
2636     ["Change subject..." message-change-subject t]
2637     ["Cc" message-goto-cc t]
2638     ["Bcc" message-goto-bcc t]
2639     ["Fcc" message-goto-fcc t]
2640     ["Reply-To" message-goto-reply-to t]
2641     ["Flag As Important" message-insert-importance-high
2642      ,@(if (featurep 'xemacs) '(t)
2643          '(:help "Mark this message as important"))]
2644     ["Flag As Unimportant" message-insert-importance-low
2645      ,@(if (featurep 'xemacs) '(t)
2646          '(:help "Mark this message as unimportant"))]
2647     ["Request Receipt"
2648      message-insert-disposition-notification-to
2649      ,@(if (featurep 'xemacs) '(t)
2650          '(:help "Request a receipt notification"))]
2651     "----"
2652     ;; (typical) news stuff
2653     ["Summary" message-goto-summary t]
2654     ["Keywords" message-goto-keywords t]
2655     ["Newsgroups" message-goto-newsgroups t]
2656     ["Fetch Newsgroups" message-insert-newsgroups t]
2657     ["Followup-To" message-goto-followup-to t]
2658     ;; ["Followup-To (with note in body)" message-cross-post-followup-to t]
2659     ["Crosspost / Followup-To..." message-cross-post-followup-to t]
2660     ["Distribution" message-goto-distribution t]
2661     ["Expires" message-insert-expires t ]
2662     ["X-No-Archive" message-add-archive-header t ]
2663     "----"
2664     ;; (typical) mailing-lists stuff
2665     ["Fetch To" message-insert-to
2666      ,@(if (featurep 'xemacs) '(t)
2667          '(:help "Insert a To header that points to the author."))]
2668     ["Fetch To and Cc" message-insert-wide-reply
2669      ,@(if (featurep 'xemacs) '(t)
2670          '(:help
2671            "Insert To and Cc headers as if you were doing a wide reply."))]
2672     "----"
2673     ["Send to list only" message-to-list-only t]
2674     ["Mail-Followup-To" message-goto-mail-followup-to t]
2675     ["Unsubscribed list post" message-generate-unsubscribed-mail-followup-to
2676      ,@(if (featurep 'xemacs) '(t)
2677          '(:help "Insert a reasonable `Mail-Followup-To:' header."))]
2678     ["Reduce To: to Cc:" message-reduce-to-to-cc t]
2679     "----"
2680     ["Sort Headers" message-sort-headers t]
2681     ["Encode non-ASCII domain names" message-idna-to-ascii-rhs t]
2682     ;; We hide `message-hidden-headers' by narrowing the buffer.
2683     ["Show Hidden Headers" widen t]
2684     ["Goto Body" message-goto-body t]
2685     ["Goto Signature" message-goto-signature t]))
2686
2687 (defvar message-tool-bar-map nil)
2688
2689 (defvar facemenu-add-face-function)
2690 (defvar facemenu-remove-face-function)
2691
2692 ;;; Forbidden properties
2693 ;;
2694 ;; We use `after-change-functions' to keep special text properties
2695 ;; that interfer with the normal function of message mode out of the
2696 ;; buffer.
2697
2698 (defcustom message-strip-special-text-properties t
2699   "Strip special properties from the message buffer.
2700
2701 Emacs has a number of special text properties which can break message
2702 composing in various ways.  If this option is set, message will strip
2703 these properties from the message composition buffer.  However, some
2704 packages requires these properties to be present in order to work.
2705 If you use one of these packages, turn this option off, and hope the
2706 message composition doesn't break too bad."
2707   :version "22.1"
2708   :group 'message-various
2709   :link '(custom-manual "(message)Various Message Variables")
2710   :type 'boolean)
2711
2712 (defconst message-forbidden-properties
2713   ;; No reason this should be clutter up customize.  We make it a
2714   ;; property list (rather than a list of property symbols), to be
2715   ;; directly useful for `remove-text-properties'.
2716   '(field nil read-only nil invisible nil intangible nil
2717           mouse-face nil modification-hooks nil insert-in-front-hooks nil
2718           insert-behind-hooks nil point-entered nil point-left nil)
2719   ;; Other special properties:
2720   ;; category, face, display: probably doesn't do any harm.
2721   ;; fontified: is used by font-lock.
2722   ;; syntax-table, local-map: I dunno.
2723   ;; We need to add XEmacs names to the list.
2724   "Property list of with properties forbidden in message buffers.
2725 The values of the properties are ignored, only the property names are used.")
2726
2727 (defun message-tamago-not-in-use-p (pos)
2728   "Return t when tamago version 4 is not in use at the cursor position.
2729 Tamago version 4 is a popular input method for writing Japanese text.
2730 It uses the properties `intangible', `invisible', `modification-hooks'
2731 and `read-only' when translating ascii or kana text to kanji text.
2732 These properties are essential to work, so we should never strip them."
2733   (not (and (boundp 'egg-modefull-mode)
2734             (symbol-value 'egg-modefull-mode)
2735             (or (memq (get-text-property pos 'intangible)
2736                       '(its-part-1 its-part-2))
2737                 (get-text-property pos 'egg-end)
2738                 (get-text-property pos 'egg-lang)
2739                 (get-text-property pos 'egg-start)))))
2740
2741 (defsubst message-mail-alias-type-p (type)
2742   (if (atom message-mail-alias-type)
2743       (eq message-mail-alias-type type)
2744     (memq type message-mail-alias-type)))
2745
2746 (defun message-strip-forbidden-properties (begin end &optional old-length)
2747   "Strip forbidden properties between BEGIN and END, ignoring the third arg.
2748 This function is intended to be called from `after-change-functions'.
2749 See also `message-forbidden-properties'."
2750   (when (and (message-mail-alias-type-p 'ecomplete)
2751              (memq this-command message-self-insert-commands))
2752     (message-display-abbrev))
2753   (when (and message-strip-special-text-properties
2754              (message-tamago-not-in-use-p begin))
2755     (let ((buffer-read-only nil)
2756           (inhibit-read-only t))
2757       (remove-text-properties begin end message-forbidden-properties))))
2758
2759 ;;;###autoload
2760 (define-derived-mode message-mode text-mode "Message"
2761   "Major mode for editing mail and news to be sent.
2762 Like Text Mode but with these additional commands:\\<message-mode-map>
2763 C-c C-s  `message-send' (send the message)  C-c C-c  `message-send-and-exit'
2764 C-c C-d  Postpone sending the message       C-c C-k  Kill the message
2765 C-c C-f  move to a header field (and create it if there isn't):
2766          C-c C-f C-t  move to To        C-c C-f C-s  move to Subject
2767          C-c C-f C-c  move to Cc        C-c C-f C-b  move to Bcc
2768          C-c C-f C-w  move to Fcc       C-c C-f C-r  move to Reply-To
2769          C-c C-f C-u  move to Summary   C-c C-f C-n  move to Newsgroups
2770          C-c C-f C-k  move to Keywords  C-c C-f C-d  move to Distribution
2771          C-c C-f C-o  move to From (\"Originator\")
2772          C-c C-f C-f  move to Followup-To
2773          C-c C-f C-m  move to Mail-Followup-To
2774          C-c C-f C-e  move to Expires
2775          C-c C-f C-i  cycle through Importance values
2776          C-c C-f s    change subject and append \"(was: <Old Subject>)\"
2777          C-c C-f x    crossposting with FollowUp-To header and note in body
2778          C-c C-f t    replace To: header with contents of Cc: or Bcc:
2779          C-c C-f a    Insert X-No-Archive: header and a note in the body
2780 C-c C-t  `message-insert-to' (add a To header to a news followup)
2781 C-c C-l  `message-to-list-only' (removes all but list address in to/cc)
2782 C-c C-n  `message-insert-newsgroups' (add a Newsgroup header to a news reply)
2783 C-c C-b  `message-goto-body' (move to beginning of message text).
2784 C-c C-i  `message-goto-signature' (move to the beginning of the signature).
2785 C-c C-w  `message-insert-signature' (insert `message-signature-file' file).
2786 C-c C-y  `message-yank-original' (insert current message, if any).
2787 C-c C-q  `message-fill-yanked-message' (fill what was yanked).
2788 C-c C-e  `message-elide-region' (elide the text between point and mark).
2789 C-c C-v  `message-delete-not-region' (remove the text outside the region).
2790 C-c C-z  `message-kill-to-signature' (kill the text up to the signature).
2791 C-c C-r  `message-caesar-buffer-body' (rot13 the message body).
2792 C-c C-a  `mml-attach-file' (attach a file as MIME).
2793 C-c C-u  `message-insert-or-toggle-importance'  (insert or cycle importance).
2794 C-c M-n  `message-insert-disposition-notification-to'  (request receipt).
2795 C-c M-m  `message-mark-inserted-region' (mark region with enclosing tags).
2796 C-c M-f  `message-mark-insert-file' (insert file marked with enclosing tags).
2797 M-RET    `message-newline-and-reformat' (break the line and reformat)."
2798   (setq local-abbrev-table text-mode-abbrev-table)
2799   (set (make-local-variable 'message-reply-buffer) nil)
2800   (set (make-local-variable 'message-inserted-headers) nil)
2801   (set (make-local-variable 'message-send-actions) nil)
2802   (set (make-local-variable 'message-exit-actions) nil)
2803   (set (make-local-variable 'message-kill-actions) nil)
2804   (set (make-local-variable 'message-postpone-actions) nil)
2805   (set (make-local-variable 'message-draft-article) nil)
2806   (setq buffer-offer-save t)
2807   (set (make-local-variable 'facemenu-add-face-function)
2808        (lambda (face end)
2809          (let ((face-fun (cdr (assq face message-face-alist))))
2810            (if face-fun
2811                (funcall face-fun (point) end)
2812              (error "Face %s not configured for %s mode" face mode-name)))
2813          ""))
2814   (set (make-local-variable 'facemenu-remove-face-function) t)
2815   (set (make-local-variable 'message-reply-headers) nil)
2816   (make-local-variable 'message-newsreader)
2817   (make-local-variable 'message-mailer)
2818   (make-local-variable 'message-post-method)
2819   (set (make-local-variable 'message-sent-message-via) nil)
2820   (set (make-local-variable 'message-checksum) nil)
2821   (set (make-local-variable 'message-mime-part) 0)
2822   (message-setup-fill-variables)
2823   (when message-fill-column
2824     (setq fill-column message-fill-column)
2825     (turn-on-auto-fill))
2826   ;; Allow using comment commands to add/remove quoting.
2827   ;; (set (make-local-variable 'comment-start) message-yank-prefix)
2828   (when message-yank-prefix
2829     (set (make-local-variable 'comment-start) message-yank-prefix)
2830     (set (make-local-variable 'comment-start-skip)
2831          (concat "^" (regexp-quote message-yank-prefix) "[ \t]*")))
2832   (if (featurep 'xemacs)
2833       (message-setup-toolbar)
2834     (set (make-local-variable 'font-lock-defaults)
2835          '(message-font-lock-keywords t))
2836     (if (boundp 'tool-bar-map)
2837         (set (make-local-variable 'tool-bar-map) (message-make-tool-bar))))
2838   (easy-menu-add message-mode-menu message-mode-map)
2839   (easy-menu-add message-mode-field-menu message-mode-map)
2840   (gnus-make-local-hook 'after-change-functions)
2841   ;; Mmmm... Forbidden properties...
2842   (add-hook 'after-change-functions 'message-strip-forbidden-properties
2843             nil 'local)
2844   ;; Allow mail alias things.
2845   (cond
2846    ((message-mail-alias-type-p 'abbrev)
2847     (if (fboundp 'mail-abbrevs-setup)
2848         (mail-abbrevs-setup)
2849       (if (fboundp 'mail-aliases-setup) ; warning avoidance
2850           (mail-aliases-setup))))
2851    ((message-mail-alias-type-p 'ecomplete)
2852     (ecomplete-setup)))
2853   (unless buffer-file-name
2854     (message-set-auto-save-file-name))
2855   (unless (buffer-base-buffer)
2856     ;; Don't enable multibyte on an indirect buffer.  Maybe enabling
2857     ;; multibyte is not necessary at all. -- zsh
2858     (mm-enable-multibyte))
2859   (set (make-local-variable 'indent-tabs-mode) nil) ;No tabs for indentation.
2860   (mml-mode))
2861
2862 (defun message-setup-fill-variables ()
2863   "Setup message fill variables."
2864   (set (make-local-variable 'fill-paragraph-function)
2865        'message-fill-paragraph)
2866   (make-local-variable 'paragraph-separate)
2867   (make-local-variable 'paragraph-start)
2868   (make-local-variable 'adaptive-fill-regexp)
2869   (unless (boundp 'adaptive-fill-first-line-regexp)
2870     (setq adaptive-fill-first-line-regexp nil))
2871   (make-local-variable 'adaptive-fill-first-line-regexp)
2872   (let ((quote-prefix-regexp
2873          ;; User should change message-cite-prefix-regexp if
2874          ;; message-yank-prefix is set to an abnormal value.
2875          (concat "\\(" message-cite-prefix-regexp "\\)[ \t]*")))
2876     (setq paragraph-start
2877           (concat
2878            (regexp-quote mail-header-separator) "$\\|"
2879            "[ \t]*$\\|"                 ; blank lines
2880            "-- $\\|"                    ; signature delimiter
2881            "---+$\\|"              ; delimiters for forwarded messages
2882            page-delimiter "$\\|"        ; spoiler warnings
2883            ".*wrote:$\\|"               ; attribution lines
2884            quote-prefix-regexp "$\\|"   ; empty lines in quoted text
2885                                         ; mml tags
2886            "<#!*/?\\(multipart\\|part\\|external\\|mml\\|secure\\)"))
2887     (setq paragraph-separate paragraph-start)
2888     (setq adaptive-fill-regexp
2889           (concat quote-prefix-regexp "\\|" adaptive-fill-regexp))
2890     (setq adaptive-fill-first-line-regexp
2891           (concat quote-prefix-regexp "\\|"
2892                   adaptive-fill-first-line-regexp)))
2893   (make-local-variable 'auto-fill-inhibit-regexp)
2894   ;;(setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:")
2895   (setq auto-fill-inhibit-regexp nil)
2896   (make-local-variable 'normal-auto-fill-function)
2897   (setq normal-auto-fill-function 'message-do-auto-fill)
2898   ;; KLUDGE: auto fill might already be turned on in `text-mode-hook'.
2899   ;; In that case, ensure that it uses the right function.  The real
2900   ;; solution would be not to use `define-derived-mode', and run
2901   ;; `text-mode-hook' ourself at the end of the mode.
2902   ;; -- Per Abrahamsen <abraham@dina.kvl.dk> Date: 2001-10-19.
2903   ;; This kludge is unneeded in Emacs>=21 since define-derived-mode is
2904   ;; now careful to run parent hooks after the body.  --Stef
2905   (when auto-fill-function
2906     (setq auto-fill-function normal-auto-fill-function)))
2907
2908 \f
2909
2910 ;;;
2911 ;;; Message mode commands
2912 ;;;
2913
2914 ;;; Movement commands
2915
2916 (defun message-goto-to ()
2917   "Move point to the To header."
2918   (interactive)
2919   (message-position-on-field "To"))
2920
2921 (defun message-goto-from ()
2922   "Move point to the From header."
2923   (interactive)
2924   (message-position-on-field "From"))
2925
2926 (defun message-goto-subject ()
2927   "Move point to the Subject header."
2928   (interactive)
2929   (message-position-on-field "Subject"))
2930
2931 (defun message-goto-cc ()
2932   "Move point to the Cc header."
2933   (interactive)
2934   (message-position-on-field "Cc" "To"))
2935
2936 (defun message-goto-bcc ()
2937   "Move point to the Bcc  header."
2938   (interactive)
2939   (message-position-on-field "Bcc" "Cc" "To"))
2940
2941 (defun message-goto-fcc ()
2942   "Move point to the Fcc header."
2943   (interactive)
2944   (message-position-on-field "Fcc" "To" "Newsgroups"))
2945
2946 (defun message-goto-reply-to ()
2947   "Move point to the Reply-To header."
2948   (interactive)
2949   (message-position-on-field "Reply-To" "Subject"))
2950
2951 (defun message-goto-newsgroups ()
2952   "Move point to the Newsgroups header."
2953   (interactive)
2954   (message-position-on-field "Newsgroups"))
2955
2956 (defun message-goto-distribution ()
2957   "Move point to the Distribution header."
2958   (interactive)
2959   (message-position-on-field "Distribution"))
2960
2961 (defun message-goto-followup-to ()
2962   "Move point to the Followup-To header."
2963   (interactive)
2964   (message-position-on-field "Followup-To" "Newsgroups"))
2965
2966 (defun message-goto-mail-followup-to ()
2967   "Move point to the Mail-Followup-To header."
2968   (interactive)
2969   (message-position-on-field "Mail-Followup-To" "To"))
2970
2971 (defun message-goto-keywords ()
2972   "Move point to the Keywords header."
2973   (interactive)
2974   (message-position-on-field "Keywords" "Subject"))
2975
2976 (defun message-goto-summary ()
2977   "Move point to the Summary header."
2978   (interactive)
2979   (message-position-on-field "Summary" "Subject"))
2980
2981 (defun message-goto-body (&optional interactivep)
2982   "Move point to the beginning of the message body."
2983   (interactive (list t))
2984   (when (and interactivep
2985              (looking-at "[ \t]*\n"))
2986     (expand-abbrev))
2987   (goto-char (point-min))
2988   (or (search-forward (concat "\n" mail-header-separator "\n") nil t)
2989       (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t)))
2990
2991 (defun message-in-body-p ()
2992   "Return t if point is in the message body."
2993   (let ((body (save-excursion (message-goto-body) (point))))
2994     (>= (point) body)))
2995
2996 (defun message-goto-eoh ()
2997   "Move point to the end of the headers."
2998   (interactive)
2999   (message-goto-body)
3000   (forward-line -1))
3001
3002 (defun message-goto-signature ()
3003   "Move point to the beginning of the message signature.
3004 If there is no signature in the article, go to the end and
3005 return nil."
3006   (interactive)
3007   (goto-char (point-min))
3008   (if (re-search-forward message-signature-separator nil t)
3009       (forward-line 1)
3010     (goto-char (point-max))
3011     nil))
3012
3013 (defun message-generate-unsubscribed-mail-followup-to (&optional include-cc)
3014   "Insert a reasonable MFT header in a post to an unsubscribed list.
3015 When making original posts to a mailing list you are not subscribed to,
3016 you have to type in a MFT header by hand.  The contents, usually, are
3017 the addresses of the list and your own address.  This function inserts
3018 such a header automatically.  It fetches the contents of the To: header
3019 in the current mail buffer, and appends the current `user-mail-address'.
3020
3021 If the optional argument INCLUDE-CC is non-nil, the addresses in the
3022 Cc: header are also put into the MFT."
3023
3024   (interactive "P")
3025   (let* (cc tos)
3026     (save-restriction
3027       (message-narrow-to-headers)
3028       (message-remove-header "Mail-Followup-To")
3029       (setq cc (and include-cc (message-fetch-field "Cc")))
3030       (setq tos (if cc
3031                     (concat (message-fetch-field "To") "," cc)
3032                   (message-fetch-field "To"))))
3033     (message-goto-mail-followup-to)
3034     (insert (concat tos ", " user-mail-address))))
3035
3036 \f
3037
3038 (defun message-insert-to (&optional force)
3039   "Insert a To header that points to the author of the article being replied to.
3040 If the original author requested not to be sent mail, don't insert unless the
3041 prefix FORCE is given."
3042   (interactive "P")
3043   (let* ((mct (message-fetch-reply-field "mail-copies-to"))
3044          (dont (and mct (or (equal (downcase mct) "never")
3045                             (equal (downcase mct) "nobody"))))
3046          (to (or (message-fetch-reply-field "mail-reply-to")
3047                  (message-fetch-reply-field "reply-to")
3048                  (message-fetch-reply-field "from"))))
3049     (when (and dont to)
3050       (message
3051        (if force
3052            "Ignoring the user request not to have copies sent via mail"
3053          "Complying with the user request not to have copies sent via mail")))
3054     (when (and force (not to))
3055       (error "No mail address in the article"))
3056     (when (and to (or force (not dont)))
3057       (message-carefully-insert-headers (list (cons 'To to))))))
3058
3059 (defun message-insert-wide-reply ()
3060   "Insert To and Cc headers as if you were doing a wide reply."
3061   (interactive)
3062   (let ((headers (message-with-reply-buffer
3063                    (message-get-reply-headers t))))
3064     (message-carefully-insert-headers headers)))
3065
3066 (defcustom message-header-synonyms
3067   '((To Cc Bcc)
3068     (Original-To))
3069   "List of lists of header synonyms.
3070 E.g., if this list contains a member list with elements `Cc' and `To',
3071 then `message-carefully-insert-headers' will not insert a `To' header
3072 when the message is already `Cc'ed to the recipient."
3073   :version "22.1"
3074   :group 'message-headers
3075   :link '(custom-manual "(message)Message Headers")
3076   :type '(repeat sexp))
3077
3078 (defun message-carefully-insert-headers (headers)
3079   "Insert the HEADERS, an alist, into the message buffer.
3080 Does not insert the headers when they are already present there
3081 or in the synonym headers, defined by `message-header-synonyms'."
3082   ;; FIXME: Should compare only the address and not the full name.  Comparison
3083   ;; should be done case-folded (and with `string=' rather than
3084   ;; `string-match').
3085   ;; (mail-strip-quoted-names "Foo Bar <foo@bar>, bla@fasel (Bla Fasel)")
3086   (dolist (header headers)
3087     (let* ((header-name (symbol-name (car header)))
3088            (new-header (cdr header))
3089            (synonyms (loop for synonym in message-header-synonyms
3090                            when (memq (car header) synonym) return synonym))
3091            (old-header
3092             (loop for synonym in synonyms
3093                   for old-header = (mail-fetch-field (symbol-name synonym))
3094                   when (and old-header (string-match new-header old-header))
3095                   return synonym)))
3096       (if old-header
3097           (message "already have `%s' in `%s'" new-header old-header)
3098         (when (and (message-position-on-field header-name)
3099                    (setq old-header (mail-fetch-field header-name))
3100                    (not (string-match "\\` *\\'" old-header)))
3101           (insert ", "))
3102         (insert new-header)))))
3103
3104 (defun message-widen-reply ()
3105   "Widen the reply to include maximum recipients."
3106   (interactive)
3107   (let ((follow-to
3108          (and message-reply-buffer
3109               (buffer-name message-reply-buffer)
3110               (with-current-buffer message-reply-buffer
3111                 (message-get-reply-headers t)))))
3112     (save-excursion
3113       (save-restriction
3114         (message-narrow-to-headers)
3115         (dolist (elem follow-to)
3116           (message-remove-header (symbol-name (car elem)))
3117           (goto-char (point-min))
3118           (insert (symbol-name (car elem)) ": "
3119                   (cdr elem) "\n"))))))
3120
3121 (defun message-insert-newsgroups ()
3122   "Insert the Newsgroups header from the article being replied to."
3123   (interactive)
3124   (when (and (message-position-on-field "Newsgroups")
3125              (mail-fetch-field "newsgroups")
3126              (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
3127     (insert ","))
3128   (insert (or (message-fetch-reply-field "newsgroups") "")))
3129
3130 \f
3131
3132 ;;; Various commands
3133
3134 (defun message-delete-not-region (beg end)
3135   "Delete everything in the body of the current message outside of the region."
3136   (interactive "r")
3137   (let (citeprefix)
3138     (save-excursion
3139       (goto-char beg)
3140       ;; snarf citation prefix, if appropriate
3141       (unless (eq (point) (progn (beginning-of-line) (point)))
3142         (when (looking-at message-cite-prefix-regexp)
3143           (setq citeprefix (match-string 0))))
3144       (goto-char end)
3145       (delete-region (point) (if (not (message-goto-signature))
3146                                  (point)
3147                                (forward-line -2)
3148                                (point)))
3149       (insert "\n")
3150       (goto-char beg)
3151       (delete-region beg (progn (message-goto-body)
3152                                 (forward-line 2)
3153                                 (point)))
3154       (when citeprefix
3155         (insert citeprefix))))
3156   (when (message-goto-signature)
3157     (forward-line -2)))
3158
3159 (defun message-kill-to-signature (&optional arg)
3160   "Kill all text up to the signature.
3161 If a numberic argument or prefix arg is given, leave that number
3162 of lines before the signature intact."
3163   (interactive "P")
3164   (save-excursion
3165     (save-restriction
3166       (let ((point (point)))
3167         (narrow-to-region point (point-max))
3168         (message-goto-signature)
3169         (unless (eobp)
3170           (if (and arg (numberp arg))
3171               (forward-line (- -1 arg))
3172             (end-of-line -1)))
3173         (unless (= point (point))
3174           (kill-region point (point))
3175           (unless (bolp)
3176             (insert "\n")))))))
3177
3178 (defun message-newline-and-reformat (&optional arg not-break)
3179   "Insert four newlines, and then reformat if inside quoted text.
3180 Prefix arg means justify as well."
3181   (interactive (list (if current-prefix-arg 'full)))
3182   (let (quoted point beg end leading-space bolp fill-paragraph-function)
3183     (setq point (point))
3184     (beginning-of-line)
3185     (setq beg (point))
3186     (setq bolp (= beg point))
3187     ;; Find first line of the paragraph.
3188     (if not-break
3189         (while (and (not (eobp))
3190                     (not (looking-at message-cite-prefix-regexp))
3191                     (looking-at paragraph-start))
3192           (forward-line 1)))
3193     ;; Find the prefix
3194     (when (looking-at message-cite-prefix-regexp)
3195       (setq quoted (match-string 0))
3196       (goto-char (match-end 0))
3197       (looking-at "[ \t]*")
3198       (setq leading-space (match-string 0)))
3199     (if (and quoted
3200              (not not-break)
3201              (not bolp)
3202              (< (- point beg) (length quoted)))
3203         ;; break inside the cite prefix.
3204         (setq quoted nil
3205               end nil))
3206     (if quoted
3207         (progn
3208           (forward-line 1)
3209           (while (and (not (eobp))
3210                       (not (looking-at paragraph-separate))
3211                       (looking-at message-cite-prefix-regexp)
3212                       (equal quoted (match-string 0)))
3213             (goto-char (match-end 0))
3214             (looking-at "[ \t]*")
3215             (if (> (length leading-space) (length (match-string 0)))
3216                 (setq leading-space (match-string 0)))
3217             (forward-line 1))
3218           (setq end (point))
3219           (goto-char beg)
3220           (while (and (if (bobp) nil (forward-line -1) t)
3221                       (not (looking-at paragraph-start))
3222                       (looking-at message-cite-prefix-regexp)
3223                       (equal quoted (match-string 0)))
3224             (setq beg (point))
3225             (goto-char (match-end 0))
3226             (looking-at "[ \t]*")
3227             (if (> (length leading-space) (length (match-string 0)))
3228                 (setq leading-space (match-string 0)))))
3229       (while (and (not (eobp))
3230                   (not (looking-at paragraph-separate))
3231                   (not (looking-at message-cite-prefix-regexp)))
3232         (forward-line 1))
3233       (setq end (point))
3234       (goto-char beg)
3235       (while (and (if (bobp) nil (forward-line -1) t)
3236                   (not (looking-at paragraph-start))
3237                   (not (looking-at message-cite-prefix-regexp)))
3238         (setq beg (point))))
3239     (goto-char point)
3240     (save-restriction
3241       (narrow-to-region beg end)
3242       (if not-break
3243           (setq point nil)
3244         (if bolp
3245             (newline)
3246           (newline)
3247           (newline))
3248         (setq point (point))
3249         ;; (newline 2) doesn't mark both newline's as hard, so call
3250         ;; newline twice. -jas
3251         (newline)
3252         (newline)
3253         (delete-region (point) (re-search-forward "[ \t]*"))
3254         (when (and quoted (not bolp))
3255           (insert quoted leading-space)))
3256       (undo-boundary)
3257       (if quoted
3258           (let* ((adaptive-fill-regexp
3259                   (regexp-quote (concat quoted leading-space)))
3260                  (adaptive-fill-first-line-regexp
3261                   adaptive-fill-regexp ))
3262             (fill-paragraph arg))
3263         (fill-paragraph arg))
3264       (if point (goto-char point)))))
3265
3266 (defun message-fill-paragraph (&optional arg)
3267   "Message specific function to fill a paragraph.
3268 This function is used as the value of `fill-paragraph-function' in
3269 Message buffers and is not meant to be called directly."
3270   (interactive (list (if current-prefix-arg 'full)))
3271   (if (if (boundp 'filladapt-mode) filladapt-mode)
3272       nil
3273     (if (message-point-in-header-p)
3274         (message-fill-field)
3275       (message-newline-and-reformat arg t))
3276     t))
3277
3278 (defun message-point-in-header-p ()
3279   "Return t if point is in the header."
3280   (save-excursion
3281     (not (re-search-backward
3282           (concat "^" (regexp-quote mail-header-separator) "\n") nil t))))
3283
3284 (defun message-do-auto-fill ()
3285   "Like `do-auto-fill', but don't fill in message header."
3286   (unless (message-point-in-header-p)
3287     (do-auto-fill)))
3288
3289 (defun message-insert-signature (&optional force)
3290   "Insert a signature.  See documentation for variable `message-signature'."
3291   (interactive (list 0))
3292   (let* ((signature
3293           (cond
3294            ((and (null message-signature)
3295                  (eq force 0))
3296             (save-excursion
3297               (goto-char (point-max))
3298               (not (re-search-backward message-signature-separator nil t))))
3299            ((and (null message-signature)
3300                  force)
3301             t)
3302            ((functionp message-signature)
3303             (funcall message-signature))
3304            ((listp message-signature)
3305             (eval message-signature))
3306            (t message-signature)))
3307          signature-file)
3308     (setq signature
3309           (cond ((stringp signature)
3310                  signature)
3311                 ((and (eq t signature) message-signature-file)
3312                  (setq signature-file
3313                        (if (and message-signature-directory
3314                                 ;; don't actually use the signature directory
3315                                 ;; if message-signature-file contains a path.
3316                                 (not (file-name-directory
3317                                       message-signature-file)))
3318                            (nnheader-concat message-signature-directory
3319                                             message-signature-file)
3320                          message-signature-file))
3321                  (file-exists-p signature-file))))
3322     (when signature
3323       (goto-char (point-max))
3324       ;; Insert the signature.
3325       (unless (bolp)
3326         (insert "\n"))
3327       (when message-signature-insert-empty-line
3328         (insert "\n"))
3329       (insert "-- \n")
3330       (if (eq signature t)
3331           (insert-file-contents signature-file)
3332         (insert signature))
3333       (goto-char (point-max))
3334       (or (bolp) (insert "\n")))))
3335
3336 (defun message-insert-importance-high ()
3337   "Insert header to mark message as important."
3338   (interactive)
3339   (save-excursion
3340     (save-restriction
3341       (message-narrow-to-headers)
3342       (message-remove-header "Importance"))
3343     (message-goto-eoh)
3344     (insert "Importance: high\n")))
3345
3346 (defun message-insert-importance-low ()
3347   "Insert header to mark message as unimportant."
3348   (interactive)
3349   (save-excursion
3350     (save-restriction
3351       (message-narrow-to-headers)
3352       (message-remove-header "Importance"))
3353     (message-goto-eoh)
3354     (insert "Importance: low\n")))
3355
3356 (defun message-insert-or-toggle-importance ()
3357   "Insert a \"Importance: high\" header, or cycle through the header values.
3358 The three allowed values according to RFC 1327 are `high', `normal'
3359 and `low'."
3360   (interactive)
3361   (save-excursion
3362     (let ((new "high")
3363           cur)
3364       (save-restriction
3365         (message-narrow-to-headers)
3366         (when (setq cur (message-fetch-field "Importance"))
3367           (message-remove-header "Importance")
3368           (setq new (cond ((string= cur "high")
3369                            "low")
3370                           ((string= cur "low")
3371                            "normal")
3372                           (t
3373                            "high")))))
3374       (message-goto-eoh)
3375       (insert (format "Importance: %s\n" new)))))
3376
3377 (defun message-insert-disposition-notification-to ()
3378   "Request a disposition notification (return receipt) to this message.
3379 Note that this should not be used in newsgroups."
3380   (interactive)
3381   (save-excursion
3382     (save-restriction
3383       (message-narrow-to-headers)
3384       (message-remove-header "Disposition-Notification-To"))
3385     (message-goto-eoh)
3386     (insert (format "Disposition-Notification-To: %s\n"
3387                     (or (message-field-value "Reply-to")
3388                         (message-field-value "From")
3389                         (message-make-from))))))
3390
3391 (defun message-elide-region (b e)
3392   "Elide the text in the region.
3393 An ellipsis (from `message-elide-ellipsis') will be inserted where the
3394 text was killed."
3395   (interactive "r")
3396   (kill-region b e)
3397   (insert message-elide-ellipsis))
3398
3399 (defvar message-caesar-translation-table nil)
3400
3401 (defun message-caesar-region (b e &optional n)
3402   "Caesar rotate region B to E by N, default 13, for decrypting netnews."
3403   (interactive
3404    (list
3405     (min (point) (or (mark t) (point)))
3406     (max (point) (or (mark t) (point)))
3407     (when current-prefix-arg
3408       (prefix-numeric-value current-prefix-arg))))
3409
3410   (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
3411   (unless (or (zerop n)                 ; no action needed for a rot of 0
3412               (= b e))                  ; no region to rotate
3413     ;; We build the table, if necessary.
3414     (when (or (not message-caesar-translation-table)
3415               (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
3416       (setq message-caesar-translation-table
3417             (message-make-caesar-translation-table n)))
3418     (translate-region b e message-caesar-translation-table)))
3419
3420 (defun message-make-caesar-translation-table (n)
3421   "Create a rot table with offset N."
3422   (let ((i -1)
3423         (table (make-string 256 0)))
3424     (while (< (incf i) 256)
3425       (aset table i i))
3426     (concat
3427      (substring table 0 ?A)
3428      (substring table (+ ?A n) (+ ?A n (- 26 n)))
3429      (substring table ?A (+ ?A n))
3430      (substring table (+ ?A 26) ?a)
3431      (substring table (+ ?a n) (+ ?a n (- 26 n)))
3432      (substring table ?a (+ ?a n))
3433      (substring table (+ ?a 26) 255))))
3434
3435 (defun message-caesar-buffer-body (&optional rotnum wide)
3436   "Caesar rotate all letters in the current buffer by 13 places.
3437 Used to encode/decode possibly offensive messages (commonly in rec.humor).
3438 With prefix arg, specifies the number of places to rotate each letter forward.
3439 Mail and USENET news headers are not rotated unless WIDE is non-nil."
3440   (interactive (if current-prefix-arg
3441                    (list (prefix-numeric-value current-prefix-arg))
3442                  (list nil)))
3443   (save-excursion
3444     (save-restriction
3445       (when (and (not wide) (message-goto-body))
3446         (narrow-to-region (point) (point-max)))
3447       (message-caesar-region (point-min) (point-max) rotnum))))
3448
3449 (defun message-pipe-buffer-body (program)
3450   "Pipe the message body in the current buffer through PROGRAM."
3451   (save-excursion
3452     (save-restriction
3453       (when (message-goto-body)
3454         (narrow-to-region (point) (point-max)))
3455       (shell-command-on-region
3456        (point-min) (point-max) program nil t))))
3457
3458 (defun message-rename-buffer (&optional enter-string)
3459   "Rename the *message* buffer to \"*message* RECIPIENT\".
3460 If the function is run with a prefix, it will ask for a new buffer
3461 name, rather than giving an automatic name."
3462   (interactive "Pbuffer name: ")
3463   (save-excursion
3464     (save-restriction
3465       (goto-char (point-min))
3466       (narrow-to-region (point)
3467                         (search-forward mail-header-separator nil 'end))
3468       (let* ((mail-to (or
3469                        (if (message-news-p) (message-fetch-field "Newsgroups")
3470                          (message-fetch-field "To"))
3471                        ""))
3472              (mail-trimmed-to
3473               (if (string-match "," mail-to)
3474                   (concat (substring mail-to 0 (match-beginning 0)) ", ...")
3475                 mail-to))
3476              (name-default (concat "*message* " mail-trimmed-to))
3477              (name (if enter-string
3478                        (read-string "New buffer name: " name-default)
3479                      name-default)))
3480         (rename-buffer name t)))))
3481
3482 (defun message-fill-yanked-message (&optional justifyp)
3483   "Fill the paragraphs of a message yanked into this one.
3484 Numeric argument means justify as well."
3485   (interactive "P")
3486   (save-excursion
3487     (goto-char (point-min))
3488     (search-forward (concat "\n" mail-header-separator "\n") nil t)
3489     (let ((fill-prefix message-yank-prefix))
3490       (fill-individual-paragraphs (point) (point-max) justifyp))))
3491
3492 (defun message-indent-citation (&optional start end yank-only)
3493   "Modify text just inserted from a message to be cited.
3494 The inserted text should be the region.
3495 When this function returns, the region is again around the modified text.
3496
3497 Normally, indent each nonblank line `message-indentation-spaces' spaces.
3498 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
3499   (unless start (setq start (point)))
3500   (unless yank-only
3501     ;; Remove unwanted headers.
3502     (when message-ignored-cited-headers
3503       (let (all-removed)
3504         (save-restriction
3505           (narrow-to-region
3506            (goto-char start)
3507            (if (search-forward "\n\n" nil t)
3508                (1- (point))
3509              (point)))
3510           (message-remove-header message-ignored-cited-headers t)
3511           (when (= (point-min) (point-max))
3512             (setq all-removed t))
3513           (goto-char (point-max)))
3514         (if all-removed
3515             (goto-char start)
3516           (forward-line 1))))
3517     ;; Delete blank lines at the start of the buffer.
3518     (while (and (point-min)
3519                 (eolp)
3520                 (not (eobp)))
3521       (message-delete-line))
3522     ;; Delete blank lines at the end of the buffer.
3523     (goto-char (point-max))
3524     (unless (eolp)
3525       (insert "\n"))
3526     (while (and (zerop (forward-line -1))
3527                 (looking-at "$"))
3528       (message-delete-line)))
3529   ;; Do the indentation.
3530   (if (null message-yank-prefix)
3531       (indent-rigidly start (or end (mark t)) message-indentation-spaces)
3532     (save-excursion
3533       (goto-char start)
3534       (while (< (point) (or end (mark t)))
3535         (cond ((looking-at ">")
3536                (insert message-yank-cited-prefix))
3537               ((looking-at "^$")
3538                (insert message-yank-empty-prefix))
3539               (t
3540                (insert message-yank-prefix)))
3541         (forward-line 1))))
3542   (goto-char start))
3543
3544 (defun message-remove-blank-cited-lines (&optional remove)
3545   "Remove cited lines containing only blanks.
3546 If REMOVE is non-nil, remove newlines, too.
3547
3548 To use this automatically, you may add this function to
3549 `gnus-message-setup-hook'."
3550   (interactive "P")
3551   (let ((citexp
3552          (concat
3553           "^\\("
3554           (when (boundp 'message-yank-cited-prefix)
3555             (concat message-yank-cited-prefix "\\|"))
3556           message-yank-prefix
3557           "\\)+ *\n"
3558           )))
3559     (gnus-message 8 "removing `%s'" citexp)
3560     (save-excursion
3561       (message-goto-body)
3562       (while (re-search-forward citexp nil t)
3563         (replace-match (if remove "" "\n"))))))
3564
3565 (defvar message-cite-reply-above nil
3566   "If non-nil, start own text above the quote.
3567
3568 Note: Top posting is bad netiquette.  Don't use it unless you
3569 really must.  You probably want to set variable only for specific
3570 groups, e.g. using `gnus-posting-styles':
3571
3572   (eval (set (make-local-variable 'message-cite-reply-above) t))
3573
3574 This variable has no effect in news postings.")
3575
3576 (defun message-yank-original (&optional arg)
3577   "Insert the message being replied to, if any.
3578 Puts point before the text and mark after.
3579 Normally indents each nonblank line ARG spaces (default 3).  However,
3580 if `message-yank-prefix' is non-nil, insert that prefix on each line.
3581
3582 This function uses `message-cite-function' to do the actual citing.
3583
3584 Just \\[universal-argument] as argument means don't indent, insert no
3585 prefix, and don't delete any headers."
3586   (interactive "P")
3587   (let ((modified (buffer-modified-p))
3588         body-text)
3589     (when (and message-reply-buffer
3590                message-cite-function)
3591       (when message-cite-reply-above
3592         (if (and (not (message-news-p))
3593                  (or (eq message-cite-reply-above 'is-evil)
3594                      (y-or-n-p "\
3595 Top posting is bad netiquette.  Please don't top post unless you really must.
3596 Really top post? ")))
3597             (save-excursion
3598               (setq body-text
3599                     (buffer-substring (message-goto-body)
3600                                       (point-max)))
3601               (delete-region (message-goto-body) (point-max)))
3602           (set (make-local-variable 'message-cite-reply-above) nil)))
3603       (delete-windows-on message-reply-buffer t)
3604       (push-mark (save-excursion
3605                    (insert-buffer-substring message-reply-buffer)
3606                    (unless (bolp)
3607                      (insert ?\n))
3608                    (point)))
3609       (unless arg
3610         (funcall message-cite-function)
3611         (unless (eq (char-before (mark t)) ?\n)
3612           (let ((pt (point)))
3613             (goto-char (mark t))
3614             (insert-before-markers ?\n)
3615             (goto-char pt))))
3616       (when message-cite-reply-above
3617         (message-goto-body)
3618         (insert body-text)
3619         (insert (if (bolp) "\n" "\n\n"))
3620         (message-goto-body))
3621       ;; Add a `message-setup-very-last-hook' here?
3622       ;; Add `gnus-article-highlight-citation' here?
3623       (unless modified
3624         (setq message-checksum (message-checksum))))))
3625
3626 (defun message-yank-buffer (buffer)
3627   "Insert BUFFER into the current buffer and quote it."
3628   (interactive "bYank buffer: ")
3629   (let ((message-reply-buffer (get-buffer buffer)))
3630     (save-window-excursion
3631       (message-yank-original))))
3632
3633 (defun message-buffers ()
3634   "Return a list of active message buffers."
3635   (let (buffers)
3636     (save-current-buffer
3637       (dolist (buffer (buffer-list t))
3638         (set-buffer buffer)
3639         (when (and (eq major-mode 'message-mode)
3640                    (null message-sent-message-via))
3641           (push (buffer-name buffer) buffers))))
3642     (nreverse buffers)))
3643
3644 (defun message-cite-original-1 (strip-signature)
3645   "Cite an original message.
3646 If STRIP-SIGNATURE is non-nil, strips off the signature from the
3647 original message.
3648
3649 This function uses `mail-citation-hook' if that is non-nil."
3650   (if (and (boundp 'mail-citation-hook)
3651            mail-citation-hook)
3652       (run-hooks 'mail-citation-hook)
3653     (let* ((start (point))
3654            (end (mark t))
3655            (x-no-archive nil)
3656            (functions
3657             (when message-indent-citation-function
3658               (if (listp message-indent-citation-function)
3659                   message-indent-citation-function
3660                 (list message-indent-citation-function))))
3661            ;; This function may be called by `gnus-summary-yank-message' and
3662            ;; may insert a different article from the original.  So, we will
3663            ;; modify the value of `message-reply-headers' with that article.
3664            (message-reply-headers
3665             (save-restriction
3666               (narrow-to-region start end)
3667               (message-narrow-to-head-1)
3668               (setq x-no-archive (message-fetch-field "x-no-archive"))
3669               (vector 0
3670                       (or (message-fetch-field "subject") "none")
3671                       (or (message-fetch-field "from") "nobody")
3672                       (message-fetch-field "date")
3673                       (message-fetch-field "message-id" t)
3674                       (message-fetch-field "references")
3675                       0 0 ""))))
3676       (mml-quote-region start end)
3677       (when strip-signature
3678         ;; Allow undoing.
3679         (undo-boundary)
3680         (goto-char end)
3681         (when (re-search-backward message-signature-separator start t)
3682           ;; Also peel off any blank lines before the signature.
3683           (forward-line -1)
3684           (while (looking-at "^[ \t]*$")
3685             (forward-line -1))
3686           (forward-line 1)
3687           (delete-region (point) end)
3688           (unless (search-backward "\n\n" start t)
3689             ;; Insert a blank line if it is peeled off.
3690             (insert "\n"))))
3691       (goto-char start)
3692       (mapc 'funcall functions)
3693       (when message-citation-line-function
3694         (unless (bolp)
3695           (insert "\n"))
3696         (funcall message-citation-line-function))
3697       (when (and x-no-archive
3698                  (not message-cite-articles-with-x-no-archive)
3699                  (string-match "yes" x-no-archive))
3700         (undo-boundary)
3701         (delete-region (point) (mark t))
3702         (insert "> [Quoted text removed due to X-No-Archive]\n")
3703         (push-mark)
3704         (forward-line -1)))))
3705
3706 (defun message-cite-original ()
3707   "Cite function in the standard Message manner."
3708   (message-cite-original-1 nil))
3709
3710 (defvar gnus-extract-address-components)
3711
3712 (autoload 'format-spec "format-spec")
3713
3714 (defun message-insert-formatted-citation-line (&optional from date)
3715   "Function that inserts a formatted citation line.
3716
3717 See `message-citation-line-format'."
3718   ;; The optional args are for testing/debugging.  They will disappear later.
3719   ;; Example:
3720   ;; (with-temp-buffer
3721   ;;   (message-insert-formatted-citation-line
3722   ;;    "John Doe <john.doe@example.invalid>"
3723   ;;    (current-time))
3724   ;;   (buffer-string))
3725   (when (or message-reply-headers (and from date))
3726     (unless from
3727       (setq from (mail-header-from message-reply-headers)))
3728     (let* ((data (condition-case ()
3729                      (funcall (if (boundp gnus-extract-address-components)
3730                                   gnus-extract-address-components
3731                                 'mail-extract-address-components)
3732                               from)
3733                    (error nil)))
3734            (name (car data))
3735            (fname name)
3736            (lname name)
3737            (net (car (cdr data)))
3738            (name-or-net (or (car data)
3739                             (car (cdr data)) from))
3740            (replydate
3741             (or
3742              date
3743              ;; We need Gnus functionality if the user wants date or time from
3744              ;; the original article:
3745              (when (string-match "%[^fnNFL]" message-citation-line-format)
3746                (autoload 'gnus-date-get-time "gnus-util")
3747                (gnus-date-get-time (mail-header-date message-reply-headers)))))
3748            (flist
3749             (let ((i ?A) lst)
3750               (when (stringp name)
3751                 ;; Guess first name and last name:
3752                 (cond ((string-match
3753                         "\\`\\(\\w\\|[-.]\\)+ \\(\\w\\|[-.]\\)+\\'" name)
3754                        (setq fname (nth 0 (split-string name "[ \t]+"))
3755                              lname (nth 1 (split-string name "[ \t]+"))))
3756                       ((string-match
3757                         "\\`\\(\\w\\|[-.]\\)+, \\(\\w\\|[-.]\\)+\\'" name)
3758                        (setq fname (nth 1 (split-string name "[ \t,]+"))
3759                              lname (nth 0 (split-string name "[ \t,]+"))))
3760                       ((string-match
3761                         "\\`\\(\\w\\|[-.]\\)+\\'" name)
3762                        (setq fname name
3763                              lname ""))))
3764               ;; The following letters are not used in `format-time-string':
3765               (push ?E lst) (push "<E>" lst)
3766               (push ?F lst) (push fname lst)
3767               ;; We might want to use "" instead of "<X>" later.
3768               (push ?J lst) (push "<J>" lst)
3769               (push ?K lst) (push "<K>" lst)
3770               (push ?L lst) (push lname lst)
3771               (push ?N lst) (push name-or-net lst)
3772               (push ?O lst) (push "<O>" lst)
3773               (push ?P lst) (push "<P>" lst)
3774               (push ?Q lst) (push "<Q>" lst)
3775               (push ?f lst) (push from lst)
3776               (push ?i lst) (push "<i>" lst)
3777               (push ?n lst) (push net lst)
3778               (push ?o lst) (push "<o>" lst)
3779               (push ?q lst) (push "<q>" lst)
3780               (push ?t lst) (push "<t>" lst)
3781               (push ?v lst) (push "<v>" lst)
3782               ;; Delegate the rest to `format-time-string':
3783               (while (<= i ?z)
3784                 (when (and (not (memq i lst))
3785                            ;; Skip (Z,a)
3786                            (or (<= i ?Z)
3787                                (>= i ?a)))
3788                   (push i lst)
3789                   (push (condition-case nil
3790                             (progn (format-time-string (format "%%%c" i)
3791                                                        replydate))
3792                           (format ">%c<" i))
3793                         lst))
3794                 (setq i (1+ i)))
3795               (reverse lst)))
3796            (spec (apply 'format-spec-make flist)))
3797       (insert (format-spec message-citation-line-format spec)))
3798     (newline)))
3799
3800 (defun message-cite-original-without-signature ()
3801   "Cite function in the standard Message manner.
3802 This function strips off the signature from the original message."
3803   (message-cite-original-1 t))
3804
3805 (defun message-insert-citation-line ()
3806   "Insert a simple citation line."
3807   (when message-reply-headers
3808     (insert (mail-header-from message-reply-headers) " writes:")
3809     (newline)
3810     (newline)))
3811
3812 (defun message-position-on-field (header &rest afters)
3813   (let ((case-fold-search t))
3814     (save-restriction
3815       (narrow-to-region
3816        (goto-char (point-min))
3817        (progn
3818          (re-search-forward
3819           (concat "^" (regexp-quote mail-header-separator) "$"))
3820          (match-beginning 0)))
3821       (goto-char (point-min))
3822       (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
3823           (progn
3824             (re-search-forward "^[^ \t]" nil 'move)
3825             (beginning-of-line)
3826             (skip-chars-backward "\n")
3827             t)
3828         (while (and afters
3829                     (not (re-search-forward
3830                           (concat "^" (regexp-quote (car afters)) ":")
3831                           nil t)))
3832           (pop afters))
3833         (when afters
3834           (re-search-forward "^[^ \t]" nil 'move)
3835           (beginning-of-line))
3836         (insert header ": \n")
3837         (forward-char -1)
3838         nil))))
3839
3840 (defun message-remove-signature ()
3841   "Remove the signature from the text between point and mark.
3842 The text will also be indented the normal way."
3843   (save-excursion
3844     (let ((start (point))
3845           mark)
3846       (if (not (re-search-forward message-signature-separator (mark t) t))
3847           ;; No signature here, so we just indent the cited text.
3848           (message-indent-citation)
3849         ;; Find the last non-empty line.
3850         (forward-line -1)
3851         (while (looking-at "[ \t]*$")
3852           (forward-line -1))
3853         (forward-line 1)
3854         (setq mark (set-marker (make-marker) (point)))
3855         (goto-char start)
3856         (message-indent-citation)
3857         ;; Enable undoing the deletion.
3858         (undo-boundary)
3859         (delete-region mark (mark t))
3860         (set-marker mark nil)))))
3861
3862 \f
3863
3864 ;;;
3865 ;;; Sending messages
3866 ;;;
3867
3868 (defun message-send-and-exit (&optional arg)
3869   "Send message like `message-send', then, if no errors, exit from mail buffer."
3870   (interactive "P")
3871   (let ((buf (current-buffer))
3872         (actions message-exit-actions))
3873     (when (and (message-send arg)
3874                (buffer-name buf))
3875       (if message-kill-buffer-on-exit
3876           (kill-buffer buf)
3877         (bury-buffer buf)
3878         (when (eq buf (current-buffer))
3879           (message-bury buf)))
3880       (message-do-actions actions)
3881       t)))
3882
3883 (defun message-dont-send ()
3884   "Don't send the message you have been editing.
3885 Instead, just auto-save the buffer and then bury it."
3886   (interactive)
3887   (set-buffer-modified-p t)
3888   (save-buffer)
3889   (let ((actions message-postpone-actions))
3890     (message-bury (current-buffer))
3891     (message-do-actions actions)))
3892
3893 (defun message-kill-buffer ()
3894   "Kill the current buffer."
3895   (interactive)
3896   (when (or (not (buffer-modified-p))
3897             (not message-kill-buffer-query)
3898             (yes-or-no-p "Message modified; kill anyway? "))
3899     (let ((actions message-kill-actions)
3900           (draft-article message-draft-article)
3901           (auto-save-file-name buffer-auto-save-file-name)
3902           (file-name buffer-file-name)
3903           (modified (buffer-modified-p)))
3904       (setq buffer-file-name nil)
3905       (kill-buffer (current-buffer))
3906       (when (and (or (and auto-save-file-name
3907                           (file-exists-p auto-save-file-name))
3908                      (and file-name
3909                           (file-exists-p file-name)))
3910                  (progn
3911                    ;; If the message buffer has lived in a dedicated window,
3912                    ;; `kill-buffer' has killed the frame.  Thus the
3913                    ;; `yes-or-no-p' may show up in a lowered frame.  Make sure
3914                    ;; that the user can see the question by raising the
3915                    ;; current frame:
3916                    (raise-frame)
3917                    (yes-or-no-p (format "Remove the backup file%s? "
3918                                         (if modified " too" "")))))
3919         (ignore-errors
3920           (delete-file auto-save-file-name))
3921         (let ((message-draft-article draft-article))
3922           (message-disassociate-draft)))
3923       (message-do-actions actions))))
3924
3925 (defun message-bury (buffer)
3926   "Bury this mail BUFFER."
3927   (let ((newbuf (other-buffer buffer)))
3928     (bury-buffer buffer)
3929     (if (and (window-dedicated-p (selected-window))
3930              (not (null (delq (selected-frame) (visible-frame-list)))))
3931         (delete-frame (selected-frame))
3932       (switch-to-buffer newbuf))))
3933
3934 (defun message-send (&optional arg)
3935   "Send the message in the current buffer.
3936 If `message-interactive' is non-nil, wait for success indication or
3937 error messages, and inform user.
3938 Otherwise any failure is reported in a message back to the user from
3939 the mailer.
3940 The usage of ARG is defined by the instance that called Message.
3941 It should typically alter the sending method in some way or other."
3942   (interactive "P")
3943   ;; Make it possible to undo the coming changes.
3944   (undo-boundary)
3945   (let ((inhibit-read-only t))
3946     (put-text-property (point-min) (point-max) 'read-only nil))
3947   (message-fix-before-sending)
3948   (run-hooks 'message-send-hook)
3949   (message message-sending-message)
3950   (let ((alist message-send-method-alist)
3951         (success t)
3952         elem sent dont-barf-on-no-method
3953         (message-options message-options))
3954     (message-options-set-recipient)
3955     (while (and success
3956                 (setq elem (pop alist)))
3957       (when (funcall (cadr elem))
3958         (when (and (or (not (memq (car elem)
3959                                   message-sent-message-via))
3960                        (message-fetch-field "supersedes")
3961                        (if (or (message-gnksa-enable-p 'multiple-copies)
3962                                (not (eq (car elem) 'news)))
3963                            (y-or-n-p
3964                             (format
3965                              "Already sent message via %s; resend? "
3966                              (car elem)))
3967                          (error "Denied posting -- multiple copies")))
3968                    (setq success (funcall (caddr elem) arg)))
3969           (setq sent t))))
3970     (unless (or sent
3971                 (not success)
3972                 (let ((fcc (message-fetch-field "Fcc"))
3973                       (gcc (message-fetch-field "Gcc")))
3974                   (when (or fcc gcc)
3975                     (or (eq message-allow-no-recipients 'always)
3976                         (and (not (eq message-allow-no-recipients 'never))
3977                              (setq dont-barf-on-no-method
3978                                    (gnus-y-or-n-p
3979                                     (format "No receiver, perform %s anyway? "
3980                                             (cond ((and fcc gcc) "Fcc and Gcc")
3981                                                   (fcc "Fcc")
3982                                                   (t "Gcc"))))))))))
3983       (error "No methods specified to send by"))
3984     (when (or dont-barf-on-no-method
3985               (and success sent))
3986       (message-do-fcc)
3987       (save-excursion
3988         (run-hooks 'message-sent-hook))
3989       (message "Sending...done")
3990       ;; Do ecomplete address snarfing.
3991       (when (message-mail-alias-type-p 'ecomplete)
3992         (message-put-addresses-in-ecomplete))
3993       ;; Mark the buffer as unmodified and delete auto-save.
3994       (set-buffer-modified-p nil)
3995       (delete-auto-save-file-if-necessary t)
3996       (message-disassociate-draft)
3997       ;; Delete other mail buffers and stuff.
3998       (message-do-send-housekeeping)
3999       (message-do-actions message-send-actions)
4000       ;; Return success.
4001       t)))
4002
4003 (defun message-send-via-mail (arg)
4004   "Send the current message via mail."
4005   (message-send-mail arg))
4006
4007 (defun message-send-via-news (arg)
4008   "Send the current message via news."
4009   (funcall message-send-news-function arg))
4010
4011 (defmacro message-check (type &rest forms)
4012   "Eval FORMS if TYPE is to be checked."
4013   `(or (message-check-element ,type)
4014        (save-excursion
4015          ,@forms)))
4016
4017 (put 'message-check 'lisp-indent-function 1)
4018 (put 'message-check 'edebug-form-spec '(form body))
4019
4020 (defun message-text-with-property (prop &optional start end reverse)
4021   "Return a list of start and end positions where the text has PROP.
4022 START and END bound the search, they default to `point-min' and
4023 `point-max' respectively.  If REVERSE is non-nil, find text which does
4024 not have PROP."
4025   (unless start
4026     (setq start (point-min)))
4027   (unless end
4028     (setq end (point-max)))
4029   (let (next regions)
4030     (if reverse
4031         (while (and start
4032                     (setq start (text-property-any start end prop nil)))
4033           (setq next (next-single-property-change start prop nil end))
4034           (push (cons start (or next end)) regions)
4035           (setq start next))
4036       (while (and start
4037                   (or (get-text-property start prop)
4038                       (and (setq start (next-single-property-change
4039                                         start prop nil end))
4040                            (get-text-property start prop))))
4041         (setq next (text-property-any start end prop nil))
4042         (push (cons start (or next end)) regions)
4043         (setq start next)))
4044     (nreverse regions)))
4045
4046 (defcustom message-bogus-address-regexp nil ;; "noreply\\|nospam\\|invalid"
4047   "Regexp of potentially bogus mail addresses."
4048   :version "23.1" ;; No Gnus
4049   :group 'message-headers
4050   :type 'regexp)
4051
4052 (defun message-fix-before-sending ()
4053   "Do various things to make the message nice before sending it."
4054   ;; Make sure there's a newline at the end of the message.
4055   (goto-char (point-max))
4056   (unless (bolp)
4057     (insert "\n"))
4058   ;; Make the hidden headers visible.
4059   (widen)
4060   ;; Sort headers before sending the message.
4061   (message-sort-headers)
4062   ;; Make invisible text visible.
4063   ;; It doesn't seem as if this is useful, since the invisible property
4064   ;; is clobbered by an after-change hook anyhow.
4065   (message-check 'invisible-text
4066     (let ((regions (message-text-with-property 'invisible))
4067           from to)
4068       (when regions
4069         (while regions
4070           (setq from (caar regions)
4071                 to (cdar regions)
4072                 regions (cdr regions))
4073           (put-text-property from to 'invisible nil)
4074           (message-overlay-put (message-make-overlay from to)
4075                                'face 'highlight))
4076         (unless (yes-or-no-p
4077                  "Invisible text found and made visible; continue sending? ")
4078           (error "Invisible text found and made visible")))))
4079   (message-check 'illegible-text
4080     (let (char found choice)
4081       (message-goto-body)
4082       (while (progn
4083                (skip-chars-forward mm-7bit-chars)
4084                (when (get-text-property (point) 'no-illegible-text)
4085                  ;; There is a signed or encrypted raw message part
4086                  ;; that is considered to be safe.
4087                  (goto-char (or (next-single-property-change
4088                                  (point) 'no-illegible-text)
4089                                 (point-max))))
4090                (setq char (char-after)))
4091         (when (or (< (mm-char-int char) 128)
4092                   (and (mm-multibyte-p)
4093                        (memq (char-charset char)
4094                              '(eight-bit-control eight-bit-graphic
4095                                                  control-1))
4096                        (not (get-text-property
4097                              (point) 'untranslated-utf-8))))
4098           (message-overlay-put (message-make-overlay (point) (1+ (point)))
4099                                'face 'highlight)
4100           (setq found t))
4101         (forward-char))
4102       (when found
4103         (setq choice
4104               (gnus-multiple-choice
4105                "Non-printable characters found.  Continue sending?"
4106                `((?d "Remove non-printable characters and send")
4107                  (?r ,(format
4108                        "Replace non-printable characters with \"%s\" and send"
4109                        message-replacement-char))
4110                  (?i "Ignore non-printable characters and send")
4111                  (?e "Continue editing"))))
4112         (if (eq choice ?e)
4113           (error "Non-printable characters"))
4114         (message-goto-body)
4115         (skip-chars-forward mm-7bit-chars)
4116         (while (not (eobp))
4117           (when (let ((char (char-after)))
4118                   (or (< (mm-char-int char) 128)
4119                       (and (mm-multibyte-p)
4120                            ;; FIXME: Wrong for Emacs 23 (unicode) and for
4121                            ;; things like undecable utf-8.  Should at least
4122                            ;; use find-coding-systems-region.
4123                            (memq (char-charset char)
4124                                  '(eight-bit-control eight-bit-graphic
4125                                                      control-1))
4126                            (not (get-text-property
4127                                  (point) 'untranslated-utf-8)))))
4128             (if (eq choice ?i)
4129                 (message-kill-all-overlays)
4130               (delete-char 1)
4131               (when (eq choice ?r)
4132                 (insert message-replacement-char))))
4133           (forward-char)
4134           (skip-chars-forward mm-7bit-chars)))))
4135   (message-check 'bogus-recipient
4136     ;; Warn before composing or sending a mail to an invalid address.
4137     (message-check-recipients)))
4138
4139 (defun message-bogus-recipient-p (recipients)
4140   "Check if a mail address in RECIPIENTS looks bogus.
4141
4142 RECIPIENTS is a mail header.  Return a list of potentially bogus
4143 addresses.  If none is found, return nil.
4144
4145 An addresses might be bogus if the domain part is not fully
4146 qualified, see `message-valid-fqdn-regexp', or if it matches
4147 `message-bogus-address-regexp'."
4148   ;; FIXME: How about "foo@subdomain", when the MTA adds ".domain.tld"?
4149   (let (found)
4150     (mapc (lambda (address)
4151             (setq address (cadr address))
4152             (when
4153                 (or (not
4154                      (or
4155                       (not (string-match "@" address))
4156                       (string-match
4157                        (concat ".@.*\\("
4158                                message-valid-fqdn-regexp "\\)\\'") address)))
4159                     (and (stringp message-bogus-address-regexp)
4160                          (string-match message-bogus-address-regexp address)))
4161               (push address found)))
4162           ;;
4163           (mail-extract-address-components recipients t))
4164     found))
4165
4166 (defun message-check-recipients ()
4167   "Warn before composing or sending a mail to an invalid address.
4168
4169 This function could be useful in `message-setup-hook'."
4170   (interactive)
4171   (save-restriction
4172     (message-narrow-to-headers)
4173     (dolist (hdr '("To" "Cc" "Bcc"))
4174       (let ((addr (message-fetch-field hdr)))
4175         (when (stringp addr)
4176           (dolist (bog (message-bogus-recipient-p addr))
4177             (and bog
4178                  (not (y-or-n-p
4179                        (format
4180                         "Address `%s' might be bogus.  Continue? " bog)))
4181                  (error "Bogus address."))))))))
4182
4183 (defun message-add-action (action &rest types)
4184   "Add ACTION to be performed when doing an exit of type TYPES."
4185   (while types
4186     (add-to-list (intern (format "message-%s-actions" (pop types)))
4187                  action)))
4188
4189 (defun message-delete-action (action &rest types)
4190   "Delete ACTION from lists of actions performed when doing an exit of type TYPES."
4191   (let (var)
4192     (while types
4193       (set (setq var (intern (format "message-%s-actions" (pop types))))
4194            (delq action (symbol-value var))))))
4195
4196 (defun message-do-actions (actions)
4197   "Perform all actions in ACTIONS."
4198   ;; Now perform actions on successful sending.
4199   (dolist (action actions)
4200     (ignore-errors
4201       (cond
4202        ;; A simple function.
4203        ((functionp action)
4204         (funcall action))
4205        ;; Something to be evaled.
4206        (t
4207         (eval action))))))
4208
4209 (defun message-send-mail-partially ()
4210   "Send mail as message/partial."
4211   ;; replace the header delimiter with a blank line
4212   (goto-char (point-min))
4213   (re-search-forward
4214    (concat "^" (regexp-quote mail-header-separator) "\n"))
4215   (replace-match "\n")
4216   (run-hooks 'message-send-mail-hook)
4217   (let ((p (goto-char (point-min)))
4218         (tembuf (message-generate-new-buffer-clone-locals " message temp"))
4219         (curbuf (current-buffer))
4220         (id (message-make-message-id)) (n 1)
4221         plist total  header required-mail-headers)
4222     (while (not (eobp))
4223       (if (< (point-max) (+ p message-send-mail-partially-limit))
4224           (goto-char (point-max))
4225         (goto-char (+ p message-send-mail-partially-limit))
4226         (beginning-of-line)
4227         (if (<= (point) p) (forward-line 1))) ;; In case of bad message.
4228       (push p plist)
4229       (setq p (point)))
4230     (setq total (length plist))
4231     (push (point-max) plist)
4232     (setq plist (nreverse plist))
4233     (unwind-protect
4234         (save-excursion
4235           (setq p (pop plist))
4236           (while plist
4237             (set-buffer curbuf)
4238             (copy-to-buffer tembuf p (car plist))
4239             (set-buffer tembuf)
4240             (goto-char (point-min))
4241             (if header
4242                 (progn
4243                   (goto-char (point-min))
4244                   (narrow-to-region (point) (point))
4245                   (insert header))
4246               (message-goto-eoh)
4247               (setq header (buffer-substring (point-min) (point)))
4248               (goto-char (point-min))
4249               (narrow-to-region (point) (point))
4250               (insert header)
4251               (message-remove-header "Mime-Version")
4252               (message-remove-header "Content-Type")
4253               (message-remove-header "Content-Transfer-Encoding")
4254               (message-remove-header "Message-ID")
4255               (message-remove-header "Lines")
4256               (goto-char (point-max))
4257               (insert "Mime-Version: 1.0\n")
4258               (setq header (buffer-string)))
4259             (goto-char (point-max))
4260             (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n\n"
4261                             id n total))
4262             (forward-char -1)
4263             (let ((mail-header-separator ""))
4264               (when (memq 'Message-ID message-required-mail-headers)
4265                 (insert "Message-ID: " (message-make-message-id) "\n"))
4266               (when (memq 'Lines message-required-mail-headers)
4267                 (insert "Lines: " (message-make-lines) "\n"))
4268               (message-goto-subject)
4269               (end-of-line)
4270               (insert (format " (%d/%d)" n total))
4271               (widen)
4272               (mm-with-unibyte-current-buffer
4273                 (funcall (or message-send-mail-real-function
4274                              message-send-mail-function))))
4275             (setq n (+ n 1))
4276             (setq p (pop plist))
4277             (erase-buffer)))
4278       (kill-buffer tembuf))))
4279
4280 (defun message-send-mail (&optional arg)
4281   (require 'mail-utils)
4282   (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
4283          (case-fold-search nil)
4284          (news (message-news-p))
4285          (mailbuf (current-buffer))
4286          (message-this-is-mail t)
4287          (message-posting-charset
4288           (if (fboundp 'gnus-setup-posting-charset)
4289               (gnus-setup-posting-charset nil)
4290             message-posting-charset))
4291          (headers message-required-mail-headers))
4292     (when (and message-generate-hashcash
4293                (not (eq message-generate-hashcash 'opportunistic)))
4294       (message "Generating hashcash...")
4295       ;; Wait for calculations already started to finish...
4296       (hashcash-wait-async)
4297       ;; ...and do calculations not already done.  mail-add-payment
4298       ;; will leave existing X-Hashcash headers alone.
4299       (mail-add-payment)
4300       (message "Generating hashcash...done"))
4301     (save-restriction
4302       (message-narrow-to-headers)
4303       ;; Generate the Mail-Followup-To header if the header is not there...
4304       (if (and (message-subscribed-p)
4305                (not (mail-fetch-field "mail-followup-to")))
4306           (setq headers
4307                 (cons
4308                  (cons "Mail-Followup-To" (message-make-mail-followup-to))
4309                  message-required-mail-headers))
4310         ;; otherwise, delete the MFT header if the field is empty
4311         (when (equal "" (mail-fetch-field "mail-followup-to"))
4312           (message-remove-header "^Mail-Followup-To:")))
4313       ;; Insert some headers.
4314       (let ((message-deletable-headers
4315              (if news nil message-deletable-headers)))
4316         (message-generate-headers headers))
4317       ;; Check continuation headers.
4318       (message-check 'continuation-headers
4319         (goto-char (point-min))
4320         (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t)
4321           (goto-char (match-beginning 0))
4322           (if (y-or-n-p "Fix continuation lines? ")
4323               (insert " ")
4324             (forward-line 1)
4325             (unless (y-or-n-p "Send anyway? ")
4326               (error "Failed to send the message")))))
4327       ;; Let the user do all of the above.
4328       (run-hooks 'message-header-hook))
4329     (unwind-protect
4330         (with-current-buffer tembuf
4331           (erase-buffer)
4332           ;; Avoid copying text props (except hard newlines).
4333           (insert (with-current-buffer mailbuf
4334                     (mml-buffer-substring-no-properties-except-hard-newlines
4335                      (point-min) (point-max))))
4336           ;; Remove some headers.
4337           (message-encode-message-body)
4338           (save-restriction
4339             (message-narrow-to-headers)
4340             ;; We (re)generate the Lines header.
4341             (when (memq 'Lines message-required-mail-headers)
4342               (message-generate-headers '(Lines)))
4343             ;; Remove some headers.
4344             (message-remove-header message-ignored-mail-headers t)
4345             (let ((mail-parse-charset message-default-charset))
4346               (mail-encode-encoded-word-buffer)))
4347           (goto-char (point-max))
4348           ;; require one newline at the end.
4349           (or (= (preceding-char) ?\n)
4350               (insert ?\n))
4351           (message-cleanup-headers)
4352           ;; FIXME: we're inserting the courtesy copy after encoding.
4353           ;; This is wrong if the courtesy copy string contains
4354           ;; non-ASCII characters. -- jh
4355           (when
4356               (save-restriction
4357                 (message-narrow-to-headers)
4358                 (and news
4359                      (or (message-fetch-field "cc")
4360                          (message-fetch-field "bcc")
4361                          (message-fetch-field "to"))
4362                      (let ((content-type (message-fetch-field
4363                                           "content-type")))
4364                        (and
4365                         (or
4366                          (not content-type)
4367                          (string= "text/plain"
4368                                   (car
4369                                    (mail-header-parse-content-type
4370                                     content-type))))
4371                         (not
4372                          (string= "base64"
4373                                   (message-fetch-field
4374                                    "content-transfer-encoding")))))))
4375             (message-insert-courtesy-copy))
4376           (if (or (not message-send-mail-partially-limit)
4377                   (< (buffer-size) message-send-mail-partially-limit)
4378                   (not (message-y-or-n-p
4379                         "The message size is too large, split? "
4380                         t
4381                         "\
4382 The message size, "
4383                         (/ (buffer-size) 1000) "KB, is too large.
4384
4385 Some mail gateways (MTA's) bounce large messages.  To avoid the
4386 problem, answer `y', and the message will be split into several
4387 smaller pieces, the size of each is about "
4388                         (/ message-send-mail-partially-limit 1000)
4389                         "KB except the last
4390 one.
4391
4392 However, some mail readers (MUA's) can't read split messages, i.e.,
4393 mails in message/partially format. Answer `n', and the message will be
4394 sent in one piece.
4395
4396 The size limit is controlled by `message-send-mail-partially-limit'.
4397 If you always want Gnus to send messages in one piece, set
4398 `message-send-mail-partially-limit' to nil.
4399 ")))
4400               (mm-with-unibyte-current-buffer
4401                 (message "Sending via mail...")
4402                 (funcall (or message-send-mail-real-function
4403                              message-send-mail-function)))
4404             (message-send-mail-partially)))
4405       (kill-buffer tembuf))
4406     (set-buffer mailbuf)
4407     (push 'mail message-sent-message-via)))
4408
4409 (defun message-send-mail-with-sendmail ()
4410   "Send off the prepared buffer with sendmail."
4411   (let ((errbuf (if message-interactive
4412                     (message-generate-new-buffer-clone-locals
4413                      " sendmail errors")
4414                   0))
4415         resend-to-addresses delimline)
4416     (unwind-protect
4417         (progn
4418           (let ((case-fold-search t))
4419             (save-restriction
4420               (message-narrow-to-headers)
4421               (setq resend-to-addresses (message-fetch-field "resent-to")))
4422             ;; Change header-delimiter to be what sendmail expects.
4423             (goto-char (point-min))
4424             (re-search-forward
4425              (concat "^" (regexp-quote mail-header-separator) "\n"))
4426             (replace-match "\n")
4427             (backward-char 1)
4428             (setq delimline (point-marker))
4429             (run-hooks 'message-send-mail-hook)
4430             ;; Insert an extra newline if we need it to work around
4431             ;; Sun's bug that swallows newlines.
4432             (goto-char (1+ delimline))
4433             (when (eval message-mailer-swallows-blank-line)
4434               (newline))
4435             (when message-interactive
4436               (with-current-buffer errbuf
4437                 (erase-buffer))))
4438           (let* ((default-directory "/")
4439                  (coding-system-for-write message-send-coding-system)
4440                  (cpr (apply
4441                        'call-process-region
4442                        (append
4443                         (list (point-min) (point-max)
4444                               (cond ((boundp 'sendmail-program)
4445                                      sendmail-program)
4446                                     ((file-exists-p "/usr/sbin/sendmail")
4447                                      "/usr/sbin/sendmail")
4448                                     ((file-exists-p "/usr/lib/sendmail")
4449                                      "/usr/lib/sendmail")
4450                                     ((file-exists-p "/usr/ucblib/sendmail")
4451                                      "/usr/ucblib/sendmail")
4452                                     (t "fakemail"))
4453                               nil errbuf nil "-oi")
4454                         message-sendmail-extra-arguments
4455                         ;; Always specify who from,
4456                         ;; since some systems have broken sendmails.
4457                         ;; But some systems are more broken with -f, so
4458                         ;; we'll let users override this.
4459                         (if (null message-sendmail-f-is-evil)
4460                             (list "-f" (message-sendmail-envelope-from)))
4461                         ;; These mean "report errors by mail"
4462                         ;; and "deliver in background".
4463                         (if (null message-interactive) '("-oem" "-odb"))
4464                         ;; Get the addresses from the message
4465                         ;; unless this is a resend.
4466                         ;; We must not do that for a resend
4467                         ;; because we would find the original addresses.
4468                         ;; For a resend, include the specific addresses.
4469                         (if resend-to-addresses
4470                             (list resend-to-addresses)
4471                           '("-t"))))))
4472             (unless (or (null cpr) (and (numberp cpr) (zerop cpr)))
4473               (error "Sending...failed with exit value %d" cpr)))
4474           (when message-interactive
4475             (with-current-buffer errbuf
4476               (goto-char (point-min))
4477               (while (re-search-forward "\n+ *" nil t)
4478                 (replace-match "; "))
4479               (if (not (zerop (buffer-size)))
4480                   (error "Sending...failed to %s"
4481                          (buffer-string))))))
4482       (when (bufferp errbuf)
4483         (kill-buffer errbuf)))))
4484
4485 (defun message-send-mail-with-qmail ()
4486   "Pass the prepared message buffer to qmail-inject.
4487 Refer to the documentation for the variable `message-send-mail-function'
4488 to find out how to use this."
4489   ;; replace the header delimiter with a blank line
4490   (goto-char (point-min))
4491   (re-search-forward
4492    (concat "^" (regexp-quote mail-header-separator) "\n"))
4493   (replace-match "\n")
4494   (run-hooks 'message-send-mail-hook)
4495   ;; send the message
4496   (case
4497       (let ((coding-system-for-write message-send-coding-system))
4498         (apply
4499          'call-process-region (point-min) (point-max)
4500          message-qmail-inject-program nil nil nil
4501          ;; qmail-inject's default behaviour is to look for addresses on the
4502          ;; command line; if there're none, it scans the headers.
4503          ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
4504          ;;
4505          ;; in general, ALL of qmail-inject's defaults are perfect for simply
4506          ;; reading a formatted (i. e., at least a To: or Resent-To header)
4507          ;; message from stdin.
4508          ;;
4509          ;; qmail also has the advantage of not having been raped by
4510          ;; various vendors, so we don't have to allow for that, either --
4511          ;; compare this with message-send-mail-with-sendmail and weep
4512          ;; for sendmail's lost innocence.
4513          ;;
4514          ;; all this is way cool coz it lets us keep the arguments entirely
4515          ;; free for -inject-arguments -- a big win for the user and for us
4516          ;; since we don't have to play that double-guessing game and the user
4517          ;; gets full control (no gestapo'ish -f's, for instance).  --sj
4518          (if (functionp message-qmail-inject-args)
4519              (funcall message-qmail-inject-args)
4520            message-qmail-inject-args)))
4521     ;; qmail-inject doesn't say anything on it's stdout/stderr,
4522     ;; we have to look at the retval instead
4523     (0 nil)
4524     (100 (error "qmail-inject reported permanent failure"))
4525     (111 (error "qmail-inject reported transient failure"))
4526     ;; should never happen
4527     (t   (error "qmail-inject reported unknown failure"))))
4528
4529 (defun message-send-mail-with-mh ()
4530   "Send the prepared message buffer with mh."
4531   (let ((mh-previous-window-config nil)
4532         (name (mh-new-draft-name)))
4533     (setq buffer-file-name name)
4534     ;; MH wants to generate these headers itself.
4535     (when message-mh-deletable-headers
4536       (let ((headers message-mh-deletable-headers))
4537         (while headers
4538           (goto-char (point-min))
4539           (and (re-search-forward
4540                 (concat "^" (symbol-name (car headers)) ": *") nil t)
4541                (message-delete-line))
4542           (pop headers))))
4543     (run-hooks 'message-send-mail-hook)
4544     ;; Pass it on to mh.
4545     (mh-send-letter)))
4546
4547 (defun message-smtpmail-send-it ()
4548   "Send the prepared message buffer with `smtpmail-send-it'.
4549 This only differs from `smtpmail-send-it' that this command evaluates
4550 `message-send-mail-hook' just before sending a message.  It is useful
4551 if your ISP requires the POP-before-SMTP authentication.  See the Gnus
4552 manual for details."
4553   (run-hooks 'message-send-mail-hook)
4554   (smtpmail-send-it))
4555
4556 (defun message-send-mail-with-mailclient ()
4557   "Send the prepared message buffer with `mailclient-send-it'.
4558 This only differs from `smtpmail-send-it' that this command evaluates
4559 `message-send-mail-hook' just before sending a message."
4560   (run-hooks 'message-send-mail-hook)
4561   (mailclient-send-it))
4562
4563 (defun message-canlock-generate ()
4564   "Return a string that is non-trivial to guess.
4565 Do not use this for anything important, it is cryptographically weak."
4566   (require 'sha1)
4567   (let (sha1-maximum-internal-length)
4568     (sha1 (concat (message-unique-id)
4569                   (format "%x%x%x" (random) (random t) (random))
4570                   (prin1-to-string (recent-keys))
4571                   (prin1-to-string (garbage-collect))))))
4572
4573 (defun message-canlock-password ()
4574   "The password used by message for cancel locks.
4575 This is the value of `canlock-password', if that option is non-nil.
4576 Otherwise, generate and save a value for `canlock-password' first."
4577   (unless canlock-password
4578     (customize-save-variable 'canlock-password (message-canlock-generate))
4579     (setq canlock-password-for-verify canlock-password))
4580   canlock-password)
4581
4582 (defun message-insert-canlock ()
4583   (when message-insert-canlock
4584     (message-canlock-password)
4585     (canlock-insert-header)))
4586
4587 (defun message-send-news (&optional arg)
4588   (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
4589          (case-fold-search nil)
4590          (method (if (functionp message-post-method)
4591                      (funcall message-post-method arg)
4592                    message-post-method))
4593          (newsgroups-field (save-restriction
4594                             (message-narrow-to-headers-or-head)
4595                             (message-fetch-field "Newsgroups")))
4596          (followup-field (save-restriction
4597                            (message-narrow-to-headers-or-head)
4598                            (message-fetch-field "Followup-To")))
4599          ;; BUG: We really need to get the charset for each name in the
4600          ;; Newsgroups and Followup-To lines to allow crossposting
4601          ;; between group namess with incompatible character sets.
4602          ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
4603          (group-field-charset
4604           (gnus-group-name-charset method newsgroups-field))
4605          (followup-field-charset
4606           (gnus-group-name-charset method (or followup-field "")))
4607          (rfc2047-header-encoding-alist
4608           (append (when group-field-charset
4609                     (list (cons "Newsgroups" group-field-charset)))
4610                   (when followup-field-charset
4611                     (list (cons "Followup-To" followup-field-charset)))
4612                   rfc2047-header-encoding-alist))
4613          (messbuf (current-buffer))
4614          (message-syntax-checks
4615           (if (and arg
4616                    (listp message-syntax-checks))
4617               (cons '(existing-newsgroups . disabled)
4618                     message-syntax-checks)
4619             message-syntax-checks))
4620          (message-this-is-news t)
4621          (message-posting-charset
4622           (gnus-setup-posting-charset newsgroups-field))
4623          result)
4624     (if (not (message-check-news-body-syntax))
4625         nil
4626       (save-restriction
4627         (message-narrow-to-headers)
4628         ;; Insert some headers.
4629         (message-generate-headers message-required-news-headers)
4630         (message-insert-canlock)
4631         ;; Let the user do all of the above.
4632         (run-hooks 'message-header-hook))
4633       ;; Note: This check will be disabled by the ".*" default value for
4634       ;; gnus-group-name-charset-group-alist. -- Pa 2001-10-07.
4635       (when (and group-field-charset
4636                  (listp message-syntax-checks))
4637         (setq message-syntax-checks
4638               (cons '(valid-newsgroups . disabled)
4639                     message-syntax-checks)))
4640       (message-cleanup-headers)
4641       (if (not (let ((message-post-method method))
4642                  (message-check-news-syntax)))
4643           nil
4644         (unwind-protect
4645             (with-current-buffer tembuf
4646               (buffer-disable-undo)
4647               (erase-buffer)
4648               ;; Avoid copying text props (except hard newlines).
4649               (insert
4650                (with-current-buffer messbuf
4651                  (mml-buffer-substring-no-properties-except-hard-newlines
4652                   (point-min) (point-max))))
4653               (message-encode-message-body)
4654               ;; Remove some headers.
4655               (save-restriction
4656                 (message-narrow-to-headers)
4657                 ;; We (re)generate the Lines header.
4658                 (when (memq 'Lines message-required-mail-headers)
4659                   (message-generate-headers '(Lines)))
4660                 ;; Remove some headers.
4661                 (message-remove-header message-ignored-news-headers t)
4662                 (let ((mail-parse-charset message-default-charset))
4663                   (mail-encode-encoded-word-buffer)))
4664               (goto-char (point-max))
4665               ;; require one newline at the end.
4666               (or (= (preceding-char) ?\n)
4667                   (insert ?\n))
4668               (let ((case-fold-search t))
4669                 ;; Remove the delimiter.
4670                 (goto-char (point-min))
4671                 (re-search-forward
4672                  (concat "^" (regexp-quote mail-header-separator) "\n"))
4673                 (replace-match "\n")
4674                 (backward-char 1))
4675               (run-hooks 'message-send-news-hook)
4676               (gnus-open-server method)
4677               (message "Sending news via %s..." (gnus-server-string method))
4678               (setq result (let ((mail-header-separator ""))
4679                              (gnus-request-post method))))
4680           (kill-buffer tembuf))
4681         (set-buffer messbuf)
4682         (if result
4683             (push 'news message-sent-message-via)
4684           (message "Couldn't send message via news: %s"
4685                    (nnheader-get-report (car method)))
4686           nil)))))
4687
4688 ;;;
4689 ;;; Header generation & syntax checking.
4690 ;;;
4691
4692 (defun message-check-element (type)
4693   "Return non-nil if this TYPE is not to be checked."
4694   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
4695       t
4696     (let ((able (assq type message-syntax-checks)))
4697       (and (consp able)
4698            (eq (cdr able) 'disabled)))))
4699
4700 (defun message-check-news-syntax ()
4701   "Check the syntax of the message."
4702   (save-excursion
4703     (save-restriction
4704       (widen)
4705       ;; We narrow to the headers and check them first.
4706       (save-excursion
4707         (save-restriction
4708           (message-narrow-to-headers)
4709           (message-check-news-header-syntax))))))
4710
4711 (defun message-check-news-header-syntax ()
4712   (and
4713    ;; Check Newsgroups header.
4714    (message-check 'newsgroups
4715      (let ((group (message-fetch-field "newsgroups")))
4716        (or
4717         (and group
4718              (not (string-match "\\`[ \t]*\\'" group)))
4719         (ignore
4720          (message
4721           "The newsgroups field is empty or missing.  Posting is denied.")))))
4722    ;; Check the Subject header.
4723    (message-check 'subject
4724      (let* ((case-fold-search t)
4725             (subject (message-fetch-field "subject")))
4726        (or
4727         (and subject
4728              (not (string-match "\\`[ \t]*\\'" subject)))
4729         (ignore
4730          (message
4731           "The subject field is empty or missing.  Posting is denied.")))))
4732    ;; Check for commands in Subject.
4733    (message-check 'subject-cmsg
4734      (if (string-match "^cmsg " (message-fetch-field "subject"))
4735          (y-or-n-p
4736           "The control code \"cmsg\" is in the subject.  Really post? ")
4737        t))
4738    ;; Check long header lines.
4739    (message-check 'long-header-lines
4740      (let ((start (point))
4741            (header nil)
4742            (length 0)
4743            found)
4744        (while (and (not found)
4745                    (re-search-forward "^\\([^ \t:]+\\): " nil t))
4746          (if (> (- (point) (match-beginning 0)) 998)
4747              (setq found t
4748                    length (- (point) (match-beginning 0)))
4749            (setq header (match-string-no-properties 1)))
4750          (setq start (match-beginning 0))
4751          (forward-line 1))
4752        (if found
4753            (y-or-n-p (format "Your %s header is too long (%d).  Really post? "
4754                              header length))
4755          t)))
4756    ;; Check for multiple identical headers.
4757    (message-check 'multiple-headers
4758      (let (found)
4759        (while (and (not found)
4760                    (re-search-forward "^[^ \t:]+: " nil t))
4761          (save-excursion
4762            (or (re-search-forward
4763                 (concat "^"
4764                         (regexp-quote
4765                          (setq found
4766                                (buffer-substring
4767                                 (match-beginning 0) (- (match-end 0) 2))))
4768                         ":")
4769                 nil t)
4770                (setq found nil))))
4771        (if found
4772            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
4773          t)))
4774    ;; Check for Version and Sendsys.
4775    (message-check 'sendsys
4776      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
4777          (y-or-n-p
4778           (format "The article contains a %s command.  Really post? "
4779                   (buffer-substring (match-beginning 0)
4780                                     (1- (match-end 0)))))
4781        t))
4782    ;; See whether we can shorten Followup-To.
4783    (message-check 'shorten-followup-to
4784      (let ((newsgroups (message-fetch-field "newsgroups"))
4785            (followup-to (message-fetch-field "followup-to"))
4786            to)
4787        (when (and newsgroups
4788                   (string-match "," newsgroups)
4789                   (not followup-to)
4790                   (not
4791                    (zerop
4792                     (length
4793                      (setq to (completing-read
4794                                "Followups to (default no Followup-To header): "
4795                                (mapcar #'list
4796                                        (cons "poster"
4797                                              (message-tokenize-header
4798                                               newsgroups)))))))))
4799          (goto-char (point-min))
4800          (insert "Followup-To: " to "\n"))
4801        t))
4802    ;; Check "Shoot me".
4803    (message-check 'shoot
4804      (if (re-search-forward
4805           "Message-ID.*.i-did-not-set--mail-host-address--so-tickle-me" nil t)
4806          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
4807        t))
4808    ;; Check for Approved.
4809    (message-check 'approved
4810      (if (re-search-forward "^Approved:" nil t)
4811          (y-or-n-p "The article contains an Approved header.  Really post? ")
4812        t))
4813    ;; Check the Message-ID header.
4814    (message-check 'message-id
4815      (let* ((case-fold-search t)
4816             (message-id (message-fetch-field "message-id" t)))
4817        (or (not message-id)
4818            ;; Is there an @ in the ID?
4819            (and (string-match "@" message-id)
4820                 ;; Is there a dot in the ID?
4821                 (string-match "@[^.]*\\." message-id)
4822                 ;; Does the ID end with a dot?
4823                 (not (string-match "\\.>" message-id)))
4824            (y-or-n-p
4825             (format "The Message-ID looks strange: \"%s\".  Really post? "
4826                     message-id)))))
4827    ;; Check the Newsgroups & Followup-To headers.
4828    (message-check 'existing-newsgroups
4829      (let* ((case-fold-search t)
4830             (newsgroups (message-fetch-field "newsgroups"))
4831             (followup-to (message-fetch-field "followup-to"))
4832             (groups (message-tokenize-header
4833                      (if followup-to
4834                          (concat newsgroups "," followup-to)
4835                        newsgroups)))
4836             (post-method (if (functionp message-post-method)
4837                              (funcall message-post-method)
4838                            message-post-method))
4839             ;; KLUDGE to handle nnvirtual groups.  Doing this right
4840             ;; would probably involve a new nnoo function.
4841             ;; -- Per Abrahamsen <abraham@dina.kvl.dk>, 2001-10-17.
4842             (method (if (and (consp post-method)
4843                              (eq (car post-method) 'nnvirtual)
4844                              gnus-message-group-art)
4845                         (let ((group (car (nnvirtual-find-group-art
4846                                            (car gnus-message-group-art)
4847                                            (cdr gnus-message-group-art)))))
4848                           (gnus-find-method-for-group group))
4849                       post-method))
4850             (known-groups
4851              (mapcar (lambda (n)
4852                        (gnus-group-name-decode
4853                         (gnus-group-real-name n)
4854                         (gnus-group-name-charset method n)))
4855                      (gnus-groups-from-server method)))
4856             errors)
4857        (while groups
4858          (when (and (not (equal (car groups) "poster"))
4859                     (not (member (car groups) known-groups))
4860                     (not (member (car groups) errors)))
4861            (push (car groups) errors))
4862          (pop groups))
4863        (cond
4864         ;; Gnus is not running.
4865         ((or (not (and (boundp 'gnus-active-hashtb)
4866                        gnus-active-hashtb))
4867              (not (boundp 'gnus-read-active-file)))
4868          t)
4869         ;; We don't have all the group names.
4870         ((and (or (not gnus-read-active-file)
4871                   (eq gnus-read-active-file 'some))
4872               errors)
4873          (y-or-n-p
4874           (format
4875            "Really use %s possibly unknown group%s: %s? "
4876            (if (= (length errors) 1) "this" "these")
4877            (if (= (length errors) 1) "" "s")
4878            (mapconcat 'identity errors ", "))))
4879         ;; There were no errors.
4880         ((not errors)
4881          t)
4882         ;; There are unknown groups.
4883         (t
4884          (y-or-n-p
4885           (format
4886            "Really post to %s unknown group%s: %s? "
4887            (if (= (length errors) 1) "this" "these")
4888            (if (= (length errors) 1) "" "s")
4889            (mapconcat 'identity errors ", ")))))))
4890    ;; Check continuation headers.
4891    (message-check 'continuation-headers
4892      (goto-char (point-min))
4893      (let ((do-posting t))
4894        (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t)
4895          (goto-char (match-beginning 0))
4896          (if (y-or-n-p "Fix continuation lines? ")
4897              (insert " ")
4898            (forward-line 1)
4899            (unless (y-or-n-p "Send anyway? ")
4900              (setq do-posting nil))))
4901        do-posting))
4902    ;; Check the Newsgroups & Followup-To headers for syntax errors.
4903    (message-check 'valid-newsgroups
4904      (let ((case-fold-search t)
4905            (headers '("Newsgroups" "Followup-To"))
4906            header error)
4907        (while (and headers (not error))
4908          (when (setq header (mail-fetch-field (car headers)))
4909            (if (or
4910                 (not
4911                  (string-match
4912                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
4913                   header))
4914                 (memq
4915                  nil (mapcar
4916                       (lambda (g)
4917                         (not (string-match "\\.\\'\\|\\.\\." g)))
4918                       (message-tokenize-header header ","))))
4919                (setq error t)))
4920          (unless error
4921            (pop headers)))
4922        (if (not error)
4923            t
4924          (y-or-n-p
4925           (format "The %s header looks odd: \"%s\".  Really post? "
4926                   (car headers) header)))))
4927    (message-check 'repeated-newsgroups
4928      (let ((case-fold-search t)
4929            (headers '("Newsgroups" "Followup-To"))
4930            header error groups group)
4931        (while (and headers
4932                    (not error))
4933          (when (setq header (mail-fetch-field (pop headers)))
4934            (setq groups (message-tokenize-header header ","))
4935            (while (setq group (pop groups))
4936              (when (member group groups)
4937                (setq error group
4938                      groups nil)))))
4939        (if (not error)
4940            t
4941          (y-or-n-p
4942           (format "Group %s is repeated in headers.  Really post? " error)))))
4943    ;; Check the From header.
4944    (message-check 'from
4945      (let* ((case-fold-search t)
4946             (from (message-fetch-field "from"))
4947             ad)
4948        (cond
4949         ((not from)
4950          (message "There is no From line.  Posting is denied.")
4951          nil)
4952         ((or (not (string-match
4953                    "@[^\\.]*\\."
4954                    (setq ad (nth 1 (mail-extract-address-components
4955                                     from))))) ;larsi@ifi
4956              (string-match "\\.\\." ad) ;larsi@ifi..uio
4957              (string-match "@\\." ad)   ;larsi@.ifi.uio
4958              (string-match "\\.$" ad)   ;larsi@ifi.uio.
4959              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
4960              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
4961          (message
4962           "Denied posting -- the From looks strange: \"%s\"." from)
4963          nil)
4964         ((let ((addresses (rfc822-addresses from)))
4965            (while (and addresses
4966                        (not (eq (string-to-char (car addresses)) ?\()))
4967              (setq addresses (cdr addresses)))
4968            addresses)
4969          (message
4970           "Denied posting -- bad From address: \"%s\"." from)
4971          nil)
4972         (t t))))
4973    ;; Check the Reply-To header.
4974    (message-check 'reply-to
4975      (let* ((case-fold-search t)
4976             (reply-to (message-fetch-field "reply-to"))
4977             ad)
4978        (cond
4979         ((not reply-to)
4980          t)
4981         ((string-match "," reply-to)
4982          (y-or-n-p
4983           (format "Multiple Reply-To addresses: \"%s\". Really post? "
4984                   reply-to)))
4985         ((or (not (string-match
4986                    "@[^\\.]*\\."
4987                    (setq ad (nth 1 (mail-extract-address-components
4988                                     reply-to))))) ;larsi@ifi
4989              (string-match "\\.\\." ad) ;larsi@ifi..uio
4990              (string-match "@\\." ad)   ;larsi@.ifi.uio
4991              (string-match "\\.$" ad)   ;larsi@ifi.uio.
4992              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
4993              (string-match "(.*).*(.*)" reply-to)) ;(lars) (lars)
4994          (y-or-n-p
4995           (format
4996            "The Reply-To looks strange: \"%s\". Really post? "
4997            reply-to)))
4998         (t t))))))
4999
5000 (defun message-check-news-body-syntax ()
5001   (and
5002    ;; Check for long lines.
5003    (message-check 'long-lines
5004      (goto-char (point-min))
5005      (re-search-forward
5006       (concat "^" (regexp-quote mail-header-separator) "$"))
5007      (forward-line 1)
5008      (while (and
5009              (or (looking-at
5010                   "<#\\(/\\)?\\(multipart\\|part\\|external\\|mml\\)")
5011                  (let ((p (point)))
5012                    (end-of-line)
5013                    (< (- (point) p) 80)))
5014              (zerop (forward-line 1))))
5015      (or (bolp)
5016          (eobp)
5017          (y-or-n-p
5018           "You have lines longer than 79 characters.  Really post? ")))
5019    ;; Check whether the article is empty.
5020    (message-check 'empty
5021      (goto-char (point-min))
5022      (re-search-forward
5023       (concat "^" (regexp-quote mail-header-separator) "$"))
5024      (forward-line 1)
5025      (let ((b (point)))
5026        (goto-char (point-max))
5027        (re-search-backward message-signature-separator nil t)
5028        (beginning-of-line)
5029        (or (re-search-backward "[^ \n\t]" b t)
5030            (if (message-gnksa-enable-p 'empty-article)
5031                (y-or-n-p "Empty article.  Really post? ")
5032              (message "Denied posting -- Empty article.")
5033              nil))))
5034    ;; Check for control characters.
5035    (message-check 'control-chars
5036      (if (re-search-forward
5037           (mm-string-to-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]")
5038           nil t)
5039          (y-or-n-p
5040           "The article contains control characters.  Really post? ")
5041        t))
5042    ;; Check excessive size.
5043    (message-check 'size
5044      (if (> (buffer-size) 60000)
5045          (y-or-n-p
5046           (format "The article is %d octets long.  Really post? "
5047                   (buffer-size)))
5048        t))
5049    ;; Check whether any new text has been added.
5050    (message-check 'new-text
5051      (or
5052       (not message-checksum)
5053       (not (eq (message-checksum) message-checksum))
5054       (if (message-gnksa-enable-p 'quoted-text-only)
5055           (y-or-n-p
5056            "It looks like no new text has been added.  Really post? ")
5057         (message "Denied posting -- no new text has been added.")
5058         nil)))
5059    ;; Check the length of the signature.
5060    (message-check 'signature
5061      (goto-char (point-max))
5062      (if (not (re-search-backward message-signature-separator nil t))
5063          t
5064        (if (>= (count-lines (1+ (point-at-eol)) (point-max)) 5)
5065            (if (message-gnksa-enable-p 'signature)
5066                (y-or-n-p
5067                 (format "Signature is excessively long (%d lines).  Really post? "
5068                         (count-lines (1+ (point-at-eol)) (point-max))))
5069              (message "Denied posting -- Excessive signature.")
5070              nil)
5071          t)))
5072    ;; Ensure that text follows last quoted portion.
5073    (message-check 'quoting-style
5074      (goto-char (point-max))
5075      (let ((no-problem t))
5076        (when (search-backward-regexp "^>[^\n]*\n" nil t)
5077          (setq no-problem (search-forward-regexp "^[ \t]*[^>\n]" nil t)))
5078        (if no-problem
5079            t
5080          (if (message-gnksa-enable-p 'quoted-text-only)
5081              (y-or-n-p "Your text should follow quoted text.  Really post? ")
5082            ;; Ensure that
5083            (goto-char (point-min))
5084            (re-search-forward
5085             (concat "^" (regexp-quote mail-header-separator) "$"))
5086            (if (search-forward-regexp "^[ \t]*[^>\n]" nil t)
5087                (y-or-n-p "Your text should follow quoted text.  Really post? ")
5088              (message "Denied posting -- only quoted text.")
5089              nil)))))))
5090
5091 (defun message-checksum ()
5092   "Return a \"checksum\" for the current buffer."
5093   (let ((sum 0))
5094     (save-excursion
5095       (goto-char (point-min))
5096       (re-search-forward
5097        (concat "^" (regexp-quote mail-header-separator) "$"))
5098       (while (not (eobp))
5099         (when (not (looking-at "[ \t\n]"))
5100           (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1)
5101                             (char-after))))
5102         (forward-char 1)))
5103     sum))
5104
5105 (defun message-do-fcc ()
5106   "Process Fcc headers in the current buffer."
5107   (let ((case-fold-search t)
5108         (buf (current-buffer))
5109         list file
5110         (mml-externalize-attachments message-fcc-externalize-attachments))
5111     (save-excursion
5112       (save-restriction
5113         (message-narrow-to-headers)
5114         (setq file (message-fetch-field "fcc" t)))
5115       (when file
5116         (set-buffer (get-buffer-create " *message temp*"))
5117         (erase-buffer)
5118         (insert-buffer-substring buf)
5119         (message-encode-message-body)
5120         (save-restriction
5121           (message-narrow-to-headers)
5122           (while (setq file (message-fetch-field "fcc" t))
5123             (push file list)
5124             (message-remove-header "fcc" nil t))
5125           (let ((mail-parse-charset message-default-charset)
5126                 (rfc2047-header-encoding-alist
5127                  (cons '("Newsgroups" . default)
5128                        rfc2047-header-encoding-alist)))
5129             (mail-encode-encoded-word-buffer)))
5130         (goto-char (point-min))
5131         (when (re-search-forward
5132                (concat "^" (regexp-quote mail-header-separator) "$")
5133                nil t)
5134           (replace-match "" t t ))
5135         ;; Process FCC operations.
5136         (while list
5137           (setq file (pop list))
5138           (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
5139               ;; Pipe the article to the program in question.
5140               (call-process-region (point-min) (point-max) shell-file-name
5141                                    nil nil nil shell-command-switch
5142                                    (match-string 1 file))
5143             ;; Save the article.
5144             (setq file (expand-file-name file))
5145             (unless (file-exists-p (file-name-directory file))
5146               (make-directory (file-name-directory file) t))
5147             (if (and message-fcc-handler-function
5148                      (not (eq message-fcc-handler-function 'rmail-output)))
5149                 (funcall message-fcc-handler-function file)
5150               (if (and (file-readable-p file) (mail-file-babyl-p file))
5151                   (rmail-output file 1 nil t)
5152                 (let ((mail-use-rfc822 t))
5153                   (rmail-output file 1 t t))))))
5154         (kill-buffer (current-buffer))))))
5155
5156 (defun message-output (filename)
5157   "Append this article to Unix/babyl mail file FILENAME."
5158   (if (and (file-readable-p filename)
5159            (mail-file-babyl-p filename))
5160       (gnus-output-to-rmail filename t)
5161     (gnus-output-to-mail filename t)))
5162
5163 (defun message-cleanup-headers ()
5164   "Do various automatic cleanups of the headers."
5165   ;; Remove empty lines in the header.
5166   (save-restriction
5167     (message-narrow-to-headers)
5168     ;; Remove blank lines.
5169     (while (re-search-forward "^[ \t]*\n" nil t)
5170       (replace-match "" t t))
5171
5172     ;; Correct Newsgroups and Followup-To headers:  Change sequence of
5173     ;; spaces to comma and eliminate spaces around commas.  Eliminate
5174     ;; embedded line breaks.
5175     (goto-char (point-min))
5176     (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
5177       (save-restriction
5178         (narrow-to-region
5179          (point)
5180          (if (re-search-forward "^[^ \t]" nil t)
5181              (match-beginning 0)
5182            (forward-line 1)
5183            (point)))
5184         (goto-char (point-min))
5185         (while (re-search-forward "\n[ \t]+" nil t)
5186           (replace-match " " t t))     ;No line breaks (too confusing)
5187         (goto-char (point-min))
5188         (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
5189           (replace-match "," t t))
5190         (goto-char (point-min))
5191         ;; Remove trailing commas.
5192         (when (re-search-forward ",+$" nil t)
5193           (replace-match "" t t))))))
5194
5195 (defun message-make-date (&optional now)
5196   "Make a valid data header.
5197 If NOW, use that time instead."
5198   (let ((system-time-locale "C"))
5199     (format-time-string "%a, %d %b %Y %T %z" now)))
5200
5201 (defun message-insert-expires (days)
5202   "Insert the Expires header.  Expiry in DAYS days."
5203   (interactive "NExpire article in how many days? ")
5204   (save-excursion
5205     (message-position-on-field "Expires" "X-Draft-From")
5206     (insert (message-make-expires-date days))))
5207
5208 (defun message-make-expires-date (days)
5209   "Make date string for the Expires header.  Expiry in DAYS days.
5210
5211 In posting styles use `(\"Expires\" (make-expires-date 30))'."
5212   (let* ((cur (decode-time (current-time)))
5213          (nday (+ days (nth 3 cur))))
5214     (setf (nth 3 cur) nday)
5215     (message-make-date (apply 'encode-time cur))))
5216
5217 (defun message-make-message-id ()
5218   "Make a unique Message-ID."
5219   (concat "<" (message-unique-id)
5220           (let ((psubject (save-excursion (message-fetch-field "subject")))
5221                 (psupersedes
5222                  (save-excursion (message-fetch-field "supersedes"))))
5223             (if (or
5224                  (and message-reply-headers
5225                       (mail-header-references message-reply-headers)
5226                       (mail-header-subject message-reply-headers)
5227                       psubject
5228                       (not (string=
5229                             (message-strip-subject-re
5230                              (mail-header-subject message-reply-headers))
5231                             (message-strip-subject-re psubject))))
5232                  (and psupersedes
5233                       (string-match "_-_@" psupersedes)))
5234                 "_-_" ""))
5235           "@" (message-make-fqdn) ">"))
5236
5237 (defvar message-unique-id-char nil)
5238
5239 ;; If you ever change this function, make sure the new version
5240 ;; cannot generate IDs that the old version could.
5241 ;; You might for example insert a "." somewhere (not next to another dot
5242 ;; or string boundary), or modify the "fsf" string.
5243 (defun message-unique-id ()
5244   ;; Don't use microseconds from (current-time), they may be unsupported.
5245   ;; Instead we use this randomly inited counter.
5246   (setq message-unique-id-char
5247         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
5248            ;; (current-time) returns 16-bit ints,
5249            ;; and 2^16*25 just fits into 4 digits i base 36.
5250            (* 25 25)))
5251   (let ((tm (current-time)))
5252     (concat
5253      (if (or (memq system-type '(ms-dos emx vax-vms))
5254              ;; message-number-base36 doesn't handle bigints.
5255              (floatp (user-uid)))
5256          (let ((user (downcase (user-login-name))))
5257            (while (string-match "[^a-z0-9_]" user)
5258              (aset user (match-beginning 0) ?_))
5259            user)
5260        (message-number-base36 (user-uid) -1))
5261      (message-number-base36 (+ (car tm)
5262                                (lsh (% message-unique-id-char 25) 16)) 4)
5263      (message-number-base36 (+ (nth 1 tm)
5264                                (lsh (/ message-unique-id-char 25) 16)) 4)
5265      ;; Append a given name, because while the generated ID is unique
5266      ;; to this newsreader, other newsreaders might otherwise generate
5267      ;; the same ID via another algorithm.
5268      ".fsf")))
5269
5270 (defun message-number-base36 (num len)
5271   (if (if (< len 0)
5272           (<= num 0)
5273         (= len 0))
5274       ""
5275     (concat (message-number-base36 (/ num 36) (1- len))
5276             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
5277                                   (% num 36))))))
5278
5279 (defun message-make-organization ()
5280   "Make an Organization header."
5281   (let* ((organization
5282           (when message-user-organization
5283             (if (functionp message-user-organization)
5284                 (funcall message-user-organization)
5285               message-user-organization))))
5286     (with-temp-buffer
5287       (mm-enable-multibyte)
5288       (cond ((stringp organization)
5289              (insert organization))
5290             ((and (eq t organization)
5291                   message-user-organization-file
5292                   (file-exists-p message-user-organization-file))
5293              (insert-file-contents message-user-organization-file)))
5294       (goto-char (point-min))
5295       (while (re-search-forward "[\t\n]+" nil t)
5296         (replace-match "" t t))
5297       (unless (zerop (buffer-size))
5298         (buffer-string)))))
5299
5300 (defun message-make-lines ()
5301   "Count the number of lines and return numeric string."
5302   (save-excursion
5303     (save-restriction
5304       (widen)
5305       (message-goto-body)
5306       (int-to-string (count-lines (point) (point-max))))))
5307
5308 (defun message-make-references ()
5309   "Return the References header for this message."
5310   (when message-reply-headers
5311     (let ((message-id (mail-header-message-id message-reply-headers))
5312           (references (mail-header-references message-reply-headers)))
5313       (if (or references message-id)
5314           (concat (or references "") (and references " ")
5315                   (or message-id ""))
5316         nil))))
5317
5318 (defun message-make-in-reply-to ()
5319   "Return the In-Reply-To header for this message."
5320   (when message-reply-headers
5321     (let ((from (mail-header-from message-reply-headers))
5322           (date (mail-header-date message-reply-headers))
5323           (msg-id (mail-header-message-id message-reply-headers)))
5324       (when from
5325         (let ((name (mail-extract-address-components from)))
5326           (concat
5327            msg-id (if msg-id " (")
5328            (if (car name)
5329                (if (string-match "[^\000-\177]" (car name))
5330                    ;; Quote a string containing non-ASCII characters.
5331                    ;; It will make the RFC2047 encoder cause an error
5332                    ;; if there are special characters.
5333                    (let ((default-enable-multibyte-characters t))
5334                      (with-temp-buffer
5335                        (insert (car name))
5336                        (goto-char (point-min))
5337                        (while (search-forward "\"" nil t)
5338                          (when (prog2
5339                                    (backward-char)
5340                                    (zerop (% (skip-chars-backward "\\\\") 2))
5341                                  (goto-char (match-beginning 0)))
5342                            (insert "\\"))
5343                          (forward-char))
5344                        ;; Those quotes will be removed by the RFC2047 encoder.
5345                        (concat "\"" (buffer-string) "\"")))
5346                  (car name))
5347              (nth 1 name))
5348            "'s message of \""
5349            (if (or (not date) (string= date ""))
5350                "(unknown date)" date)
5351            "\"" (if msg-id ")")))))))
5352
5353 (defun message-make-distribution ()
5354   "Make a Distribution header."
5355   (let ((orig-distribution (message-fetch-reply-field "distribution")))
5356     (cond ((functionp message-distribution-function)
5357            (funcall message-distribution-function))
5358           (t orig-distribution))))
5359
5360 (defun message-make-expires ()
5361   "Return an Expires header based on `message-expires'."
5362   (let ((current (current-time))
5363         (future (* 1.0 message-expires 60 60 24)))
5364     ;; Add the future to current.
5365     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
5366     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
5367     (message-make-date current)))
5368
5369 (defun message-make-path ()
5370   "Return uucp path."
5371   (let ((login-name (user-login-name)))
5372     (cond ((null message-user-path)
5373            (concat (system-name) "!" login-name))
5374           ((stringp message-user-path)
5375            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
5376            (concat message-user-path "!" login-name))
5377           (t login-name))))
5378
5379 (defun message-make-from (&optional name address)
5380   "Make a From header."
5381   (let* ((style message-from-style)
5382          (login (or address (message-make-address)))
5383          (fullname (or name
5384                        (and (boundp 'user-full-name)
5385                             user-full-name)
5386                        (user-full-name))))
5387     (when (string= fullname "&")
5388       (setq fullname (user-login-name)))
5389     (with-temp-buffer
5390       (mm-enable-multibyte)
5391       (cond
5392        ((or (null style)
5393             (equal fullname ""))
5394         (insert login))
5395        ((or (eq style 'angles)
5396             (and (not (eq style 'parens))
5397                  ;; Use angles if no quoting is needed, or if parens would
5398                  ;; need quoting too.
5399                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
5400                      (let ((tmp (concat fullname nil)))
5401                        (while (string-match "([^()]*)" tmp)
5402                          (aset tmp (match-beginning 0) ?-)
5403                          (aset tmp (1- (match-end 0)) ?-))
5404                        (string-match "[\\()]" tmp)))))
5405         (insert fullname)
5406         (goto-char (point-min))
5407         ;; Look for a character that cannot appear unquoted
5408         ;; according to RFC 822.
5409         (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
5410           ;; Quote fullname, escaping specials.
5411           (goto-char (point-min))
5412           (insert "\"")
5413           (while (re-search-forward "[\"\\]" nil 1)
5414             (replace-match "\\\\\\&" t))
5415           (insert "\""))
5416         (insert " <" login ">"))
5417        (t                               ; 'parens or default
5418         (insert login " (")
5419         (let ((fullname-start (point)))
5420           (insert fullname)
5421           (goto-char fullname-start)
5422           ;; RFC 822 says \ and nonmatching parentheses
5423           ;; must be escaped in comments.
5424           ;; Escape every instance of ()\ ...
5425           (while (re-search-forward "[()\\]" nil 1)
5426             (replace-match "\\\\\\&" t))
5427           ;; ... then undo escaping of matching parentheses,
5428           ;; including matching nested parentheses.
5429           (goto-char fullname-start)
5430           (while (re-search-forward
5431                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
5432                   nil 1)
5433             (replace-match "\\1(\\3)" t)
5434             (goto-char fullname-start)))
5435         (insert ")")))
5436       (buffer-string))))
5437
5438 (defun message-make-sender ()
5439   "Return the \"real\" user address.
5440 This function tries to ignore all user modifications, and
5441 give as trustworthy answer as possible."
5442   (concat (user-login-name) "@" (system-name)))
5443
5444 (defun message-make-address ()
5445   "Make the address of the user."
5446   (or (message-user-mail-address)
5447       (concat (user-login-name) "@" (message-make-domain))))
5448
5449 (defun message-user-mail-address ()
5450   "Return the pertinent part of `user-mail-address'."
5451   (when (and user-mail-address
5452              (string-match "@.*\\." user-mail-address))
5453     (if (string-match " " user-mail-address)
5454         (nth 1 (mail-extract-address-components user-mail-address))
5455       user-mail-address)))
5456
5457 (defun message-sendmail-envelope-from ()
5458   "Return the envelope from."
5459   (cond ((eq message-sendmail-envelope-from 'header)
5460          (nth 1 (mail-extract-address-components
5461                  (message-fetch-field "from"))))
5462         ((stringp message-sendmail-envelope-from)
5463          message-sendmail-envelope-from)
5464         (t
5465          (message-make-address))))
5466
5467 (defun message-make-fqdn ()
5468   "Return user's fully qualified domain name."
5469   (let* ((system-name (system-name))
5470          (user-mail (message-user-mail-address))
5471          (user-domain
5472           (if (and user-mail
5473                    (string-match "@\\(.*\\)\\'" user-mail))
5474               (match-string 1 user-mail)))
5475          (case-fold-search t))
5476     (cond
5477      ((and message-user-fqdn
5478            (stringp message-user-fqdn)
5479            (string-match message-valid-fqdn-regexp message-user-fqdn)
5480            (not (string-match message-bogus-system-names message-user-fqdn)))
5481       ;; `message-user-fqdn' seems to be valid
5482       message-user-fqdn)
5483      ((and (string-match message-valid-fqdn-regexp system-name)
5484            (not (string-match message-bogus-system-names system-name)))
5485       ;; `system-name' returned the right result.
5486       system-name)
5487      ;; Try `mail-host-address'.
5488      ((and (boundp 'mail-host-address)
5489            (stringp mail-host-address)
5490            (string-match message-valid-fqdn-regexp mail-host-address)
5491            (not (string-match message-bogus-system-names mail-host-address)))
5492       mail-host-address)
5493      ;; We try `user-mail-address' as a backup.
5494      ((and user-domain
5495            (stringp user-domain)
5496            (string-match message-valid-fqdn-regexp user-domain)
5497            (not (string-match message-bogus-system-names user-domain)))
5498       user-domain)
5499      ;; Default to this bogus thing.
5500      (t
5501       (concat system-name
5502               ".i-did-not-set--mail-host-address--so-tickle-me")))))
5503
5504 (defun message-make-host-name ()
5505   "Return the name of the host."
5506   (let ((fqdn (message-make-fqdn)))
5507     (string-match "^[^.]+\\." fqdn)
5508     (substring fqdn 0 (1- (match-end 0)))))
5509
5510 (defun message-make-domain ()
5511   "Return the domain name."
5512   (or mail-host-address
5513       (message-make-fqdn)))
5514
5515 (defun message-to-list-only ()
5516   "Send a message to the list only.
5517 Remove all addresses but the list address from To and Cc headers."
5518   (interactive)
5519   (let ((listaddr (message-make-mail-followup-to t)))
5520     (when listaddr
5521       (save-excursion
5522         (message-remove-header "to")
5523         (message-remove-header "cc")
5524         (message-position-on-field "To" "X-Draft-From")
5525         (insert listaddr)))))
5526
5527 (defun message-make-mail-followup-to (&optional only-show-subscribed)
5528   "Return the Mail-Followup-To header.
5529 If passed the optional argument ONLY-SHOW-SUBSCRIBED only return the
5530 subscribed address (and not the additional To and Cc header contents)."
5531   (let* ((case-fold-search t)
5532          (to (message-fetch-field "To"))
5533          (cc (message-fetch-field "cc"))
5534          (msg-recipients (concat to (and to cc ", ") cc))
5535          (recipients
5536           (mapcar 'mail-strip-quoted-names
5537                   (message-tokenize-header msg-recipients)))
5538          (file-regexps
5539           (if message-subscribed-address-file
5540               (let (begin end item re)
5541                 (save-excursion
5542                   (with-temp-buffer
5543                     (insert-file-contents message-subscribed-address-file)
5544                     (while (not (eobp))
5545                       (setq begin (point))
5546                       (forward-line 1)
5547                       (setq end (point))
5548                       (if (bolp) (setq end (1- end)))
5549                       (setq item (regexp-quote (buffer-substring begin end)))
5550                       (if re (setq re (concat re "\\|" item))
5551                         (setq re (concat "\\`\\(" item))))
5552                     (and re (list (concat re "\\)\\'"))))))))
5553          (mft-regexps (apply 'append message-subscribed-regexps
5554                              (mapcar 'regexp-quote
5555                                      message-subscribed-addresses)
5556                              file-regexps
5557                              (mapcar 'funcall
5558                                      message-subscribed-address-functions))))
5559     (save-match-data
5560       (let ((list
5561              (loop for recipient in recipients
5562                when (loop for regexp in mft-regexps
5563                       when (string-match regexp recipient) return t)
5564                return recipient)))
5565         (when list
5566           (if only-show-subscribed
5567               list
5568             msg-recipients))))))
5569
5570 (defun message-idna-to-ascii-rhs-1 (header)
5571   "Interactively potentially IDNA encode domain names in HEADER."
5572   (let ((field (message-fetch-field header))
5573         rhs ace  address)
5574     (when field
5575       (dolist (rhs
5576                (mm-delete-duplicates
5577                 (mapcar (lambda (rhs) (or (cadr (split-string rhs "@")) ""))
5578                         (mapcar 'downcase
5579                                 (mapcar
5580                                  'car (mail-header-parse-addresses field))))))
5581         (setq ace (if (string-match "\\`[[:ascii:]]+\\'" rhs)
5582                       rhs
5583                     (downcase (idna-to-ascii rhs))))
5584         (when (and (not (equal rhs ace))
5585                    (or (not (eq message-use-idna 'ask))
5586                        (y-or-n-p (format "Replace %s with %s in %s:? "
5587                                          rhs ace header))))
5588           (goto-char (point-min))
5589           (while (re-search-forward (concat "^" header ":") nil t)
5590             (message-narrow-to-field)
5591             (while (search-forward (concat "@" rhs) nil t)
5592               (replace-match (concat "@" ace) t t))
5593             (goto-char (point-max))
5594             (widen)))))))
5595
5596 (defun message-idna-to-ascii-rhs ()
5597   "Possibly IDNA encode non-ASCII domain names in From:, To: and Cc: headers.
5598 See `message-idna-encode'."
5599   (interactive)
5600   (when message-use-idna
5601     (save-excursion
5602       (save-restriction
5603         (message-narrow-to-head)
5604         (message-idna-to-ascii-rhs-1 "From")
5605         (message-idna-to-ascii-rhs-1 "To")
5606         (message-idna-to-ascii-rhs-1 "Reply-To")
5607         (message-idna-to-ascii-rhs-1 "Mail-Reply-To")
5608         (message-idna-to-ascii-rhs-1 "Mail-Followup-To")
5609         (message-idna-to-ascii-rhs-1 "Cc")))))
5610
5611 (defun message-generate-headers (headers)
5612   "Prepare article HEADERS.
5613 Headers already prepared in the buffer are not modified."
5614   (setq headers (append headers message-required-headers))
5615   (save-restriction
5616     (message-narrow-to-headers)
5617     (let* ((Date (message-make-date))
5618            (Message-ID (message-make-message-id))
5619            (Organization (message-make-organization))
5620            (From (message-make-from))
5621            (Path (message-make-path))
5622            (Subject nil)
5623            (Newsgroups nil)
5624            (In-Reply-To (message-make-in-reply-to))
5625            (References (message-make-references))
5626            (To nil)
5627            (Distribution (message-make-distribution))
5628            (Lines (message-make-lines))
5629            (User-Agent message-newsreader)
5630            (Expires (message-make-expires))
5631            (case-fold-search t)
5632            (optionalp nil)
5633            header value elem header-string)
5634       ;; First we remove any old generated headers.
5635       (let ((headers message-deletable-headers))
5636         (unless (buffer-modified-p)
5637           (setq headers (delq 'Message-ID (copy-sequence headers))))
5638         (while headers
5639           (goto-char (point-min))
5640           (and (re-search-forward
5641                 (concat "^" (symbol-name (car headers)) ": *") nil t)
5642                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
5643                (message-delete-line))
5644           (pop headers)))
5645       ;; Go through all the required headers and see if they are in the
5646       ;; articles already.  If they are not, or are empty, they are
5647       ;; inserted automatically - except for Subject, Newsgroups and
5648       ;; Distribution.
5649       (while headers
5650         (goto-char (point-min))
5651         (setq elem (pop headers))
5652         (if (consp elem)
5653             (if (eq (car elem) 'optional)
5654                 (setq header (cdr elem)
5655                       optionalp t)
5656               (setq header (car elem)))
5657           (setq header elem))
5658         (setq header-string  (if (stringp header)
5659                                  header
5660                                (symbol-name header)))
5661         (when (or (not (re-search-forward
5662                         (concat "^"
5663                                 (regexp-quote (downcase header-string))
5664                                 ":")
5665                         nil t))
5666                   (progn
5667                     ;; The header was found.  We insert a space after the
5668                     ;; colon, if there is none.
5669                     (if (/= (char-after) ? ) (insert " ") (forward-char 1))
5670                     ;; Find out whether the header is empty.
5671                     (looking-at "[ \t]*\n[^ \t]")))
5672           ;; So we find out what value we should insert.
5673           (setq value
5674                 (cond
5675                  ((and (consp elem)
5676                        (eq (car elem) 'optional)
5677                        (not (member header-string message-inserted-headers)))
5678                   ;; This is an optional header.  If the cdr of this
5679                   ;; is something that is nil, then we do not insert
5680                   ;; this header.
5681                   (setq header (cdr elem))
5682                   (or (and (functionp (cdr elem))
5683                            (funcall (cdr elem)))
5684                       (and (boundp (cdr elem))
5685                            (symbol-value (cdr elem)))))
5686                  ((consp elem)
5687                   ;; The element is a cons.  Either the cdr is a
5688                   ;; string to be inserted verbatim, or it is a
5689                   ;; function, and we insert the value returned from
5690                   ;; this function.
5691                   (or (and (stringp (cdr elem))
5692                            (cdr elem))
5693                       (and (functionp (cdr elem))
5694                            (funcall (cdr elem)))))
5695                  ((and (boundp header)
5696                        (symbol-value header))
5697                   ;; The element is a symbol.  We insert the value
5698                   ;; of this symbol, if any.
5699                   (symbol-value header))
5700                  ((not (message-check-element
5701                         (intern (downcase (symbol-name header)))))
5702                   ;; We couldn't generate a value for this header,
5703                   ;; so we just ask the user.
5704                   (read-from-minibuffer
5705                    (format "Empty header for %s; enter value: " header)))))
5706           ;; Finally insert the header.
5707           (when (and value
5708                      (not (equal value "")))
5709             (save-excursion
5710               (if (bolp)
5711                   (progn
5712                     ;; This header didn't exist, so we insert it.
5713                     (goto-char (point-max))
5714                     (let ((formatter
5715                            (cdr (assq header message-header-format-alist))))
5716                       (if formatter
5717                           (funcall formatter header value)
5718                         (insert header-string ": " value))
5719                       (goto-char (message-fill-field))
5720                       ;; We check whether the value was ended by a
5721                       ;; newline.  If not, we insert one.
5722                       (unless (bolp)
5723                         (insert "\n"))
5724                       (forward-line -1)))
5725                 ;; The value of this header was empty, so we clear
5726                 ;; totally and insert the new value.
5727                 (delete-region (point) (point-at-eol))
5728                 ;; If the header is optional, and the header was
5729                 ;; empty, we can't insert it anyway.
5730                 (unless optionalp
5731                   (push header-string message-inserted-headers)
5732                   (insert value)
5733                   (message-fill-field)))
5734               ;; Add the deletable property to the headers that require it.
5735               (and (memq header message-deletable-headers)
5736                    (progn (beginning-of-line) (looking-at "[^:]+: "))
5737                    (add-text-properties
5738                     (point) (match-end 0)
5739                     '(message-deletable t face italic) (current-buffer)))))))
5740       ;; Insert new Sender if the From is strange.
5741       (let ((from (message-fetch-field "from"))
5742             (sender (message-fetch-field "sender"))
5743             (secure-sender (message-make-sender)))
5744         (when (and from
5745                    (not (message-check-element 'sender))
5746                    (not (string=
5747                          (downcase
5748                           (cadr (mail-extract-address-components from)))
5749                          (downcase secure-sender)))
5750                    (or (null sender)
5751                        (not
5752                         (string=
5753                          (downcase
5754                           (cadr (mail-extract-address-components sender)))
5755                          (downcase secure-sender)))))
5756           (goto-char (point-min))
5757           ;; Rename any old Sender headers to Original-Sender.
5758           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
5759             (beginning-of-line)
5760             (insert "Original-")
5761             (beginning-of-line))
5762           (when (or (message-news-p)
5763                     (string-match "@.+\\.." secure-sender))
5764             (insert "Sender: " secure-sender "\n"))))
5765       ;; Check for IDNA
5766       (message-idna-to-ascii-rhs))))
5767
5768 (defun message-insert-courtesy-copy ()
5769   "Insert a courtesy message in mail copies of combined messages."
5770   (let (newsgroups)
5771     (save-excursion
5772       (save-restriction
5773         (message-narrow-to-headers)
5774         (when (setq newsgroups (message-fetch-field "newsgroups"))
5775           (goto-char (point-max))
5776           (insert "Posted-To: " newsgroups "\n")))
5777       (forward-line 1)
5778       (when message-courtesy-message
5779         (cond
5780          ((string-match "%s" message-courtesy-message)
5781           (insert (format message-courtesy-message newsgroups)))
5782          (t
5783           (insert message-courtesy-message)))))))
5784
5785 ;;;
5786 ;;; Setting up a message buffer
5787 ;;;
5788
5789 (defun message-skip-to-next-address ()
5790   (let ((end (save-excursion
5791                (message-next-header)
5792                (point)))
5793         quoted char)
5794     (when (looking-at ",")
5795       (forward-char 1))
5796     (while (and (not (= (point) end))
5797                 (or (not (eq char ?,))
5798                     quoted))
5799       (skip-chars-forward "^,\"" (point-max))
5800       (when (eq (setq char (following-char)) ?\")
5801         (setq quoted (not quoted)))
5802       (unless (= (point) end)
5803         (forward-char 1)))
5804     (skip-chars-forward " \t\n")))
5805
5806 (defun message-fill-address (header value)
5807   (insert (capitalize (symbol-name header))
5808           ": "
5809           (if (consp value) (car value) value)
5810           "\n")
5811   (message-fill-field-address))
5812
5813 (defun message-split-line ()
5814   "Split current line, moving portion beyond point vertically down.
5815 If the current line has `message-yank-prefix', insert it on the new line."
5816   (interactive "*")
5817   (condition-case nil
5818       (split-line message-yank-prefix) ;; Emacs 22.1+ supports arg.
5819     (error
5820      (split-line))))
5821
5822 (defun message-insert-header (header value)
5823   (insert (capitalize (symbol-name header))
5824           ": "
5825           (if (consp value) (car value) value)))
5826
5827 (defun message-field-name ()
5828   (save-excursion
5829     (goto-char (point-min))
5830     (when (looking-at "\\([^:]+\\):")
5831       (intern (capitalize (match-string 1))))))
5832
5833 (defun message-fill-field ()
5834   (save-excursion
5835     (save-restriction
5836       (message-narrow-to-field)
5837       (let ((field-name (message-field-name)))
5838         (funcall (or (cadr (assq field-name message-field-fillers))
5839                      'message-fill-field-general)))
5840       (point-max))))
5841
5842 (defun message-fill-field-address ()
5843   (while (not (eobp))
5844     (message-skip-to-next-address)
5845     (let (last)
5846       (if (and (> (current-column) 78)
5847                last)
5848           (progn
5849             (save-excursion
5850               (goto-char last)
5851               (insert "\n\t"))
5852             (setq last (1+ (point))))
5853         (setq last (1+ (point)))))))
5854
5855 (defun message-fill-field-general ()
5856   (let ((begin (point))
5857         (fill-column 78)
5858         (fill-prefix "\t"))
5859     (while (and (search-forward "\n" nil t)
5860                 (not (eobp)))
5861       (replace-match " " t t))
5862     (fill-region-as-paragraph begin (point-max))
5863     ;; Tapdance around looong Message-IDs.
5864     (forward-line -1)
5865     (when (looking-at "[ \t]*$")
5866       (message-delete-line))
5867     (goto-char begin)
5868     (search-forward ":" nil t)
5869     (when (looking-at "\n[ \t]+")
5870       (replace-match " " t t))
5871     (goto-char (point-max))))
5872
5873 (defun message-shorten-1 (list cut surplus)
5874   "Cut SURPLUS elements out of LIST, beginning with CUTth one."
5875   (setcdr (nthcdr (- cut 2) list)
5876           (nthcdr (+ (- cut 2) surplus 1) list)))
5877
5878 (defun message-shorten-references (header references)
5879   "Trim REFERENCES to be 21 Message-ID long or less, and fold them.
5880 When sending via news, also check that the REFERENCES are less
5881 than 988 characters long, and if they are not, trim them until
5882 they are."
5883   (let ((maxcount 21)
5884         (count 0)
5885         (cut 2)
5886         refs)
5887     (with-temp-buffer
5888       (insert references)
5889       (goto-char (point-min))
5890       ;; Cons a list of valid references.  GNKSA says we must not include MIDs
5891       ;; with whitespace or missing brackets (7.a "Does not propagate broken
5892       ;; Message-IDs in original References").
5893       (while (re-search-forward "<[^ <]+@[^ <]+>" nil t)
5894         (push (match-string 0) refs))
5895       (setq refs (nreverse refs)
5896             count (length refs)))
5897
5898     ;; If the list has more than MAXCOUNT elements, trim it by
5899     ;; removing the CUTth element and the required number of
5900     ;; elements that follow.
5901     (when (> count maxcount)
5902       (let ((surplus (- count maxcount)))
5903         (message-shorten-1 refs cut surplus)
5904         (decf count surplus)))
5905
5906     ;; When sending via news, make sure the total folded length will
5907     ;; be less than 998 characters.  This is to cater to broken INN
5908     ;; 2.3 which counts the total number of characters in a header
5909     ;; rather than the physical line length of each line, as it should.
5910     ;;
5911     ;; This hack should be removed when it's believed than INN 2.3 is
5912     ;; no longer widely used.
5913     ;;
5914     ;; At this point the headers have not been generated, thus we use
5915     ;; message-this-is-news directly.
5916     (when message-this-is-news
5917       (while (< 998
5918                 (with-temp-buffer
5919                   (message-insert-header
5920                    header (mapconcat #'identity refs " "))
5921                   (buffer-size)))
5922         (message-shorten-1 refs cut 1)))
5923     ;; Finally, collect the references back into a string and insert
5924     ;; it into the buffer.
5925     (message-insert-header header (mapconcat #'identity refs " "))))
5926
5927 (defun message-position-point ()
5928   "Move point to where the user probably wants to find it."
5929   (message-narrow-to-headers)
5930   (cond
5931    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
5932     (search-backward ":" )
5933     (widen)
5934     (forward-char 1)
5935     (if (eq (char-after) ? )
5936         (forward-char 1)
5937       (insert " ")))
5938    (t
5939     (goto-char (point-max))
5940     (widen)
5941     (forward-line 1)
5942     (unless (looking-at "$")
5943       (forward-line 2)))
5944    (sit-for 0)))
5945
5946 (defcustom message-beginning-of-line t
5947   "Whether \\<message-mode-map>\\[message-beginning-of-line]\
5948  goes to beginning of header values."
5949   :version "22.1"
5950   :group 'message-buffers
5951   :link '(custom-manual "(message)Movement")
5952   :type 'boolean)
5953
5954 (defun message-beginning-of-line (&optional n)
5955   "Move point to beginning of header value or to beginning of line.
5956 The prefix argument N is passed directly to `beginning-of-line'.
5957
5958 This command is identical to `beginning-of-line' if point is
5959 outside the message header or if the option `message-beginning-of-line'
5960 is nil.
5961
5962 If point is in the message header and on a (non-continued) header
5963 line, move point to the beginning of the header value or the beginning of line,
5964 whichever is closer.  If point is already at beginning of line, move point to
5965 beginning of header value.  Therefore, repeated calls will toggle point
5966 between beginning of field and beginning of line."
5967   (interactive "p")
5968   (let ((zrs 'zmacs-region-stays))
5969     (when (and (featurep 'xemacs) (interactive-p) (boundp zrs))
5970       (set zrs t)))
5971   (if (and message-beginning-of-line
5972            (message-point-in-header-p))
5973       (let* ((here (point))
5974              (bol (progn (beginning-of-line n) (point)))
5975              (eol (point-at-eol))
5976              (eoh (re-search-forward ": *" eol t)))
5977         (goto-char
5978          (if (and eoh (or (< eoh here) (= bol here)))
5979              eoh bol)))
5980     (beginning-of-line n)))
5981
5982 (defun message-buffer-name (type &optional to group)
5983   "Return a new (unique) buffer name based on TYPE and TO."
5984   (cond
5985    ;; Generate a new buffer name The Message Way.
5986    ((memq message-generate-new-buffers '(unique t))
5987     (generate-new-buffer-name
5988      (concat "*" type
5989              (if to
5990                  (concat " to "
5991                          (or (car (mail-extract-address-components to))
5992                              to) "")
5993                "")
5994              (if (and group (not (string= group ""))) (concat " on " group) "")
5995              "*")))
5996    ;; Check whether `message-generate-new-buffers' is a function,
5997    ;; and if so, call it.
5998    ((functionp message-generate-new-buffers)
5999     (funcall message-generate-new-buffers type to group))
6000    ((eq message-generate-new-buffers 'unsent)
6001     (generate-new-buffer-name
6002      (concat "*unsent " type
6003              (if to
6004                  (concat " to "
6005                          (or (car (mail-extract-address-components to))
6006                              to) "")
6007                "")
6008              (if (and group (not (string= group ""))) (concat " on " group) "")
6009              "*")))
6010    ;; Search for the existing message buffer with the specified name.
6011    (t
6012     (let* ((new (if (eq message-generate-new-buffers 'standard)
6013                     (generate-new-buffer-name (concat "*" type " message*"))
6014                   (let ((message-generate-new-buffers 'unique))
6015                     (message-buffer-name type to group))))
6016            (regexp (concat "\\`"
6017                            (regexp-quote
6018                             (if (string-match "<[0-9]+>\\'" new)
6019                                 (substring new 0 (match-beginning 0))
6020                               new))
6021                            "\\(?:<\\([0-9]+\\)>\\)?\\'"))
6022            (case-fold-search nil))
6023       (or (cdar
6024            (last
6025             (sort
6026              (delq nil
6027                    (mapcar
6028                     (lambda (b)
6029                       (when (and (string-match regexp (setq b (buffer-name b)))
6030                                  (eq (with-current-buffer b major-mode)
6031                                      'message-mode))
6032                         (cons (string-to-number (or (match-string 1 b) "1"))
6033                               b)))
6034                     (buffer-list)))
6035              'car-less-than-car)))
6036           new)))))
6037
6038 (defun message-pop-to-buffer (name &optional switch-function)
6039   "Pop to buffer NAME, and warn if it already exists and is modified."
6040   (let ((buffer (get-buffer name)))
6041     (if (and buffer
6042              (buffer-name buffer))
6043         (let ((window (get-buffer-window buffer 0)))
6044           (if window
6045               ;; Raise the frame already displaying the message buffer.
6046               (progn
6047                 (gnus-select-frame-set-input-focus (window-frame window))
6048                 (select-window window))
6049             (funcall (or switch-function 'pop-to-buffer) buffer)
6050             (set-buffer buffer))
6051           (when (and (buffer-modified-p)
6052                      (not (prog1
6053                               (y-or-n-p
6054                                "Message already being composed; erase? ")
6055                             (message nil))))
6056             (error "Message being composed")))
6057       (funcall (or switch-function 'pop-to-buffer) name)
6058       (set-buffer name))
6059     (erase-buffer)
6060     (message-mode)))
6061
6062 (defun message-do-send-housekeeping ()
6063   "Kill old message buffers."
6064   ;; We might have sent this buffer already.  Delete it from the
6065   ;; list of buffers.
6066   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
6067   (while (and message-max-buffers
6068               message-buffer-list
6069               (>= (length message-buffer-list) message-max-buffers))
6070     ;; Kill the oldest buffer -- unless it has been changed.
6071     (let ((buffer (pop message-buffer-list)))
6072       (when (and (buffer-name buffer)
6073                  (not (buffer-modified-p buffer)))
6074         (kill-buffer buffer))))
6075   ;; Rename the buffer.
6076   (if message-send-rename-function
6077       (funcall message-send-rename-function)
6078     ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
6079     (when (string-match
6080            "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
6081            (buffer-name))
6082       (let ((name (match-string 2 (buffer-name)))
6083             to group)
6084         (if (not (or (null name)
6085                      (string-equal name "mail")
6086                      (string-equal name "posting")))
6087             (setq name (concat "*sent " name "*"))
6088           (message-narrow-to-headers)
6089           (setq to (message-fetch-field "to"))
6090           (setq group (message-fetch-field "newsgroups"))
6091           (widen)
6092           (setq name
6093                 (cond
6094                  (to (concat "*sent mail to "
6095                              (or (car (mail-extract-address-components to))
6096                                  to) "*"))
6097                  ((and group (not (string= group "")))
6098                   (concat "*sent posting on " group "*"))
6099                  (t "*sent mail*"))))
6100         (unless (string-equal name (buffer-name))
6101           (rename-buffer name t)))))
6102   ;; Push the current buffer onto the list.
6103   (when message-max-buffers
6104     (setq message-buffer-list
6105           (nconc message-buffer-list (list (current-buffer))))))
6106
6107 (defun message-mail-user-agent ()
6108   (let ((mua (cond
6109               ((not message-mail-user-agent) nil)
6110               ((eq message-mail-user-agent t) mail-user-agent)
6111               (t message-mail-user-agent))))
6112     (if (memq mua '(message-user-agent gnus-user-agent))
6113         nil
6114       mua)))
6115
6116 (defun message-setup (headers &optional replybuffer actions
6117                               continue switch-function)
6118   (let ((mua (message-mail-user-agent))
6119         subject to field yank-action)
6120     (if (not (and message-this-is-mail mua))
6121         (message-setup-1 headers replybuffer actions)
6122       (if replybuffer
6123           (setq yank-action (list 'insert-buffer replybuffer)))
6124       (setq headers (copy-sequence headers))
6125       (setq field (assq 'Subject headers))
6126       (when field
6127         (setq subject (cdr field))
6128         (setq headers (delq field headers)))
6129       (setq field (assq 'To headers))
6130       (when field
6131         (setq to (cdr field))
6132         (setq headers (delq field headers)))
6133       (let ((mail-user-agent mua))
6134         (compose-mail to subject
6135                       (mapcar (lambda (item)
6136                                 (cons
6137                                  (format "%s" (car item))
6138                                  (cdr item)))
6139                               headers)
6140                       continue switch-function yank-action actions)))))
6141
6142 (defun message-headers-to-generate (headers included-headers excluded-headers)
6143   "Return a list that includes all headers from HEADERS.
6144 If INCLUDED-HEADERS is a list, just include those headers.  If it is
6145 t, include all headers.  In any case, headers from EXCLUDED-HEADERS
6146 are not included."
6147   (let ((result nil)
6148         header-name)
6149     (dolist (header headers)
6150       (setq header-name (cond
6151                          ((and (consp header)
6152                                (eq (car header) 'optional))
6153                           ;; On the form (optional . Header)
6154                           (cdr header))
6155                          ((consp header)
6156                           ;; On the form (Header . function)
6157                           (car header))
6158                          (t
6159                           ;; Just a Header.
6160                           header)))
6161       (when (and (not (memq header-name excluded-headers))
6162                  (or (eq included-headers t)
6163                      (memq header-name included-headers)))
6164         (push header result)))
6165     (nreverse result)))
6166
6167 (defun message-setup-1 (headers &optional replybuffer actions)
6168   (dolist (action actions)
6169     (condition-case nil
6170         (add-to-list 'message-send-actions
6171                      `(apply ',(car action) ',(cdr action)))))
6172   (setq message-reply-buffer replybuffer)
6173   (goto-char (point-min))
6174   ;; Insert all the headers.
6175   (mail-header-format
6176    (let ((h headers)
6177          (alist message-header-format-alist))
6178      (while h
6179        (unless (assq (caar h) message-header-format-alist)
6180          (push (list (caar h)) alist))
6181        (pop h))
6182      alist)
6183    headers)
6184   (delete-region (point) (progn (forward-line -1) (point)))
6185   (when message-default-headers
6186     (insert message-default-headers)
6187     (or (bolp) (insert ?\n)))
6188   (insert mail-header-separator "\n")
6189   (forward-line -1)
6190   (when (message-news-p)
6191     (when message-default-news-headers
6192       (insert message-default-news-headers)
6193       (or (bolp) (insert ?\n)))
6194     (when message-generate-headers-first
6195       (message-generate-headers
6196        (message-headers-to-generate
6197         (append message-required-news-headers
6198                 message-required-headers)
6199         message-generate-headers-first
6200         '(Lines Subject)))))
6201   (when (message-mail-p)
6202     (when message-default-mail-headers
6203       (insert message-default-mail-headers)
6204       (or (bolp) (insert ?\n)))
6205     (when message-generate-headers-first
6206       (message-generate-headers
6207        (message-headers-to-generate
6208         (append message-required-mail-headers
6209                 message-required-headers)
6210         message-generate-headers-first
6211         '(Lines Subject)))))
6212   (run-hooks 'message-signature-setup-hook)
6213   (message-insert-signature)
6214   (save-restriction
6215     (message-narrow-to-headers)
6216     (run-hooks 'message-header-setup-hook))
6217   (setq buffer-undo-list nil)
6218   (when message-generate-hashcash
6219     ;; Generate hashcash headers for recipients already known
6220     (mail-add-payment-async))
6221   ;; Gnus posting styles are applied via buffer-local `message-setup-hook'
6222   ;; values.
6223   (run-hooks 'message-setup-hook)
6224   ;; Do this last to give it precedence over posting styles, etc.
6225   (when (message-mail-p)
6226     (save-restriction
6227       (message-narrow-to-headers)
6228       (if message-alternative-emails
6229           (message-use-alternative-email-as-from))))
6230   (message-position-point)
6231   ;; Allow correct handling of `message-checksum' in `message-yank-original':
6232   (set-buffer-modified-p nil)
6233   (undo-boundary))
6234
6235 (defun message-set-auto-save-file-name ()
6236   "Associate the message buffer with a file in the drafts directory."
6237   (when message-auto-save-directory
6238     (unless (file-directory-p
6239              (directory-file-name message-auto-save-directory))
6240       (make-directory message-auto-save-directory t))
6241     (if (gnus-alive-p)
6242         (setq message-draft-article
6243               (nndraft-request-associate-buffer "drafts"))
6244       (setq buffer-file-name (expand-file-name
6245                               (if (memq system-type
6246                                         '(ms-dos ms-windows windows-nt
6247                                                  cygwin cygwin32 win32 w32
6248                                                  mswindows))
6249                                   "message"
6250                                 "*message*")
6251                               message-auto-save-directory))
6252       (setq buffer-auto-save-file-name (make-auto-save-file-name)))
6253     (clear-visited-file-modtime)
6254     (setq buffer-file-coding-system message-draft-coding-system)))
6255
6256 (defun message-disassociate-draft ()
6257   "Disassociate the message buffer from the drafts directory."
6258   (when message-draft-article
6259     (nndraft-request-expire-articles
6260      (list message-draft-article) "nndraft:drafts" nil t)))
6261
6262 (defun message-insert-headers ()
6263   "Generate the headers for the article."
6264   (interactive)
6265   (save-excursion
6266     (save-restriction
6267       (message-narrow-to-headers)
6268       (when (message-news-p)
6269         (message-generate-headers
6270          (delq 'Lines
6271                (delq 'Subject
6272                      (copy-sequence message-required-news-headers)))))
6273       (when (message-mail-p)
6274         (message-generate-headers
6275          (delq 'Lines
6276                (delq 'Subject
6277                      (copy-sequence message-required-mail-headers))))))))
6278
6279 \f
6280
6281 ;;;
6282 ;;; Commands for interfacing with message
6283 ;;;
6284
6285 ;;;###autoload
6286 (defun message-mail (&optional to subject
6287                                other-headers continue switch-function
6288                                yank-action send-actions)
6289   "Start editing a mail message to be sent.
6290 OTHER-HEADERS is an alist of header/value pairs.  CONTINUE says whether
6291 to continue editing a message already being composed.  SWITCH-FUNCTION
6292 is a function used to switch to and display the mail buffer."
6293   (interactive)
6294   (let ((message-this-is-mail t) replybuffer)
6295     (unless (message-mail-user-agent)
6296       (message-pop-to-buffer
6297        ;; Search for the existing message buffer if `continue' is non-nil.
6298        (let ((message-generate-new-buffers
6299               (when (or (not continue)
6300                         (eq message-generate-new-buffers 'standard)
6301                         (functionp message-generate-new-buffers))
6302                 message-generate-new-buffers)))
6303          (message-buffer-name "mail" to))
6304        switch-function))
6305     ;; FIXME: message-mail should do something if YANK-ACTION is not
6306     ;; insert-buffer.
6307     (and (consp yank-action) (eq (car yank-action) 'insert-buffer)
6308          (setq replybuffer (nth 1 yank-action)))
6309     (message-setup
6310      (nconc
6311       `((To . ,(or to "")) (Subject . ,(or subject "")))
6312       (when other-headers other-headers))
6313      replybuffer send-actions continue switch-function)
6314     ;; FIXME: Should return nil if failure.
6315     t))
6316
6317 ;;;###autoload
6318 (defun message-news (&optional newsgroups subject)
6319   "Start editing a news article to be sent."
6320   (interactive)
6321   (let ((message-this-is-news t))
6322     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups))
6323     (message-setup `((Newsgroups . ,(or newsgroups ""))
6324                      (Subject . ,(or subject ""))))))
6325
6326 (defun message-alter-recipients-discard-bogus-full-name (addrcell)
6327   "Discard mail address in full names.
6328 When the full name in reply headers contains the mail
6329 address (e.g. \"foo@bar <foo@bar>\"), discard full name.
6330 ADDRCELL is a cons cell where the car is the mail address and the
6331 cdr is the complete address (full name and mail address)."
6332   (if (string-match (concat (regexp-quote (car addrcell)) ".*"
6333                             (regexp-quote (car addrcell)))
6334                     (cdr addrcell))
6335       (cons (car addrcell) (car addrcell))
6336     addrcell))
6337
6338 (defcustom message-alter-recipients-function nil
6339   "Function called to allow alteration of reply header structures.
6340 It is called in `message-get-reply-headers' for each recipient.
6341 The function is called with one parameter, a cons cell ..."
6342   :type '(choice (const :tag "None" nil)
6343                  (const :tag "Discard bogus full name"
6344                         message-alter-recipients-discard-bogus-full-name)
6345                  function)
6346   :version "23.1" ;; No Gnus
6347   :group 'message-headers)
6348
6349 (defun message-get-reply-headers (wide &optional to-address address-headers)
6350   (let (follow-to mct never-mct to cc author mft recipients extra)
6351   ;; Find all relevant headers we need.
6352     (save-restriction
6353       (message-narrow-to-headers-or-head)
6354       ;; Gmane renames "To".  Look at "Original-To", too, if it is present in
6355       ;; message-header-synonyms.
6356       (setq to (or (message-fetch-field "to")
6357                    (and (loop for synonym in message-header-synonyms
6358                               when (memq 'Original-To synonym)
6359                               return t)
6360                         (message-fetch-field "original-to")))
6361             cc (message-fetch-field "cc")
6362             extra (when message-extra-wide-headers
6363                     (mapconcat 'identity
6364                                (mapcar 'message-fetch-field
6365                                        message-extra-wide-headers)
6366                                ", "))
6367             mct (message-fetch-field "mail-copies-to")
6368             author (or (message-fetch-field "mail-reply-to")
6369                        (message-fetch-field "reply-to")
6370                        (message-fetch-field "from")
6371                        "")
6372             mft (and message-use-mail-followup-to
6373                      (message-fetch-field "mail-followup-to"))))
6374
6375     ;; Handle special values of Mail-Copies-To.
6376     (when mct
6377       (cond ((or (equal (downcase mct) "never")
6378                  (equal (downcase mct) "nobody"))
6379              (setq never-mct t)
6380              (setq mct nil))
6381             ((or (equal (downcase mct) "always")
6382                  (equal (downcase mct) "poster"))
6383              (setq mct author))))
6384
6385     (save-match-data
6386       ;; Build (textual) list of new recipient addresses.
6387       (cond
6388        ((not wide)
6389         (setq recipients (concat ", " author)))
6390        (address-headers
6391         (dolist (header address-headers)
6392           (let ((value (message-fetch-field header)))
6393             (when value
6394               (setq recipients (concat recipients ", " value))))))
6395        ((and mft
6396              (string-match "[^ \t,]" mft)
6397              (or (not (eq message-use-mail-followup-to 'ask))
6398                  (message-y-or-n-p "Obey Mail-Followup-To? " t "\
6399 You should normally obey the Mail-Followup-To: header.  In this
6400 article, it has the value of
6401
6402 " mft "
6403
6404 which directs your response to " (if (string-match "," mft)
6405                                      "the specified addresses"
6406                                    "that address only") ".
6407
6408 Most commonly, Mail-Followup-To is used by a mailing list poster to
6409 express that responses should be sent to just the list, and not the
6410 poster as well.
6411
6412 If a message is posted to several mailing lists, Mail-Followup-To may
6413 also be used to direct the following discussion to one list only,
6414 because discussions that are spread over several lists tend to be
6415 fragmented and very difficult to follow.
6416
6417 Also, some source/announcement lists are not intended for discussion;
6418 responses here are directed to other addresses.
6419
6420 You may customize the variable `message-use-mail-followup-to', if you
6421 want to get rid of this query permanently.")))
6422         (setq recipients (concat ", " mft)))
6423        (to-address
6424         (setq recipients (concat ", " to-address))
6425         ;; If the author explicitly asked for a copy, we don't deny it to them.
6426         (if mct (setq recipients (concat recipients ", " mct))))
6427        (t
6428         (setq recipients (if never-mct "" (concat ", " author)))
6429         (if to (setq recipients (concat recipients ", " to)))
6430         (if cc (setq recipients (concat recipients ", " cc)))
6431         (if extra (setq recipients (concat recipients ", " extra)))
6432         (if mct (setq recipients (concat recipients ", " mct)))))
6433       (if (>= (length recipients) 2)
6434           ;; Strip the leading ", ".
6435           (setq recipients (substring recipients 2)))
6436       ;; Squeeze whitespace.
6437       (while (string-match "[ \t][ \t]+" recipients)
6438         (setq recipients (replace-match " " t t recipients)))
6439       ;; Remove addresses that match `rmail-dont-reply-to-names'.
6440       (let ((rmail-dont-reply-to-names (message-dont-reply-to-names)))
6441         (setq recipients (rmail-dont-reply-to recipients)))
6442       ;; Perhaps "Mail-Copies-To: never" removed the only address?
6443       (if (string-equal recipients "")
6444           (setq recipients author))
6445       ;; Convert string to a list of (("foo@bar" . "Name <Foo@BAR>") ...).
6446       (setq recipients
6447             (mapcar
6448              (lambda (addr)
6449                (if message-alter-recipients-function
6450                    (funcall message-alter-recipients-function
6451                             (cons (downcase (mail-strip-quoted-names addr))
6452                                   addr))
6453                  (cons (downcase (mail-strip-quoted-names addr)) addr)))
6454              (message-tokenize-header recipients)))
6455       ;; Remove first duplicates.  (Why not all duplicates?  Is this a bug?)
6456       (let ((s recipients))
6457         (while s
6458           (setq recipients (delq (assoc (car (pop s)) s) recipients))))
6459
6460       ;; Remove hierarchical lists that are contained within each other,
6461       ;; if message-hierarchical-addresses is defined.
6462       (when message-hierarchical-addresses
6463         (let ((plain-addrs (mapcar 'car recipients))
6464               subaddrs recip)
6465           (while plain-addrs
6466             (setq subaddrs (assoc (car plain-addrs)
6467                                   message-hierarchical-addresses)
6468                   plain-addrs (cdr plain-addrs))
6469             (when subaddrs
6470               (setq subaddrs (cdr subaddrs))
6471               (while subaddrs
6472                 (setq recip (assoc (car subaddrs) recipients)
6473                       subaddrs (cdr subaddrs))
6474                 (if recip
6475                     (setq recipients (delq recip recipients))))))))
6476
6477       ;; Build the header alist.  Allow the user to be asked whether
6478       ;; or not to reply to all recipients in a wide reply.
6479       (setq follow-to (list (cons 'To (cdr (pop recipients)))))
6480       (when (and recipients
6481                  (or (not message-wide-reply-confirm-recipients)
6482                      (y-or-n-p "Reply to all recipients? ")))
6483         (setq recipients (mapconcat
6484                           (lambda (addr) (cdr addr)) recipients ", "))
6485         (if (string-match "^ +" recipients)
6486             (setq recipients (substring recipients (match-end 0))))
6487         (push (cons 'Cc recipients) follow-to)))
6488     follow-to))
6489
6490 (defcustom message-simplify-subject-functions
6491   '(message-strip-list-identifiers
6492     message-strip-subject-re
6493     message-strip-subject-trailing-was
6494     message-strip-subject-encoded-words)
6495   "List of functions taking a string argument that simplify subjects.
6496 The functions are applied when replying to a message.
6497
6498 Useful functions to put in this list include:
6499 `message-strip-list-identifiers', `message-strip-subject-re',
6500 `message-strip-subject-trailing-was', and
6501 `message-strip-subject-encoded-words'."
6502   :version "22.1" ;; Gnus 5.10.9
6503   :group 'message-various
6504   :type '(repeat function))
6505
6506 (defun message-simplify-subject (subject &optional functions)
6507   "Return simplified SUBJECT."
6508   (unless functions
6509     ;; Simplify fully:
6510     (setq functions message-simplify-subject-functions))
6511   (when (and (memq 'message-strip-list-identifiers functions)
6512              gnus-list-identifiers)
6513     (setq subject (message-strip-list-identifiers subject)))
6514   (when (memq 'message-strip-subject-re functions)
6515     (setq subject (concat "Re: " (message-strip-subject-re subject))))
6516   (when (and (memq 'message-strip-subject-trailing-was functions)
6517              message-subject-trailing-was-query)
6518     (setq subject (message-strip-subject-trailing-was subject)))
6519   (when (memq 'message-strip-subject-encoded-words functions)
6520     (setq subject (message-strip-subject-encoded-words subject)))
6521   subject)
6522
6523 ;;;###autoload
6524 (defun message-reply (&optional to-address wide)
6525   "Start editing a reply to the article in the current buffer."
6526   (interactive)
6527   (require 'gnus-sum)                   ; for gnus-list-identifiers
6528   (let ((cur (current-buffer))
6529         from subject date reply-to to cc
6530         references message-id follow-to
6531         (inhibit-point-motion-hooks t)
6532         (message-this-is-mail t)
6533         gnus-warning)
6534     (save-restriction
6535       (message-narrow-to-head-1)
6536       ;; Allow customizations to have their say.
6537       (if (not wide)
6538           ;; This is a regular reply.
6539           (when (functionp message-reply-to-function)
6540             (save-excursion
6541               (setq follow-to (funcall message-reply-to-function))))
6542         ;; This is a followup.
6543         (when (functionp message-wide-reply-to-function)
6544           (save-excursion
6545             (setq follow-to
6546                   (funcall message-wide-reply-to-function)))))
6547       (setq message-id (message-fetch-field "message-id" t)
6548             references (message-fetch-field "references")
6549             date (message-fetch-field "date")
6550             from (or (message-fetch-field "from") "nobody")
6551             subject (or (message-fetch-field "subject") "none"))
6552
6553       ;; Strip list identifiers, "Re: ", and "was:"
6554       (setq subject (message-simplify-subject subject))
6555
6556       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
6557                  (string-match "<[^>]+>" gnus-warning))
6558         (setq message-id (match-string 0 gnus-warning)))
6559
6560       (unless follow-to
6561         (setq follow-to (message-get-reply-headers wide to-address))))
6562
6563     (unless (message-mail-user-agent)
6564       (message-pop-to-buffer
6565        (message-buffer-name
6566         (if wide "wide reply" "reply") from
6567         (if wide to-address nil))))
6568
6569     (setq message-reply-headers
6570           (vector 0 subject from date message-id references 0 0 ""))
6571
6572     (message-setup
6573      `((Subject . ,subject)
6574        ,@follow-to)
6575      cur)))
6576
6577 ;;;###autoload
6578 (defun message-wide-reply (&optional to-address)
6579   "Make a \"wide\" reply to the message in the current buffer."
6580   (interactive)
6581   (message-reply to-address t))
6582
6583 ;;;###autoload
6584 (defun message-followup (&optional to-newsgroups)
6585   "Follow up to the message in the current buffer.
6586 If TO-NEWSGROUPS, use that as the new Newsgroups line."
6587   (interactive)
6588   (require 'gnus-sum)                   ; for gnus-list-identifiers
6589   (let ((cur (current-buffer))
6590         from subject date reply-to mrt mct
6591         references message-id follow-to
6592         (inhibit-point-motion-hooks t)
6593         (message-this-is-news t)
6594         followup-to distribution newsgroups gnus-warning posted-to)
6595     (save-restriction
6596       (narrow-to-region
6597        (goto-char (point-min))
6598        (if (search-forward "\n\n" nil t)
6599            (1- (point))
6600          (point-max)))
6601       (when (functionp message-followup-to-function)
6602         (setq follow-to
6603               (funcall message-followup-to-function)))
6604       (setq from (message-fetch-field "from")
6605             date (message-fetch-field "date")
6606             subject (or (message-fetch-field "subject") "none")
6607             references (message-fetch-field "references")
6608             message-id (message-fetch-field "message-id" t)
6609             followup-to (message-fetch-field "followup-to")
6610             newsgroups (message-fetch-field "newsgroups")
6611             posted-to (message-fetch-field "posted-to")
6612             reply-to (message-fetch-field "reply-to")
6613             mrt (message-fetch-field "mail-reply-to")
6614             distribution (message-fetch-field "distribution")
6615             mct (message-fetch-field "mail-copies-to"))
6616       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
6617                  (string-match "<[^>]+>" gnus-warning))
6618         (setq message-id (match-string 0 gnus-warning)))
6619       ;; Remove bogus distribution.
6620       (when (and (stringp distribution)
6621                  (let ((case-fold-search t))
6622                    (string-match "world" distribution)))
6623         (setq distribution nil))
6624       ;; Strip list identifiers, "Re: ", and "was:"
6625       (setq subject (message-simplify-subject subject))
6626       (widen))
6627
6628     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
6629
6630     (setq message-reply-headers
6631           (vector 0 subject from date message-id references 0 0 ""))
6632
6633     (message-setup
6634      `((Subject . ,subject)
6635        ,@(cond
6636           (to-newsgroups
6637            (list (cons 'Newsgroups to-newsgroups)))
6638           (follow-to follow-to)
6639           ((and followup-to message-use-followup-to)
6640            (list
6641             (cond
6642              ((equal (downcase followup-to) "poster")
6643               (if (or (eq message-use-followup-to 'use)
6644                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
6645 You should normally obey the Followup-To: header.
6646
6647 `Followup-To: poster' sends your response via e-mail instead of news.
6648
6649 A typical situation where `Followup-To: poster' is used is when the poster
6650 does not read the newsgroup, so he wouldn't see any replies sent to it.
6651
6652 You may customize the variable `message-use-followup-to', if you
6653 want to get rid of this query permanently."))
6654                   (progn
6655                     (setq message-this-is-news nil)
6656                     (cons 'To (or mrt reply-to from "")))
6657                 (cons 'Newsgroups newsgroups)))
6658              (t
6659               (if (or (equal followup-to newsgroups)
6660                       (not (eq message-use-followup-to 'ask))
6661                       (message-y-or-n-p
6662                        (concat "Obey Followup-To: " followup-to "? ") t "\
6663 You should normally obey the Followup-To: header.
6664
6665         `Followup-To: " followup-to "'
6666 directs your response to " (if (string-match "," followup-to)
6667                                "the specified newsgroups"
6668                              "that newsgroup only") ".
6669
6670 If a message is posted to several newsgroups, Followup-To is often
6671 used to direct the following discussion to one newsgroup only,
6672 because discussions that are spread over several newsgroup tend to
6673 be fragmented and very difficult to follow.
6674
6675 Also, some source/announcement newsgroups are not intended for discussion;
6676 responses here are directed to other newsgroups.
6677
6678 You may customize the variable `message-use-followup-to', if you
6679 want to get rid of this query permanently."))
6680                   (cons 'Newsgroups followup-to)
6681                 (cons 'Newsgroups newsgroups))))))
6682           (posted-to
6683            `((Newsgroups . ,posted-to)))
6684           (t
6685            `((Newsgroups . ,newsgroups))))
6686        ,@(and distribution (list (cons 'Distribution distribution)))
6687        ,@(when (and mct
6688                     (not (or (equal (downcase mct) "never")
6689                              (equal (downcase mct) "nobody"))))
6690            (list (cons 'Cc (if (or (equal (downcase mct) "always")
6691                                    (equal (downcase mct) "poster"))
6692                                (or mrt reply-to from "")
6693                              mct)))))
6694
6695      cur)))
6696
6697 (defun message-is-yours-p ()
6698   "Non-nil means current article is yours.
6699 If you have added 'cancel-messages to `message-shoot-gnksa-feet', all articles
6700 are yours except those that have Cancel-Lock header not belonging to you.
6701 Instead of shooting GNKSA feet, you should modify `message-alternative-emails'
6702 regexp to match all of yours addresses."
6703   ;; Canlock-logic as suggested by Per Abrahamsen
6704   ;; <abraham@dina.kvl.dk>
6705   ;;
6706   ;; IF article has cancel-lock THEN
6707   ;;   IF we can verify it THEN
6708   ;;     issue cancel
6709   ;;   ELSE
6710   ;;     error: cancellock: article is not yours
6711   ;; ELSE
6712   ;;   Use old rules, comparing sender...
6713   (save-excursion
6714     (save-restriction
6715       (message-narrow-to-head-1)
6716       (if (message-fetch-field "Cancel-Lock")
6717           (if (null (canlock-verify))
6718               t
6719             (error "Failed to verify Cancel-lock: This article is not yours"))
6720         (let (sender from)
6721           (or
6722            (message-gnksa-enable-p 'cancel-messages)
6723            (and (setq sender (message-fetch-field "sender"))
6724                 (string-equal (downcase sender)
6725                               (downcase (message-make-sender))))
6726            ;; Email address in From field equals to our address
6727            (and (setq from (message-fetch-field "from"))
6728                 (string-equal
6729                  (downcase (car (mail-header-parse-address from)))
6730                  (downcase (car (mail-header-parse-address
6731                                  (message-make-from))))))
6732            ;; Email address in From field matches
6733            ;; 'message-alternative-emails' regexp
6734            (and from
6735                 message-alternative-emails
6736                 (string-match
6737                  message-alternative-emails
6738                  (car (mail-header-parse-address from))))))))))
6739
6740 ;;;###autoload
6741 (defun message-cancel-news (&optional arg)
6742   "Cancel an article you posted.
6743 If ARG, allow editing of the cancellation message."
6744   (interactive "P")
6745   (unless (message-news-p)
6746     (error "This is not a news article; canceling is impossible"))
6747   (let (from newsgroups message-id distribution buf)
6748     (save-excursion
6749       ;; Get header info from original article.
6750       (save-restriction
6751         (message-narrow-to-head-1)
6752         (setq from (message-fetch-field "from")
6753               newsgroups (message-fetch-field "newsgroups")
6754               message-id (message-fetch-field "message-id" t)
6755               distribution (message-fetch-field "distribution")))
6756       ;; Make sure that this article was written by the user.
6757       (unless (message-is-yours-p)
6758         (error "This article is not yours"))
6759       (when (yes-or-no-p "Do you really want to cancel this article? ")
6760         ;; Make control message.
6761         (if arg
6762             (message-news)
6763           (setq buf (set-buffer (get-buffer-create " *message cancel*"))))
6764         (erase-buffer)
6765         (insert "Newsgroups: " newsgroups "\n"
6766                 "From: " from "\n"
6767                 "Subject: cmsg cancel " message-id "\n"
6768                 "Control: cancel " message-id "\n"
6769                 (if distribution
6770                     (concat "Distribution: " distribution "\n")
6771                   "")
6772                 mail-header-separator "\n"
6773                 message-cancel-message)
6774         (run-hooks 'message-cancel-hook)
6775         (unless arg
6776           (message "Canceling your article...")
6777           (if (let ((message-syntax-checks
6778                      'dont-check-for-anything-just-trust-me))
6779                 (funcall message-send-news-function))
6780               (message "Canceling your article...done"))
6781           (kill-buffer buf))))))
6782
6783 ;;;###autoload
6784 (defun message-supersede ()
6785   "Start composing a message to supersede the current message.
6786 This is done simply by taking the old article and adding a Supersedes
6787 header line with the old Message-ID."
6788   (interactive)
6789   (let ((cur (current-buffer)))
6790     ;; Check whether the user owns the article that is to be superseded.
6791     (unless (message-is-yours-p)
6792       (error "This article is not yours"))
6793     ;; Get a normal message buffer.
6794     (message-pop-to-buffer (message-buffer-name "supersede"))
6795     (insert-buffer-substring cur)
6796     (mime-to-mml)
6797     (message-narrow-to-head-1)
6798     ;; Remove unwanted headers.
6799     (when message-ignored-supersedes-headers
6800       (message-remove-header message-ignored-supersedes-headers t))
6801     (goto-char (point-min))
6802     (if (not (re-search-forward "^Message-ID: " nil t))
6803         (error "No Message-ID in this article")
6804       (replace-match "Supersedes: " t t))
6805     (goto-char (point-max))
6806     (insert mail-header-separator)
6807     (widen)
6808     (forward-line 1)))
6809
6810 ;;;###autoload
6811 (defun message-recover ()
6812   "Reread contents of current buffer from its last auto-save file."
6813   (interactive)
6814   (let ((file-name (make-auto-save-file-name)))
6815     (cond ((save-window-excursion
6816              (if (not (eq system-type 'vax-vms))
6817                  (with-output-to-temp-buffer "*Directory*"
6818                    (with-current-buffer standard-output
6819                      (fundamental-mode)) ; for Emacs 20.4+
6820                    (buffer-disable-undo standard-output)
6821                    (let ((default-directory "/"))
6822                      (call-process
6823                       "ls" nil standard-output nil "-l" file-name))))
6824              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
6825            (let ((buffer-read-only nil))
6826              (erase-buffer)
6827              (insert-file-contents file-name nil)))
6828           (t (error "message-recover cancelled")))))
6829
6830 ;;; Washing Subject:
6831
6832 (defun message-wash-subject (subject)
6833   "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
6834 Previous forwarders, replyers, etc. may add it."
6835   (with-temp-buffer
6836     (insert subject)
6837     (goto-char (point-min))
6838     ;; strip Re/Fwd stuff off the beginning
6839     (while (re-search-forward
6840             "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t)
6841       (replace-match ""))
6842
6843     ;; and gnus-style forwards [foo@bar.com] subject
6844     (goto-char (point-min))
6845     (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t)
6846       (replace-match ""))
6847
6848     ;; and off the end
6849     (goto-char (point-max))
6850     (while (re-search-backward "([Ff][Ww][Dd])" nil t)
6851       (replace-match ""))
6852
6853     ;; and finally, any whitespace that was left-over
6854     (goto-char (point-min))
6855     (while (re-search-forward "^[ \t]+" nil t)
6856       (replace-match ""))
6857     (goto-char (point-max))
6858     (while (re-search-backward "[ \t]+$" nil t)
6859       (replace-match ""))
6860
6861     (buffer-string)))
6862
6863 ;;; Forwarding messages.
6864
6865 (defvar message-forward-decoded-p nil
6866   "Non-nil means the original message is decoded.")
6867
6868 (defun message-forward-subject-name-subject (subject)
6869   "Generate a SUBJECT for a forwarded message.
6870 The form is: [Source] Subject, where if the original message was mail,
6871 Source is the name of the sender, and if the original message was
6872 news, Source is the list of newsgroups is was posted to."
6873   (let* ((group (message-fetch-field "newsgroups"))
6874          (from (message-fetch-field "from"))
6875          (prefix
6876           (if group
6877               (gnus-group-decoded-name group)
6878             (or (and from (or
6879                            (car (gnus-extract-address-components from))
6880                            (cadr (gnus-extract-address-components from))))
6881                 "(nowhere)"))))
6882     (concat "["
6883             (if message-forward-decoded-p
6884                 prefix
6885               (mail-decode-encoded-word-string prefix))
6886             "] " subject)))
6887
6888 (defun message-forward-subject-author-subject (subject)
6889   "Generate a SUBJECT for a forwarded message.
6890 The form is: [Source] Subject, where if the original message was mail,
6891 Source is the sender, and if the original message was news, Source is
6892 the list of newsgroups is was posted to."
6893   (let* ((group (message-fetch-field "newsgroups"))
6894          (prefix
6895           (if group
6896               (gnus-group-decoded-name group)
6897             (or (message-fetch-field "from")
6898                 "(nowhere)"))))
6899     (concat "["
6900             (if message-forward-decoded-p
6901                 prefix
6902               (mail-decode-encoded-word-string prefix))
6903             "] " subject)))
6904
6905 (defun message-forward-subject-fwd (subject)
6906   "Generate a SUBJECT for a forwarded message.
6907 The form is: Fwd: Subject, where Subject is the original subject of
6908 the message."
6909   (if (string-match "^Fwd: " subject)
6910       subject
6911     (concat "Fwd: " subject)))
6912
6913 (defun message-make-forward-subject ()
6914   "Return a Subject header suitable for the message in the current buffer."
6915   (save-excursion
6916     (save-restriction
6917       (message-narrow-to-head-1)
6918       (let ((funcs message-make-forward-subject-function)
6919             (subject (message-fetch-field "Subject")))
6920         (setq subject
6921               (if subject
6922                   (if message-forward-decoded-p
6923                       subject
6924                     (mail-decode-encoded-word-string subject))
6925                 ""))
6926         (when message-wash-forwarded-subjects
6927           (setq subject (message-wash-subject subject)))
6928         ;; Make sure funcs is a list.
6929         (and funcs
6930              (not (listp funcs))
6931              (setq funcs (list funcs)))
6932         ;; Apply funcs in order, passing subject generated by previous
6933         ;; func to the next one.
6934         (dolist (func funcs)
6935           (when (functionp func)
6936             (setq subject (funcall func subject))))
6937         subject))))
6938
6939 (defvar gnus-article-decoded-p)
6940
6941
6942 ;;;###autoload
6943 (defun message-forward (&optional news digest)
6944   "Forward the current message via mail.
6945 Optional NEWS will use news to forward instead of mail.
6946 Optional DIGEST will use digest to forward."
6947   (interactive "P")
6948   (let* ((cur (current-buffer))
6949          (message-forward-decoded-p
6950           (if (local-variable-p 'gnus-article-decoded-p (current-buffer))
6951               gnus-article-decoded-p ;; In an article buffer.
6952             message-forward-decoded-p))
6953          (subject (message-make-forward-subject)))
6954     (if news
6955         (message-news nil subject)
6956       (message-mail nil subject))
6957     (message-forward-make-body cur digest)))
6958
6959 (defun message-forward-make-body-plain (forward-buffer)
6960   (insert
6961    "\n-------------------- Start of forwarded message --------------------\n")
6962   (let ((b (point)) e)
6963     (insert
6964      (with-temp-buffer
6965        (mm-disable-multibyte)
6966        (insert
6967         (with-current-buffer forward-buffer
6968           (mm-with-unibyte-current-buffer (buffer-string))))
6969        (mm-enable-multibyte)
6970        (mime-to-mml)
6971        (goto-char (point-min))
6972        (when (looking-at "From ")
6973          (replace-match "X-From-Line: "))
6974        (buffer-string)))
6975     (setq e (point))
6976     (insert
6977      "\n-------------------- End of forwarded message --------------------\n")
6978     (message-remove-ignored-headers b e)))
6979
6980 (defun message-remove-ignored-headers (b e)
6981   (when message-forward-ignored-headers
6982     (save-restriction
6983       (narrow-to-region b e)
6984       (goto-char b)
6985       (narrow-to-region (point)
6986                         (or (search-forward "\n\n" nil t) (point)))
6987       (let ((ignored (if (stringp message-forward-ignored-headers)
6988                          (list message-forward-ignored-headers)
6989                        message-forward-ignored-headers)))
6990         (dolist (elem ignored)
6991           (message-remove-header elem t))))))
6992
6993 (defun message-forward-make-body-mime (forward-buffer)
6994   (let ((b (point)))
6995     (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n")
6996     (save-restriction
6997       (narrow-to-region (point) (point))
6998       (mml-insert-buffer forward-buffer)
6999       (goto-char (point-min))
7000       (when (looking-at "From ")
7001         (replace-match "X-From-Line: "))
7002       (goto-char (point-max)))
7003     (insert "<#/part>\n")
7004     ;; Consider there is no illegible text.
7005     (add-text-properties
7006      b (point)
7007      `(no-illegible-text t rear-nonsticky t start-open t))))
7008
7009 (defun message-forward-make-body-mml (forward-buffer)
7010   (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
7011   (let ((b (point)) e)
7012     (if (not message-forward-decoded-p)
7013         (insert
7014          (with-temp-buffer
7015            (mm-disable-multibyte)
7016            (insert
7017             (with-current-buffer forward-buffer
7018               (mm-with-unibyte-current-buffer (buffer-string))))
7019            (mm-enable-multibyte)
7020            (mime-to-mml)
7021            (goto-char (point-min))
7022            (when (looking-at "From ")
7023              (replace-match "X-From-Line: "))
7024            (buffer-string)))
7025       (save-restriction
7026         (narrow-to-region (point) (point))
7027         (mml-insert-buffer forward-buffer)
7028         (goto-char (point-min))
7029         (when (looking-at "From ")
7030           (replace-match "X-From-Line: "))
7031         (goto-char (point-max))))
7032     (setq e (point))
7033     (insert "<#/mml>\n")
7034     (when (and (not message-forward-decoded-p)
7035                message-forward-ignored-headers)
7036       (message-remove-ignored-headers b e))))
7037
7038 (defun message-forward-make-body-digest-plain (forward-buffer)
7039   (insert
7040    "\n-------------------- Start of forwarded message --------------------\n")
7041   (let ((b (point)) e)
7042     (mml-insert-buffer forward-buffer)
7043     (setq e (point))
7044     (insert
7045      "\n-------------------- End of forwarded message --------------------\n")))
7046
7047 (defun message-forward-make-body-digest-mime (forward-buffer)
7048   (insert "\n<#multipart type=digest>\n")
7049   (let ((b (point)) e)
7050     (insert-buffer-substring forward-buffer)
7051     (setq e (point))
7052     (insert "<#/multipart>\n")
7053     (save-restriction
7054       (narrow-to-region b e)
7055       (goto-char b)
7056       (narrow-to-region (point)
7057                         (or (search-forward "\n\n" nil t) (point)))
7058       (delete-region (point-min) (point-max)))))
7059
7060 (defun message-forward-make-body-digest (forward-buffer)
7061   (if message-forward-as-mime
7062       (message-forward-make-body-digest-mime forward-buffer)
7063     (message-forward-make-body-digest-plain forward-buffer)))
7064
7065 (eval-and-compile
7066   (autoload 'mm-uu-dissect-text-parts "mm-uu")
7067   (autoload 'mm-uu-dissect "mm-uu"))
7068
7069 (defun message-signed-or-encrypted-p (&optional dont-emulate-mime handles)
7070   "Say whether the current buffer contains signed or encrypted message.
7071 If DONT-EMULATE-MIME is nil, this function does the MIME emulation on
7072 messages that don't conform to PGP/MIME described in RFC2015.  HANDLES
7073 is for the internal use."
7074   (unless handles
7075     (let ((mm-decrypt-option 'never)
7076           (mm-verify-option 'never))
7077       (if (setq handles (mm-dissect-buffer nil t))
7078           (unless dont-emulate-mime
7079             (mm-uu-dissect-text-parts handles))
7080         (unless dont-emulate-mime
7081           (setq handles (mm-uu-dissect))))))
7082   ;; Check text/plain message in which there is a signed or encrypted
7083   ;; body that has been encoded by B or Q.
7084   (unless (or handles dont-emulate-mime)
7085     (let ((cur (current-buffer))
7086           (mm-decrypt-option 'never)
7087           (mm-verify-option 'never))
7088       (with-temp-buffer
7089         (insert-buffer-substring cur)
7090         (when (setq handles (mm-dissect-buffer t t))
7091           (if (and (prog1
7092                        (bufferp (car handles))
7093                      (mm-destroy-parts handles))
7094                    (equal (mm-handle-media-type handles) "text/plain"))
7095               (progn
7096                 (mm-decode-content-transfer-encoding
7097                  (mm-handle-encoding handles))
7098                 (setq handles (mm-uu-dissect)))
7099             (setq handles nil))))))
7100   (when handles
7101     (prog1
7102         (catch 'found
7103           (dolist (handle (if (stringp (car handles))
7104                               (if (member (car handles)
7105                                           '("multipart/signed"
7106                                             "multipart/encrypted"))
7107                                   (throw 'found t)
7108                                 (cdr handles))
7109                             (list handles)))
7110             (if (stringp (car handle))
7111                 (when (message-signed-or-encrypted-p dont-emulate-mime handle)
7112                   (throw 'found t))
7113               (when (and (bufferp (car handle))
7114                          (equal (mm-handle-media-type handle)
7115                                 "message/rfc822"))
7116                 (with-current-buffer (mm-handle-buffer handle)
7117                   (when (message-signed-or-encrypted-p dont-emulate-mime)
7118                     (throw 'found t)))))))
7119       (mm-destroy-parts handles))))
7120
7121 ;;;###autoload
7122 (defun message-forward-make-body (forward-buffer &optional digest)
7123   ;; Put point where we want it before inserting the forwarded
7124   ;; message.
7125   (if message-forward-before-signature
7126       (message-goto-body)
7127     (goto-char (point-max)))
7128   (if digest
7129       (message-forward-make-body-digest forward-buffer)
7130     (if message-forward-as-mime
7131         (if (and message-forward-show-mml
7132                  (not (and (eq message-forward-show-mml 'best)
7133                            ;; Use the raw form in the body if it contains
7134                            ;; signed or encrypted message so as not to be
7135                            ;; destroyed by re-encoding.
7136                            (with-current-buffer forward-buffer
7137                              (condition-case nil
7138                                  (message-signed-or-encrypted-p)
7139                                (error t))))))
7140             (message-forward-make-body-mml forward-buffer)
7141           (message-forward-make-body-mime forward-buffer))
7142       (message-forward-make-body-plain forward-buffer)))
7143   (message-position-point))
7144
7145 ;;;###autoload
7146 (defun message-forward-rmail-make-body (forward-buffer)
7147   (save-window-excursion
7148     (set-buffer forward-buffer)
7149     (if (rmail-msg-is-pruned)
7150         (rmail-msg-restore-non-pruned-header)))
7151   (message-forward-make-body forward-buffer))
7152
7153 ;; Fixme: Should have defcustom.
7154 ;;;###autoload
7155 (defun message-insinuate-rmail ()
7156   "Let RMAIL use message to forward."
7157   (interactive)
7158   (setq rmail-enable-mime-composing t)
7159   (setq rmail-insert-mime-forwarded-message-function
7160         'message-forward-rmail-make-body))
7161
7162 ;;;###autoload
7163 (defun message-resend (address)
7164   "Resend the current article to ADDRESS."
7165   (interactive
7166    (list (message-read-from-minibuffer "Resend message to: ")))
7167   (message "Resending message to %s..." address)
7168   (save-excursion
7169     (let ((cur (current-buffer))
7170           beg)
7171       ;; We first set up a normal mail buffer.
7172       (unless (message-mail-user-agent)
7173         (set-buffer (get-buffer-create " *message resend*"))
7174         (erase-buffer))
7175       (let ((message-this-is-mail t)
7176             message-generate-hashcash
7177             message-setup-hook)
7178         (message-setup `((To . ,address))))
7179       ;; Insert our usual headers.
7180       (message-generate-headers '(From Date To Message-ID))
7181       (message-narrow-to-headers)
7182       ;; Remove X-Draft-From header etc.
7183       (message-remove-header message-ignored-mail-headers t)
7184       ;; Rename them all to "Resent-*".
7185       (goto-char (point-min))
7186       (while (re-search-forward "^[A-Za-z]" nil t)
7187         (forward-char -1)
7188         (insert "Resent-"))
7189       (widen)
7190       (forward-line)
7191       (delete-region (point) (point-max))
7192       (setq beg (point))
7193       ;; Insert the message to be resent.
7194       (insert-buffer-substring cur)
7195       (goto-char (point-min))
7196       (search-forward "\n\n")
7197       (forward-char -1)
7198       (save-restriction
7199         (narrow-to-region beg (point))
7200         (message-remove-header message-ignored-resent-headers t)
7201         (goto-char (point-max)))
7202       (insert mail-header-separator)
7203       ;; Rename all old ("Also-")Resent headers.
7204       (while (re-search-backward "^\\(Also-\\)*Resent-" beg t)
7205         (beginning-of-line)
7206         (insert "Also-"))
7207       ;; Quote any "From " lines at the beginning.
7208       (goto-char beg)
7209       (when (looking-at "From ")
7210         (replace-match "X-From-Line: "))
7211       ;; Send it.
7212       (let ((message-inhibit-body-encoding t)
7213             message-required-mail-headers
7214             message-generate-hashcash
7215             rfc2047-encode-encoded-words)
7216         (message-send-mail))
7217       (kill-buffer (current-buffer)))
7218     (message "Resending message to %s...done" address)))
7219
7220 ;;;###autoload
7221 (defun message-bounce ()
7222   "Re-mail the current message.
7223 This only makes sense if the current message is a bounce message that
7224 contains some mail you have written which has been bounced back to
7225 you."
7226   (interactive)
7227   (let ((handles (mm-dissect-buffer t))
7228         boundary)
7229     (message-pop-to-buffer (message-buffer-name "bounce"))
7230     (if (stringp (car handles))
7231         ;; This is a MIME bounce.
7232         (mm-insert-part (car (last handles)))
7233       ;; This is a non-MIME bounce, so we try to remove things
7234       ;; manually.
7235       (mm-insert-part handles)
7236       (undo-boundary)
7237       (goto-char (point-min))
7238       (re-search-forward "\n\n+" nil t)
7239       (setq boundary (point))
7240       ;; We remove everything before the bounced mail.
7241       (if (or (re-search-forward message-unsent-separator nil t)
7242               (progn
7243                 (search-forward "\n\n" nil 'move)
7244                 (re-search-backward "^Return-Path:.*\n" boundary t)))
7245           (progn
7246             (forward-line 1)
7247             (delete-region (point-min)
7248                            (if (re-search-forward "^[^ \n\t]+:" nil t)
7249                                (match-beginning 0)
7250                              (point))))
7251         (goto-char boundary)
7252         (when (re-search-backward "^.?From .*\n" nil t)
7253           (delete-region (match-beginning 0) (match-end 0)))))
7254     (mime-to-mml)
7255     (save-restriction
7256       (message-narrow-to-head-1)
7257       (message-remove-header message-ignored-bounced-headers t)
7258       (goto-char (point-max))
7259       (insert mail-header-separator))
7260     (message-position-point)))
7261
7262 ;;;
7263 ;;; Interactive entry points for new message buffers.
7264 ;;;
7265
7266 ;;;###autoload
7267 (defun message-mail-other-window (&optional to subject)
7268   "Like `message-mail' command, but display mail buffer in another window."
7269   (interactive)
7270   (unless (message-mail-user-agent)
7271     (let ((pop-up-windows t)
7272           (special-display-buffer-names nil)
7273           (special-display-regexps nil)
7274           (same-window-buffer-names nil)
7275           (same-window-regexps nil))
7276       (message-pop-to-buffer (message-buffer-name "mail" to))))
7277   (let ((message-this-is-mail t))
7278     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
7279                    nil nil nil 'switch-to-buffer-other-window)))
7280
7281 ;;;###autoload
7282 (defun message-mail-other-frame (&optional to subject)
7283   "Like `message-mail' command, but display mail buffer in another frame."
7284   (interactive)
7285   (unless (message-mail-user-agent)
7286     (let ((pop-up-frames t)
7287           (special-display-buffer-names nil)
7288           (special-display-regexps nil)
7289           (same-window-buffer-names nil)
7290           (same-window-regexps nil))
7291       (message-pop-to-buffer (message-buffer-name "mail" to))))
7292   (let ((message-this-is-mail t))
7293     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
7294                    nil nil nil 'switch-to-buffer-other-frame)))
7295
7296 ;;;###autoload
7297 (defun message-news-other-window (&optional newsgroups subject)
7298   "Start editing a news article to be sent."
7299   (interactive)
7300   (let ((pop-up-windows t)
7301         (special-display-buffer-names nil)
7302         (special-display-regexps nil)
7303         (same-window-buffer-names nil)
7304         (same-window-regexps nil))
7305     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
7306   (let ((message-this-is-news t))
7307     (message-setup `((Newsgroups . ,(or newsgroups ""))
7308                      (Subject . ,(or subject ""))))))
7309
7310 ;;;###autoload
7311 (defun message-news-other-frame (&optional newsgroups subject)
7312   "Start editing a news article to be sent."
7313   (interactive)
7314   (let ((pop-up-frames t)
7315         (special-display-buffer-names nil)
7316         (special-display-regexps nil)
7317         (same-window-buffer-names nil)
7318         (same-window-regexps nil))
7319     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
7320   (let ((message-this-is-news t))
7321     (message-setup `((Newsgroups . ,(or newsgroups ""))
7322                      (Subject . ,(or subject ""))))))
7323
7324 ;;; underline.el
7325
7326 ;; This code should be moved to underline.el (from which it is stolen).
7327
7328 ;;;###autoload
7329 (defun message-bold-region (start end)
7330   "Bold all nonblank characters in the region.
7331 Works by overstriking characters.
7332 Called from program, takes two arguments START and END
7333 which specify the range to operate on."
7334   (interactive "r")
7335   (save-excursion
7336     (let ((end1 (make-marker)))
7337       (move-marker end1 (max start end))
7338       (goto-char (min start end))
7339       (while (< (point) end1)
7340         (or (looking-at "[_\^@- ]")
7341             (insert (char-after) "\b"))
7342         (forward-char 1)))))
7343
7344 ;;;###autoload
7345 (defun message-unbold-region (start end)
7346   "Remove all boldness (overstruck characters) in the region.
7347 Called from program, takes two arguments START and END
7348 which specify the range to operate on."
7349   (interactive "r")
7350   (save-excursion
7351     (let ((end1 (make-marker)))
7352       (move-marker end1 (max start end))
7353       (goto-char (min start end))
7354       (while (search-forward "\b" end1 t)
7355         (if (eq (char-after) (char-after (- (point) 2)))
7356             (delete-char -2))))))
7357
7358 (defun message-exchange-point-and-mark ()
7359   "Exchange point and mark, but don't activate region if it was inactive."
7360   (unless (prog1
7361               (message-mark-active-p)
7362             (exchange-point-and-mark))
7363     (setq mark-active nil)))
7364
7365 (defalias 'message-make-overlay 'make-overlay)
7366 (defalias 'message-delete-overlay 'delete-overlay)
7367 (defalias 'message-overlay-put 'overlay-put)
7368 (defun message-kill-all-overlays ()
7369   (if (featurep 'xemacs)
7370       (map-extents (lambda (extent ignore) (delete-extent extent)))
7371     (mapcar #'delete-overlay (overlays-in (point-min) (point-max)))))
7372
7373 ;; Support for toolbar
7374 (defvar tool-bar-mode)
7375
7376 ;; Note: The :set function in the `message-tool-bar*' variables will only
7377 ;; affect _new_ message buffers.  We might add a function that walks thru all
7378 ;; message-mode buffers and force the update.
7379 (defun message-tool-bar-update (&optional symbol value)
7380   "Update message mode toolbar.
7381 Setter function for custom variables."
7382   (setq-default message-tool-bar-map nil)
7383   (when symbol
7384     ;; When used as ":set" function:
7385     (set-default symbol value)))
7386
7387 (defcustom message-tool-bar (if (eq gmm-tool-bar-style 'gnome)
7388                                 'message-tool-bar-gnome
7389                               'message-tool-bar-retro)
7390   "Specifies the message mode tool bar.
7391
7392 It can be either a list or a symbol refering to a list.  See
7393 `gmm-tool-bar-from-list' for the format of the list.  The
7394 default key map is `message-mode-map'.
7395
7396 Pre-defined symbols include `message-tool-bar-gnome' and
7397 `message-tool-bar-retro'."
7398   :type '(repeat gmm-tool-bar-list-item)
7399   :type '(choice (const :tag "GNOME style" message-tool-bar-gnome)
7400                  (const :tag "Retro look"  message-tool-bar-retro)
7401                  (repeat :tag "User defined list" gmm-tool-bar-item)
7402                  (symbol))
7403   :version "23.1" ;; No Gnus
7404   :initialize 'custom-initialize-default
7405   :set 'message-tool-bar-update
7406   :group 'message)
7407
7408 (defcustom message-tool-bar-gnome
7409   '((ispell-message "spell" nil
7410                     :visible (or (not (boundp 'flyspell-mode))
7411                                  (not flyspell-mode)))
7412     (flyspell-buffer "spell" t
7413                      :visible (and (boundp 'flyspell-mode)
7414                                    flyspell-mode)
7415                      :help "Flyspell whole buffer")
7416     (gmm-ignore "separator")
7417     (message-send-and-exit "mail/send")
7418     (message-dont-send "mail/save-draft")
7419     (message-kill-buffer "close") ;; stock_cancel
7420     (mml-attach-file "attach" mml-mode-map)
7421     (mml-preview "mail/preview" mml-mode-map)
7422     (mml-secure-message-sign-encrypt "lock" mml-mode-map :visible nil)
7423     (message-insert-importance-high "important" nil :visible nil)
7424     (message-insert-importance-low "unimportant" nil :visible nil)
7425     (message-insert-disposition-notification-to "receipt" nil :visible nil)
7426     (gmm-customize-mode "preferences" t :help "Edit mode preferences")
7427     (message-info "help" t :help "Message manual"))
7428   "List of items for the message tool bar (GNOME style).
7429
7430 See `gmm-tool-bar-from-list' for details on the format of the list."
7431   :type '(repeat gmm-tool-bar-item)
7432   :version "23.1" ;; No Gnus
7433   :initialize 'custom-initialize-default
7434   :set 'message-tool-bar-update
7435   :group 'message)
7436
7437 (defcustom message-tool-bar-retro
7438   '(;; Old Emacs 21 icon for consistency.
7439     (message-send-and-exit "gnus/mail-send")
7440     (message-kill-buffer "close")
7441     (message-dont-send "cancel")
7442     (mml-attach-file "attach" mml-mode-map)
7443     (ispell-message "spell")
7444     (mml-preview "preview" mml-mode-map)
7445     (message-insert-importance-high "gnus/important")
7446     (message-insert-importance-low "gnus/unimportant")
7447     (message-insert-disposition-notification-to "gnus/receipt"))
7448   "List of items for the message tool bar (retro style).
7449
7450 See `gmm-tool-bar-from-list' for details on the format of the list."
7451   :type '(repeat gmm-tool-bar-item)
7452   :version "23.1" ;; No Gnus
7453   :initialize 'custom-initialize-default
7454   :set 'message-tool-bar-update
7455   :group 'message)
7456
7457 (defcustom message-tool-bar-zap-list
7458   '(new-file open-file dired kill-buffer write-file
7459              print-buffer customize help)
7460   "List of icon items from the global tool bar.
7461 These items are not displayed on the message mode tool bar.
7462
7463 See `gmm-tool-bar-from-list' for the format of the list."
7464   :type 'gmm-tool-bar-zap-list
7465   :version "23.1" ;; No Gnus
7466   :initialize 'custom-initialize-default
7467   :set 'message-tool-bar-update
7468   :group 'message)
7469
7470 (defvar image-load-path)
7471
7472 (defun message-make-tool-bar (&optional force)
7473   "Make a message mode tool bar from `message-tool-bar-list'.
7474 When FORCE, rebuild the tool bar."
7475   (when (and (not (featurep 'xemacs))
7476              (boundp 'tool-bar-mode)
7477              tool-bar-mode
7478              (or (not message-tool-bar-map) force))
7479     (setq message-tool-bar-map
7480           (let* ((load-path
7481                   (gmm-image-load-path-for-library "message"
7482                                                    "mail/save-draft.xpm"
7483                                                    nil t))
7484                  (image-load-path (cons (car load-path)
7485                                         (when (boundp 'image-load-path)
7486                                           image-load-path))))
7487             (gmm-tool-bar-from-list message-tool-bar
7488                                     message-tool-bar-zap-list
7489                                     'message-mode-map))))
7490   message-tool-bar-map)
7491
7492 ;;; Group name completion.
7493
7494 (defcustom message-newgroups-header-regexp
7495   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
7496   "Regexp that match headers that lists groups."
7497   :group 'message
7498   :type 'regexp)
7499
7500 (defcustom message-completion-alist
7501   (list (cons message-newgroups-header-regexp 'message-expand-group)
7502         '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name)
7503         '("^\\(Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):"
7504           . message-expand-name)
7505         '("^\\(Disposition-Notification-To\\|Return-Receipt-To\\):"
7506           . message-expand-name))
7507   "Alist of (RE . FUN).  Use FUN for completion on header lines matching RE."
7508   :version "22.1"
7509   :group 'message
7510   :type '(alist :key-type regexp :value-type function))
7511
7512 (defcustom message-expand-name-databases
7513   (list 'bbdb 'eudc)
7514   "List of databases to try for name completion (`message-expand-name').
7515 Each element is a symbol and can be `bbdb' or `eudc'."
7516   :group 'message
7517   :type '(set (const bbdb) (const eudc)))
7518
7519 (defcustom message-tab-body-function nil
7520   "*Function to execute when `message-tab' (TAB) is executed in the body.
7521 If nil, the function bound in `text-mode-map' or `global-map' is executed."
7522   :version "22.1"
7523   :group 'message
7524   :link '(custom-manual "(message)Various Commands")
7525   :type '(choice (const nil)
7526                  function))
7527
7528 (declare-function mail-abbrev-in-expansion-header-p "mailabbrev" ())
7529
7530 (defun message-tab ()
7531   "Complete names according to `message-completion-alist'.
7532 Execute function specified by `message-tab-body-function' when not in
7533 those headers."
7534   (interactive)
7535   (let ((alist message-completion-alist))
7536     (while (and alist
7537                 (let ((mail-abbrev-mode-regexp (caar alist)))
7538                   (not (mail-abbrev-in-expansion-header-p))))
7539       (setq alist (cdr alist)))
7540     (funcall (or (cdar alist) message-tab-body-function
7541                  (lookup-key text-mode-map "\t")
7542                  (lookup-key global-map "\t")
7543                  'indent-relative))))
7544
7545 (eval-and-compile
7546   (condition-case nil
7547       (with-temp-buffer
7548         (let ((standard-output (current-buffer)))
7549           (eval '(display-completion-list nil "")))
7550         (defalias 'message-display-completion-list 'display-completion-list))
7551     (error ;; Don't use `wrong-number-of-arguments' here because of XEmacs.
7552      (defun message-display-completion-list (completions &optional ignore)
7553        "Display the list of completions, COMPLETIONS, using `standard-output'."
7554        (display-completion-list completions)))))
7555
7556 (defun message-expand-group ()
7557   "Expand the group name under point."
7558   (let* ((b (save-excursion
7559               (save-restriction
7560                 (narrow-to-region
7561                  (save-excursion
7562                    (beginning-of-line)
7563                    (skip-chars-forward "^:")
7564                    (1+ (point)))
7565                  (point))
7566                 (skip-chars-backward "^, \t\n") (point))))
7567          (completion-ignore-case t)
7568          (string (buffer-substring b (progn (skip-chars-forward "^,\t\n ")
7569                                             (point))))
7570          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
7571          (completions (all-completions string hashtb))
7572          comp)
7573     (delete-region b (point))
7574     (cond
7575      ((= (length completions) 1)
7576       (if (string= (car completions) string)
7577           (progn
7578             (insert string)
7579             (message "Only matching group"))
7580         (insert (car completions))))
7581      ((and (setq comp (try-completion string hashtb))
7582            (not (string= comp string)))
7583       (insert comp))
7584      (t
7585       (insert string)
7586       (if (not comp)
7587           (message "No matching groups")
7588         (save-selected-window
7589           (pop-to-buffer "*Completions*")
7590           (buffer-disable-undo)
7591           (let ((buffer-read-only nil))
7592             (erase-buffer)
7593             (let ((standard-output (current-buffer)))
7594               (message-display-completion-list (sort completions 'string<)
7595                                                string))
7596             (setq buffer-read-only nil)
7597             (goto-char (point-min))
7598             (delete-region (point) (progn (forward-line 3) (point))))))))))
7599
7600 (defun message-expand-name ()
7601   (cond ((and (memq 'eudc message-expand-name-databases)
7602                     (boundp 'eudc-protocol)
7603                     eudc-protocol)
7604          (eudc-expand-inline))
7605         ((and (memq 'bbdb message-expand-name-databases)
7606               (fboundp 'bbdb-complete-name))
7607          (bbdb-complete-name))
7608         (t
7609          (expand-abbrev))))
7610
7611 ;;; Help stuff.
7612
7613 (defun message-talkative-question (ask question show &rest text)
7614   "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
7615 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
7616 The following arguments may contain lists of values."
7617   (if (and show
7618            (setq text (message-flatten-list text)))
7619       (save-window-excursion
7620         (with-output-to-temp-buffer " *MESSAGE information message*"
7621           (with-current-buffer " *MESSAGE information message*"
7622             (fundamental-mode)          ; for Emacs 20.4+
7623             (mapc 'princ text)
7624             (goto-char (point-min))))
7625         (funcall ask question))
7626     (funcall ask question)))
7627
7628 (defun message-flatten-list (list)
7629   "Return a new, flat list that contains all elements of LIST.
7630
7631 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
7632 => (1 2 3 4 5 6 7)"
7633   (cond ((consp list)
7634          (apply 'append (mapcar 'message-flatten-list list)))
7635         (list
7636          (list list))))
7637
7638 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
7639   "Create and return a buffer with name based on NAME using `generate-new-buffer'.
7640 Then clone the local variables and values from the old buffer to the
7641 new one, cloning only the locals having a substring matching the
7642 regexp VARSTR."
7643   (let ((oldbuf (current-buffer)))
7644     (with-current-buffer (generate-new-buffer name)
7645       (message-clone-locals oldbuf varstr)
7646       (current-buffer))))
7647
7648 (defun message-clone-locals (buffer &optional varstr)
7649   "Clone the local variables from BUFFER to the current buffer."
7650   (let ((locals (with-current-buffer buffer (buffer-local-variables)))
7651         (regexp "^gnus\\|^nn\\|^message\\|^sendmail\\|^smtp\\|^user-mail-address"))
7652     (mapcar
7653      (lambda (local)
7654        (when (and (consp local)
7655                   (car local)
7656                   (string-match regexp (symbol-name (car local)))
7657                   (or (null varstr)
7658                       (string-match varstr (symbol-name (car local)))))
7659          (ignore-errors
7660            (set (make-local-variable (car local))
7661                 (cdr local)))))
7662      locals)))
7663
7664 ;;;
7665 ;;; MIME functions
7666 ;;;
7667
7668 (defvar message-inhibit-body-encoding nil)
7669
7670 (defun message-encode-message-body ()
7671   (unless message-inhibit-body-encoding
7672     (let ((mail-parse-charset (or mail-parse-charset
7673                                   message-default-charset))
7674           (case-fold-search t)
7675           lines content-type-p)
7676       (message-goto-body)
7677       (save-restriction
7678         (narrow-to-region (point) (point-max))
7679         (let ((new (mml-generate-mime)))
7680           (when new
7681             (delete-region (point-min) (point-max))
7682             (insert new)
7683             (goto-char (point-min))
7684             (if (eq (aref new 0) ?\n)
7685                 (delete-char 1)
7686               (search-forward "\n\n")
7687               (setq lines (buffer-substring (point-min) (1- (point))))
7688               (delete-region (point-min) (point))))))
7689       (save-restriction
7690         (message-narrow-to-headers-or-head)
7691         (message-remove-header "Mime-Version")
7692         (goto-char (point-max))
7693         (insert "MIME-Version: 1.0\n")
7694         (when lines
7695           (insert lines))
7696         (setq content-type-p
7697               (or mml-boundary
7698                   (re-search-backward "^Content-Type:" nil t))))
7699       (save-restriction
7700         (message-narrow-to-headers-or-head)
7701         (message-remove-first-header "Content-Type")
7702         (message-remove-first-header "Content-Transfer-Encoding"))
7703       ;; We always make sure that the message has a Content-Type
7704       ;; header.  This is because some broken MTAs and MUAs get
7705       ;; awfully confused when confronted with a message with a
7706       ;; MIME-Version header and without a Content-Type header.  For
7707       ;; instance, Solaris' /usr/bin/mail.
7708       (unless content-type-p
7709         (goto-char (point-min))
7710         ;; For unknown reason, MIME-Version doesn't exist.
7711         (when (re-search-forward "^MIME-Version:" nil t)
7712           (forward-line 1)
7713           (insert "Content-Type: text/plain; charset=us-ascii\n"))))))
7714
7715 (defun message-read-from-minibuffer (prompt &optional initial-contents)
7716   "Read from the minibuffer while providing abbrev expansion."
7717   (if (fboundp 'mail-abbrevs-setup)
7718       (let ((mail-abbrev-mode-regexp "")
7719             (minibuffer-setup-hook 'mail-abbrevs-setup)
7720             (minibuffer-local-map message-minibuffer-local-map))
7721         (read-from-minibuffer prompt initial-contents))
7722     (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)
7723           (minibuffer-local-map message-minibuffer-local-map))
7724       (read-string prompt initial-contents))))
7725
7726 (defun message-use-alternative-email-as-from ()
7727   "Set From field of the outgoing message to the first matching
7728 address in `message-alternative-emails', looking at To, Cc and
7729 From headers in the original article."
7730   (require 'mail-utils)
7731   (let* ((fields '("To" "Cc" "From"))
7732          (emails
7733           (split-string
7734            (mail-strip-quoted-names
7735             (mapconcat 'message-fetch-reply-field fields ","))
7736            "[ \f\t\n\r\v,]+"))
7737          email)
7738     (while emails
7739       (if (string-match message-alternative-emails (car emails))
7740           (setq email (car emails)
7741                 emails nil))
7742       (pop emails))
7743     (unless (or (not email) (equal email user-mail-address))
7744       (message-remove-header "From")
7745       (goto-char (point-max))
7746       (insert "From: " (let ((user-mail-address email)) (message-make-from))
7747               "\n"))))
7748
7749 (defun message-options-get (symbol)
7750   (cdr (assq symbol message-options)))
7751
7752 (defun message-options-set (symbol value)
7753   (let ((the-cons (assq symbol message-options)))
7754     (if the-cons
7755         (if value
7756             (setcdr the-cons value)
7757           (setq message-options (delq the-cons message-options)))
7758       (and value
7759            (push (cons symbol value) message-options))))
7760   value)
7761
7762 (defun message-options-set-recipient ()
7763   (save-restriction
7764     (message-narrow-to-headers-or-head)
7765     (message-options-set 'message-sender
7766                          (mail-strip-quoted-names
7767                           (message-fetch-field "from")))
7768     (message-options-set 'message-recipients
7769                          (mail-strip-quoted-names
7770                           (let ((to (message-fetch-field "to"))
7771                                 (cc (message-fetch-field "cc"))
7772                                 (bcc (message-fetch-field "bcc")))
7773                             (concat
7774                              (or to "")
7775                              (if (and to cc) ", ")
7776                              (or cc "")
7777                              (if (and (or to cc) bcc) ", ")
7778                              (or bcc "")))))))
7779
7780 (defun message-hide-headers ()
7781   "Hide headers based on the `message-hidden-headers' variable."
7782   (let ((regexps (if (stringp message-hidden-headers)
7783                      (list message-hidden-headers)
7784                    message-hidden-headers))
7785         (inhibit-point-motion-hooks t)
7786         (after-change-functions nil)
7787         (end-of-headers (point-min)))
7788     (when regexps
7789       (save-excursion
7790         (save-restriction
7791           (message-narrow-to-headers)
7792           (goto-char (point-min))
7793           (while (not (eobp))
7794             (if (not (message-hide-header-p regexps))
7795                 (message-next-header)
7796               (let ((begin (point))
7797                     header header-len)
7798                 (message-next-header)
7799                 (setq header (buffer-substring begin (point))
7800                       header-len (- (point) begin))
7801                 (delete-region begin (point))
7802                 (goto-char end-of-headers)
7803                 (insert header)
7804                 (setq end-of-headers
7805                       (+ end-of-headers header-len))))))))
7806     (narrow-to-region end-of-headers (point-max))))
7807
7808 (defun message-hide-header-p (regexps)
7809   (let ((result nil)
7810         (reverse nil))
7811     (when (eq (car regexps) 'not)
7812       (setq reverse t)
7813       (pop regexps))
7814     (dolist (regexp regexps)
7815       (setq result (or result (looking-at regexp))))
7816     (if reverse
7817         (not result)
7818       result)))
7819
7820 (defun message-put-addresses-in-ecomplete ()
7821   (dolist (header '("to" "cc" "from" "reply-to"))
7822     (let ((value (message-field-value header)))
7823       (dolist (string (mail-header-parse-addresses value 'raw))
7824         (setq string
7825               (gnus-replace-in-string
7826                (gnus-replace-in-string string "^ +\\| +$" "") "\n" ""))
7827         (ecomplete-add-item 'mail (car (mail-header-parse-address string))
7828                             string))))
7829   (ecomplete-save))
7830
7831 (defun message-display-abbrev (&optional choose)
7832   "Display the next possible abbrev for the text before point."
7833   (interactive (list t))
7834   (when (and (memq (char-after (point-at-bol)) '(?C ?T ?\t ? ))
7835              (message-point-in-header-p)
7836              (save-excursion
7837                (beginning-of-line)
7838                (while (and (memq (char-after) '(?\t ? ))
7839                            (zerop (forward-line -1))))
7840                (looking-at "To:\\|Cc:")))
7841     (let* ((end (point))
7842            (start (save-excursion
7843                     (and (re-search-backward "[\n\t ]" nil t)
7844                          (1+ (point)))))
7845            (word (when start (buffer-substring start end)))
7846            (match (when (and word
7847                              (not (zerop (length word))))
7848                     (ecomplete-display-matches 'mail word choose))))
7849       (when (and choose match)
7850         (delete-region start end)
7851         (insert match)))))
7852
7853 ;; To send pre-formatted letters like the example below, you can use
7854 ;; `message-send-form-letter':
7855 ;; --8<---------------cut here---------------start------------->8---
7856 ;; To: alice@invalid.invalid
7857 ;; Subject: Verification of your contact information
7858 ;; From: Contact verification <admin@foo.invalid>
7859 ;; --text follows this line--
7860 ;; Hi Alice,
7861 ;; please verify that your contact information is still valid:
7862 ;; Alice A, A avenue 11, 1111 A town, Austria
7863 ;; ----------next form letter message follows this line----------
7864 ;; To: bob@invalid.invalid
7865 ;; Subject: Verification of your contact information
7866 ;; From: Contact verification <admin@foo.invalid>
7867 ;; --text follows this line--
7868 ;; Hi Bob,
7869 ;; please verify that your contact information is still valid:
7870 ;; Bob, B street 22, 22222 Be town, Belgium
7871 ;; ----------next form letter message follows this line----------
7872 ;; To: charlie@invalid.invalid
7873 ;; Subject: Verification of your contact information
7874 ;; From: Contact verification <admin@foo.invalid>
7875 ;; --text follows this line--
7876 ;; Hi Charlie,
7877 ;; please verify that your contact information is still valid:
7878 ;; Charlie Chaplin, C plaza 33, 33333 C town, Chile
7879 ;; --8<---------------cut here---------------end--------------->8---
7880
7881 ;; FIXME: What is the most common term (circular letter, form letter, serial
7882 ;; letter, standard letter) for such kind of letter?  See also
7883 ;; <http://en.wikipedia.org/wiki/Form_letter>
7884
7885 ;; FIXME: Maybe extent message-mode's font-lock support to recognize
7886 ;; `message-form-letter-separator', i.e. highlight each message like a single
7887 ;; message.
7888
7889 (defcustom message-form-letter-separator
7890   "\n----------next form letter message follows this line----------\n"
7891   "Separator for `message-send-form-letter'."
7892   ;; :group 'message-form-letter
7893   :group 'message-various
7894   :version "23.1" ;; No Gnus
7895   :type 'string)
7896
7897 (defcustom message-send-form-letter-delay 1
7898   "Delay in seconds when sending a message with `message-send-form-letter'.
7899 Only used when `message-send-form-letter' is called with non-nil
7900 argument `force'."
7901   ;; :group 'message-form-letter
7902   :group 'message-various
7903   :version "23.1" ;; No Gnus
7904   :type 'integer)
7905
7906 (defun message-send-form-letter (&optional force)
7907   "Sent all form letter messages from current buffer.
7908 Unless FORCE, prompt before sending.
7909
7910 The messages are separated by `message-form-letter-separator'.
7911 Header and body are separated by `mail-header-separator'."
7912   (interactive "P")
7913   (let ((sent 0) (skipped 0)
7914         start end text
7915         buff
7916         to done)
7917     (goto-char (point-min))
7918     (while (not done)
7919       (setq start (point)
7920             end (if (search-forward message-form-letter-separator nil t)
7921                     (- (point) (length message-form-letter-separator) -1)
7922                   (setq done t)
7923                   (point-max)))
7924       (setq text
7925             (buffer-substring-no-properties start end))
7926       (setq buff (generate-new-buffer "*mail - form letter*"))
7927       (with-current-buffer buff
7928         (insert text)
7929         (message-mode)
7930         (setq to (message-fetch-field "To"))
7931         (switch-to-buffer buff)
7932         (when force
7933           (sit-for message-send-form-letter-delay))
7934         (if (or force
7935                   (y-or-n-p (format "Send message to `%s'? " to)))
7936             (progn
7937               (setq sent (1+ sent))
7938               (message-send-and-exit))
7939           (message (format "Message to `%s' skipped." to))
7940           (setq skipped (1+ skipped)))
7941         (when (buffer-live-p buff)
7942           (kill-buffer buff))))
7943     (message "%s message(s) sent, %s skipped." sent skipped)))
7944
7945 (defun message-replace-header (header new-value &optional after force)
7946   "Remove HEADER and insert the NEW-VALUE.
7947 If AFTER, insert after this header.  If FORCE, insert new field
7948 even if NEW-VALUE is empty."
7949   ;; Similar to `nnheader-replace-header' but for message buffers.
7950   (save-excursion
7951     (save-restriction
7952       (message-narrow-to-headers)
7953       (message-remove-header header))
7954     (when (or force (> (length new-value) 0))
7955       (if after
7956           (message-position-on-field header after)
7957         (message-position-on-field header))
7958       (insert new-value))))
7959
7960 (defcustom message-recipients-without-full-name
7961   (list "ding@gnus.org"
7962         "bugs@gnus.org"
7963         "emacs-devel@gnu.org"
7964         "emacs-pretest-bug@gnu.org"
7965         "bug-gnu-emacs@gnu.org")
7966   "Mail addresses that have no full name.
7967 Used in `message-simplify-recipients'."
7968   ;; Maybe the addresses could be extracted from
7969   ;; `gnus-parameter-to-list-alist'?
7970   :type '(choice (const :tag "None" nil)
7971                  (repeat string))
7972   :version "23.1" ;; No Gnus
7973   :group 'message-headers)
7974
7975 (defun message-simplify-recipients ()
7976   (interactive)
7977   (dolist (hdr '("Cc" "To"))
7978     (message-replace-header
7979      hdr
7980      (mapconcat
7981       (lambda (addrcomp)
7982         (if (and message-recipients-without-full-name
7983                  (string-match
7984                   (regexp-opt message-recipients-without-full-name)
7985                   (cadr addrcomp)))
7986             (cadr addrcomp)
7987           (if (car addrcomp)
7988               (message-make-from (car addrcomp) (cadr addrcomp))
7989             (cadr addrcomp))))
7990       (when (message-fetch-field hdr)
7991         (mail-extract-address-components
7992          (message-fetch-field hdr) t))
7993       ", "))))
7994
7995 (when (featurep 'xemacs)
7996   (require 'messagexmas)
7997   (message-xmas-redefine))
7998
7999 (provide 'message)
8000
8001 (run-hooks 'message-load-hook)
8002
8003 ;; Local Variables:
8004 ;; coding: iso-8859-1
8005 ;; End:
8006
8007 ;; arch-tag: 94b32cac-4504-4b6c-8181-030ebf380ee0
8008 ;;; message.el ends here