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