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