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