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