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