1 ;;; message.el --- composing mail and news messages
3 ;; Copyright (C) 1996-2012 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/>.
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.
31 ;; For Emacs <22.2 and XEmacs.
33 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
40 ;; Only for the trivial macros mail-header-from, mail-header-date
41 ;; mail-header-references, mail-header-subject, mail-header-id
42 (eval-when-compile (require 'nnheader
))
43 ;; This is apparently necessary even though things are autoloaded.
44 ;; Because we dynamically bind mail-abbrev-mode-regexp, we'd better
45 ;; require mailabbrev here.
46 (if (featurep 'xemacs
)
47 (require 'mail-abbrevs
)
48 (require 'mailabbrev
))
52 (require 'format-spec
)
54 (autoload 'mailclient-send-it
"mailclient") ;; Emacs 22 or contrib/
56 (defvar gnus-message-group-art
)
57 (defvar gnus-list-identifiers
) ; gnus-sum is required where necessary
58 (defvar rmail-enable-mime-composing
)
60 (defgroup message
'((user-mail-address custom-variable
)
61 (user-full-name custom-variable
))
62 "Mail and news message composing."
63 :link
'(custom-manual "(message)Top")
67 (put 'user-mail-address
'custom-type
'string
)
68 (put 'user-full-name
'custom-type
'string
)
70 (defgroup message-various nil
71 "Various Message Variables."
72 :link
'(custom-manual "(message)Various Message Variables")
75 (defgroup message-buffers nil
77 :link
'(custom-manual "(message)Message Buffers")
80 (defgroup message-sending nil
82 :link
'(custom-manual "(message)Sending Variables")
85 (defgroup message-interface nil
87 :link
'(custom-manual "(message)Interface")
90 (defgroup message-forwarding nil
92 :link
'(custom-manual "(message)Forwarding")
93 :group
'message-interface
)
95 (defgroup message-insertion nil
97 :link
'(custom-manual "(message)Insertion")
100 (defgroup message-headers nil
102 :link
'(custom-manual "(message)Message Headers")
105 (defgroup message-news nil
106 "Composing News Messages."
109 (defgroup message-mail nil
110 "Composing Mail Messages."
113 (defgroup message-faces nil
114 "Faces used for message composing."
118 (defcustom message-directory
"~/Mail/"
119 "*Directory from which all other mail file variables are derived."
120 :group
'message-various
123 (defcustom message-max-buffers
10
124 "*How many buffers to keep before starting to kill them off."
125 :group
'message-buffers
128 (defcustom message-send-rename-function nil
129 "Function called to rename the buffer after sending it."
130 :group
'message-buffers
131 :type
'(choice function
(const nil
)))
133 (defcustom message-fcc-handler-function
'message-output
134 "*A function called to save outgoing articles.
135 This function will be called with the name of the file to store the
136 article in. The default function is `message-output' which saves in Unix
138 :type
'(radio (function-item message-output
)
139 (function :tag
"Other"))
140 :group
'message-sending
)
142 (defcustom message-fcc-externalize-attachments nil
143 "If non-nil, attachments are included as external parts in Fcc copies."
146 :group
'message-sending
)
148 (defcustom message-courtesy-message
149 "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
150 "*This is inserted at the start of a mailed copy of a posted message.
151 If the string contains the format spec \"%s\", the Newsgroups
152 the article has been posted to will be inserted there.
153 If this variable is nil, no such courtesy message will be added."
154 :group
'message-sending
155 :type
'(radio string
(const nil
)))
157 (defcustom message-ignored-bounced-headers
158 "^\\(Received\\|Return-Path\\|Delivered-To\\):"
159 "*Regexp that matches headers to be removed in resent bounced mail."
160 :group
'message-interface
163 (defcustom message-from-style mail-from-style
164 "Specifies how \"From\" headers look.
166 If nil, they contain just the return address like:
168 If `parens', they look like:
169 king@grassland.com (Elvis Parsley)
170 If `angles', they look like:
171 Elvis Parsley <king@grassland.com>
173 Otherwise, most addresses look like `angles', but they look like
174 `parens' if `angles' would need quoting and `parens' would not."
176 :type
'(choice (const :tag
"simple" nil
)
180 :group
'message-headers
)
182 (defcustom message-insert-canlock t
183 "Whether to insert a Cancel-Lock header in news postings."
185 :group
'message-headers
188 (defcustom message-syntax-checks
189 (if message-insert-canlock
'((sender . disabled
)) nil
)
190 ;; Guess this one shouldn't be easy to customize...
191 "*Controls what syntax checks should not be performed on outgoing posts.
192 To disable checking of long signatures, for instance, add
193 `(signature . disabled)' to this list.
195 Don't touch this variable unless you really know what you're doing.
197 Checks include `approved', `bogus-recipient', `continuation-headers',
198 `control-chars', `empty', `existing-newsgroups', `from', `illegible-text',
199 `invisible-text', `long-header-lines', `long-lines', `message-id',
200 `multiple-headers', `new-text', `newsgroups', `quoting-style',
201 `repeated-newsgroups', `reply-to', `sender', `sendsys', `shoot',
202 `shorten-followup-to', `signature', `size', `subject', `subject-cmsg'
203 and `valid-newsgroups'."
205 :type
'(repeat sexp
)) ; Fixme: improve this
207 (defcustom message-required-headers
'((optional . References
)
209 "*Headers to be generated or prompted for when sending a message.
210 Also see `message-required-news-headers' and
211 `message-required-mail-headers'."
214 :group
'message-headers
215 :link
'(custom-manual "(message)Message Headers")
216 :type
'(repeat sexp
))
218 (defcustom message-draft-headers
'(References From Date
)
219 "*Headers to be generated when saving a draft message."
222 :group
'message-headers
223 :link
'(custom-manual "(message)Message Headers")
224 :type
'(repeat sexp
))
226 (defcustom message-required-news-headers
227 '(From Newsgroups Subject Date Message-ID
228 (optional . Organization
)
229 (optional . User-Agent
))
230 "*Headers to be generated or prompted for when posting an article.
231 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
232 Message-ID. Organization, Lines, In-Reply-To, Expires, and
233 User-Agent are optional. If you don't want message to insert some
234 header, remove it from this list."
236 :group
'message-headers
237 :link
'(custom-manual "(message)Message Headers")
238 :type
'(repeat sexp
))
240 (defcustom message-required-mail-headers
241 '(From Subject Date
(optional . In-Reply-To
) Message-ID
242 (optional . User-Agent
))
243 "*Headers to be generated or prompted for when mailing a message.
244 It is recommended that From, Date, To, Subject and Message-ID be
245 included. Organization and User-Agent are optional."
247 :group
'message-headers
248 :link
'(custom-manual "(message)Message Headers")
249 :type
'(repeat sexp
))
251 (defcustom message-prune-recipient-rules nil
252 "Rules for how to prune the list of recipients when doing wide replies.
253 This is a list of regexps and regexp matches."
256 :group
'message-headers
257 :link
'(custom-manual "(message)Wide Reply")
258 :type
'(repeat regexp
))
260 (defcustom message-deletable-headers
'(Message-ID Date Lines
)
261 "Headers to be deleted if they already exist and were generated by message previously."
262 :group
'message-headers
263 :link
'(custom-manual "(message)Message Headers")
266 (defcustom message-ignored-news-headers
267 "^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
268 "*Regexp of headers to be removed unconditionally before posting."
270 :group
'message-headers
271 :link
'(custom-manual "(message)Message Headers")
272 :type
'(repeat :value-to-internal
(lambda (widget value
)
273 (custom-split-regexp-maybe value
))
274 :match
(lambda (widget value
)
276 (widget-editable-list-match widget value
)))
279 (defcustom message-ignored-mail-headers
280 "^\\([GF]cc\\|Resent-Fcc\\|Xref\\|X-Draft-From\\|X-Gnus-Agent-Meta-Information\\):"
281 "*Regexp of headers to be removed unconditionally before mailing."
283 :group
'message-headers
284 :link
'(custom-manual "(message)Mail Headers")
287 (defcustom message-ignored-supersedes-headers
"^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|^X-Trace:\\|^X-ID:\\|^X-Complaints-To:\\|Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|^X-Complaints-To:\\|^Cancel-Lock:\\|^Cancel-Key:\\|^X-Hashcash:\\|^X-Payment:\\|^Approved:\\|^Injection-Date:\\|^Injection-Info:"
288 "*Header lines matching this regexp will be deleted before posting.
289 It's best to delete old Path and Date headers before posting to avoid
291 :group
'message-interface
292 :link
'(custom-manual "(message)Superseding")
293 :type
'(repeat :value-to-internal
(lambda (widget value
)
294 (custom-split-regexp-maybe value
))
295 :match
(lambda (widget value
)
297 (widget-editable-list-match widget value
)))
300 (defcustom message-subject-re-regexp
301 "^[ \t]*\\([Rr][Ee]\\(\\[[0-9]*\\]\\)*:[ \t]*\\)*[ \t]*"
302 "*Regexp matching \"Re: \" in the subject line."
303 :group
'message-various
304 :link
'(custom-manual "(message)Message Headers")
307 ;;; Start of variables adopted from `message-utils.el'.
309 (defcustom message-subject-trailing-was-query t
310 "*What to do with trailing \"(was: <old subject>)\" in subject lines.
311 If nil, leave the subject unchanged. If it is the symbol `ask', query
312 the user what do do. In this case, the subject is matched against
313 `message-subject-trailing-was-ask-regexp'. If
314 `message-subject-trailing-was-query' is t, always strip the trailing
315 old subject. In this case, `message-subject-trailing-was-regexp' is
318 :type
'(choice (const :tag
"never" nil
)
319 (const :tag
"always strip" t
)
321 :link
'(custom-manual "(message)Message Headers")
322 :group
'message-various
)
324 (defcustom message-subject-trailing-was-ask-regexp
325 "[ \t]*\\([[(]+[Ww][Aa][Ss]:?[ \t]*.*[])]+\\)"
326 "*Regexp matching \"(was: <old subject>)\" in the subject line.
328 The function `message-strip-subject-trailing-was' uses this regexp if
329 `message-subject-trailing-was-query' is set to the symbol `ask'. If
330 the variable is t instead of `ask', use
331 `message-subject-trailing-was-regexp' instead.
333 It is okay to create some false positives here, as the user is asked."
335 :group
'message-various
336 :link
'(custom-manual "(message)Message Headers")
339 (defcustom message-subject-trailing-was-regexp
340 "[ \t]*\\((*[Ww][Aa][Ss]:[ \t]*.*)\\)"
341 "*Regexp matching \"(was: <old subject>)\" in the subject line.
343 If `message-subject-trailing-was-query' is set to t, the subject is
344 matched against `message-subject-trailing-was-regexp' in
345 `message-strip-subject-trailing-was'. You should use a regexp creating very
346 few false positives here."
348 :group
'message-various
349 :link
'(custom-manual "(message)Message Headers")
352 ;;; marking inserted text
354 (defcustom message-mark-insert-begin
355 "--8<---------------cut here---------------start------------->8---\n"
356 "How to mark the beginning of some inserted text."
359 :link
'(custom-manual "(message)Insertion Variables")
360 :group
'message-various
)
362 (defcustom message-mark-insert-end
363 "--8<---------------cut here---------------end--------------->8---\n"
364 "How to mark the end of some inserted text."
367 :link
'(custom-manual "(message)Insertion Variables")
368 :group
'message-various
)
370 (defcustom message-archive-header
"X-No-Archive: Yes\n"
371 "Header to insert when you don't want your article to be archived.
372 Archives \(such as groups.google.com\) respect this header."
375 :link
'(custom-manual "(message)Header Commands")
376 :group
'message-various
)
378 (defcustom message-archive-note
379 "X-No-Archive: Yes - save http://groups.google.com/"
380 "Note to insert why you wouldn't want this posting archived.
381 If nil, don't insert any text in the body."
383 :type
'(radio string
(const nil
))
384 :link
'(custom-manual "(message)Header Commands")
385 :group
'message-various
)
387 ;;; Crossposts and Followups
388 ;; inspired by JoH-followup-to by Jochem Huhman <joh at gmx.de>
389 ;; new suggestions by R. Weikusat <rw at another.de>
391 (defvar message-cross-post-old-target nil
392 "Old target for cross-posts or follow-ups.")
393 (make-variable-buffer-local 'message-cross-post-old-target
)
395 (defcustom message-cross-post-default t
396 "When non-nil `message-cross-post-followup-to' will perform a crosspost.
397 If nil, `message-cross-post-followup-to' will only do a followup. Note that
398 you can explicitly override this setting by calling
399 `message-cross-post-followup-to' with a prefix."
402 :group
'message-various
)
404 (defcustom message-cross-post-note
"Crosspost & Followup-To: "
405 "Note to insert before signature to notify of cross-post and follow-up."
408 :group
'message-various
)
410 (defcustom message-followup-to-note
"Followup-To: "
411 "Note to insert before signature to notify of follow-up only."
414 :group
'message-various
)
416 (defcustom message-cross-post-note-function
'message-cross-post-insert-note
417 "Function to use to insert note about Crosspost or Followup-To.
418 The function will be called with four arguments. The function should not only
419 insert a note, but also ensure old notes are deleted. See the documentation
420 for `message-cross-post-insert-note'."
423 :group
'message-various
)
425 ;;; End of variables adopted from `message-utils.el'.
427 (defcustom message-signature-separator
"^-- $"
428 "Regexp matching the signature separator.
429 This variable is used to strip off the signature from quoted text
430 when `message-cite-function' is
431 `message-cite-original-without-signature'. Most useful values
432 are \"^-- $\" (strict) and \"^-- *$\" (loose; allow missing
434 :type
'(choice (const :tag
"strict" "^-- $")
435 (const :tag
"loose" "^-- *$")
437 :version
"22.3" ;; Gnus 5.10.12 (changed default)
438 :link
'(custom-manual "(message)Various Message Variables")
439 :group
'message-various
)
441 (defcustom message-elide-ellipsis
"\n[...]\n\n"
442 "*The string which is inserted for elided text.
443 This is a format-spec string, and you can use %l to say how many
444 lines were removed, and %c to say how many characters were
447 :link
'(custom-manual "(message)Various Commands")
448 :group
'message-various
)
450 (defcustom message-interactive mail-interactive
451 "Non-nil means when sending a message wait for and display errors.
452 A value of nil means let mailer mail back a message to report errors."
454 :group
'message-sending
456 :link
'(custom-manual "(message)Sending Variables")
459 (defcustom message-confirm-send nil
460 "When non-nil, ask for confirmation when sending a message."
461 :group
'message-sending
463 :version
"23.1" ;; No Gnus
464 :link
'(custom-manual "(message)Sending Variables")
467 (defcustom message-generate-new-buffers
'unsent
468 "*Say whether to create a new message buffer to compose a message.
469 Valid values include:
472 Generate the buffer name in the Message way (e.g., *mail*, *news*,
473 *mail to whom*, *news on group*, etc.) and continue editing in the
474 existing buffer of that name. If there is no such buffer, it will
478 Create the new buffer with the name generated in the Message way.
481 Similar to `unique' but the buffer name begins with \"*unsent \".
484 Similar to nil but the buffer name is simpler like *mail message*.
487 If this is a function, call that function with three parameters:
488 The type, the To address and the group name (any of these may be nil).
489 The function should return the new buffer name."
491 :group
'message-buffers
492 :link
'(custom-manual "(message)Message Buffers")
493 :type
'(choice (const nil
)
494 (sexp :tag
"unique" :format
"unique\n" :value unique
495 :match
(lambda (widget value
) (memq value
'(unique t
))))
498 (function :format
"\n %{%t%}: %v")))
500 (defcustom message-kill-buffer-on-exit nil
501 "*Non-nil means that the message buffer will be killed after sending a message."
502 :group
'message-buffers
503 :link
'(custom-manual "(message)Message Buffers")
506 (defcustom message-kill-buffer-query t
507 "*Non-nil means that killing a modified message buffer has to be confirmed.
508 This is used by `message-kill-buffer'."
509 :version
"23.1" ;; No Gnus
510 :group
'message-buffers
513 (defcustom message-user-organization
514 (or (getenv "ORGANIZATION") t
)
515 "String to be used as an Organization header.
516 If t, use `message-user-organization-file'."
517 :group
'message-headers
518 :type
'(choice string
519 (const :tag
"consult file" t
)))
521 (defcustom message-user-organization-file
523 (dolist (f (list "/etc/organization"
524 "/etc/news/organization"
525 "/usr/lib/news/organization"))
526 (when (file-readable-p f
)
529 "*Local news organization file."
531 :link
'(custom-manual "(message)News Headers")
532 :group
'message-headers
)
534 (defcustom message-make-forward-subject-function
535 #'message-forward-subject-name-subject
536 "*List of functions called to generate subject headers for forwarded messages.
537 The subject generated by the previous function is passed into each
540 The provided functions are:
542 * `message-forward-subject-author-subject' Source of article (author or
543 newsgroup), in brackets followed by the subject
544 * `message-forward-subject-name-subject' Source of article (name of author
545 or newsgroup), in brackets followed by the subject
546 * `message-forward-subject-fwd' Subject of article with 'Fwd:' prepended
548 :group
'message-forwarding
549 :link
'(custom-manual "(message)Forwarding")
550 :type
'(radio (function-item message-forward-subject-author-subject
)
551 (function-item message-forward-subject-fwd
)
552 (function-item message-forward-subject-name-subject
)
553 (repeat :tag
"List of functions" function
)))
555 (defcustom message-forward-as-mime t
556 "*Non-nil means forward messages as an inline/rfc822 MIME section.
557 Otherwise, directly inline the old message in the forwarded message."
559 :group
'message-forwarding
560 :link
'(custom-manual "(message)Forwarding")
563 (defcustom message-forward-show-mml
'best
564 "*Non-nil means show forwarded messages as MML (decoded from MIME).
565 Otherwise, forwarded messages are unchanged.
566 Can also be the symbol `best' to indicate that MML should be
567 used, except when it is a bad idea to use MML. One example where
568 it is a bad idea is when forwarding a signed or encrypted
569 message, because converting MIME to MML would invalidate the
572 :group
'message-forwarding
573 :type
'(choice (const :tag
"use MML" t
)
574 (const :tag
"don't use MML " nil
)
575 (const :tag
"use MML when appropriate" best
)))
577 (defcustom message-forward-before-signature t
578 "*Non-nil means put forwarded message before signature, else after."
579 :group
'message-forwarding
582 (defcustom message-wash-forwarded-subjects nil
583 "*Non-nil means try to remove as much cruft as possible from the subject.
584 Done before generating the new subject of a forward."
585 :group
'message-forwarding
586 :link
'(custom-manual "(message)Forwarding")
589 (defcustom message-ignored-resent-headers
590 ;; `Delivered-To' needs to be removed because some mailers use it to
591 ;; detect loops, so if you resend a message to an address that ultimately
592 ;; comes back to you (e.g. a mailing-list to which you subscribe, in which
593 ;; case you may be removed from the list on the grounds that mail to you
594 ;; bounced with a "mailing loop" error).
595 "^Return-receipt\\|^X-Gnus\\|^Gnus-Warning:\\|^>?From \\|^Delivered-To:"
596 "*All headers that match this regexp will be deleted when resending a message."
597 :group
'message-interface
598 :link
'(custom-manual "(message)Resending")
599 :type
'(repeat :value-to-internal
(lambda (widget value
)
600 (custom-split-regexp-maybe value
))
601 :match
(lambda (widget value
)
603 (widget-editable-list-match widget value
)))
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."
609 :group
'message-forwarding
610 :type
'(repeat :value-to-internal
(lambda (widget value
)
611 (custom-split-regexp-maybe value
))
612 :match
(lambda (widget value
)
614 (widget-editable-list-match widget value
)))
617 (defcustom message-ignored-cited-headers
"."
618 "*Delete these headers from the messages you yank."
619 :group
'message-insertion
620 :link
'(custom-manual "(message)Insertion Variables")
623 (defcustom message-cite-prefix-regexp mail-citation-prefix-regexp
624 "*Regexp matching the longest possible citation prefix on a line."
626 :group
'message-insertion
627 :link
'(custom-manual "(message)Insertion Variables")
629 :set
(lambda (symbol value
)
631 (custom-set-default symbol value
)
632 (if (boundp 'gnus-message-cite-prefix-regexp
)
633 (setq gnus-message-cite-prefix-regexp
634 (concat "^\\(?:" value
"\\)"))))))
636 (defcustom message-cancel-message
"I am canceling my own article.\n"
637 "Message to be inserted in the cancel message."
638 :group
'message-interface
639 :link
'(custom-manual "(message)Canceling News")
642 (defun message-send-mail-function ()
643 "Return suitable value for the variable `message-send-mail-function'."
644 (cond ((and (require 'sendmail
)
645 (boundp 'sendmail-program
)
647 (executable-find sendmail-program
))
648 'message-send-mail-with-sendmail
)
649 ((and (locate-library "smtpmail")
650 (boundp 'smtpmail-default-smtp-server
)
651 smtpmail-default-smtp-server
)
652 'message-smtpmail-send-it
)
653 ((locate-library "mailclient")
654 'message-send-mail-with-mailclient
)
656 (error "Don't know how to send mail. Please customize `message-send-mail-function'"))))
658 (defun message-default-send-mail-function ()
659 (cond ((eq send-mail-function
'smtpmail-send-it
) 'message-smtpmail-send-it
)
660 ((eq send-mail-function
'feedmail-send-it
) 'feedmail-send-it
)
661 ((eq send-mail-function
'sendmail-query-once
) 'sendmail-query-once
)
662 ((eq send-mail-function
'mailclient-send-it
)
663 'message-send-mail-with-mailclient
)
664 (t (message-send-mail-function))))
666 ;; Useful to set in site-init.el
667 (defcustom message-send-mail-function
(message-default-send-mail-function)
668 "Function to call to send the current buffer as mail.
669 The headers should be delimited by a line whose contents match the
670 variable `mail-header-separator'.
672 Valid values include `message-send-mail-with-sendmail'
673 `message-send-mail-with-mh', `message-send-mail-with-qmail',
674 `message-smtpmail-send-it', `smtpmail-send-it',
675 `feedmail-send-it' and `message-send-mail-with-mailclient'. The
676 default is system dependent and determined by the function
677 `message-send-mail-function'.
679 See also `send-mail-function'."
680 :type
'(radio (function-item message-send-mail-with-sendmail
)
681 (function-item message-send-mail-with-mh
)
682 (function-item message-send-mail-with-qmail
)
683 (function-item message-smtpmail-send-it
)
684 (function-item smtpmail-send-it
)
685 (function-item feedmail-send-it
)
686 (function-item message-send-mail-with-mailclient
687 :tag
"Use Mailclient package")
688 (function :tag
"Other"))
689 :group
'message-sending
691 :initialize
'custom-initialize-default
692 :link
'(custom-manual "(message)Mail Variables")
693 :group
'message-mail
)
695 (defcustom message-send-news-function
'message-send-news
696 "Function to call to send the current buffer as news.
697 The headers should be delimited by a line whose contents match the
698 variable `mail-header-separator'."
699 :group
'message-sending
701 :link
'(custom-manual "(message)News Variables")
704 (defcustom message-reply-to-function nil
705 "If non-nil, function that should return a list of headers.
706 This function should pick out addresses from the To, Cc, and From headers
707 and respond with new To and Cc headers."
708 :group
'message-interface
709 :link
'(custom-manual "(message)Reply")
710 :type
'(choice function
(const nil
)))
712 (defcustom message-wide-reply-to-function nil
713 "If non-nil, function that should return a list of headers.
714 This function should pick out addresses from the To, Cc, and From headers
715 and respond with new To and Cc headers."
716 :group
'message-interface
717 :link
'(custom-manual "(message)Wide Reply")
718 :type
'(choice function
(const nil
)))
720 (defcustom message-followup-to-function nil
721 "If non-nil, function that should return a list of headers.
722 This function should pick out addresses from the To, Cc, and From headers
723 and respond with new To and Cc headers."
724 :group
'message-interface
725 :link
'(custom-manual "(message)Followup")
726 :type
'(choice function
(const nil
)))
728 (defcustom message-extra-wide-headers nil
729 "If non-nil, a list of additional address headers.
730 These are used when composing a wide reply."
731 :group
'message-sending
732 :type
'(repeat string
))
734 (defcustom message-use-followup-to
'ask
735 "*Specifies what to do with Followup-To header.
736 If nil, always ignore the header. If it is t, use its value, but
737 query before using the \"poster\" value. If it is the symbol `ask',
738 always query the user whether to use the value. If it is the symbol
739 `use', always use the value."
740 :group
'message-interface
741 :link
'(custom-manual "(message)Followup")
742 :type
'(choice (const :tag
"ignore" nil
)
743 (const :tag
"use & query" t
)
747 (defcustom message-use-mail-followup-to
'use
748 "*Specifies what to do with Mail-Followup-To header.
749 If nil, always ignore the header. If it is the symbol `ask', always
750 query the user whether to use the value. If it is the symbol `use',
751 always use the value."
753 :group
'message-interface
754 :link
'(custom-manual "(message)Mailing Lists")
755 :type
'(choice (const :tag
"ignore" nil
)
759 (defcustom message-subscribed-address-functions nil
760 "*Specifies functions for determining list subscription.
761 If nil, do not attempt to determine list subscription with functions.
762 If non-nil, this variable contains a list of functions which return
763 regular expressions to match lists. These functions can be used in
764 conjunction with `message-subscribed-regexps' and
765 `message-subscribed-addresses'."
767 :group
'message-interface
768 :link
'(custom-manual "(message)Mailing Lists")
769 :type
'(repeat sexp
))
771 (defcustom message-subscribed-address-file nil
772 "*A file containing addresses the user is subscribed to.
773 If nil, do not look at any files to determine list subscriptions. If
774 non-nil, each line of this file should be a mailing list address."
776 :group
'message-interface
777 :link
'(custom-manual "(message)Mailing Lists")
778 :type
'(radio file
(const nil
)))
780 (defcustom message-subscribed-addresses nil
781 "*Specifies a list of addresses the user is subscribed to.
782 If nil, do not use any predefined list subscriptions. This list of
783 addresses can be used in conjunction with
784 `message-subscribed-address-functions' and `message-subscribed-regexps'."
786 :group
'message-interface
787 :link
'(custom-manual "(message)Mailing Lists")
788 :type
'(repeat string
))
790 (defcustom message-subscribed-regexps nil
791 "*Specifies a list of addresses the user is subscribed to.
792 If nil, do not use any predefined list subscriptions. This list of
793 regular expressions can be used in conjunction with
794 `message-subscribed-address-functions' and `message-subscribed-addresses'."
796 :group
'message-interface
797 :link
'(custom-manual "(message)Mailing Lists")
798 :type
'(repeat regexp
))
800 (defcustom message-allow-no-recipients
'ask
801 "Specifies what to do when there are no recipients other than Gcc/Fcc.
802 If it is the symbol `always', the posting is allowed. If it is the
803 symbol `never', the posting is not allowed. If it is the symbol
804 `ask', you are prompted."
806 :group
'message-interface
807 :link
'(custom-manual "(message)Message Headers")
808 :type
'(choice (const always
)
812 (defcustom message-sendmail-f-is-evil nil
813 "*Non-nil means don't add \"-f username\" to the sendmail command line.
814 Doing so would be even more evil than leaving it out."
815 :group
'message-sending
816 :link
'(custom-manual "(message)Mail Variables")
819 (defcustom message-sendmail-envelope-from
820 ;; `mail-envelope-from' is unavailable unless sendmail.el is loaded.
821 (if (boundp 'mail-envelope-from
) mail-envelope-from
)
822 "*Envelope-from when sending mail with sendmail.
823 If this is nil, use `user-mail-address'. If it is the symbol
824 `header', use the From: header of the message."
826 :type
'(choice (string :tag
"From name")
827 (const :tag
"Use From: header from message" header
)
828 (const :tag
"Use `user-mail-address'" nil
))
829 :link
'(custom-manual "(message)Mail Variables")
830 :group
'message-sending
)
832 (defcustom message-sendmail-extra-arguments nil
833 "Additional arguments to `sendmail-program'."
834 ;; E.g. '("-a" "account") for msmtp
835 :version
"23.1" ;; No Gnus
836 :type
'(repeat string
)
837 ;; :link '(custom-manual "(message)Mail Variables")
838 :group
'message-sending
)
840 ;; qmail-related stuff
841 (defcustom message-qmail-inject-program
"/var/qmail/bin/qmail-inject"
842 "Location of the qmail-inject program."
843 :group
'message-sending
844 :link
'(custom-manual "(message)Mail Variables")
847 (defcustom message-qmail-inject-args nil
848 "Arguments passed to qmail-inject programs.
849 This should be a list of strings, one string for each argument.
850 It may also be a function.
852 For e.g., if you wish to set the envelope sender address so that bounces
853 go to the right place or to deal with listserv's usage of that address, you
854 might set this variable to '(\"-f\" \"you@some.where\")."
855 :group
'message-sending
856 :link
'(custom-manual "(message)Mail Variables")
857 :type
'(choice (function)
860 (defvar gnus-post-method
)
861 (defvar gnus-select-method
)
862 (defcustom message-post-method
863 (cond ((and (boundp 'gnus-post-method
)
864 (listp gnus-post-method
)
867 ((boundp 'gnus-select-method
)
870 "*Method used to post news.
871 Note that when posting from inside Gnus, for instance, this
872 variable isn't used."
874 :group
'message-sending
875 ;; This should be the `gnus-select-method' widget, but that might
876 ;; create a dependence to `gnus.el'.
879 (defcustom message-generate-headers-first nil
880 "Which headers should be generated before starting to compose a message.
881 If t, generate all required headers. This can also be a list of headers to
882 generate. The variables `message-required-news-headers' and
883 `message-required-mail-headers' specify which headers to generate.
885 Note that the variable `message-deletable-headers' specifies headers which
886 are to be deleted and then re-generated before sending, so this variable
887 will not have a visible effect for those headers."
888 :group
'message-headers
889 :link
'(custom-manual "(message)Message Headers")
890 :type
'(choice (const :tag
"None" nil
)
892 (repeat (sexp :tag
"Header"))))
894 (defcustom message-fill-column
72
895 "Column beyond which automatic line-wrapping should happen.
896 Local value for message buffers. If non-nil, also turn on
897 auto-fill in message buffers."
898 :group
'message-various
899 ;; :link '(custom-manual "(message)Message Headers")
900 :type
'(choice (const :tag
"Don't turn on auto fill" nil
)
903 (defcustom message-setup-hook nil
904 "Normal hook, run each time a new outgoing message is initialized.
905 The function `message-setup' runs this hook."
906 :group
'message-various
907 :link
'(custom-manual "(message)Various Message Variables")
910 (defcustom message-cancel-hook nil
911 "Hook run when canceling articles."
912 :group
'message-various
913 :link
'(custom-manual "(message)Various Message Variables")
916 (defcustom message-signature-setup-hook nil
917 "Normal hook, run each time a new outgoing message is initialized.
918 It is run after the headers have been inserted and before
919 the signature is inserted."
920 :group
'message-various
921 :link
'(custom-manual "(message)Various Message Variables")
924 (defcustom message-mode-hook nil
925 "Hook run in message mode buffers."
926 :group
'message-various
929 (defcustom message-header-hook nil
930 "Hook run in a message mode buffer narrowed to the headers."
931 :group
'message-various
934 (defcustom message-header-setup-hook nil
935 "Hook called narrowed to the headers when setting up a message buffer."
936 :group
'message-various
937 :link
'(custom-manual "(message)Various Message Variables")
940 (defcustom message-minibuffer-local-map
941 (let ((map (make-sparse-keymap 'message-minibuffer-local-map
)))
942 (set-keymap-parent map minibuffer-local-map
)
944 "Keymap for `message-read-from-minibuffer'."
946 :group
'message-various
)
948 (defcustom message-citation-line-function
'message-insert-citation-line
949 "*Function called to insert the \"Whomever writes:\" line.
951 Predefined functions include `message-insert-citation-line' and
952 `message-insert-formatted-citation-line' (see the variable
953 `message-citation-line-format').
955 Note that Gnus provides a feature where the reader can click on
956 `writes:' to hide the cited text. If you change this line too much,
957 people who read your message will have to change their Gnus
958 configuration. See the variable `gnus-cite-attribution-suffix'."
960 (function-item :tag
"plain" message-insert-citation-line
)
961 (function-item :tag
"formatted" message-insert-formatted-citation-line
)
962 (function :tag
"Other"))
963 :link
'(custom-manual "(message)Insertion Variables")
964 :group
'message-insertion
)
966 (defcustom message-citation-line-format
"On %a, %b %d %Y, %N wrote:\n"
967 "Format of the \"Whomever writes:\" line.
969 The string is formatted using `format-spec'. The following
970 constructs are replaced:
972 %f The full From, e.g. \"John Doe <john.doe@example.invalid>\".
973 %n The mail address, e.g. \"john.doe@example.invalid\".
974 %N The real name if present, e.g.: \"John Doe\", else fall
975 back to the mail address.
976 %F The first name if present, e.g.: \"John\".
977 %L The last name if present, e.g.: \"Doe\".
979 All other format specifiers are passed to `format-time-string'
980 which is called using the date from the article your replying to.
981 Extracting the first (%F) and last name (%L) is done
982 heuristically, so you should always check it yourself.
984 Please also read the note in the documentation of
985 `message-citation-line-function'."
986 :type
'(choice (const :tag
"Plain" "%f writes:")
987 (const :tag
"Include date" "On %a, %b %d %Y, %n wrote:")
989 :link
'(custom-manual "(message)Insertion Variables")
990 :version
"23.1" ;; No Gnus
991 :group
'message-insertion
)
993 (defcustom message-yank-prefix mail-yank-prefix
994 "*Prefix inserted on the lines of yanked messages.
995 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
996 See also `message-yank-cited-prefix' and `message-yank-empty-prefix'."
999 :link
'(custom-manual "(message)Insertion Variables")
1000 :group
'message-insertion
)
1002 (defcustom message-yank-cited-prefix
">"
1003 "*Prefix inserted on cited lines of yanked messages.
1004 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
1005 See also `message-yank-prefix' and `message-yank-empty-prefix'."
1008 :link
'(custom-manual "(message)Insertion Variables")
1009 :group
'message-insertion
)
1011 (defcustom message-yank-empty-prefix
">"
1012 "*Prefix inserted on empty lines of yanked messages.
1013 See also `message-yank-prefix' and `message-yank-cited-prefix'."
1016 :link
'(custom-manual "(message)Insertion Variables")
1017 :group
'message-insertion
)
1019 (defcustom message-indentation-spaces mail-indentation-spaces
1020 "*Number of spaces to insert at the beginning of each cited line.
1021 Used by `message-yank-original' via `message-yank-cite'."
1023 :group
'message-insertion
1024 :link
'(custom-manual "(message)Insertion Variables")
1027 (defcustom message-cite-function
'message-cite-original-without-signature
1028 "*Function for citing an original message.
1029 Predefined functions include `message-cite-original' and
1030 `message-cite-original-without-signature'.
1031 Note that these functions use `mail-citation-hook' if that is non-nil."
1032 :type
'(radio (function-item message-cite-original
)
1033 (function-item message-cite-original-without-signature
)
1034 (function-item sc-cite-original
)
1035 (function :tag
"Other"))
1036 :link
'(custom-manual "(message)Insertion Variables")
1037 :version
"22.3" ;; Gnus 5.10.12 (changed default)
1038 :group
'message-insertion
)
1040 (defcustom message-indent-citation-function
'message-indent-citation
1041 "*Function for modifying a citation just inserted in the mail buffer.
1042 This can also be a list of functions. Each function can find the
1043 citation between (point) and (mark t). And each function should leave
1044 point and mark around the citation text as modified."
1046 :link
'(custom-manual "(message)Insertion Variables")
1047 :group
'message-insertion
)
1049 (defcustom message-signature mail-signature
1050 "*String to be inserted at the end of the message buffer.
1051 If t, the `message-signature-file' file will be inserted instead.
1052 If a function, the result from the function will be used instead.
1053 If a form, the result from the form will be used instead."
1056 :link
'(custom-manual "(message)Insertion Variables")
1057 :group
'message-insertion
)
1059 (defcustom message-signature-file mail-signature-file
1060 "*Name of file containing the text inserted at end of message buffer.
1061 Ignored if the named file doesn't exist.
1062 If nil, don't insert a signature.
1063 If a path is specified, the value of `message-signature-directory' is ignored,
1066 :type
'(choice file
(const :tags
"None" nil
))
1067 :link
'(custom-manual "(message)Insertion Variables")
1068 :group
'message-insertion
)
1070 (defcustom message-signature-directory nil
1071 "*Name of directory containing signature files.
1072 Comes in handy if you have many such files, handled via posting styles for
1074 If nil, `message-signature-file' is expected to specify the directory if
1076 :type
'(choice string
(const :tags
"None" nil
))
1077 :link
'(custom-manual "(message)Insertion Variables")
1078 :group
'message-insertion
)
1080 (defcustom message-signature-insert-empty-line t
1081 "*If non-nil, insert an empty line before the signature separator."
1084 :link
'(custom-manual "(message)Insertion Variables")
1085 :group
'message-insertion
)
1087 (defcustom message-cite-reply-position
'traditional
1088 "*Where the reply should be positioned.
1089 If `traditional', reply inline.
1090 If `above', reply above quoted text.
1091 If `below', reply below quoted text.
1093 Note: Many newsgroups frown upon nontraditional reply styles. You
1094 probably want to set this variable only for specific groups,
1095 e.g. using `gnus-posting-styles':
1097 (eval (set (make-local-variable 'message-cite-reply-position) 'above))"
1099 :type
'(choice (const :tag
"Reply inline" 'traditional
)
1100 (const :tag
"Reply above" 'above
)
1101 (const :tag
"Reply below" 'below
))
1102 :group
'message-insertion
)
1104 (defcustom message-cite-style nil
1105 "*The overall style to be used when yanking cited text.
1106 Value is either `nil' (no variable overrides) or a let-style list
1107 of pairs (VARIABLE VALUE) that will be bound in
1108 `message-yank-original' to do the quoting.
1110 Presets to impersonate popular mail agents are found in the
1111 message-cite-style-* variables. This variable is intended for
1112 use in `gnus-posting-styles', such as:
1114 ((posting-from-work-p) (eval (set (make-local-variable 'message-cite-style) message-cite-style-outlook)))"
1116 :group
'message-insertion
1117 :type
'(choice (const :tag
"Do not override variables" :value nil
)
1118 (const :tag
"MS Outlook" :value message-cite-style-outlook
)
1119 (const :tag
"Mozilla Thunderbird" :value message-cite-style-thunderbird
)
1120 (const :tag
"Gmail" :value message-cite-style-gmail
)
1121 (variable :tag
"User-specified")))
1123 (defconst message-cite-style-outlook
1124 '((message-cite-function 'message-cite-original
)
1125 (message-citation-line-function 'message-insert-formatted-citation-line
)
1126 (message-cite-reply-position 'above
)
1127 (message-yank-prefix "")
1128 (message-yank-cited-prefix "")
1129 (message-yank-empty-prefix "")
1130 (message-citation-line-format "\n\n-----------------------\nOn %a, %b %d %Y, %N wrote:\n"))
1131 "Message citation style used by MS Outlook. Use with message-cite-style.")
1133 (defconst message-cite-style-thunderbird
1134 '((message-cite-function 'message-cite-original
)
1135 (message-citation-line-function 'message-insert-formatted-citation-line
)
1136 (message-cite-reply-position 'above
)
1137 (message-yank-prefix "> ")
1138 (message-yank-cited-prefix ">")
1139 (message-yank-empty-prefix ">")
1140 (message-citation-line-format "On %D %R %p, %N wrote:"))
1141 "Message citation style used by Mozilla Thunderbird. Use with message-cite-style.")
1143 (defconst message-cite-style-gmail
1144 '((message-cite-function 'message-cite-original
)
1145 (message-citation-line-function 'message-insert-formatted-citation-line
)
1146 (message-cite-reply-position 'above
)
1147 (message-yank-prefix " ")
1148 (message-yank-cited-prefix " ")
1149 (message-yank-empty-prefix " ")
1150 (message-citation-line-format "On %e %B %Y %R, %f wrote:\n"))
1151 "Message citation style used by Gmail. Use with message-cite-style.")
1153 (defcustom message-distribution-function nil
1154 "*Function called to return a Distribution header."
1155 :group
'message-news
1156 :group
'message-headers
1157 :link
'(custom-manual "(message)News Headers")
1158 :type
'(choice function
(const nil
)))
1160 (defcustom message-expires
14
1161 "Number of days before your article expires."
1162 :group
'message-news
1163 :group
'message-headers
1164 :link
'(custom-manual "(message)News Headers")
1167 (defcustom message-user-path nil
1168 "If nil, use the NNTP server name in the Path header.
1169 If stringp, use this; if non-nil, use no host name (user name only)."
1170 :group
'message-news
1171 :group
'message-headers
1172 :link
'(custom-manual "(message)News Headers")
1173 :type
'(choice (const :tag
"nntp" nil
)
1174 (string :tag
"name")
1175 (sexp :tag
"none" :format
"%t" t
)))
1177 ;; This can be the name of a buffer, or a cons cell (FUNCTION . ARGS)
1178 ;; for yanking the original buffer.
1179 (defvar message-reply-buffer nil
)
1180 (defvar message-reply-headers nil
1181 "The headers of the current replied article.
1182 It is a vector of the following headers:
1183 \[number subject from date id references chars lines xref extra].")
1184 (defvar message-newsreader nil
)
1185 (defvar message-mailer nil
)
1186 (defvar message-sent-message-via nil
)
1187 (defvar message-checksum nil
)
1188 (defvar message-send-actions nil
1189 "A list of actions to be performed upon successful sending of a message.")
1190 (defvar message-return-action nil
1191 "Action to return to the caller after sending or postponing a message.")
1192 (defvar message-exit-actions nil
1193 "A list of actions to be performed upon exiting after sending a message.")
1194 (defvar message-kill-actions nil
1195 "A list of actions to be performed before killing a message buffer.")
1196 (defvar message-postpone-actions nil
1197 "A list of actions to be performed after postponing a message.")
1199 (define-widget 'message-header-lines
'text
1200 "All header lines must be LFD terminated."
1201 :format
"%{%t%}:%n%v"
1202 :valid-regexp
"^\\'"
1203 :error
"All header lines must be newline terminated")
1205 (defcustom message-default-headers
""
1206 "Header lines to be inserted in outgoing messages.
1207 This can be set to a string containing or a function returning
1208 header lines to be inserted before you edit the message, so you
1209 can edit or delete these lines. If set to a function, it is
1210 called and its result is inserted."
1212 :group
'message-headers
1213 :link
'(custom-manual "(message)Message Headers")
1215 (message-header-lines :tag
"String")
1216 (function :tag
"Function")))
1218 (defcustom message-default-mail-headers
1219 ;; Ease the transition from mail-mode to message-mode. See bugs#4431, 5555.
1220 (concat (if (and (boundp 'mail-default-reply-to
)
1221 (stringp mail-default-reply-to
))
1222 (format "Reply-to: %s\n" mail-default-reply-to
))
1223 (if (and (boundp 'mail-self-blind
)
1225 (format "BCC: %s\n" user-mail-address
))
1226 (if (and (boundp 'mail-archive-file-name
)
1227 (stringp mail-archive-file-name
))
1228 (format "FCC: %s\n" mail-archive-file-name
))
1229 ;; Use the value of `mail-default-headers' if available.
1230 ;; Note: as for XEmacs 21.4 and 21.5, it is unavailable
1231 ;; unless sendmail.el is loaded.
1232 (if (boundp 'mail-default-headers
)
1233 mail-default-headers
))
1234 "*A string of header lines to be inserted in outgoing mails."
1236 :group
'message-headers
1237 :group
'message-mail
1238 :link
'(custom-manual "(message)Mail Headers")
1239 :type
'message-header-lines
)
1241 (defcustom message-default-news-headers
""
1242 "*A string of header lines to be inserted in outgoing news articles."
1243 :group
'message-headers
1244 :group
'message-news
1245 :link
'(custom-manual "(message)News Headers")
1246 :type
'message-header-lines
)
1248 ;; Note: could use /usr/ucb/mail instead of sendmail;
1249 ;; options -t, and -v if not interactive.
1250 (defcustom message-mailer-swallows-blank-line
1251 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
1252 system-configuration
)
1253 (file-readable-p "/etc/sendmail.cf")
1255 (insert-file-contents "/etc/sendmail.cf")
1256 (goto-char (point-min))
1257 (let ((case-fold-search nil
))
1258 (re-search-forward "^OR\\>" nil t
))))
1259 ;; According to RFC822, "The field-name must be composed of printable
1260 ;; ASCII characters (i. e., characters that have decimal values between
1261 ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
1263 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
1264 "*Set this non-nil if the system's mailer runs the header and body together.
1265 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
1266 The value should be an expression to test whether the problem will
1268 :group
'message-sending
1269 :link
'(custom-manual "(message)Mail Variables")
1273 (define-mail-user-agent 'message-user-agent
1274 'message-mail
'message-send-and-exit
1275 'message-kill-buffer
'message-send-hook
)
1277 (defvar message-mh-deletable-headers
'(Message-ID Date Lines Sender
)
1278 "If non-nil, delete the deletable headers before feeding to mh.")
1280 (defvar message-send-method-alist
1281 '((news message-news-p message-send-via-news
)
1282 (mail message-mail-p message-send-via-mail
))
1283 "Alist of ways to send outgoing messages.
1284 Each element has the form
1286 \(TYPE PREDICATE FUNCTION)
1288 where TYPE is a symbol that names the method; PREDICATE is a function
1289 called without any parameters to determine whether the message is
1290 a message of type TYPE; and FUNCTION is a function to be called if
1291 PREDICATE returns non-nil. FUNCTION is called with one parameter --
1294 (defcustom message-mail-alias-type
'abbrev
1295 "*What alias expansion type to use in Message buffers.
1296 The default is `abbrev', which uses mailabbrev. `ecomplete' uses
1297 an electric completion mode. nil switches mail aliases off.
1298 This can also be a list of values."
1300 :link
'(custom-manual "(message)Mail Aliases")
1301 :type
'(choice (const :tag
"Use Mailabbrev" abbrev
)
1302 (const :tag
"Use ecomplete" ecomplete
)
1303 (const :tag
"No expansion" nil
)))
1305 (defcustom message-self-insert-commands
'(self-insert-command)
1306 "List of `self-insert-command's used to trigger ecomplete.
1307 When one of those commands is invoked to enter a character in To or Cc
1308 header, ecomplete will suggest the candidates of recipients (see also
1309 `message-mail-alias-type'). If you use some tool to enter non-ASCII
1310 text and it replaces `self-insert-command' with the other command, e.g.
1311 `egg-self-insert-command', you may want to add it to this list."
1312 :group
'message-various
1313 :type
'(repeat function
))
1315 (defcustom message-auto-save-directory
1316 (if (file-writable-p message-directory
)
1317 (file-name-as-directory (expand-file-name "drafts" message-directory
))
1319 "*Directory where Message auto-saves buffers if Gnus isn't running.
1320 If nil, Message won't auto-save."
1321 :group
'message-buffers
1322 :link
'(custom-manual "(message)Various Message Variables")
1323 :type
'(choice directory
(const :tag
"Don't auto-save" nil
)))
1325 (defcustom message-default-charset
1326 (and (not (mm-multibyte-p)) 'iso-8859-1
)
1327 "Default charset used in non-MULE Emacsen.
1328 If nil, you might be asked to input the charset."
1331 :link
'(custom-manual "(message)Various Message Variables")
1334 (defcustom message-dont-reply-to-names
1335 (and (boundp 'mail-dont-reply-to-names
) mail-dont-reply-to-names
)
1336 "*Addresses to prune when doing wide replies.
1337 This can be a regexp or a list of regexps. Also, a value of nil means
1338 exclude your own user name only."
1341 :link
'(custom-manual "(message)Wide Reply")
1342 :type
'(choice (const :tag
"Yourself" nil
)
1344 (repeat :tag
"Regexp List" regexp
)))
1346 (defsubst message-dont-reply-to-names
()
1347 (gmm-regexp-concat message-dont-reply-to-names
))
1349 (defvar message-shoot-gnksa-feet nil
1350 "*A list of GNKSA feet you are allowed to shoot.
1351 Gnus gives you all the opportunity you could possibly want for
1352 shooting yourself in the foot. Also, Gnus allows you to shoot the
1353 feet of Good Net-Keeping Seal of Approval. The following are foot
1355 `empty-article' Allow you to post an empty article;
1356 `quoted-text-only' Allow you to post quoted text only;
1357 `multiple-copies' Allow you to post multiple copies;
1358 `cancel-messages' Allow you to cancel or supersede messages from
1359 your other email addresses;
1360 `canlock-verify' Allow you to cancel messages without verifying canlock.")
1362 (defsubst message-gnksa-enable-p
(feature)
1363 (or (not (listp message-shoot-gnksa-feet
))
1364 (memq feature message-shoot-gnksa-feet
)))
1366 (defcustom message-hidden-headers
'("^References:" "^Face:" "^X-Face:"
1368 "Regexp of headers to be hidden when composing new messages.
1369 This can also be a list of regexps to match headers. Or a list
1370 starting with `not' and followed by regexps."
1373 :link
'(custom-manual "(message)Message Headers")
1375 :format
"%{%t%}: %[Value Type%] %v"
1376 (regexp :menu-tag
"regexp" :format
"regexp\n%t: %v")
1377 (repeat :menu-tag
"(regexp ...)" :format
"(regexp ...)\n%v%i"
1378 (regexp :format
"%t: %v"))
1379 (cons :menu-tag
"(not regexp ...)" :format
"(not regexp ...)\n%v"
1381 (repeat :format
"%v%i"
1382 (regexp :format
"%t: %v")))))
1384 (defcustom message-cite-articles-with-x-no-archive t
1385 "If non-nil, cite text from articles that has X-No-Archive set."
1389 ;;; Internal variables.
1390 ;;; Well, not really internal.
1392 (defvar message-mode-syntax-table
1393 (let ((table (copy-syntax-table text-mode-syntax-table
)))
1394 (modify-syntax-entry ?%
". " table
)
1395 (modify-syntax-entry ?
> ". " table
)
1396 (modify-syntax-entry ?
< ". " table
)
1398 "Syntax table used while in Message mode.")
1400 (defface message-header-to
1403 (:foreground
"DarkOliveGreen1" :bold t
))
1406 (:foreground
"MidnightBlue" :bold t
))
1408 (:bold t
:italic t
)))
1409 "Face used for displaying From headers."
1410 :group
'message-faces
)
1411 ;; backward-compatibility alias
1412 (put 'message-header-to-face
'face-alias
'message-header-to
)
1413 (put 'message-header-to-face
'obsolete-face
"22.1")
1415 (defface message-header-cc
1418 (:foreground
"chartreuse1" :bold t
))
1421 (:foreground
"MidnightBlue"))
1424 "Face used for displaying Cc headers."
1425 :group
'message-faces
)
1426 ;; backward-compatibility alias
1427 (put 'message-header-cc-face
'face-alias
'message-header-cc
)
1428 (put 'message-header-cc-face
'obsolete-face
"22.1")
1430 (defface message-header-subject
1433 (:foreground
"OliveDrab1"))
1436 (:foreground
"navy blue" :bold t
))
1439 "Face used for displaying subject headers."
1440 :group
'message-faces
)
1441 ;; backward-compatibility alias
1442 (put 'message-header-subject-face
'face-alias
'message-header-subject
)
1443 (put 'message-header-subject-face
'obsolete-face
"22.1")
1445 (defface message-header-newsgroups
1448 (:foreground
"yellow" :bold t
:italic t
))
1451 (:foreground
"blue4" :bold t
:italic t
))
1453 (:bold t
:italic t
)))
1454 "Face used for displaying newsgroups headers."
1455 :group
'message-faces
)
1456 ;; backward-compatibility alias
1457 (put 'message-header-newsgroups-face
'face-alias
'message-header-newsgroups
)
1458 (put 'message-header-newsgroups-face
'obsolete-face
"22.1")
1460 (defface message-header-other
1463 (:foreground
"VioletRed1"))
1466 (:foreground
"steel blue"))
1468 (:bold t
:italic t
)))
1469 "Face used for displaying newsgroups headers."
1470 :group
'message-faces
)
1471 ;; backward-compatibility alias
1472 (put 'message-header-other-face
'face-alias
'message-header-other
)
1473 (put 'message-header-other-face
'obsolete-face
"22.1")
1475 (defface message-header-name
1478 (:foreground
"green"))
1481 (:foreground
"cornflower blue"))
1484 "Face used for displaying header names."
1485 :group
'message-faces
)
1486 ;; backward-compatibility alias
1487 (put 'message-header-name-face
'face-alias
'message-header-name
)
1488 (put 'message-header-name-face
'obsolete-face
"22.1")
1490 (defface message-header-xheader
1493 (:foreground
"DeepSkyBlue1"))
1496 (:foreground
"blue"))
1499 "Face used for displaying X-Header headers."
1500 :group
'message-faces
)
1501 ;; backward-compatibility alias
1502 (put 'message-header-xheader-face
'face-alias
'message-header-xheader
)
1503 (put 'message-header-xheader-face
'obsolete-face
"22.1")
1505 (defface message-separator
1508 (:foreground
"LightSkyBlue1"))
1511 (:foreground
"brown"))
1514 "Face used for displaying the separator."
1515 :group
'message-faces
)
1516 ;; backward-compatibility alias
1517 (put 'message-separator-face
'face-alias
'message-separator
)
1518 (put 'message-separator-face
'obsolete-face
"22.1")
1520 (defface message-cited-text
1523 (:foreground
"LightPink1"))
1526 (:foreground
"red"))
1529 "Face used for displaying cited text names."
1530 :group
'message-faces
)
1531 ;; backward-compatibility alias
1532 (put 'message-cited-text-face
'face-alias
'message-cited-text
)
1533 (put 'message-cited-text-face
'obsolete-face
"22.1")
1535 (defface message-mml
1538 (:foreground
"MediumSpringGreen"))
1541 (:foreground
"ForestGreen"))
1544 "Face used for displaying MML."
1545 :group
'message-faces
)
1546 ;; backward-compatibility alias
1547 (put 'message-mml-face
'face-alias
'message-mml
)
1548 (put 'message-mml-face
'obsolete-face
"22.1")
1550 (defun message-font-lock-make-header-matcher (regexp)
1553 (let ((start (point)))
1556 (goto-char (point-min))
1557 (if (re-search-forward
1558 (concat "^" (regexp-quote mail-header-separator
) "$")
1560 (setq limit
(min limit
(match-beginning 0))))
1562 (and (< start limit
)
1563 (re-search-forward ,regexp limit t
))))))
1564 (if (featurep 'bytecomp
)
1568 (defvar message-font-lock-keywords
1569 (let ((content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)\n?"))
1570 `((,(message-font-lock-make-header-matcher
1571 (concat "^\\([Tt]o:\\)" content
))
1572 (1 'message-header-name
)
1573 (2 'message-header-to nil t
))
1574 (,(message-font-lock-make-header-matcher
1575 (concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content
))
1576 (1 'message-header-name
)
1577 (2 'message-header-cc nil t
))
1578 (,(message-font-lock-make-header-matcher
1579 (concat "^\\([Ss]ubject:\\)" content
))
1580 (1 'message-header-name
)
1581 (2 'message-header-subject nil t
))
1582 (,(message-font-lock-make-header-matcher
1583 (concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content
))
1584 (1 'message-header-name
)
1585 (2 'message-header-newsgroups nil t
))
1586 (,(message-font-lock-make-header-matcher
1587 (concat "^\\(X-[A-Za-z0-9-]+:\\|In-Reply-To:\\)" content
))
1588 (1 'message-header-name
)
1589 (2 'message-header-xheader
))
1590 (,(message-font-lock-make-header-matcher
1591 (concat "^\\([A-Z][^: \n\t]+:\\)" content
))
1592 (1 'message-header-name
)
1593 (2 'message-header-other nil t
))
1594 ,@(if (and mail-header-separator
1595 (not (equal mail-header-separator
"")))
1596 `((,(concat "^\\(" (regexp-quote mail-header-separator
) "\\)$")
1597 1 'message-separator
))
1600 (re-search-forward (concat "^\\("
1601 message-cite-prefix-regexp
1604 (0 'message-cited-text
))
1605 ("<#/?\\(multipart\\|part\\|external\\|mml\\|secure\\)[^>]*>"
1607 "Additional expressions to highlight in Message mode.")
1610 ;; XEmacs does it like this. For Emacs, we have to set the
1611 ;; `font-lock-defaults' buffer-local variable.
1612 (put 'message-mode
'font-lock-defaults
'(message-font-lock-keywords t
))
1614 (defvar message-face-alist
1615 '((bold . message-bold-region
)
1616 (underline . underline-region
)
1617 (default .
(lambda (b e
)
1618 (message-unbold-region b e
)
1619 (ununderline-region b e
))))
1620 "Alist of mail and news faces for facemenu.
1621 The cdr of each entry is a function for applying the face to a region.")
1623 (defcustom message-send-hook nil
1624 "Hook run before sending messages.
1625 This hook is run quite early when sending."
1626 :group
'message-various
1627 :options
'(ispell-message)
1628 :link
'(custom-manual "(message)Various Message Variables")
1631 (defcustom message-send-mail-hook nil
1632 "Hook run before sending mail messages.
1633 This hook is run very late -- just before the message is sent as
1635 :group
'message-various
1636 :link
'(custom-manual "(message)Various Message Variables")
1639 (defcustom message-send-news-hook nil
1640 "Hook run before sending news messages.
1641 This hook is run very late -- just before the message is sent as
1643 :group
'message-various
1644 :link
'(custom-manual "(message)Various Message Variables")
1647 (defcustom message-sent-hook nil
1648 "Hook run after sending messages."
1649 :group
'message-various
1652 (defvar message-send-coding-system
'binary
1653 "Coding system to encode outgoing mail.")
1655 (defvar message-draft-coding-system
1656 mm-auto-save-coding-system
1657 "*Coding system to compose mail.
1658 If you'd like to make it possible to share draft files between XEmacs
1659 and Emacs, you may use `iso-2022-7bit' for this value at your own risk.
1660 Note that the coding-system `iso-2022-7bit' isn't suitable to all data.")
1662 (defcustom message-send-mail-partially-limit nil
1663 "The limitation of messages sent as message/partial.
1664 The lower bound of message size in characters, beyond which the message
1665 should be sent in several parts. If it is nil, the size is unlimited."
1667 :group
'message-buffers
1668 :link
'(custom-manual "(message)Mail Variables")
1669 :type
'(choice (const :tag
"unlimited" nil
)
1672 (defcustom message-alternative-emails nil
1673 "*Regexp matching alternative email addresses.
1674 The first address in the To, Cc or From headers of the original
1675 article matching this variable is used as the From field of
1678 This variable has precedence over posting styles and anything that runs
1679 off `message-setup-hook'."
1680 :group
'message-headers
1681 :link
'(custom-manual "(message)Message Headers")
1682 :type
'(choice (const :tag
"Always use primary" nil
)
1685 (defcustom message-hierarchical-addresses nil
1686 "A list of hierarchical mail address definitions.
1688 Inside each entry, the first address is the \"top\" address, and
1689 subsequent addresses are subaddresses; this is used to indicate that
1690 mail sent to the first address will automatically be delivered to the
1691 subaddresses. So if the first address appears in the recipient list
1692 for a message, the subaddresses will be removed (if present) before
1693 the mail is sent. All addresses in this structure should be
1696 :group
'message-headers
1697 :type
'(repeat (repeat string
)))
1699 (defcustom message-mail-user-agent nil
1700 "Like `mail-user-agent'.
1701 Except if it is nil, use Gnus native MUA; if it is t, use
1704 :type
'(radio (const :tag
"Gnus native"
1707 (const :tag
"`mail-user-agent'"
1710 (function-item :tag
"Default Emacs mail"
1712 sendmail-user-agent
)
1713 (function-item :tag
"Emacs interface to MH"
1716 (function :tag
"Other"))
1720 (defcustom message-wide-reply-confirm-recipients nil
1721 "Whether to confirm a wide reply to multiple email recipients.
1722 If this variable is nil, don't ask whether to reply to all recipients.
1723 If this variable is non-nil, pose the question \"Reply to all
1724 recipients?\" before a wide reply to multiple recipients. If the user
1725 answers yes, reply to all recipients as usual. If the user answers
1726 no, only reply back to the author."
1728 :group
'message-headers
1729 :link
'(custom-manual "(message)Wide Reply")
1732 (defcustom message-user-fqdn nil
1733 "*Domain part of Message-Ids."
1735 :group
'message-headers
1736 :link
'(custom-manual "(message)News Headers")
1737 :type
'(radio (const :format
"%v " nil
)
1738 (string :format
"FQDN: %v")))
1740 (defcustom message-use-idna
(and (condition-case nil
(require 'idna
)
1742 (mm-coding-system-p 'utf-8
)
1743 (executable-find idna-program
)
1744 (string= (idna-to-ascii "räksmörgås")
1745 "xn--rksmrgs-5wao1o")
1747 "Whether to encode non-ASCII in domain names into ASCII according to IDNA.
1748 GNU Libidn, and in particular the elisp package \"idna.el\" and
1749 the external program \"idn\", must be installed for this
1750 functionality to work."
1752 :group
'message-headers
1753 :link
'(custom-manual "(message)IDNA")
1754 :type
'(choice (const :tag
"Ask" ask
)
1755 (const :tag
"Never" nil
)
1756 (const :tag
"Always" t
)))
1758 (defcustom message-generate-hashcash
(if (executable-find "hashcash") 'opportunistic
)
1759 "*Whether to generate X-Hashcash: headers.
1760 If t, always generate hashcash headers. If `opportunistic',
1761 only generate hashcash headers if it can be done without the user
1762 waiting (i.e., only asynchronously).
1764 You must have the \"hashcash\" binary installed, see `hashcash-path'."
1766 :group
'message-headers
1767 :link
'(custom-manual "(message)Mail Headers")
1768 :type
'(choice (const :tag
"Always" t
)
1769 (const :tag
"Never" nil
)
1770 (const :tag
"Opportunistic" opportunistic
)))
1772 ;;; Internal variables.
1774 (defvar message-sending-message
"Sending...")
1775 (defvar message-buffer-list nil
)
1776 (defvar message-this-is-news nil
)
1777 (defvar message-this-is-mail nil
)
1778 (defvar message-draft-article nil
)
1779 (defvar message-mime-part nil
)
1780 (defvar message-posting-charset nil
)
1781 (defvar message-inserted-headers nil
)
1782 (defvar message-inhibit-ecomplete nil
)
1784 ;; Byte-compiler warning
1785 (defvar gnus-active-hashtb
)
1786 (defvar gnus-read-active-file
)
1788 ;;; Regexp matching the delimiter of messages in UNIX mail format
1789 ;;; (UNIX From lines), minus the initial ^. It should be a copy
1790 ;;; of rmail.el's rmail-unix-mail-delimiter.
1791 (defvar message-unix-mail-delimiter
1792 (let ((time-zone-regexp
1793 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
1794 "\\|[-+]?[0-9][0-9][0-9][0-9]"
1800 ;; Many things can happen to an RFC 822 mailbox before it is put into
1801 ;; a `From' line. The leading phrase can be stripped, e.g.
1802 ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'. The <> can be stripped, e.g.
1803 ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'. Everything starting with a CRLF
1804 ;; can be removed, e.g.
1805 ;; From: joe@y.z (Joe K
1807 ;; can yield `From joe@y.z (Joe K Fri Mar 22 08:11:15 1996', and
1810 ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
1811 ;; The mailbox can be removed or be replaced by white space, e.g.
1812 ;; From: "Joe User"{space}{tab}
1814 ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
1815 ;; where {space} and {tab} represent the Ascii space and tab characters.
1816 ;; We want to match the results of any of these manglings.
1817 ;; The following regexp rejects names whose first characters are
1818 ;; obviously bogus, but after that anything goes.
1819 "\\([^\0-\b\n-\r\^?].*\\)?"
1821 ;; The time the message was sent.
1822 "\\([^\0-\r \^?]+\\) +" ; day of the week
1823 "\\([^\0-\r \^?]+\\) +" ; month
1824 "\\([0-3]?[0-9]\\) +" ; day of month
1825 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day
1827 ;; Perhaps a time zone, specified by an abbreviation, or by a
1832 " \\([0-9][0-9]+\\) *"
1834 ;; On some systems the time zone can appear after the year, too.
1838 "\\(remote from .*\\)?"
1841 "Regexp matching the delimiter of messages in UNIX mail format.")
1843 (defvar message-unsent-separator
1844 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
1845 "^ *---+ +Returned message +---+ *$\\|"
1846 "^Start of returned message$\\|"
1847 "^ *---+ +Original message +---+ *$\\|"
1848 "^ *--+ +begin message +--+ *$\\|"
1849 "^ *---+ +Original message follows +---+ *$\\|"
1850 "^ *---+ +Undelivered message follows +---+ *$\\|"
1851 "^------ This is a copy of the message, including all the headers. ------ *$\\|"
1852 "^|? *---+ +Message text follows: +---+ *|?$")
1853 "A regexp that matches the separator before the text of a failed message.")
1855 (defvar message-field-fillers
1856 '((To message-fill-field-address
)
1857 (Cc message-fill-field-address
)
1858 (From message-fill-field-address
))
1859 "Alist of header names/filler functions.")
1861 (defvar message-header-format-alist
1876 (References . message-shorten-references
)
1878 "Alist used for formatting headers.")
1880 (defvar message-options nil
1881 "Some saved answers when sending message.")
1882 ;; FIXME: On XEmacs this causes problems since let-binding like:
1883 ;; (let ((message-options message-options)) ...)
1884 ;; as in `message-send' and `mml-preview' loses to buffer-local
1885 ;; variable initialization.
1886 (unless (featurep 'xemacs
)
1887 (make-variable-buffer-local 'message-options
))
1889 (defvar message-send-mail-real-function nil
1890 "Internal send mail function.")
1892 (defvar message-bogus-system-names
"\\`localhost\\.\\|\\.local\\'"
1893 "The regexp of bogus system names.")
1895 (defcustom message-valid-fqdn-regexp
1896 (concat "[a-z0-9][-.a-z0-9]+\\." ;; [hostname.subdomain.]domain.
1898 "\\([a-z][a-z]\\|" ;; two letter country TDLs
1899 "aero\\|arpa\\|asia\\|bitnet\\|biz\\|bofh\\|"
1900 "cat\\|com\\|coop\\|edu\\|gov\\|"
1901 "info\\|int\\|jobs\\|"
1902 "mil\\|mobi\\|museum\\|name\\|net\\|"
1903 "org\\|pro\\|tel\\|travel\\|uucp\\)")
1904 ;; http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains
1905 ;; http://en.wikipedia.org/wiki/GTLD
1906 ;; `approved, but not yet in operation': .xxx
1907 ;; "dead" nato bitnet uucp
1908 "Regular expression that matches a valid FQDN."
1909 ;; see also: gnus-button-valid-fqdn-regexp
1911 :group
'message-headers
1914 (autoload 'gnus-alive-p
"gnus-util")
1915 (autoload 'gnus-delay-article
"gnus-delay")
1916 (autoload 'gnus-extract-address-components
"gnus-util")
1917 (autoload 'gnus-find-method-for-group
"gnus")
1918 (autoload 'gnus-group-decoded-name
"gnus-group")
1919 (autoload 'gnus-group-name-charset
"gnus-group")
1920 (autoload 'gnus-group-name-decode
"gnus-group")
1921 (autoload 'gnus-groups-from-server
"gnus")
1922 (autoload 'gnus-make-local-hook
"gnus-util")
1923 (autoload 'gnus-open-server
"gnus-int")
1924 (autoload 'gnus-output-to-mail
"gnus-util")
1925 (autoload 'gnus-output-to-rmail
"gnus-util")
1926 (autoload 'gnus-request-post
"gnus-int")
1927 (autoload 'gnus-select-frame-set-input-focus
"gnus-util")
1928 (autoload 'gnus-server-string
"gnus")
1929 (autoload 'idna-to-ascii
"idna")
1930 (autoload 'message-setup-toolbar
"messagexmas")
1931 (autoload 'mh-new-draft-name
"mh-comp")
1932 (autoload 'mh-send-letter
"mh-comp")
1933 (autoload 'nndraft-request-associate-buffer
"nndraft")
1934 (autoload 'nndraft-request-expire-articles
"nndraft")
1935 (autoload 'nnvirtual-find-group-art
"nnvirtual")
1936 (autoload 'rmail-msg-is-pruned
"rmail")
1937 (autoload 'rmail-output
"rmailout")
1939 ;; Emacs < 24.1 do not have mail-dont-reply-to
1940 (unless (fboundp 'mail-dont-reply-to
)
1941 (defalias 'mail-dont-reply-to
'rmail-dont-reply-to
))
1946 ;;; Utility functions.
1949 (defmacro message-y-or-n-p
(question show
&rest text
)
1950 "Ask QUESTION, displaying remaining args in a temporary buffer if SHOW."
1951 `(message-talkative-question 'y-or-n-p
,question
,show
,@text
))
1953 (defmacro message-delete-line
(&optional n
)
1954 "Delete the current line (and the next N lines)."
1955 `(delete-region (progn (beginning-of-line) (point))
1956 (progn (forward-line ,(or n
1)) (point))))
1958 (defun message-mark-active-p ()
1959 "Non-nil means the mark and region are currently active in this buffer."
1962 (defun message-unquote-tokens (elems)
1963 "Remove double quotes (\") from strings in list ELEMS."
1964 (mapcar (lambda (item)
1965 (while (string-match "^\\(.*\\)\"\\(.*\\)$" item
)
1966 (setq item
(concat (match-string 1 item
)
1967 (match-string 2 item
))))
1971 (defun message-tokenize-header (header &optional separator
)
1972 "Split HEADER into a list of header elements.
1973 SEPARATOR is a string of characters to be used as separators. \",\"
1974 is used by default."
1977 (let ((regexp (format "[%s]+" (or separator
",")))
1979 beg quoted elems paren
)
1981 (mm-enable-multibyte)
1982 (setq beg
(point-min))
1984 (goto-char (point-min))
1989 (cond ((and (> (point) beg
)
1991 (and (looking-at regexp
)
1994 (push (buffer-substring beg
(point)) elems
)
1995 (setq beg
(match-end 0)))
1996 ((eq (char-after) ?
\")
1997 (setq quoted
(not quoted
)))
1998 ((and (eq (char-after) ?\
()
2001 ((and (eq (char-after) ?\
))
2004 (nreverse elems
)))))
2006 (autoload 'nnheader-insert-file-contents
"nnheader")
2008 (defun message-mail-file-mbox-p (file)
2009 "Say whether FILE looks like a Unix mbox file."
2010 (when (and (file-exists-p file
)
2011 (file-readable-p file
)
2012 (file-regular-p file
))
2014 (nnheader-insert-file-contents file
)
2015 (goto-char (point-min))
2016 (looking-at message-unix-mail-delimiter
))))
2018 (defun message-fetch-field (header &optional not-all
)
2019 "The same as `mail-fetch-field', only remove all newlines.
2020 The buffer is expected to be narrowed to just the header of the message;
2021 see `message-narrow-to-headers-or-head'."
2022 (let* ((inhibit-point-motion-hooks t
)
2023 (value (mail-fetch-field header nil
(not not-all
))))
2025 (while (string-match "\n[\t ]+" value
)
2026 (setq value
(replace-match " " t t value
)))
2029 (defun message-field-value (header &optional not-all
)
2030 "The same as `message-fetch-field', only narrow to the headers first."
2033 (message-narrow-to-headers-or-head)
2034 (message-fetch-field header not-all
))))
2036 (defun message-narrow-to-field ()
2037 "Narrow the buffer to the header on the current line."
2039 (while (looking-at "[ \t]")
2045 (if (re-search-forward "^[^ \n\t]" nil t
)
2048 (goto-char (point-min)))
2050 (defun message-add-header (&rest headers
)
2051 "Add the HEADERS to the message header, skipping those already present."
2054 (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers
))
2055 (error "Invalid header `%s'" (car headers
)))
2056 (setq hclean
(match-string 1 (car headers
)))
2058 (message-narrow-to-headers)
2059 (unless (re-search-forward (concat "^" (regexp-quote hclean
) ":") nil t
)
2060 (goto-char (point-max))
2061 (if (string-match "\n$" (car headers
))
2062 (insert (car headers
))
2063 (insert (car headers
) ?
\n)))))
2064 (setq headers
(cdr headers
))))
2066 (defmacro message-with-reply-buffer
(&rest forms
)
2067 "Evaluate FORMS in the reply buffer, if it exists."
2068 `(when (and (bufferp message-reply-buffer
)
2069 (buffer-name message-reply-buffer
))
2070 (with-current-buffer message-reply-buffer
2073 (put 'message-with-reply-buffer
'lisp-indent-function
0)
2074 (put 'message-with-reply-buffer
'edebug-form-spec
'(body))
2076 (defun message-fetch-reply-field (header)
2077 "Fetch field HEADER from the message we're replying to."
2078 (message-with-reply-buffer
2080 (mail-narrow-to-head)
2081 (message-fetch-field header
))))
2083 (defun message-strip-list-identifiers (subject)
2084 "Remove list identifiers in `gnus-list-identifiers' from string SUBJECT."
2085 (require 'gnus-sum
) ; for gnus-list-identifiers
2086 (let ((regexp (if (stringp gnus-list-identifiers
)
2087 gnus-list-identifiers
2088 (mapconcat 'identity gnus-list-identifiers
" *\\|"))))
2089 (if (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
2090 " *\\)\\)+\\(Re: +\\)?\\)") subject
)
2091 (concat (substring subject
0 (match-beginning 1))
2092 (or (match-string 3 subject
)
2093 (match-string 5 subject
))
2098 (defun message-strip-subject-re (subject)
2099 "Remove \"Re:\" from subject lines in string SUBJECT."
2100 (if (string-match message-subject-re-regexp subject
)
2101 (substring subject
(match-end 0))
2104 (defcustom message-replacement-char
"."
2105 "Replacement character used instead of unprintable or not decodable chars."
2106 :group
'message-various
2107 :version
"22.1" ;; Gnus 5.10.9
2108 :type
'(choice string
2112 ;; FIXME: We also should call `message-strip-subject-encoded-words'
2113 ;; when forwarding. Probably in `message-make-forward-subject' and
2114 ;; `message-forward-make-body'.
2116 (defun message-strip-subject-encoded-words (subject)
2117 "Fix non-decodable words in SUBJECT."
2118 ;; Cf. `gnus-simplify-subject-fully'.
2119 (let* ((case-fold-search t
)
2120 (replacement-chars (format "[%s%s%s]"
2121 message-replacement-char
2122 message-replacement-char
2123 message-replacement-char
))
2124 (enc-word-re "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?\\([^?]+\\)\\(\\?=\\)")
2129 (goto-char (point-min))
2130 (when (re-search-forward enc-word-re nil t
)
2131 (setq cs-string
(match-string 1)))))
2132 cs-coding q-or-b word-beg word-end
)
2133 (if (or (not have-marker
) ;; No encoded word found...
2134 ;; ... or double encoding was correct:
2135 (and (stringp cs-string
)
2136 (setq cs-string
(downcase cs-string
))
2137 (mm-coding-system-p (intern cs-string
))
2141 Decoded Subject \"%s\"
2142 contains a valid encoded word. Decode again? "
2144 (setq cs-coding
(intern cs-string
))))))
2148 (goto-char (point-min))
2149 (while (re-search-forward enc-word-re nil t
)
2150 (setq cs-string
(downcase (match-string 1))
2151 q-or-b
(match-string 2)
2152 word-beg
(match-beginning 0)
2153 word-end
(match-end 0))
2155 (if (mm-coding-system-p (intern cs-string
))
2156 (setq cs-coding
(intern cs-string
))
2158 ;; No double encoded subject? => bogus charset.
2161 (mm-read-coding-system
2163 Decoded Subject \"%s\"
2164 contains an encoded word. The charset `%s' is unknown or invalid.
2165 Hit RET to replace non-decodable characters with \"%s\" or enter replacement
2167 subject cs-string message-replacement-char
)))
2169 (replace-match (concat "=?" (symbol-name cs-coding
)
2172 (goto-char word-beg
)
2173 (re-search-forward "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?" word-end t
)
2176 (if (string-match "\\`Q\\'" q-or-b
)
2179 (message "Replacing non-decodable characters with \"%s\"."
2180 message-replacement-char
)
2181 (while (re-search-forward "\\(=[A-F0-9][A-F0-9]\\)+"
2183 (replace-match message-replacement-char
)))
2185 (message "Replacing non-decodable characters with \"%s\"."
2187 (re-search-forward "[^?]+" word-end t
)
2188 (replace-match replacement-chars
))
2189 (re-search-forward "\\?=")
2190 (replace-match "")))))
2191 (rfc2047-decode-region (point-min) (point-max))
2194 ;;; Start of functions adopted from `message-utils.el'.
2196 (defun message-strip-subject-trailing-was (subject)
2197 "Remove trailing \"(was: <old subject>)\" from SUBJECT lines.
2198 Leading \"Re: \" is not stripped by this function. Use the function
2199 `message-strip-subject-re' for this."
2200 (let* ((query message-subject-trailing-was-query
)
2205 message-subject-trailing-was-ask-regexp
2206 message-subject-trailing-was-regexp
)
2209 (setq new
(substring subject
0 (match-beginning 0))))
2210 (if (or (not found
) (eq query nil
))
2213 (if (message-y-or-n-p
2214 "Strip `(was: <old subject>)' in subject? " t
2216 "Strip `(was: <old subject>)' in subject "
2217 "and use the new one instead?\n\n"
2218 "Current subject is: \""
2220 "New subject would be: \""
2222 "See the variable `message-subject-trailing-was-query' "
2223 "to get rid of this query."
2228 ;;; Suggested by Jonas Steverud @ www.dtek.chalmers.se/~d4jonas/
2230 (defun message-change-subject (new-subject)
2231 "Ask for NEW-SUBJECT header, append (was: <Old Subject>)."
2234 (read-from-minibuffer "New subject: ")))
2235 (cond ((and (not (or (null new-subject
) ; new subject not empty
2236 (zerop (string-width new-subject
))
2237 (string-match "^[ \t]*$" new-subject
))))
2241 (message-narrow-to-headers)
2242 (message-fetch-field "Subject"))))
2243 (cond ((not old-subject
)
2244 (error "No current subject"))
2247 (regexp-quote new-subject
)
2249 old-subject
)) ; yes, it really is a new subject
2250 ;; delete eventual Re: prefix
2252 (message-strip-subject-re old-subject
))
2253 (message-goto-subject)
2254 (message-delete-line)
2255 (insert (concat "Subject: "
2258 old-subject
")\n")))))))))
2260 (defun message-mark-inserted-region (beg end
&optional verbatim
)
2261 "Mark some region in the current article with enclosing tags.
2262 See `message-mark-insert-begin' and `message-mark-insert-end'.
2263 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2264 (interactive "r\nP")
2266 ;; add to the end of the region first, otherwise end would be invalid
2268 (insert (if verbatim
"#v-\n" message-mark-insert-end
))
2270 (insert (if verbatim
"#v+\n" message-mark-insert-begin
))))
2272 (defun message-mark-insert-file (file &optional verbatim
)
2273 "Insert FILE at point, marking it with enclosing tags.
2274 See `message-mark-insert-begin' and `message-mark-insert-end'.
2275 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2276 (interactive "fFile to insert: \nP")
2277 ;; reverse insertion to get correct result.
2279 (insert (if verbatim
"#v-\n" message-mark-insert-end
))
2281 (insert-file-contents file
)
2283 (insert (if verbatim
"#v+\n" message-mark-insert-begin
))))
2285 (defun message-add-archive-header ()
2286 "Insert \"X-No-Archive: Yes\" in the header and a note in the body.
2287 The note can be customized using `message-archive-note'. When called with a
2288 prefix argument, ask for a text to insert. If you don't want the note in the
2289 body, set `message-archive-note' to nil."
2291 (if current-prefix-arg
2292 (setq message-archive-note
2293 (read-from-minibuffer "Reason for No-Archive: "
2294 (cons message-archive-note
0))))
2296 (if (message-goto-signature)
2297 (re-search-backward message-signature-separator
))
2298 (when message-archive-note
2299 (insert message-archive-note
)
2301 (message-add-header message-archive-header
)
2302 (message-sort-headers)))
2304 (defun message-cross-post-followup-to-header (target-group)
2305 "Mangles FollowUp-To and Newsgroups header to point to TARGET-GROUP.
2306 With prefix-argument just set Follow-Up, don't cross-post."
2308 (list ; Completion based on Gnus
2309 (completing-read "Followup To: "
2310 (if (boundp 'gnus-newsrc-alist
)
2312 nil nil
'("poster" .
0)
2313 (if (boundp 'gnus-group-history
)
2314 'gnus-group-history
))))
2315 (message-remove-header "Follow[Uu]p-[Tt]o" t
)
2316 (message-goto-newsgroups)
2318 ;; if we already did a crosspost before, kill old target
2319 (if (and message-cross-post-old-target
2321 (regexp-quote (concat "," message-cross-post-old-target
))
2324 ;; unless (followup is to poster or user explicitly asked not
2325 ;; to cross-post, or target-group is already in Newsgroups)
2326 ;; add target-group to Newsgroups line.
2328 ;; def: cross-post, req:no
2329 (and message-cross-post-default
(not current-prefix-arg
))
2330 ;; def: no-cross-post, req:yes
2331 (and (not message-cross-post-default
) current-prefix-arg
))
2332 (not (string-match "poster" target-group
))
2333 (not (string-match (regexp-quote target-group
)
2334 (message-fetch-field "Newsgroups"))))
2336 (insert (concat "," target-group
))))
2337 (end-of-line) ; ensure Followup: comes after Newsgroups:
2338 ;; unless new followup would be identical to Newsgroups line
2339 ;; make a new Followup-To line
2340 (if (not (string-match (concat "^[ \t]*"
2343 (message-fetch-field "Newsgroups")))
2344 (insert (concat "\nFollowup-To: " target-group
)))
2345 (setq message-cross-post-old-target target-group
))
2347 (defun message-cross-post-insert-note (target-group cross-post in-old
2349 "Insert a in message body note about a set Followup or Crosspost.
2350 If there have been previous notes, delete them. TARGET-GROUP specifies the
2351 group to Followup-To. When CROSS-POST is t, insert note about
2352 crossposting. IN-OLD specifies whether TARGET-GROUP is a member of
2353 OLD-GROUPS. OLD-GROUPS lists the old-groups the posting would have
2354 been made to before the user asked for a Crosspost."
2355 ;; start scanning body for previous uses
2356 (message-goto-signature)
2357 (let ((head (re-search-backward
2358 (concat "^" mail-header-separator
)
2359 nil t
))) ; just search in body
2360 (message-goto-signature)
2361 (while (re-search-backward
2362 (concat "^" (regexp-quote message-cross-post-note
) ".*")
2364 (message-delete-line))
2365 (message-goto-signature)
2366 (while (re-search-backward
2367 (concat "^" (regexp-quote message-followup-to-note
) ".*")
2369 (message-delete-line))
2371 (if (message-goto-signature)
2372 (re-search-backward message-signature-separator
))
2375 (string-match "^[ \t]*poster[ \t]*$" target-group
))
2376 (insert (concat message-followup-to-note target-group
"\n"))
2377 (insert (concat message-cross-post-note target-group
"\n")))))
2379 (defun message-cross-post-followup-to (target-group)
2380 "Crossposts message and set Followup-To to TARGET-GROUP.
2381 With prefix-argument just set Follow-Up, don't cross-post."
2383 (list ; Completion based on Gnus
2384 (completing-read "Followup To: "
2385 (if (boundp 'gnus-newsrc-alist
)
2387 nil nil
'("poster" .
0)
2388 (if (boundp 'gnus-group-history
)
2389 'gnus-group-history
))))
2390 (cond ((not (or (null target-group
) ; new subject not empty
2391 (zerop (string-width target-group
))
2392 (string-match "^[ \t]*$" target-group
)))
2394 (let* ((old-groups (message-fetch-field "Newsgroups"))
2395 (in-old (string-match
2396 (regexp-quote target-group
)
2397 (or old-groups
""))))
2398 ;; check whether target exactly matches old Newsgroups
2399 (cond ((not old-groups
)
2400 (error "No current newsgroup"))
2404 (regexp-quote target-group
)
2407 ;; yes, Newsgroups line must change
2408 (message-cross-post-followup-to-header target-group
)
2409 ;; insert note whether we do cross-post or followup-to
2410 (funcall message-cross-post-note-function
2412 (if (or (and message-cross-post-default
2413 (not current-prefix-arg
))
2414 (and (not message-cross-post-default
)
2415 current-prefix-arg
)) t
)
2416 in-old old-groups
))))))))
2418 ;;; Reduce To: to Cc: or Bcc: header
2420 (defun message-reduce-to-to-cc ()
2421 "Replace contents of To: header with contents of Cc: or Bcc: header."
2424 (save-restriction (message-narrow-to-headers)
2425 (message-fetch-field "cc")))
2427 (if (and (not cc-content
)
2430 (message-narrow-to-headers)
2431 (message-fetch-field "bcc"))))
2436 (message-delete-line)
2437 (insert (concat "To: " cc-content
"\n"))
2439 (message-narrow-to-headers)
2440 (message-remove-header (if bcc
2444 ;;; End of functions adopted from `message-utils.el'.
2446 (defun message-remove-header (header &optional is-regexp first reverse
)
2447 "Remove HEADER in the narrowed buffer.
2448 If IS-REGEXP, HEADER is a regular expression.
2449 If FIRST, only remove the first instance of the header.
2450 Return the number of headers removed."
2451 (goto-char (point-min))
2452 (let ((regexp (if is-regexp header
(concat "^" (regexp-quote header
) ":")))
2454 (case-fold-search t
)
2456 (while (and (not (eobp))
2459 (not (looking-at regexp
))
2460 (looking-at regexp
))
2467 ;; There might be a continuation header, so we have to search
2468 ;; until we find a new non-continuation line.
2471 (if (re-search-forward "^[^ \t]" nil t
)
2472 (goto-char (match-beginning 0))
2475 (if (re-search-forward "^[^ \t]" nil t
)
2476 (goto-char (match-beginning 0))
2477 (goto-char (point-max)))))
2480 (defun message-remove-first-header (header)
2481 "Remove the first instance of HEADER if there is more than one."
2483 (regexp (concat "^" (regexp-quote header
) ":")))
2485 (goto-char (point-min))
2486 (while (re-search-forward regexp nil t
)
2489 (message-remove-header header nil t
)
2492 (defun message-narrow-to-headers ()
2493 "Narrow the buffer to the head of the message."
2496 (goto-char (point-min))
2497 (if (re-search-forward
2498 (concat "^" (regexp-quote mail-header-separator
) "\n") nil t
)
2501 (goto-char (point-min)))
2503 (defun message-narrow-to-head-1 ()
2504 "Like `message-narrow-to-head'. Don't widen."
2506 (goto-char (point-min))
2507 (if (search-forward "\n\n" nil
1)
2510 (goto-char (point-min)))
2512 ;; FIXME: clarify difference: message-narrow-to-head,
2513 ;; message-narrow-to-headers-or-head, message-narrow-to-headers
2514 (defun message-narrow-to-head ()
2515 "Narrow the buffer to the head of the message.
2516 Point is left at the beginning of the narrowed-to region."
2518 (message-narrow-to-head-1))
2520 (defun message-narrow-to-headers-or-head ()
2521 "Narrow the buffer to the head of the message."
2524 (goto-char (point-min))
2525 (if (re-search-forward (concat "\\(\n\\)\n\\|^\\("
2526 (regexp-quote mail-header-separator
)
2529 (or (match-end 1) (match-beginning 2))
2531 (goto-char (point-min)))
2533 (defun message-news-p ()
2534 "Say whether the current buffer contains a news message."
2535 (and (not message-this-is-mail
)
2536 (or message-this-is-news
2539 (message-narrow-to-headers)
2540 (and (message-fetch-field "newsgroups")
2541 (not (message-fetch-field "posted-to"))))))))
2543 (defun message-mail-p ()
2544 "Say whether the current buffer contains a mail message."
2545 (and (not message-this-is-news
)
2546 (or message-this-is-mail
2549 (message-narrow-to-headers)
2550 (or (message-fetch-field "to")
2551 (message-fetch-field "cc")
2552 (message-fetch-field "bcc")))))))
2554 (defun message-subscribed-p ()
2555 "Say whether we need to insert a MFT header."
2556 (or message-subscribed-regexps
2557 message-subscribed-addresses
2558 message-subscribed-address-file
2559 message-subscribed-address-functions
))
2561 (defun message-next-header ()
2562 "Go to the beginning of the next header."
2564 (or (eobp) (forward-char 1))
2565 (not (if (re-search-forward "^[^ \t]" nil t
)
2567 (goto-char (point-max)))))
2569 (defun message-sort-headers-1 ()
2570 "Sort the buffer as headers using `message-rank' text props."
2571 (goto-char (point-min))
2574 nil
'message-next-header
2576 (message-next-header)
2580 (or (get-text-property (point) 'message-rank
)
2583 (defun message-sort-headers ()
2584 "Sort the headers of the current message according to `message-header-format-alist'."
2588 (let ((max (1+ (length message-header-format-alist
)))
2590 (message-narrow-to-headers)
2591 (while (re-search-forward "^[^ \n]+:" nil t
)
2593 (match-beginning 0) (1+ (match-beginning 0))
2595 (if (setq rank
(length (memq (assq (intern (buffer-substring
2597 (1- (match-end 0))))
2598 message-header-format-alist
)
2599 message-header-format-alist
)))
2602 (message-sort-headers-1))))
2604 (defun message-kill-address ()
2605 "Kill the address under point."
2607 (let ((start (point)))
2608 (message-skip-to-next-address)
2609 (kill-region start
(if (bolp) (1- (point)) (point)))))
2612 (autoload 'Info-goto-node
"info")
2613 (defvar mml2015-use
)
2615 (defun message-info (&optional arg
)
2616 "Display the Message manual.
2618 Prefixed with one \\[universal-argument], display the Emacs MIME
2619 manual. With two \\[universal-argument]'s, display the EasyPG or
2620 PGG manual, depending on the value of `mml2015-use'."
2622 ;; Don't use `info' because support for `(filename)nodename' is not
2623 ;; available in XEmacs < 21.5.12.
2624 (Info-goto-node (format "(%s)Top"
2628 ((eq arg
4) 'emacs-mime
)
2629 ;; `booleanp' only available in Emacs 22+
2630 ((and (not (memq arg
'(nil t
)))
2644 (defvar message-mode-map nil
)
2646 (unless message-mode-map
2647 (setq message-mode-map
(make-keymap))
2648 (set-keymap-parent message-mode-map text-mode-map
)
2649 (define-key message-mode-map
"\C-c?" 'describe-mode
)
2651 (define-key message-mode-map
"\C-c\C-f\C-t" 'message-goto-to
)
2652 (define-key message-mode-map
"\C-c\C-f\C-o" 'message-goto-from
)
2653 (define-key message-mode-map
"\C-c\C-f\C-b" 'message-goto-bcc
)
2654 (define-key message-mode-map
"\C-c\C-f\C-w" 'message-goto-fcc
)
2655 (define-key message-mode-map
"\C-c\C-f\C-c" 'message-goto-cc
)
2656 (define-key message-mode-map
"\C-c\C-f\C-s" 'message-goto-subject
)
2657 (define-key message-mode-map
"\C-c\C-f\C-r" 'message-goto-reply-to
)
2658 (define-key message-mode-map
"\C-c\C-f\C-n" 'message-goto-newsgroups
)
2659 (define-key message-mode-map
"\C-c\C-f\C-d" 'message-goto-distribution
)
2660 (define-key message-mode-map
"\C-c\C-f\C-f" 'message-goto-followup-to
)
2661 (define-key message-mode-map
"\C-c\C-f\C-m" 'message-goto-mail-followup-to
)
2662 (define-key message-mode-map
"\C-c\C-f\C-k" 'message-goto-keywords
)
2663 (define-key message-mode-map
"\C-c\C-f\C-u" 'message-goto-summary
)
2664 (define-key message-mode-map
"\C-c\C-f\C-i"
2665 'message-insert-or-toggle-importance
)
2666 (define-key message-mode-map
"\C-c\C-f\C-a"
2667 'message-generate-unsubscribed-mail-followup-to
)
2669 ;; modify headers (and insert notes in body)
2670 (define-key message-mode-map
"\C-c\C-fs" 'message-change-subject
)
2672 (define-key message-mode-map
"\C-c\C-fx" 'message-cross-post-followup-to
)
2673 ;; prefix+message-cross-post-followup-to = same w/o cross-post
2674 (define-key message-mode-map
"\C-c\C-ft" 'message-reduce-to-to-cc
)
2675 (define-key message-mode-map
"\C-c\C-fa" 'message-add-archive-header
)
2676 ;; mark inserted text
2677 (define-key message-mode-map
"\C-c\M-m" 'message-mark-inserted-region
)
2678 (define-key message-mode-map
"\C-c\M-f" 'message-mark-insert-file
)
2680 (define-key message-mode-map
"\C-c\C-b" 'message-goto-body
)
2681 (define-key message-mode-map
"\C-c\C-i" 'message-goto-signature
)
2683 (define-key message-mode-map
"\C-c\C-t" 'message-insert-to
)
2684 (define-key message-mode-map
"\C-c\C-fw" 'message-insert-wide-reply
)
2685 (define-key message-mode-map
"\C-c\C-n" 'message-insert-newsgroups
)
2686 (define-key message-mode-map
"\C-c\C-l" 'message-to-list-only
)
2687 (define-key message-mode-map
"\C-c\C-f\C-e" 'message-insert-expires
)
2689 (define-key message-mode-map
"\C-c\C-u" 'message-insert-or-toggle-importance
)
2690 (define-key message-mode-map
"\C-c\M-n"
2691 'message-insert-disposition-notification-to
)
2693 (define-key message-mode-map
"\C-c\C-y" 'message-yank-original
)
2694 (define-key message-mode-map
"\C-c\M-\C-y" 'message-yank-buffer
)
2695 (define-key message-mode-map
"\C-c\C-q" 'message-fill-yanked-message
)
2696 (define-key message-mode-map
"\C-c\C-w" 'message-insert-signature
)
2697 (define-key message-mode-map
"\C-c\M-h" 'message-insert-headers
)
2698 (define-key message-mode-map
"\C-c\C-r" 'message-caesar-buffer-body
)
2699 (define-key message-mode-map
"\C-c\C-o" 'message-sort-headers
)
2700 (define-key message-mode-map
"\C-c\M-r" 'message-rename-buffer
)
2702 (define-key message-mode-map
"\C-c\C-c" 'message-send-and-exit
)
2703 (define-key message-mode-map
"\C-c\C-s" 'message-send
)
2704 (define-key message-mode-map
"\C-c\C-k" 'message-kill-buffer
)
2705 (define-key message-mode-map
"\C-c\C-d" 'message-dont-send
)
2706 (define-key message-mode-map
"\C-c\n" 'gnus-delay-article
)
2708 (define-key message-mode-map
"\C-c\M-k" 'message-kill-address
)
2709 (define-key message-mode-map
"\C-c\C-e" 'message-elide-region
)
2710 (define-key message-mode-map
"\C-c\C-v" 'message-delete-not-region
)
2711 (define-key message-mode-map
"\C-c\C-z" 'message-kill-to-signature
)
2712 (define-key message-mode-map
"\M-\r" 'message-newline-and-reformat
)
2713 (define-key message-mode-map
[remap split-line
] 'message-split-line
)
2715 (define-key message-mode-map
"\C-c\C-a" 'mml-attach-file
)
2717 (define-key message-mode-map
"\C-a" 'message-beginning-of-line
)
2718 (define-key message-mode-map
"\t" 'message-tab
)
2720 (define-key message-mode-map
"\M-n" 'message-display-abbrev
))
2723 message-mode-menu message-mode-map
"Message Menu."
2725 ["Yank Original" message-yank-original message-reply-buffer
]
2726 ["Fill Yanked Message" message-fill-yanked-message t
]
2727 ["Insert Signature" message-insert-signature t
]
2728 ["Caesar (rot13) Message" message-caesar-buffer-body t
]
2729 ["Caesar (rot13) Region" message-caesar-region
(message-mark-active-p)]
2730 ["Elide Region" message-elide-region
2731 :active
(message-mark-active-p)
2732 ,@(if (featurep 'xemacs
) nil
2733 '(:help
"Replace text in region with an ellipsis"))]
2734 ["Delete Outside Region" message-delete-not-region
2735 :active
(message-mark-active-p)
2736 ,@(if (featurep 'xemacs
) nil
2737 '(:help
"Delete all quoted text outside region"))]
2738 ["Kill To Signature" message-kill-to-signature t
]
2739 ["Newline and Reformat" message-newline-and-reformat t
]
2740 ["Rename buffer" message-rename-buffer t
]
2741 ["Spellcheck" ispell-message
2742 ,@(if (featurep 'xemacs
) '(t)
2743 '(:help
"Spellcheck this message"))]
2745 ["Insert Region Marked" message-mark-inserted-region
2746 :active
(message-mark-active-p)
2747 ,@(if (featurep 'xemacs
) nil
2748 '(:help
"Mark region with enclosing tags"))]
2749 ["Insert File Marked..." message-mark-insert-file
2750 ,@(if (featurep 'xemacs
) '(t)
2751 '(:help
"Insert file at point marked with enclosing tags"))]
2753 ["Send Message" message-send-and-exit
2754 ,@(if (featurep 'xemacs
) '(t)
2755 '(:help
"Send this message"))]
2756 ["Postpone Message" message-dont-send
2757 ,@(if (featurep 'xemacs
) '(t)
2758 '(:help
"File this draft message and exit"))]
2759 ["Send at Specific Time..." gnus-delay-article
2760 ,@(if (featurep 'xemacs
) '(t)
2761 '(:help
"Ask, then arrange to send message at that time"))]
2762 ["Kill Message" message-kill-buffer
2763 ,@(if (featurep 'xemacs
) '(t)
2764 '(:help
"Delete this message without sending"))]
2766 ["Message manual" message-info
2767 ,@(if (featurep 'xemacs
) '(t)
2768 '(:help
"Display the Message manual"))]))
2771 message-mode-field-menu message-mode-map
""
2773 ["To" message-goto-to t
]
2774 ["From" message-goto-from t
]
2775 ["Subject" message-goto-subject t
]
2776 ["Change subject..." message-change-subject t
]
2777 ["Cc" message-goto-cc t
]
2778 ["Bcc" message-goto-bcc t
]
2779 ["Fcc" message-goto-fcc t
]
2780 ["Reply-To" message-goto-reply-to t
]
2781 ["Flag As Important" message-insert-importance-high
2782 ,@(if (featurep 'xemacs
) '(t)
2783 '(:help
"Mark this message as important"))]
2784 ["Flag As Unimportant" message-insert-importance-low
2785 ,@(if (featurep 'xemacs
) '(t)
2786 '(:help
"Mark this message as unimportant"))]
2788 message-insert-disposition-notification-to
2789 ,@(if (featurep 'xemacs
) '(t)
2790 '(:help
"Request a receipt notification"))]
2792 ;; (typical) news stuff
2793 ["Summary" message-goto-summary t
]
2794 ["Keywords" message-goto-keywords t
]
2795 ["Newsgroups" message-goto-newsgroups t
]
2796 ["Fetch Newsgroups" message-insert-newsgroups t
]
2797 ["Followup-To" message-goto-followup-to t
]
2798 ;; ["Followup-To (with note in body)" message-cross-post-followup-to t]
2799 ["Crosspost / Followup-To..." message-cross-post-followup-to t
]
2800 ["Distribution" message-goto-distribution t
]
2801 ["Expires" message-insert-expires t
]
2802 ["X-No-Archive" message-add-archive-header t
]
2804 ;; (typical) mailing-lists stuff
2805 ["Fetch To" message-insert-to
2806 ,@(if (featurep 'xemacs
) '(t)
2807 '(:help
"Insert a To header that points to the author."))]
2808 ["Fetch To and Cc" message-insert-wide-reply
2809 ,@(if (featurep 'xemacs
) '(t)
2811 "Insert To and Cc headers as if you were doing a wide reply."))]
2813 ["Send to list only" message-to-list-only t
]
2814 ["Mail-Followup-To" message-goto-mail-followup-to t
]
2815 ["Unsubscribed list post" message-generate-unsubscribed-mail-followup-to
2816 ,@(if (featurep 'xemacs
) '(t)
2817 '(:help
"Insert a reasonable `Mail-Followup-To:' header."))]
2818 ["Reduce To: to Cc:" message-reduce-to-to-cc t
]
2820 ["Sort Headers" message-sort-headers t
]
2821 ["Encode non-ASCII domain names" message-idna-to-ascii-rhs t
]
2822 ;; We hide `message-hidden-headers' by narrowing the buffer.
2823 ["Show Hidden Headers" widen t
]
2824 ["Goto Body" message-goto-body t
]
2825 ["Goto Signature" message-goto-signature t
]))
2827 (defvar message-tool-bar-map nil
)
2829 (defvar facemenu-add-face-function
)
2830 (defvar facemenu-remove-face-function
)
2832 ;;; Forbidden properties
2834 ;; We use `after-change-functions' to keep special text properties
2835 ;; that interfere with the normal function of message mode out of the
2838 (defcustom message-strip-special-text-properties t
2839 "Strip special properties from the message buffer.
2841 Emacs has a number of special text properties which can break message
2842 composing in various ways. If this option is set, message will strip
2843 these properties from the message composition buffer. However, some
2844 packages requires these properties to be present in order to work.
2845 If you use one of these packages, turn this option off, and hope the
2846 message composition doesn't break too bad."
2848 :group
'message-various
2849 :link
'(custom-manual "(message)Various Message Variables")
2852 (defvar message-forbidden-properties
2853 ;; No reason this should be clutter up customize. We make it a
2854 ;; property list (rather than a list of property symbols), to be
2855 ;; directly useful for `remove-text-properties'.
2856 '(field nil read-only nil invisible nil intangible nil
2857 mouse-face nil modification-hooks nil insert-in-front-hooks nil
2858 insert-behind-hooks nil point-entered nil point-left nil
)
2859 ;; Other special properties:
2860 ;; category, face, display: probably doesn't do any harm.
2861 ;; fontified: is used by font-lock.
2862 ;; syntax-table, local-map: I dunno.
2863 ;; We need to add XEmacs names to the list.
2864 "Property list of with properties forbidden in message buffers.
2865 The values of the properties are ignored, only the property names are used.")
2867 (defun message-tamago-not-in-use-p (pos)
2868 "Return t when tamago version 4 is not in use at the cursor position.
2869 Tamago version 4 is a popular input method for writing Japanese text.
2870 It uses the properties `intangible', `invisible', `modification-hooks'
2871 and `read-only' when translating ascii or kana text to kanji text.
2872 These properties are essential to work, so we should never strip them."
2873 (not (and (boundp 'egg-modefull-mode
)
2874 (symbol-value 'egg-modefull-mode
)
2875 (or (memq (get-text-property pos
'intangible
)
2876 '(its-part-1 its-part-2
))
2877 (get-text-property pos
'egg-end
)
2878 (get-text-property pos
'egg-lang
)
2879 (get-text-property pos
'egg-start
)))))
2881 (defsubst message-mail-alias-type-p
(type)
2882 (if (atom message-mail-alias-type
)
2883 (eq message-mail-alias-type type
)
2884 (memq type message-mail-alias-type
)))
2886 (defun message-strip-forbidden-properties (begin end
&optional old-length
)
2887 "Strip forbidden properties between BEGIN and END, ignoring the third arg.
2888 This function is intended to be called from `after-change-functions'.
2889 See also `message-forbidden-properties'."
2890 (when (and (message-mail-alias-type-p 'ecomplete
)
2891 (memq this-command message-self-insert-commands
))
2892 (message-display-abbrev))
2893 (when (and message-strip-special-text-properties
2894 (message-tamago-not-in-use-p begin
))
2895 (let ((buffer-read-only nil
)
2896 (inhibit-read-only t
))
2897 (remove-text-properties begin end message-forbidden-properties
))))
2899 (autoload 'ecomplete-setup
"ecomplete") ;; for Emacs <23.
2902 (define-derived-mode message-mode text-mode
"Message"
2903 "Major mode for editing mail and news to be sent.
2904 Like Text Mode but with these additional commands:\\<message-mode-map>
2905 C-c C-s `message-send' (send the message) C-c C-c `message-send-and-exit'
2906 C-c C-d Postpone sending the message C-c C-k Kill the message
2907 C-c C-f move to a header field (and create it if there isn't):
2908 C-c C-f C-t move to To C-c C-f C-s move to Subject
2909 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
2910 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
2911 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
2912 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
2913 C-c C-f C-o move to From (\"Originator\")
2914 C-c C-f C-f move to Followup-To
2915 C-c C-f C-m move to Mail-Followup-To
2916 C-c C-f C-e move to Expires
2917 C-c C-f C-i cycle through Importance values
2918 C-c C-f s change subject and append \"(was: <Old Subject>)\"
2919 C-c C-f x crossposting with FollowUp-To header and note in body
2920 C-c C-f t replace To: header with contents of Cc: or Bcc:
2921 C-c C-f a Insert X-No-Archive: header and a note in the body
2922 C-c C-t `message-insert-to' (add a To header to a news followup)
2923 C-c C-l `message-to-list-only' (removes all but list address in to/cc)
2924 C-c C-n `message-insert-newsgroups' (add a Newsgroup header to a news reply)
2925 C-c C-b `message-goto-body' (move to beginning of message text).
2926 C-c C-i `message-goto-signature' (move to the beginning of the signature).
2927 C-c C-w `message-insert-signature' (insert `message-signature-file' file).
2928 C-c C-y `message-yank-original' (insert current message, if any).
2929 C-c C-q `message-fill-yanked-message' (fill what was yanked).
2930 C-c C-e `message-elide-region' (elide the text between point and mark).
2931 C-c C-v `message-delete-not-region' (remove the text outside the region).
2932 C-c C-z `message-kill-to-signature' (kill the text up to the signature).
2933 C-c C-r `message-caesar-buffer-body' (rot13 the message body).
2934 C-c C-a `mml-attach-file' (attach a file as MIME).
2935 C-c C-u `message-insert-or-toggle-importance' (insert or cycle importance).
2936 C-c M-n `message-insert-disposition-notification-to' (request receipt).
2937 C-c M-m `message-mark-inserted-region' (mark region with enclosing tags).
2938 C-c M-f `message-mark-insert-file' (insert file marked with enclosing tags).
2939 M-RET `message-newline-and-reformat' (break the line and reformat)."
2940 (setq local-abbrev-table text-mode-abbrev-table
)
2941 (set (make-local-variable 'message-reply-buffer
) nil
)
2942 (set (make-local-variable 'message-inserted-headers
) nil
)
2943 (set (make-local-variable 'message-send-actions
) nil
)
2944 (set (make-local-variable 'message-return-action
) nil
)
2945 (set (make-local-variable 'message-exit-actions
) nil
)
2946 (set (make-local-variable 'message-kill-actions
) nil
)
2947 (set (make-local-variable 'message-postpone-actions
) nil
)
2948 (set (make-local-variable 'message-draft-article
) nil
)
2949 (setq buffer-offer-save t
)
2950 (set (make-local-variable 'facemenu-add-face-function
)
2952 (let ((face-fun (cdr (assq face message-face-alist
))))
2954 (funcall face-fun
(point) end
)
2955 (error "Face %s not configured for %s mode" face mode-name
)))
2957 (set (make-local-variable 'facemenu-remove-face-function
) t
)
2958 (set (make-local-variable 'message-reply-headers
) nil
)
2959 (make-local-variable 'message-newsreader
)
2960 (make-local-variable 'message-mailer
)
2961 (make-local-variable 'message-post-method
)
2962 (set (make-local-variable 'message-sent-message-via
) nil
)
2963 (set (make-local-variable 'message-checksum
) nil
)
2964 (set (make-local-variable 'message-mime-part
) 0)
2965 (message-setup-fill-variables)
2966 (when message-fill-column
2967 (setq fill-column message-fill-column
)
2968 (turn-on-auto-fill))
2969 ;; Allow using comment commands to add/remove quoting.
2970 ;; (set (make-local-variable 'comment-start) message-yank-prefix)
2971 (when message-yank-prefix
2972 (set (make-local-variable 'comment-start
) message-yank-prefix
)
2973 (set (make-local-variable 'comment-start-skip
)
2974 (concat "^" (regexp-quote message-yank-prefix
) "[ \t]*")))
2975 (if (featurep 'xemacs
)
2976 (message-setup-toolbar)
2977 (set (make-local-variable 'font-lock-defaults
)
2978 '(message-font-lock-keywords t
))
2979 (if (boundp 'tool-bar-map
)
2980 (set (make-local-variable 'tool-bar-map
) (message-make-tool-bar))))
2981 (easy-menu-add message-mode-menu message-mode-map
)
2982 (easy-menu-add message-mode-field-menu message-mode-map
)
2983 (gnus-make-local-hook 'after-change-functions
)
2984 ;; Mmmm... Forbidden properties...
2985 (add-hook 'after-change-functions
'message-strip-forbidden-properties
2987 ;; Allow mail alias things.
2989 ((message-mail-alias-type-p 'abbrev
)
2990 (if (fboundp 'mail-abbrevs-setup
)
2991 (mail-abbrevs-setup)
2992 (if (fboundp 'mail-aliases-setup
) ; warning avoidance
2993 (mail-aliases-setup))))
2994 ((message-mail-alias-type-p 'ecomplete
)
2996 (add-hook 'completion-at-point-functions
'message-completion-function nil t
)
2997 (unless buffer-file-name
2998 (message-set-auto-save-file-name))
2999 (unless (buffer-base-buffer)
3000 ;; Don't enable multibyte on an indirect buffer. Maybe enabling
3001 ;; multibyte is not necessary at all. -- zsh
3002 (mm-enable-multibyte))
3003 (set (make-local-variable 'indent-tabs-mode
) nil
) ;No tabs for indentation.
3006 (defun message-setup-fill-variables ()
3007 "Setup message fill variables."
3008 (set (make-local-variable 'fill-paragraph-function
)
3009 'message-fill-paragraph
)
3010 (make-local-variable 'paragraph-separate
)
3011 (make-local-variable 'paragraph-start
)
3012 (make-local-variable 'adaptive-fill-regexp
)
3013 (unless (boundp 'adaptive-fill-first-line-regexp
)
3014 (setq adaptive-fill-first-line-regexp nil
))
3015 (make-local-variable 'adaptive-fill-first-line-regexp
)
3016 (let ((quote-prefix-regexp
3017 ;; User should change message-cite-prefix-regexp if
3018 ;; message-yank-prefix is set to an abnormal value.
3019 (concat "\\(" message-cite-prefix-regexp
"\\)[ \t]*")))
3020 (setq paragraph-start
3022 (regexp-quote mail-header-separator
) "$\\|"
3023 "[ \t]*$\\|" ; blank lines
3024 "-- $\\|" ; signature delimiter
3025 "---+$\\|" ; delimiters for forwarded messages
3026 page-delimiter
"$\\|" ; spoiler warnings
3027 ".*wrote:$\\|" ; attribution lines
3028 quote-prefix-regexp
"$\\|" ; empty lines in quoted text
3030 "<#!*/?\\(multipart\\|part\\|external\\|mml\\|secure\\)"))
3031 (setq paragraph-separate paragraph-start
)
3032 (setq adaptive-fill-regexp
3033 (concat quote-prefix-regexp
"\\|" adaptive-fill-regexp
))
3034 (setq adaptive-fill-first-line-regexp
3035 (concat quote-prefix-regexp
"\\|"
3036 adaptive-fill-first-line-regexp
)))
3037 (make-local-variable 'auto-fill-inhibit-regexp
)
3038 ;;(setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:")
3039 (setq auto-fill-inhibit-regexp nil
)
3040 (make-local-variable 'normal-auto-fill-function
)
3041 (setq normal-auto-fill-function
'message-do-auto-fill
)
3042 ;; KLUDGE: auto fill might already be turned on in `text-mode-hook'.
3043 ;; In that case, ensure that it uses the right function. The real
3044 ;; solution would be not to use `define-derived-mode', and run
3045 ;; `text-mode-hook' ourself at the end of the mode.
3046 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> Date: 2001-10-19.
3047 ;; This kludge is unneeded in Emacs>=21 since define-derived-mode is
3048 ;; now careful to run parent hooks after the body. --Stef
3049 (when auto-fill-function
3050 (setq auto-fill-function normal-auto-fill-function
)))
3055 ;;; Message mode commands
3058 ;;; Movement commands
3060 (defun message-goto-to ()
3061 "Move point to the To header."
3064 (message-position-on-field "To"))
3066 (defun message-goto-from ()
3067 "Move point to the From header."
3070 (message-position-on-field "From"))
3072 (defun message-goto-subject ()
3073 "Move point to the Subject header."
3076 (message-position-on-field "Subject"))
3078 (defun message-goto-cc ()
3079 "Move point to the Cc header."
3082 (message-position-on-field "Cc" "To"))
3084 (defun message-goto-bcc ()
3085 "Move point to the Bcc header."
3088 (message-position-on-field "Bcc" "Cc" "To"))
3090 (defun message-goto-fcc ()
3091 "Move point to the Fcc header."
3094 (message-position-on-field "Fcc" "To" "Newsgroups"))
3096 (defun message-goto-reply-to ()
3097 "Move point to the Reply-To header."
3100 (message-position-on-field "Reply-To" "Subject"))
3102 (defun message-goto-newsgroups ()
3103 "Move point to the Newsgroups header."
3106 (message-position-on-field "Newsgroups"))
3108 (defun message-goto-distribution ()
3109 "Move point to the Distribution header."
3112 (message-position-on-field "Distribution"))
3114 (defun message-goto-followup-to ()
3115 "Move point to the Followup-To header."
3118 (message-position-on-field "Followup-To" "Newsgroups"))
3120 (defun message-goto-mail-followup-to ()
3121 "Move point to the Mail-Followup-To header."
3124 (message-position-on-field "Mail-Followup-To" "To"))
3126 (defun message-goto-keywords ()
3127 "Move point to the Keywords header."
3130 (message-position-on-field "Keywords" "Subject"))
3132 (defun message-goto-summary ()
3133 "Move point to the Summary header."
3136 (message-position-on-field "Summary" "Subject"))
3139 (defmacro message-called-interactively-p
(kind)
3142 (eval '(called-interactively-p 'any
))
3144 `(called-interactively-p ,kind
))
3146 (wrong-number-of-arguments '(called-interactively-p))
3148 (void-function '(interactive-p)))))
3150 (defun message-goto-body ()
3151 "Move point to the beginning of the message body."
3153 (when (and (message-called-interactively-p 'any
)
3154 (looking-at "[ \t]*\n"))
3157 (goto-char (point-min))
3158 (or (search-forward (concat "\n" mail-header-separator
"\n") nil t
)
3159 (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t
)))
3161 (defun message-in-body-p ()
3162 "Return t if point is in the message body."
3165 (goto-char (point-min))
3166 (or (search-forward (concat "\n" mail-header-separator
"\n") nil t
)
3167 (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t
))
3170 (defun message-goto-eoh ()
3171 "Move point to the end of the headers."
3176 (defun message-goto-signature ()
3177 "Move point to the beginning of the message signature.
3178 If there is no signature in the article, go to the end and
3182 (goto-char (point-min))
3183 (if (re-search-forward message-signature-separator nil t
)
3185 (goto-char (point-max))
3188 (defun message-generate-unsubscribed-mail-followup-to (&optional include-cc
)
3189 "Insert a reasonable MFT header in a post to an unsubscribed list.
3190 When making original posts to a mailing list you are not subscribed to,
3191 you have to type in a MFT header by hand. The contents, usually, are
3192 the addresses of the list and your own address. This function inserts
3193 such a header automatically. It fetches the contents of the To: header
3194 in the current mail buffer, and appends the current `user-mail-address'.
3196 If the optional argument INCLUDE-CC is non-nil, the addresses in the
3197 Cc: header are also put into the MFT."
3202 (message-narrow-to-headers)
3203 (message-remove-header "Mail-Followup-To")
3204 (setq cc
(and include-cc
(message-fetch-field "Cc")))
3206 (concat (message-fetch-field "To") "," cc
)
3207 (message-fetch-field "To"))))
3208 (message-goto-mail-followup-to)
3209 (insert (concat tos
", " user-mail-address
))))
3213 (defun message-insert-to (&optional force
)
3214 "Insert a To header that points to the author of the article being replied to.
3215 If the original author requested not to be sent mail, don't insert unless the
3216 prefix FORCE is given."
3218 (let* ((mct (message-fetch-reply-field "mail-copies-to"))
3219 (dont (and mct
(or (equal (downcase mct
) "never")
3220 (equal (downcase mct
) "nobody"))))
3221 (to (or (message-fetch-reply-field "mail-reply-to")
3222 (message-fetch-reply-field "reply-to")
3223 (message-fetch-reply-field "from"))))
3227 "Ignoring the user request not to have copies sent via mail"
3228 "Complying with the user request not to have copies sent via mail")))
3229 (when (and force
(not to
))
3230 (error "No mail address in the article"))
3231 (when (and to
(or force
(not dont
)))
3232 (message-carefully-insert-headers (list (cons 'To to
))))))
3234 (defun message-insert-wide-reply ()
3235 "Insert To and Cc headers as if you were doing a wide reply."
3237 (let ((headers (message-with-reply-buffer
3238 (message-get-reply-headers t
))))
3239 (message-carefully-insert-headers headers
)))
3241 (defcustom message-header-synonyms
3244 "List of lists of header synonyms.
3245 E.g., if this list contains a member list with elements `Cc' and `To',
3246 then `message-carefully-insert-headers' will not insert a `To' header
3247 when the message is already `Cc'ed to the recipient."
3249 :group
'message-headers
3250 :link
'(custom-manual "(message)Message Headers")
3251 :type
'(repeat sexp
))
3253 (defun message-carefully-insert-headers (headers)
3254 "Insert the HEADERS, an alist, into the message buffer.
3255 Does not insert the headers when they are already present there
3256 or in the synonym headers, defined by `message-header-synonyms'."
3257 ;; FIXME: Should compare only the address and not the full name. Comparison
3258 ;; should be done case-folded (and with `string=' rather than
3260 ;; (mail-strip-quoted-names "Foo Bar <foo@bar>, bla@fasel (Bla Fasel)")
3261 (dolist (header headers
)
3262 (let* ((header-name (symbol-name (car header
)))
3263 (new-header (cdr header
))
3264 (synonyms (loop for synonym in message-header-synonyms
3265 when
(memq (car header
) synonym
) return synonym
))
3267 (loop for synonym in synonyms
3268 for old-header
= (mail-fetch-field (symbol-name synonym
))
3269 when
(and old-header
(string-match new-header old-header
))
3272 (message "already have `%s' in `%s'" new-header old-header
)
3273 (when (and (message-position-on-field header-name
)
3274 (setq old-header
(mail-fetch-field header-name
))
3275 (not (string-match "\\` *\\'" old-header
)))
3277 (insert new-header
)))))
3279 (defun message-widen-reply ()
3280 "Widen the reply to include maximum recipients."
3283 (and (bufferp message-reply-buffer
)
3284 (buffer-name message-reply-buffer
)
3285 (with-current-buffer message-reply-buffer
3286 (message-get-reply-headers t
)))))
3289 (message-narrow-to-headers)
3290 (dolist (elem follow-to
)
3291 (message-remove-header (symbol-name (car elem
)))
3292 (goto-char (point-min))
3293 (insert (symbol-name (car elem
)) ": "
3294 (cdr elem
) "\n"))))))
3296 (defun message-insert-newsgroups ()
3297 "Insert the Newsgroups header from the article being replied to."
3299 (let ((old-newsgroups (mail-fetch-field "newsgroups"))
3300 (new-newsgroups (message-fetch-reply-field "newsgroups"))
3303 (message-position-on-field "Newsgroups")
3305 ((not new-newsgroups
)
3306 (error "No Newsgroups to insert"))
3307 ((not old-newsgroups
)
3308 (insert new-newsgroups
))
3310 (setq new-newsgroups
(split-string new-newsgroups
"[, ]+")
3311 old-newsgroups
(split-string old-newsgroups
"[, ]+"))
3312 (dolist (group new-newsgroups
)
3313 (unless (member group old-newsgroups
)
3314 (push group insert-newsgroups
)))
3315 (if (null insert-newsgroups
)
3316 (error "Newgroup%s already in the header"
3317 (if (> (length new-newsgroups
) 1)
3319 (when old-newsgroups
3321 (dolist (group insert-newsgroups
)
3325 (insert group
)))))))
3329 ;;; Various commands
3331 (defun message-delete-not-region (beg end
)
3332 "Delete everything in the body of the current message outside of the region."
3337 ;; snarf citation prefix, if appropriate
3338 (unless (eq (point) (progn (beginning-of-line) (point)))
3339 (when (looking-at message-cite-prefix-regexp
)
3340 (setq citeprefix
(match-string 0))))
3342 (delete-region (point) (if (not (message-goto-signature))
3348 (delete-region beg
(progn (message-goto-body)
3352 (insert citeprefix
))))
3353 (when (message-goto-signature)
3356 (defun message-kill-to-signature (&optional arg
)
3357 "Kill all text up to the signature.
3358 If a numeric argument or prefix arg is given, leave that number
3359 of lines before the signature intact."
3363 (let ((point (point)))
3364 (narrow-to-region point
(point-max))
3365 (message-goto-signature)
3367 (if (and arg
(numberp arg
))
3368 (forward-line (- -
1 arg
))
3370 (unless (= point
(point))
3371 (kill-region point
(point))
3375 (defun message-newline-and-reformat (&optional arg not-break
)
3376 "Insert four newlines, and then reformat if inside quoted text.
3377 Prefix arg means justify as well."
3378 (interactive (list (if current-prefix-arg
'full
)))
3379 (let (quoted point beg end leading-space bolp fill-paragraph-function
)
3380 (setq point
(point))
3383 (setq bolp
(= beg point
))
3384 ;; Find first line of the paragraph.
3386 (while (and (not (eobp))
3387 (not (looking-at message-cite-prefix-regexp
))
3388 (looking-at paragraph-start
))
3391 (when (looking-at message-cite-prefix-regexp
)
3392 (setq quoted
(match-string 0))
3393 (goto-char (match-end 0))
3394 (looking-at "[ \t]*")
3395 (setq leading-space
(match-string 0)))
3399 (< (- point beg
) (length quoted
)))
3400 ;; break inside the cite prefix.
3406 (while (and (not (eobp))
3407 (not (looking-at paragraph-separate
))
3408 (looking-at message-cite-prefix-regexp
)
3409 (equal quoted
(match-string 0)))
3410 (goto-char (match-end 0))
3411 (looking-at "[ \t]*")
3412 (if (> (length leading-space
) (length (match-string 0)))
3413 (setq leading-space
(match-string 0)))
3417 (while (and (if (bobp) nil
(forward-line -
1) t
)
3418 (not (looking-at paragraph-start
))
3419 (looking-at message-cite-prefix-regexp
)
3420 (equal quoted
(match-string 0)))
3422 (goto-char (match-end 0))
3423 (looking-at "[ \t]*")
3424 (if (> (length leading-space
) (length (match-string 0)))
3425 (setq leading-space
(match-string 0)))))
3426 (while (and (not (eobp))
3427 (not (looking-at paragraph-separate
))
3428 (not (looking-at message-cite-prefix-regexp
)))
3432 (while (and (if (bobp) nil
(forward-line -
1) t
)
3433 (not (looking-at paragraph-start
))
3434 (not (looking-at message-cite-prefix-regexp
)))
3435 (setq beg
(point))))
3438 (narrow-to-region beg end
)
3445 (setq point
(point))
3446 ;; (newline 2) doesn't mark both newline's as hard, so call
3447 ;; newline twice. -jas
3450 (delete-region (point) (re-search-forward "[ \t]*"))
3451 (when (and quoted
(not bolp
))
3452 (insert quoted leading-space
)))
3455 (let* ((adaptive-fill-regexp
3456 (regexp-quote (concat quoted leading-space
)))
3457 (adaptive-fill-first-line-regexp
3458 adaptive-fill-regexp
))
3459 (fill-paragraph arg
))
3460 (fill-paragraph arg
))
3461 (if point
(goto-char point
)))))
3463 (defun message-fill-paragraph (&optional arg
)
3464 "Message specific function to fill a paragraph.
3465 This function is used as the value of `fill-paragraph-function' in
3466 Message buffers and is not meant to be called directly."
3467 (interactive (list (if current-prefix-arg
'full
)))
3468 (if (if (boundp 'filladapt-mode
) filladapt-mode
)
3470 (if (message-point-in-header-p)
3471 (message-fill-field)
3472 (message-newline-and-reformat arg t
))
3475 (defun message-point-in-header-p ()
3476 "Return t if point is in the header."
3481 (concat "^" (regexp-quote mail-header-separator
) "\n") nil t
))
3483 (concat "^" (regexp-quote mail-header-separator
) "\n") nil t
))))
3485 (defun message-do-auto-fill ()
3486 "Like `do-auto-fill', but don't fill in message header."
3487 (unless (message-point-in-header-p)
3490 (defun message-insert-signature (&optional force
)
3491 "Insert a signature. See documentation for variable `message-signature'."
3492 (interactive (list 0))
3495 ((and (null message-signature
)
3498 (goto-char (point-max))
3499 (not (re-search-backward message-signature-separator nil t
))))
3500 ((and (null message-signature
)
3503 ((functionp message-signature
)
3504 (funcall message-signature
))
3505 ((listp message-signature
)
3506 (eval message-signature
))
3507 (t message-signature
)))
3510 (cond ((stringp signature
)
3512 ((and (eq t signature
) message-signature-file
)
3513 (setq signature-file
3514 (if (and message-signature-directory
3515 ;; don't actually use the signature directory
3516 ;; if message-signature-file contains a path.
3517 (not (file-name-directory
3518 message-signature-file
)))
3519 (expand-file-name message-signature-file
3520 message-signature-directory
)
3521 message-signature-file
))
3522 (file-exists-p signature-file
))))
3524 (goto-char (point-max))
3525 ;; Insert the signature.
3528 (when message-signature-insert-empty-line
3531 (if (eq signature t
)
3532 (insert-file-contents signature-file
)
3534 (goto-char (point-max))
3535 (or (bolp) (insert "\n")))))
3537 (defun message-insert-importance-high ()
3538 "Insert header to mark message as important."
3542 (message-narrow-to-headers)
3543 (message-remove-header "Importance"))
3545 (insert "Importance: high\n")))
3547 (defun message-insert-importance-low ()
3548 "Insert header to mark message as unimportant."
3552 (message-narrow-to-headers)
3553 (message-remove-header "Importance"))
3555 (insert "Importance: low\n")))
3557 (defun message-insert-or-toggle-importance ()
3558 "Insert a \"Importance: high\" header, or cycle through the header values.
3559 The three allowed values according to RFC 1327 are `high', `normal'
3566 (message-narrow-to-headers)
3567 (when (setq cur
(message-fetch-field "Importance"))
3568 (message-remove-header "Importance")
3569 (setq new
(cond ((string= cur
"high")
3571 ((string= cur
"low")
3576 (insert (format "Importance: %s\n" new
)))))
3578 (defun message-insert-disposition-notification-to ()
3579 "Request a disposition notification (return receipt) to this message.
3580 Note that this should not be used in newsgroups."
3584 (message-narrow-to-headers)
3585 (message-remove-header "Disposition-Notification-To"))
3587 (insert (format "Disposition-Notification-To: %s\n"
3588 (or (message-field-value "Reply-to")
3589 (message-field-value "From")
3590 (message-make-from))))))
3592 (defun message-elide-region (b e
)
3593 "Elide the text in the region.
3594 An ellipsis (from `message-elide-ellipsis') will be inserted where the
3597 (let ((lines (count-lines b e
))
3600 (insert (format-spec message-elide-ellipsis
3604 (defvar message-caesar-translation-table nil
)
3606 (defun message-caesar-region (b e
&optional n
)
3607 "Caesar rotate region B to E by N, default 13, for decrypting netnews."
3610 (min (point) (or (mark t
) (point)))
3611 (max (point) (or (mark t
) (point)))
3612 (when current-prefix-arg
3613 (prefix-numeric-value current-prefix-arg
))))
3615 (setq n
(if (numberp n
) (mod n
26) 13)) ;canonize N
3616 (unless (or (zerop n
) ; no action needed for a rot of 0
3617 (= b e
)) ; no region to rotate
3618 ;; We build the table, if necessary.
3619 (when (or (not message-caesar-translation-table
)
3620 (/= (aref message-caesar-translation-table ?a
) (+ ?a n
)))
3621 (setq message-caesar-translation-table
3622 (message-make-caesar-translation-table n
)))
3623 (translate-region b e message-caesar-translation-table
)))
3625 (defun message-make-caesar-translation-table (n)
3626 "Create a rot table with offset N."
3628 (table (make-string 256 0)))
3629 (while (< (incf i
) 256)
3632 (substring table
0 ?A
)
3633 (substring table
(+ ?A n
) (+ ?A n
(- 26 n
)))
3634 (substring table ?A
(+ ?A n
))
3635 (substring table
(+ ?A
26) ?a
)
3636 (substring table
(+ ?a n
) (+ ?a n
(- 26 n
)))
3637 (substring table ?a
(+ ?a n
))
3638 (substring table
(+ ?a
26) 255))))
3640 (defun message-caesar-buffer-body (&optional rotnum wide
)
3641 "Caesar rotate all letters in the current buffer by 13 places.
3642 Used to encode/decode possibly offensive messages (commonly in rec.humor).
3643 With prefix arg, specifies the number of places to rotate each letter forward.
3644 Mail and USENET news headers are not rotated unless WIDE is non-nil."
3645 (interactive (if current-prefix-arg
3646 (list (prefix-numeric-value current-prefix-arg
))
3650 (when (and (not wide
) (message-goto-body))
3651 (narrow-to-region (point) (point-max)))
3652 (message-caesar-region (point-min) (point-max) rotnum
))))
3654 (defun message-pipe-buffer-body (program)
3655 "Pipe the message body in the current buffer through PROGRAM."
3658 (when (message-goto-body)
3659 (narrow-to-region (point) (point-max)))
3660 (shell-command-on-region
3661 (point-min) (point-max) program nil t
))))
3663 (defun message-rename-buffer (&optional enter-string
)
3664 "Rename the *message* buffer to \"*message* RECIPIENT\".
3665 If the function is run with a prefix, it will ask for a new buffer
3666 name, rather than giving an automatic name."
3667 (interactive "Pbuffer name: ")
3670 (goto-char (point-min))
3671 (narrow-to-region (point)
3672 (search-forward mail-header-separator nil
'end
))
3674 (if (message-news-p) (message-fetch-field "Newsgroups")
3675 (message-fetch-field "To"))
3678 (if (string-match "," mail-to
)
3679 (concat (substring mail-to
0 (match-beginning 0)) ", ...")
3681 (name-default (concat "*message* " mail-trimmed-to
))
3682 (name (if enter-string
3683 (read-string "New buffer name: " name-default
)
3685 (rename-buffer name t
)))))
3687 (defun message-fill-yanked-message (&optional justifyp
)
3688 "Fill the paragraphs of a message yanked into this one.
3689 Numeric argument means justify as well."
3692 (goto-char (point-min))
3693 (search-forward (concat "\n" mail-header-separator
"\n") nil t
)
3694 (let ((fill-prefix message-yank-prefix
))
3695 (fill-individual-paragraphs (point) (point-max) justifyp
))))
3697 (defun message-indent-citation (&optional start end yank-only
)
3698 "Modify text just inserted from a message to be cited.
3699 The inserted text should be the region.
3700 When this function returns, the region is again around the modified text.
3702 Normally, indent each nonblank line `message-indentation-spaces' spaces.
3703 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
3704 (unless start
(setq start
(point)))
3706 ;; Remove unwanted headers.
3707 (when message-ignored-cited-headers
3712 (if (search-forward "\n\n" nil t
)
3715 (message-remove-header message-ignored-cited-headers t
)
3716 (when (= (point-min) (point-max))
3717 (setq all-removed t
))
3718 (goto-char (point-max)))
3722 ;; Delete blank lines at the start of the buffer.
3723 (while (and (point-min)
3726 (message-delete-line))
3727 ;; Delete blank lines at the end of the buffer.
3728 (goto-char (point-max))
3729 (unless (eq (preceding-char) ?
\n)
3731 (while (and (zerop (forward-line -
1))
3733 (message-delete-line)))
3734 ;; Do the indentation.
3735 (if (null message-yank-prefix
)
3736 (indent-rigidly start
(or end
(mark t
)) message-indentation-spaces
)
3739 (while (< (point) (or end
(mark t
)))
3740 (cond ((looking-at ">")
3741 (insert message-yank-cited-prefix
))
3743 (insert message-yank-empty-prefix
))
3745 (insert message-yank-prefix
)))
3749 (defun message-remove-blank-cited-lines (&optional remove
)
3750 "Remove cited lines containing only blanks.
3751 If REMOVE is non-nil, remove newlines, too.
3753 To use this automatically, you may add this function to
3754 `gnus-message-setup-hook'."
3759 (when (boundp 'message-yank-cited-prefix
)
3760 (concat message-yank-cited-prefix
"\\|"))
3764 (gnus-message 8 "removing `%s'" citexp
)
3767 (while (re-search-forward citexp nil t
)
3768 (replace-match (if remove
"" "\n"))))))
3770 (defun message--yank-original-internal (arg)
3771 (let ((modified (buffer-modified-p))
3773 (when (and message-reply-buffer
3774 message-cite-function
)
3775 (when (equal message-cite-reply-position
'above
)
3778 (buffer-substring (message-goto-body)
3780 (delete-region (message-goto-body) (point-max))))
3781 (if (bufferp message-reply-buffer
)
3782 (delete-windows-on message-reply-buffer t
))
3783 (push-mark (save-excursion
3785 ((bufferp message-reply-buffer
)
3786 (insert-buffer-substring message-reply-buffer
))
3787 ((and (consp message-reply-buffer
)
3788 (functionp (car message-reply-buffer
)))
3789 (apply (car message-reply-buffer
)
3790 (cdr message-reply-buffer
))))
3795 (funcall message-cite-function
)
3796 (unless (eq (char-before (mark t
)) ?
\n)
3798 (goto-char (mark t
))
3799 (insert-before-markers ?
\n)
3801 (case message-cite-reply-position
3805 (insert (if (bolp) "\n" "\n\n"))
3806 (message-goto-body))
3808 (message-goto-signature)))
3809 ;; Add a `message-setup-very-last-hook' here?
3810 ;; Add `gnus-article-highlight-citation' here?
3812 (setq message-checksum
(message-checksum))))))
3814 (defun message-yank-original (&optional arg
)
3815 "Insert the message being replied to, if any.
3816 Puts point before the text and mark after.
3817 Normally indents each nonblank line ARG spaces (default 3). However,
3818 if `message-yank-prefix' is non-nil, insert that prefix on each line.
3820 This function uses `message-cite-function' to do the actual citing.
3822 Just \\[universal-argument] as argument means don't indent, insert no
3823 prefix, and don't delete any headers."
3825 ;; eval the let forms contained in message-cite-style
3827 `(let ,message-cite-style
3828 (message--yank-original-internal ',arg
))))
3830 (defun message-yank-buffer (buffer)
3831 "Insert BUFFER into the current buffer and quote it."
3832 (interactive "bYank buffer: ")
3833 (let ((message-reply-buffer (get-buffer buffer
)))
3834 (save-window-excursion
3835 (message-yank-original))))
3837 (defun message-buffers ()
3838 "Return a list of active message buffers."
3840 (save-current-buffer
3841 (dolist (buffer (buffer-list t
))
3843 (when (and (derived-mode-p 'message-mode
)
3844 (null message-sent-message-via
))
3845 (push (buffer-name buffer
) buffers
))))
3846 (nreverse buffers
)))
3848 (defun message-cite-original-1 (strip-signature)
3849 "Cite an original message.
3850 If STRIP-SIGNATURE is non-nil, strips off the signature from the
3853 This function uses `mail-citation-hook' if that is non-nil."
3854 (if (and (boundp 'mail-citation-hook
)
3856 (run-hooks 'mail-citation-hook
)
3857 (let* ((start (point))
3861 (when message-indent-citation-function
3862 (if (listp message-indent-citation-function
)
3863 message-indent-citation-function
3864 (list message-indent-citation-function
))))
3865 ;; This function may be called by `gnus-summary-yank-message' and
3866 ;; may insert a different article from the original. So, we will
3867 ;; modify the value of `message-reply-headers' with that article.
3868 (message-reply-headers
3870 (narrow-to-region start end
)
3871 (message-narrow-to-head-1)
3872 (setq x-no-archive
(message-fetch-field "x-no-archive"))
3874 (or (message-fetch-field "subject") "none")
3875 (or (message-fetch-field "from") "nobody")
3876 (message-fetch-field "date")
3877 (message-fetch-field "message-id" t
)
3878 (message-fetch-field "references")
3880 (mml-quote-region start end
)
3881 (when strip-signature
3885 (when (re-search-backward message-signature-separator start t
)
3886 ;; Also peel off any blank lines before the signature.
3888 (while (looking-at "^[ \t]*$")
3891 (delete-region (point) end
)
3892 (unless (search-backward "\n\n" start t
)
3893 ;; Insert a blank line if it is peeled off.
3896 (mapc 'funcall functions
)
3897 (when message-citation-line-function
3900 (funcall message-citation-line-function
))
3901 (when (and x-no-archive
3902 (not message-cite-articles-with-x-no-archive
)
3903 (string-match "yes" x-no-archive
))
3905 (delete-region (point) (mark t
))
3906 (insert "> [Quoted text removed due to X-No-Archive]\n")
3908 (forward-line -
1)))))
3910 (defun message-cite-original ()
3911 "Cite function in the standard Message manner."
3912 (message-cite-original-1 nil
))
3914 (defvar gnus-extract-address-components
)
3916 (autoload 'format-spec
"format-spec")
3918 (defun message-insert-formatted-citation-line (&optional from date
)
3919 "Function that inserts a formatted citation line.
3921 See `message-citation-line-format'."
3922 ;; The optional args are for testing/debugging. They will disappear later.
3924 ;; (with-temp-buffer
3925 ;; (message-insert-formatted-citation-line
3926 ;; "John Doe <john.doe@example.invalid>"
3929 (when (or message-reply-headers
(and from date
))
3931 (setq from
(mail-header-from message-reply-headers
)))
3932 (let* ((data (condition-case ()
3933 (funcall (if (boundp gnus-extract-address-components
)
3934 gnus-extract-address-components
3935 'mail-extract-address-components
)
3941 (net (car (cdr data
)))
3942 (name-or-net (or (car data
)
3943 (car (cdr data
)) from
))
3947 ;; We need Gnus functionality if the user wants date or time from
3948 ;; the original article:
3949 (when (string-match "%[^fnNFL]" message-citation-line-format
)
3950 (autoload 'gnus-date-get-time
"gnus-util")
3951 (gnus-date-get-time (mail-header-date message-reply-headers
)))))
3954 (when (stringp name
)
3955 ;; Guess first name and last name:
3956 (cond ((string-match
3957 "\\`\\(\\w\\|[-.]\\)+ \\(\\w\\|[-.]\\)+\\'" name
)
3958 (setq fname
(nth 0 (split-string name
"[ \t]+"))
3959 lname
(nth 1 (split-string name
"[ \t]+"))))
3961 "\\`\\(\\w\\|[-.]\\)+, \\(\\w\\|[-.]\\)+\\'" name
)
3962 (setq fname
(nth 1 (split-string name
"[ \t,]+"))
3963 lname
(nth 0 (split-string name
"[ \t,]+"))))
3965 "\\`\\(\\w\\|[-.]\\)+\\'" name
)
3968 ;; The following letters are not used in `format-time-string':
3969 (push ?E lst
) (push "<E>" lst
)
3970 (push ?F lst
) (push fname lst
)
3971 ;; We might want to use "" instead of "<X>" later.
3972 (push ?J lst
) (push "<J>" lst
)
3973 (push ?K lst
) (push "<K>" lst
)
3974 (push ?L lst
) (push lname lst
)
3975 (push ?N lst
) (push name-or-net lst
)
3976 (push ?O lst
) (push "<O>" lst
)
3977 (push ?P lst
) (push "<P>" lst
)
3978 (push ?Q lst
) (push "<Q>" lst
)
3979 (push ?f lst
) (push from lst
)
3980 (push ?i lst
) (push "<i>" lst
)
3981 (push ?n lst
) (push net lst
)
3982 (push ?o lst
) (push "<o>" lst
)
3983 (push ?q lst
) (push "<q>" lst
)
3984 (push ?t lst
) (push "<t>" lst
)
3985 (push ?v lst
) (push "<v>" lst
)
3986 ;; Delegate the rest to `format-time-string':
3988 (when (and (not (memq i lst
))
3993 (push (condition-case nil
3994 (format-time-string (format "%%%c" i
) replydate
)
3995 (error (format ">%c<" i
)))
3999 (spec (apply 'format-spec-make flist
)))
4000 (insert (format-spec message-citation-line-format spec
)))
4003 (defun message-cite-original-without-signature ()
4004 "Cite function in the standard Message manner.
4005 This function strips off the signature from the original message."
4006 (message-cite-original-1 t
))
4008 (defun message-insert-citation-line ()
4009 "Insert a simple citation line."
4010 (when message-reply-headers
4011 (insert (mail-header-from message-reply-headers
) " writes:")
4015 (defun message-position-on-field (header &rest afters
)
4016 (let ((case-fold-search t
))
4019 (goto-char (point-min))
4022 (concat "^" (regexp-quote mail-header-separator
) "$"))
4023 (match-beginning 0)))
4024 (goto-char (point-min))
4025 (if (re-search-forward (concat "^" (regexp-quote header
) ":") nil t
)
4027 (re-search-forward "^[^ \t]" nil
'move
)
4029 (skip-chars-backward "\n")
4032 (not (re-search-forward
4033 (concat "^" (regexp-quote (car afters
)) ":")
4037 (re-search-forward "^[^ \t]" nil
'move
)
4038 (beginning-of-line))
4039 (insert header
": \n")
4046 ;;; Sending messages
4049 (defun message-send-and-exit (&optional arg
)
4050 "Send message like `message-send', then, if no errors, exit from mail buffer.
4051 The usage of ARG is defined by the instance that called Message.
4052 It should typically alter the sending method in some way or other."
4054 (let ((buf (current-buffer))
4055 (actions message-exit-actions
))
4056 (when (and (message-send arg
)
4059 (if message-kill-buffer-on-exit
4061 (message-do-actions actions
)
4064 (defun message-dont-send ()
4065 "Don't send the message you have been editing.
4066 Instead, just auto-save the buffer and then bury it."
4068 (set-buffer-modified-p t
)
4070 (let ((actions message-postpone-actions
))
4071 (message-bury (current-buffer))
4072 (message-do-actions actions
)))
4074 (defun message-kill-buffer ()
4075 "Kill the current buffer."
4077 (when (or (not (buffer-modified-p))
4078 (not message-kill-buffer-query
)
4079 (yes-or-no-p "Message modified; kill anyway? "))
4080 (let ((actions message-kill-actions
)
4081 (draft-article message-draft-article
)
4082 (auto-save-file-name buffer-auto-save-file-name
)
4083 (file-name buffer-file-name
)
4084 (modified (buffer-modified-p)))
4085 (setq buffer-file-name nil
)
4086 (kill-buffer (current-buffer))
4087 (when (and (or (and auto-save-file-name
4088 (file-exists-p auto-save-file-name
))
4090 (file-exists-p file-name
)))
4092 ;; If the message buffer has lived in a dedicated window,
4093 ;; `kill-buffer' has killed the frame. Thus the
4094 ;; `yes-or-no-p' may show up in a lowered frame. Make sure
4095 ;; that the user can see the question by raising the
4098 (yes-or-no-p (format "Remove the backup file%s? "
4099 (if modified
" too" "")))))
4101 (delete-file auto-save-file-name
))
4102 (let ((message-draft-article draft-article
))
4103 (message-disassociate-draft)))
4104 (message-do-actions actions
))))
4106 (defun message-bury (buffer)
4107 "Bury this mail BUFFER."
4108 (if message-return-action
4110 (bury-buffer buffer
)
4111 (apply (car message-return-action
) (cdr message-return-action
)))
4112 (with-current-buffer buffer
(bury-buffer))))
4114 (defun message-send (&optional arg
)
4115 "Send the message in the current buffer.
4116 If `message-interactive' is non-nil, wait for success indication or
4117 error messages, and inform user.
4118 Otherwise any failure is reported in a message back to the user from
4120 The usage of ARG is defined by the instance that called Message.
4121 It should typically alter the sending method in some way or other."
4123 ;; Make it possible to undo the coming changes.
4125 (let ((inhibit-read-only t
))
4126 (put-text-property (point-min) (point-max) 'read-only nil
))
4127 (message-fix-before-sending)
4128 (run-hooks 'message-send-hook
)
4129 (when message-confirm-send
4130 (or (y-or-n-p "Send message? ")
4132 (message message-sending-message
)
4133 (let ((alist message-send-method-alist
)
4135 elem sent dont-barf-on-no-method
4136 (message-options message-options
))
4137 (message-options-set-recipient)
4139 (setq elem
(pop alist
)))
4140 (when (funcall (cadr elem
))
4141 (when (and (or (not (memq (car elem
)
4142 message-sent-message-via
))
4143 (message-fetch-field "supersedes")
4144 (if (or (message-gnksa-enable-p 'multiple-copies
)
4145 (not (eq (car elem
) 'news
)))
4148 "Already sent message via %s; resend? "
4150 (error "Denied posting -- multiple copies")))
4151 (setq success
(funcall (caddr elem
) arg
)))
4155 (let ((fcc (message-fetch-field "Fcc"))
4156 (gcc (message-fetch-field "Gcc")))
4158 (or (eq message-allow-no-recipients
'always
)
4159 (and (not (eq message-allow-no-recipients
'never
))
4160 (setq dont-barf-on-no-method
4162 (format "No receiver, perform %s anyway? "
4163 (cond ((and fcc gcc
) "Fcc and Gcc")
4166 (error "No methods specified to send by"))
4167 (when (or dont-barf-on-no-method
4171 (run-hooks 'message-sent-hook
))
4172 (message "Sending...done")
4173 ;; Do ecomplete address snarfing.
4174 (when (and (message-mail-alias-type-p 'ecomplete
)
4175 (not message-inhibit-ecomplete
))
4176 (message-put-addresses-in-ecomplete))
4177 ;; Mark the buffer as unmodified and delete auto-save.
4178 (set-buffer-modified-p nil
)
4179 (delete-auto-save-file-if-necessary t
)
4180 (message-disassociate-draft)
4181 ;; Delete other mail buffers and stuff.
4182 (message-do-send-housekeeping)
4183 (message-do-actions message-send-actions
)
4187 (defun message-send-via-mail (arg)
4188 "Send the current message via mail."
4189 (message-send-mail arg
))
4191 (defun message-send-via-news (arg)
4192 "Send the current message via news."
4193 (funcall message-send-news-function arg
))
4195 (defmacro message-check
(type &rest forms
)
4196 "Eval FORMS if TYPE is to be checked."
4197 `(or (message-check-element ,type
)
4201 (put 'message-check
'lisp-indent-function
1)
4202 (put 'message-check
'edebug-form-spec
'(form body
))
4204 (defun message-text-with-property (prop &optional start end reverse
)
4205 "Return a list of start and end positions where the text has PROP.
4206 START and END bound the search, they default to `point-min' and
4207 `point-max' respectively. If REVERSE is non-nil, find text which does
4210 (setq start
(point-min)))
4212 (setq end
(point-max)))
4216 (setq start
(text-property-any start end prop nil
)))
4217 (setq next
(next-single-property-change start prop nil end
))
4218 (push (cons start
(or next end
)) regions
)
4221 (or (get-text-property start prop
)
4222 (and (setq start
(next-single-property-change
4223 start prop nil end
))
4224 (get-text-property start prop
))))
4225 (setq next
(text-property-any start end prop nil
))
4226 (push (cons start
(or next end
)) regions
)
4228 (nreverse regions
)))
4230 (defcustom message-bogus-addresses
4231 '("noreply" "nospam" "invalid" "@@" "[^[:ascii:]].*@" "[ \t]")
4232 "List of regexps of potentially bogus mail addresses.
4233 See `message-check-recipients' how to setup checking.
4235 This list should make it possible to catch typos or warn about
4236 spam-trap addresses. It doesn't aim to verify strict RFC
4238 :version
"23.1" ;; No Gnus
4239 :group
'message-headers
4241 (const :tag
"None" nil
)
4247 (const :tag
"duplicate @" "@@")
4248 (const :tag
"non-ascii local part" "[^[:ascii:]].*@")
4249 ;; Already caught by `message-valid-fqdn-regexp'
4250 ;; (const :tag "`_' in domain part" "@.*_")
4251 (const :tag
"whitespace" "[ \t]"))
4256 (defun message-fix-before-sending ()
4257 "Do various things to make the message nice before sending it."
4258 ;; Make sure there's a newline at the end of the message.
4259 (goto-char (point-max))
4262 ;; Make the hidden headers visible.
4264 ;; Sort headers before sending the message.
4265 (message-sort-headers)
4266 ;; Make invisible text visible.
4267 ;; It doesn't seem as if this is useful, since the invisible property
4268 ;; is clobbered by an after-change hook anyhow.
4269 (message-check 'invisible-text
4270 (let ((regions (message-text-with-property 'invisible
))
4274 (setq from
(caar regions
)
4276 regions
(cdr regions
))
4277 (put-text-property from to
'invisible nil
)
4278 (message-overlay-put (message-make-overlay from to
)
4280 (unless (yes-or-no-p
4281 "Invisible text found and made visible; continue sending? ")
4282 (error "Invisible text found and made visible")))))
4283 (message-check 'illegible-text
4284 (let (char found choice nul-chars
)
4286 (setq nul-chars
(save-excursion
4287 (search-forward "\000" nil t
)))
4289 (skip-chars-forward mm-7bit-chars
)
4290 (when (get-text-property (point) 'no-illegible-text
)
4291 ;; There is a signed or encrypted raw message part
4292 ;; that is considered to be safe.
4293 (goto-char (or (next-single-property-change
4294 (point) 'no-illegible-text
)
4296 (setq char
(char-after)))
4297 (when (or (< (mm-char-int char
) 128)
4298 (and (mm-multibyte-p)
4299 (memq (char-charset char
)
4300 '(eight-bit-control eight-bit-graphic
4301 ;; Emacs 23, Bug#1770:
4304 (not (get-text-property
4305 (point) 'untranslated-utf-8
))))
4306 (message-overlay-put (message-make-overlay (point) (1+ (point)))
4312 (gnus-multiple-choice
4314 "NUL characters found, which may cause problems. Continue sending?"
4315 "Non-printable characters found. Continue sending?")
4316 `((?d
"Remove non-printable characters and send")
4318 "Replace non-printable characters with \"%s\" and send"
4319 message-replacement-char
))
4320 (?s
"Send as is without removing anything")
4321 (?e
"Continue editing"))))
4323 (error "Non-printable characters"))
4325 (skip-chars-forward mm-7bit-chars
)
4327 (when (let ((char (char-after)))
4328 (or (< (mm-char-int char
) 128)
4329 (and (mm-multibyte-p)
4330 ;; FIXME: Wrong for Emacs 23 (unicode) and for
4331 ;; things like undecodable utf-8 (in Emacs 21?).
4332 ;; Should at least use find-coding-systems-region.
4334 (memq (char-charset char
)
4335 '(eight-bit-control eight-bit-graphic
4336 ;; Emacs 23, Bug#1770:
4339 (not (get-text-property
4340 (point) 'untranslated-utf-8
)))))
4342 (message-kill-all-overlays)
4344 (when (eq choice ?r
)
4345 (insert message-replacement-char
))))
4347 (skip-chars-forward mm-7bit-chars
)))))
4348 (message-check 'bogus-recipient
4349 ;; Warn before sending a mail to an invalid address.
4350 (message-check-recipients)))
4352 (defun message-bogus-recipient-p (recipients)
4353 "Check if a mail address in RECIPIENTS looks bogus.
4355 RECIPIENTS is a mail header. Return a list of potentially bogus
4356 addresses. If none is found, return nil.
4358 An address might be bogus if the domain part is not fully
4359 qualified, see `message-valid-fqdn-regexp', or if there's a
4360 matching entry in `message-bogus-addresses'."
4361 ;; FIXME: How about "foo@subdomain", when the MTA adds ".domain.tld"?
4363 (mapc (lambda (address)
4364 (setq address
(or (cadr address
) ""))
4366 (or (string= "" address
)
4369 (not (string-match "@" address
))
4372 message-valid-fqdn-regexp
"\\)\\'") address
)))
4373 (and message-bogus-addresses
4375 (if (listp message-bogus-addresses
)
4376 (mapconcat 'identity
4377 message-bogus-addresses
4379 message-bogus-addresses
)))
4380 (string-match re address
))))
4381 (push address found
)))
4383 (mail-extract-address-components recipients t
))
4386 (defun message-check-recipients ()
4387 "Warn before composing or sending a mail to an invalid address.
4389 This function could be useful in `message-setup-hook'."
4392 (message-narrow-to-headers)
4393 (dolist (hdr '("To" "Cc" "Bcc"))
4394 (let ((addr (message-fetch-field hdr
)))
4395 (when (stringp addr
)
4396 (dolist (bog (message-bogus-recipient-p addr
))
4400 "Address `%s'%s might be bogus. Continue? "
4402 ;; If the encoded version of the email address
4403 ;; is different from the unencoded version,
4404 ;; then we likely have invisible characters or
4405 ;; the like. Display the encoded version,
4407 (let ((encoded (rfc2047-encode-string bog
)))
4408 (if (string= encoded bog
)
4410 (format " (%s)" encoded
))))))
4411 (error "Bogus address"))))))))
4413 (custom-add-option 'message-setup-hook
'message-check-recipients
)
4415 (defun message-add-action (action &rest types
)
4416 "Add ACTION to be performed when doing an exit of type TYPES."
4418 (add-to-list (intern (format "message-%s-actions" (pop types
)))
4421 (defun message-delete-action (action &rest types
)
4422 "Delete ACTION from lists of actions performed when doing an exit of type TYPES."
4425 (set (setq var
(intern (format "message-%s-actions" (pop types
))))
4426 (delq action
(symbol-value var
))))))
4428 (defun message-do-actions (actions)
4429 "Perform all actions in ACTIONS."
4430 ;; Now perform actions on successful sending.
4431 (dolist (action actions
)
4434 ;; A simple function.
4437 ;; Something to be evalled.
4441 (defun message-send-mail-partially ()
4442 "Send mail as message/partial."
4443 ;; replace the header delimiter with a blank line
4444 (goto-char (point-min))
4446 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4447 (replace-match "\n")
4448 (run-hooks 'message-send-mail-hook
)
4449 (let ((p (goto-char (point-min)))
4450 (tembuf (message-generate-new-buffer-clone-locals " message temp"))
4451 (curbuf (current-buffer))
4452 (id (message-make-message-id)) (n 1)
4455 (if (< (point-max) (+ p message-send-mail-partially-limit
))
4456 (goto-char (point-max))
4457 (goto-char (+ p message-send-mail-partially-limit
))
4459 (if (<= (point) p
) (forward-line 1))) ;; In case of bad message.
4462 (setq total
(length plist
))
4463 (push (point-max) plist
)
4464 (setq plist
(nreverse plist
))
4467 (setq p
(pop plist
))
4470 (copy-to-buffer tembuf p
(car plist
))
4472 (goto-char (point-min))
4475 (goto-char (point-min))
4476 (narrow-to-region (point) (point))
4479 (setq header
(buffer-substring (point-min) (point)))
4480 (goto-char (point-min))
4481 (narrow-to-region (point) (point))
4483 (message-remove-header "Mime-Version")
4484 (message-remove-header "Content-Type")
4485 (message-remove-header "Content-Transfer-Encoding")
4486 (message-remove-header "Message-ID")
4487 (message-remove-header "Lines")
4488 (goto-char (point-max))
4489 (insert "Mime-Version: 1.0\n")
4490 (setq header
(buffer-string)))
4491 (goto-char (point-max))
4492 (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n\n"
4495 (let ((mail-header-separator ""))
4496 (when (memq 'Message-ID message-required-mail-headers
)
4497 (insert "Message-ID: " (message-make-message-id) "\n"))
4498 (when (memq 'Lines message-required-mail-headers
)
4499 (insert "Lines: " (message-make-lines) "\n"))
4500 (message-goto-subject)
4502 (insert (format " (%d/%d)" n total
))
4504 (if message-send-mail-real-function
4505 (funcall message-send-mail-real-function
)
4506 (message-multi-smtp-send-mail)))
4508 (setq p
(pop plist
))
4510 (kill-buffer tembuf
))))
4512 (declare-function hashcash-wait-async
"hashcash" (&optional buffer
))
4514 (defun message-send-mail (&optional arg
)
4515 (require 'mail-utils
)
4516 (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
4517 (case-fold-search nil
)
4518 (news (message-news-p))
4519 (mailbuf (current-buffer))
4520 (message-this-is-mail t
)
4521 ;; gnus-setup-posting-charset is autoloaded in mml.el (FIXME
4522 ;; maybe it should not be), which this file requires. Hence
4523 ;; the fboundp test is always true. Loading it from gnus-msg
4524 ;; loads many Gnus files (Bug#5642). If
4525 ;; gnus-group-posting-charset-alist hasn't been customized,
4526 ;; this is just going to return nil anyway. FIXME it would
4527 ;; be good to improve this further, because even if g-g-p-c-a
4528 ;; has been customized, that is likely to just be for news.
4529 ;; Eg either move the definition from gnus-msg, or separate out
4530 ;; the mail and news parts.
4531 (message-posting-charset
4532 (if (and (fboundp 'gnus-setup-posting-charset
)
4533 (boundp 'gnus-group-posting-charset-alist
))
4534 (gnus-setup-posting-charset nil
)
4535 message-posting-charset
))
4536 (headers message-required-mail-headers
)
4538 (when (and message-generate-hashcash
4539 (not (eq message-generate-hashcash
'opportunistic
)))
4540 (message "Generating hashcash...")
4542 ;; Wait for calculations already started to finish...
4543 (hashcash-wait-async)
4544 ;; ...and do calculations not already done. mail-add-payment
4545 ;; will leave existing X-Hashcash headers alone.
4547 (message "Generating hashcash...done"))
4549 (message-narrow-to-headers)
4550 ;; Generate the Mail-Followup-To header if the header is not there...
4551 (if (and (message-subscribed-p)
4552 (not (mail-fetch-field "mail-followup-to")))
4555 (cons "Mail-Followup-To" (message-make-mail-followup-to))
4556 message-required-mail-headers
))
4557 ;; otherwise, delete the MFT header if the field is empty
4558 (when (equal "" (mail-fetch-field "mail-followup-to"))
4559 (message-remove-header "^Mail-Followup-To:")))
4560 ;; Insert some headers.
4561 (let ((message-deletable-headers
4562 (if news nil message-deletable-headers
)))
4563 (message-generate-headers headers
))
4564 ;; Check continuation headers.
4565 (message-check 'continuation-headers
4566 (goto-char (point-min))
4567 (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t
)
4568 (goto-char (match-beginning 0))
4569 (if (y-or-n-p "Fix continuation lines? ")
4572 (unless (y-or-n-p "Send anyway? ")
4573 (error "Failed to send the message")))))
4574 ;; Let the user do all of the above.
4575 (run-hooks 'message-header-hook
))
4576 (setq options message-options
)
4578 (with-current-buffer tembuf
4580 (setq message-options options
)
4581 ;; Avoid copying text props (except hard newlines).
4582 (insert (with-current-buffer mailbuf
4583 (mml-buffer-substring-no-properties-except-hard-newlines
4584 (point-min) (point-max))))
4585 ;; Remove some headers.
4586 (message-encode-message-body)
4588 (message-narrow-to-headers)
4589 ;; We (re)generate the Lines header.
4590 (when (memq 'Lines message-required-mail-headers
)
4591 (message-generate-headers '(Lines)))
4592 ;; Remove some headers.
4593 (message-remove-header message-ignored-mail-headers t
)
4594 (let ((mail-parse-charset message-default-charset
))
4595 (mail-encode-encoded-word-buffer)))
4596 (goto-char (point-max))
4597 ;; require one newline at the end.
4598 (or (= (preceding-char) ?
\n)
4600 (message-cleanup-headers)
4601 ;; FIXME: we're inserting the courtesy copy after encoding.
4602 ;; This is wrong if the courtesy copy string contains
4603 ;; non-ASCII characters. -- jh
4606 (message-narrow-to-headers)
4608 (not (message-fetch-field "List-Post"))
4609 (not (message-fetch-field "List-ID"))
4610 (or (message-fetch-field "cc")
4611 (message-fetch-field "bcc")
4612 (message-fetch-field "to"))
4613 (let ((content-type (message-fetch-field
4618 (string= "text/plain"
4620 (mail-header-parse-content-type
4624 (message-fetch-field
4625 "content-transfer-encoding")))))))
4626 (message-insert-courtesy-copy
4627 (with-current-buffer mailbuf
4628 message-courtesy-message
)))
4629 ;; Let's make sure we encoded all the body.
4630 (assert (save-excursion
4631 (goto-char (point-min))
4632 (not (re-search-forward "[^\000-\377]" nil t
))))
4633 (mm-disable-multibyte)
4634 (if (or (not message-send-mail-partially-limit
)
4635 (< (buffer-size) message-send-mail-partially-limit
)
4636 (not (message-y-or-n-p
4637 "The message size is too large, split? "
4641 (/ (buffer-size) 1000) "KB, is too large.
4643 Some mail gateways (MTA's) bounce large messages. To avoid the
4644 problem, answer `y', and the message will be split into several
4645 smaller pieces, the size of each is about "
4646 (/ message-send-mail-partially-limit
1000)
4650 However, some mail readers (MUA's) can't read split messages, i.e.,
4651 mails in message/partially format. Answer `n', and the message will be
4654 The size limit is controlled by `message-send-mail-partially-limit'.
4655 If you always want Gnus to send messages in one piece, set
4656 `message-send-mail-partially-limit' to nil.
4659 (message "Sending via mail...")
4660 (if message-send-mail-real-function
4661 (funcall message-send-mail-real-function
)
4662 (message-multi-smtp-send-mail)))
4663 (message-send-mail-partially))
4664 (setq options message-options
))
4665 (kill-buffer tembuf
))
4666 (set-buffer mailbuf
)
4667 (setq message-options options
)
4668 (push 'mail message-sent-message-via
)))
4670 (defvar sendmail-program
)
4671 (defvar smtpmail-smtp-user
)
4673 (defun message-multi-smtp-send-mail ()
4674 "Send the current buffer to `message-send-mail-function'.
4675 Or, if there's a header that specifies a different method, use
4677 (let ((method (message-field-value "X-Message-SMTP-Method")))
4679 (funcall message-send-mail-function
)
4680 (message-remove-header "X-Message-SMTP-Method")
4681 (setq method
(split-string method
))
4683 ((equal (car method
) "sendmail")
4684 (message-send-mail-with-sendmail))
4685 ((equal (car method
) "smtp")
4687 (let ((smtpmail-smtp-server (nth 1 method
))
4688 (smtpmail-smtp-service (nth 2 method
))
4689 (smtpmail-smtp-user (or (nth 3 method
) smtpmail-smtp-user
)))
4690 (message-smtpmail-send-it)))
4692 (error "Unknown method %s" method
))))))
4694 (defun message-send-mail-with-sendmail ()
4695 "Send off the prepared buffer with sendmail."
4697 (let ((errbuf (if message-interactive
4698 (message-generate-new-buffer-clone-locals
4701 resend-to-addresses delimline
)
4704 (let ((case-fold-search t
))
4706 (message-narrow-to-headers)
4707 (setq resend-to-addresses
(message-fetch-field "resent-to")))
4708 ;; Change header-delimiter to be what sendmail expects.
4709 (goto-char (point-min))
4711 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4712 (replace-match "\n")
4714 (setq delimline
(point-marker))
4715 (run-hooks 'message-send-mail-hook
)
4716 ;; Insert an extra newline if we need it to work around
4717 ;; Sun's bug that swallows newlines.
4718 (goto-char (1+ delimline
))
4719 (when (eval message-mailer-swallows-blank-line
)
4721 (when message-interactive
4722 (with-current-buffer errbuf
4724 (let* ((default-directory "/")
4725 (coding-system-for-write message-send-coding-system
)
4727 'call-process-region
4729 (list (point-min) (point-max) sendmail-program
4730 nil errbuf nil
"-oi")
4731 message-sendmail-extra-arguments
4732 ;; Always specify who from,
4733 ;; since some systems have broken sendmails.
4734 ;; But some systems are more broken with -f, so
4735 ;; we'll let users override this.
4736 (and (null message-sendmail-f-is-evil
)
4737 (list "-f" (message-sendmail-envelope-from)))
4738 ;; These mean "report errors by mail"
4739 ;; and "deliver in background".
4740 (if (null message-interactive
) '("-oem" "-odb"))
4741 ;; Get the addresses from the message
4742 ;; unless this is a resend.
4743 ;; We must not do that for a resend
4744 ;; because we would find the original addresses.
4745 ;; For a resend, include the specific addresses.
4746 (if resend-to-addresses
4747 (list resend-to-addresses
)
4749 (unless (or (null cpr
) (and (numberp cpr
) (zerop cpr
)))
4750 (if errbuf
(pop-to-buffer errbuf
))
4751 (error "Sending...failed with exit value %d" cpr
)))
4752 (when message-interactive
4753 (with-current-buffer errbuf
4754 (goto-char (point-min))
4755 (while (re-search-forward "\n+ *" nil t
)
4756 (replace-match "; "))
4757 (if (not (zerop (buffer-size)))
4758 (error "Sending...failed to %s"
4759 (buffer-string))))))
4760 (when (bufferp errbuf
)
4761 (kill-buffer errbuf
)))))
4763 (defun message-send-mail-with-qmail ()
4764 "Pass the prepared message buffer to qmail-inject.
4765 Refer to the documentation for the variable `message-send-mail-function'
4766 to find out how to use this."
4767 ;; replace the header delimiter with a blank line
4768 (goto-char (point-min))
4770 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4771 (replace-match "\n")
4772 (run-hooks 'message-send-mail-hook
)
4775 (let ((coding-system-for-write message-send-coding-system
))
4777 'call-process-region
(point-min) (point-max)
4778 message-qmail-inject-program nil nil nil
4779 ;; qmail-inject's default behavior is to look for addresses on the
4780 ;; command line; if there're none, it scans the headers.
4781 ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
4783 ;; in general, ALL of qmail-inject's defaults are perfect for simply
4784 ;; reading a formatted (i. e., at least a To: or Resent-To header)
4785 ;; message from stdin.
4787 ;; qmail also has the advantage of not having been raped by
4788 ;; various vendors, so we don't have to allow for that, either --
4789 ;; compare this with message-send-mail-with-sendmail and weep
4790 ;; for sendmail's lost innocence.
4792 ;; all this is way cool coz it lets us keep the arguments entirely
4793 ;; free for -inject-arguments -- a big win for the user and for us
4794 ;; since we don't have to play that double-guessing game and the user
4795 ;; gets full control (no gestapo'ish -f's, for instance). --sj
4796 (if (functionp message-qmail-inject-args
)
4797 (funcall message-qmail-inject-args
)
4798 message-qmail-inject-args
)))
4799 ;; qmail-inject doesn't say anything on it's stdout/stderr,
4800 ;; we have to look at the retval instead
4802 (100 (error "qmail-inject reported permanent failure"))
4803 (111 (error "qmail-inject reported transient failure"))
4804 ;; should never happen
4805 (t (error "qmail-inject reported unknown failure"))))
4807 (defvar mh-previous-window-config
)
4809 (defun message-send-mail-with-mh ()
4810 "Send the prepared message buffer with mh."
4811 (let ((mh-previous-window-config nil
)
4812 (name (mh-new-draft-name)))
4813 (setq buffer-file-name name
)
4814 ;; MH wants to generate these headers itself.
4815 (when message-mh-deletable-headers
4816 (let ((headers message-mh-deletable-headers
))
4818 (goto-char (point-min))
4819 (and (re-search-forward
4820 (concat "^" (symbol-name (car headers
)) ": *") nil t
)
4821 (message-delete-line))
4823 (run-hooks 'message-send-mail-hook
)
4824 ;; Pass it on to mh.
4827 (defun message-smtpmail-send-it ()
4828 "Send the prepared message buffer with `smtpmail-send-it'.
4829 The only difference from `smtpmail-send-it' is that this command
4830 evaluates `message-send-mail-hook' just before sending a message.
4831 It is useful if your ISP requires the POP-before-SMTP
4832 authentication. See the Gnus manual for details."
4833 (run-hooks 'message-send-mail-hook
)
4836 (defun message-send-mail-with-mailclient ()
4837 "Send the prepared message buffer with `mailclient-send-it'.
4838 The only difference from `mailclient-send-it' is that this
4839 command evaluates `message-send-mail-hook' just before sending a message."
4840 (run-hooks 'message-send-mail-hook
)
4841 (mailclient-send-it))
4843 (defun message-canlock-generate ()
4844 "Return a string that is non-trivial to guess.
4845 Do not use this for anything important, it is cryptographically weak."
4847 (let (sha1-maximum-internal-length)
4848 (sha1 (concat (message-unique-id)
4849 (format "%x%x%x" (random) (random) (random))
4850 (prin1-to-string (recent-keys))
4851 (prin1-to-string (garbage-collect))))))
4853 (defvar canlock-password
)
4854 (defvar canlock-password-for-verify
)
4856 (defun message-canlock-password ()
4857 "The password used by message for cancel locks.
4858 This is the value of `canlock-password', if that option is non-nil.
4859 Otherwise, generate and save a value for `canlock-password' first."
4861 (unless canlock-password
4862 (customize-save-variable 'canlock-password
(message-canlock-generate))
4863 (setq canlock-password-for-verify canlock-password
))
4866 (defun message-insert-canlock ()
4867 (when message-insert-canlock
4868 (message-canlock-password)
4869 (canlock-insert-header)))
4871 (autoload 'nnheader-get-report
"nnheader")
4873 (declare-function gnus-setup-posting-charset
"gnus-msg" (group))
4875 (defun message-send-news (&optional arg
)
4877 (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
4878 (case-fold-search nil
)
4879 (method (if (functionp message-post-method
)
4880 (funcall message-post-method arg
)
4881 message-post-method
))
4882 (newsgroups-field (save-restriction
4883 (message-narrow-to-headers-or-head)
4884 (message-fetch-field "Newsgroups")))
4885 (followup-field (save-restriction
4886 (message-narrow-to-headers-or-head)
4887 (message-fetch-field "Followup-To")))
4888 ;; BUG: We really need to get the charset for each name in the
4889 ;; Newsgroups and Followup-To lines to allow crossposting
4890 ;; between group names with incompatible character sets.
4891 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
4892 (group-field-charset
4893 (gnus-group-name-charset method newsgroups-field
))
4894 (followup-field-charset
4895 (gnus-group-name-charset method
(or followup-field
"")))
4896 (rfc2047-header-encoding-alist
4897 (append (when group-field-charset
4898 (list (cons "Newsgroups" group-field-charset
)))
4899 (when followup-field-charset
4900 (list (cons "Followup-To" followup-field-charset
)))
4901 rfc2047-header-encoding-alist
))
4902 (messbuf (current-buffer))
4903 (message-syntax-checks
4905 (listp message-syntax-checks
))
4906 (cons '(existing-newsgroups . disabled
)
4907 message-syntax-checks
)
4908 message-syntax-checks
))
4909 (message-this-is-news t
)
4910 (message-posting-charset
4911 (gnus-setup-posting-charset newsgroups-field
))
4913 (if (not (message-check-news-body-syntax))
4916 (message-narrow-to-headers)
4917 ;; Insert some headers.
4918 (message-generate-headers message-required-news-headers
)
4919 (message-insert-canlock)
4920 ;; Let the user do all of the above.
4921 (run-hooks 'message-header-hook
))
4922 ;; Note: This check will be disabled by the ".*" default value for
4923 ;; gnus-group-name-charset-group-alist. -- Pa 2001-10-07.
4924 (when (and group-field-charset
4925 (listp message-syntax-checks
))
4926 (setq message-syntax-checks
4927 (cons '(valid-newsgroups . disabled
)
4928 message-syntax-checks
)))
4929 (message-cleanup-headers)
4930 (if (not (let ((message-post-method method
))
4931 (message-check-news-syntax)))
4934 (with-current-buffer tembuf
4935 (buffer-disable-undo)
4937 ;; Avoid copying text props (except hard newlines).
4939 (with-current-buffer messbuf
4940 (mml-buffer-substring-no-properties-except-hard-newlines
4941 (point-min) (point-max))))
4942 (message-encode-message-body)
4943 ;; Remove some headers.
4945 (message-narrow-to-headers)
4946 ;; We (re)generate the Lines header.
4947 (when (memq 'Lines message-required-mail-headers
)
4948 (message-generate-headers '(Lines)))
4949 ;; Remove some headers.
4950 (message-remove-header message-ignored-news-headers t
)
4951 (let ((mail-parse-charset message-default-charset
))
4952 (mail-encode-encoded-word-buffer)))
4953 (goto-char (point-max))
4954 ;; require one newline at the end.
4955 (or (= (preceding-char) ?
\n)
4957 (let ((case-fold-search t
))
4958 ;; Remove the delimiter.
4959 (goto-char (point-min))
4961 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4962 (replace-match "\n")
4964 (run-hooks 'message-send-news-hook
)
4965 (gnus-open-server method
)
4966 (message "Sending news via %s..." (gnus-server-string method
))
4967 (setq result
(let ((mail-header-separator ""))
4968 (gnus-request-post method
))))
4969 (kill-buffer tembuf
))
4970 (set-buffer messbuf
)
4972 (push 'news message-sent-message-via
)
4973 (message "Couldn't send message via news: %s"
4974 (nnheader-get-report (car method
)))
4978 ;;; Header generation & syntax checking.
4981 (defun message-check-element (type)
4982 "Return non-nil if this TYPE is not to be checked."
4983 (if (eq message-syntax-checks
'dont-check-for-anything-just-trust-me
)
4985 (let ((able (assq type message-syntax-checks
)))
4987 (eq (cdr able
) 'disabled
)))))
4989 (defun message-check-news-syntax ()
4990 "Check the syntax of the message."
4994 ;; We narrow to the headers and check them first.
4997 (message-narrow-to-headers)
4998 (message-check-news-header-syntax))))))
5000 (defun message-check-news-header-syntax ()
5002 ;; Check Newsgroups header.
5003 (message-check 'newsgroups
5004 (let ((group (message-fetch-field "newsgroups")))
5007 (not (string-match "\\`[ \t]*\\'" group
)))
5010 "The newsgroups field is empty or missing. Posting is denied.")))))
5011 ;; Check the Subject header.
5012 (message-check 'subject
5013 (let* ((case-fold-search t
)
5014 (subject (message-fetch-field "subject")))
5017 (not (string-match "\\`[ \t]*\\'" subject
)))
5020 "The subject field is empty or missing. Posting is denied.")))))
5021 ;; Check for commands in Subject.
5022 (message-check 'subject-cmsg
5023 (if (string-match "^cmsg " (message-fetch-field "subject"))
5025 "The control code \"cmsg\" is in the subject. Really post? ")
5027 ;; Check long header lines.
5028 (message-check 'long-header-lines
5032 (while (and (not found
)
5033 (re-search-forward "^\\([^ \t:]+\\): " nil t
))
5034 (if (> (- (point) (match-beginning 0)) 998)
5036 length
(- (point) (match-beginning 0)))
5037 (setq header
(match-string-no-properties 1)))
5040 (y-or-n-p (format "Your %s header is too long (%d). Really post? "
5043 ;; Check for multiple identical headers.
5044 (message-check 'multiple-headers
5046 (while (and (not found
)
5047 (re-search-forward "^[^ \t:]+: " nil t
))
5049 (or (re-search-forward
5054 (match-beginning 0) (- (match-end 0) 2))))
5059 (y-or-n-p (format "Multiple %s headers. Really post? " found
))
5061 ;; Check for Version and Sendsys.
5062 (message-check 'sendsys
5063 (if (re-search-forward "^Sendsys:\\|^Version:" nil t
)
5065 (format "The article contains a %s command. Really post? "
5066 (buffer-substring (match-beginning 0)
5067 (1- (match-end 0)))))
5069 ;; See whether we can shorten Followup-To.
5070 (message-check 'shorten-followup-to
5071 (let ((newsgroups (message-fetch-field "newsgroups"))
5072 (followup-to (message-fetch-field "followup-to"))
5074 (when (and newsgroups
5075 (string-match "," newsgroups
)
5080 (setq to
(completing-read
5081 "Followups to (default no Followup-To header): "
5084 (message-tokenize-header
5086 (goto-char (point-min))
5087 (insert "Followup-To: " to
"\n"))
5089 ;; Check "Shoot me".
5090 (message-check 'shoot
5091 (if (re-search-forward
5092 "Message-ID.*.i-did-not-set--mail-host-address--so-tickle-me" nil t
)
5093 (y-or-n-p "You appear to have a misconfigured system. Really post? ")
5095 ;; Check for Approved.
5096 (message-check 'approved
5097 (if (re-search-forward "^Approved:" nil t
)
5098 (y-or-n-p "The article contains an Approved header. Really post? ")
5100 ;; Check the Message-ID header.
5101 (message-check 'message-id
5102 (let* ((case-fold-search t
)
5103 (message-id (message-fetch-field "message-id" t
)))
5104 (or (not message-id
)
5105 ;; Is there an @ in the ID?
5106 (and (string-match "@" message-id
)
5107 ;; Is there a dot in the ID?
5108 (string-match "@[^.]*\\." message-id
)
5109 ;; Does the ID end with a dot?
5110 (not (string-match "\\.>" message-id
)))
5112 (format "The Message-ID looks strange: \"%s\". Really post? "
5114 ;; Check the Newsgroups & Followup-To headers.
5115 (message-check 'existing-newsgroups
5116 (let* ((case-fold-search t
)
5117 (newsgroups (message-fetch-field "newsgroups"))
5118 (followup-to (message-fetch-field "followup-to"))
5119 (groups (message-tokenize-header
5121 (concat newsgroups
"," followup-to
)
5123 (post-method (if (functionp message-post-method
)
5124 (funcall message-post-method
)
5125 message-post-method
))
5126 ;; KLUDGE to handle nnvirtual groups. Doing this right
5127 ;; would probably involve a new nnoo function.
5128 ;; -- Per Abrahamsen <abraham@dina.kvl.dk>, 2001-10-17.
5129 (method (if (and (consp post-method
)
5130 (eq (car post-method
) 'nnvirtual
)
5131 gnus-message-group-art
)
5132 (let ((group (car (nnvirtual-find-group-art
5133 (car gnus-message-group-art
)
5134 (cdr gnus-message-group-art
)))))
5135 (gnus-find-method-for-group group
))
5139 (gnus-group-name-decode
5140 (gnus-group-real-name n
)
5141 (gnus-group-name-charset method n
)))
5142 (gnus-groups-from-server method
)))
5145 (when (and (not (equal (car groups
) "poster"))
5146 (not (member (car groups
) known-groups
))
5147 (not (member (car groups
) errors
)))
5148 (push (car groups
) errors
))
5151 ;; Gnus is not running.
5152 ((or (not (and (boundp 'gnus-active-hashtb
)
5153 gnus-active-hashtb
))
5154 (not (boundp 'gnus-read-active-file
)))
5156 ;; We don't have all the group names.
5157 ((and (or (not gnus-read-active-file
)
5158 (eq gnus-read-active-file
'some
))
5162 "Really use %s possibly unknown group%s: %s? "
5163 (if (= (length errors
) 1) "this" "these")
5164 (if (= (length errors
) 1) "" "s")
5165 (mapconcat 'identity errors
", "))))
5166 ;; There were no errors.
5169 ;; There are unknown groups.
5173 "Really post to %s unknown group%s: %s? "
5174 (if (= (length errors
) 1) "this" "these")
5175 (if (= (length errors
) 1) "" "s")
5176 (mapconcat 'identity errors
", ")))))))
5177 ;; Check continuation headers.
5178 (message-check 'continuation-headers
5179 (goto-char (point-min))
5180 (let ((do-posting t
))
5181 (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t
)
5182 (goto-char (match-beginning 0))
5183 (if (y-or-n-p "Fix continuation lines? ")
5186 (unless (y-or-n-p "Send anyway? ")
5187 (setq do-posting nil
))))
5189 ;; Check the Newsgroups & Followup-To headers for syntax errors.
5190 (message-check 'valid-newsgroups
5191 (let ((case-fold-search t
)
5192 (headers '("Newsgroups" "Followup-To"))
5194 (while (and headers
(not error
))
5195 (when (setq header
(mail-fetch-field (car headers
)))
5199 "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
5204 (not (string-match "\\.\\'\\|\\.\\." g
)))
5205 (message-tokenize-header header
","))))
5212 (format "The %s header looks odd: \"%s\". Really post? "
5213 (car headers
) header
)))))
5214 (message-check 'repeated-newsgroups
5215 (let ((case-fold-search t
)
5216 (headers '("Newsgroups" "Followup-To"))
5217 header error groups group
)
5220 (when (setq header
(mail-fetch-field (pop headers
)))
5221 (setq groups
(message-tokenize-header header
","))
5222 (while (setq group
(pop groups
))
5223 (when (member group groups
)
5229 (format "Group %s is repeated in headers. Really post? " error
)))))
5230 ;; Check the From header.
5231 (message-check 'from
5232 (let* ((case-fold-search t
)
5233 (from (message-fetch-field "from"))
5237 (message "There is no From line. Posting is denied.")
5239 ((or (not (string-match
5241 (setq ad
(nth 1 (mail-extract-address-components
5242 from
))))) ;larsi@ifi
5243 (string-match "\\.\\." ad
) ;larsi@ifi..uio
5244 (string-match "@\\." ad
) ;larsi@.ifi.uio
5245 (string-match "\\.$" ad
) ;larsi@ifi.uio.
5246 (not (string-match "^[^@]+@[^@]+$" ad
)) ;larsi.ifi.uio
5247 (string-match "(.*).*(.*)" from
)) ;(lars) (lars)
5249 "Denied posting -- the From looks strange: \"%s\"." from
)
5251 ((let ((addresses (rfc822-addresses from
)))
5252 ;; `rfc822-addresses' returns a string if parsing fails.
5253 (while (and (consp addresses
)
5254 (not (eq (string-to-char (car addresses
)) ?\
()))
5255 (setq addresses
(cdr addresses
)))
5258 "Denied posting -- bad From address: \"%s\"." from
)
5261 ;; Check the Reply-To header.
5262 (message-check 'reply-to
5263 (let* ((case-fold-search t
)
5264 (reply-to (message-fetch-field "reply-to"))
5269 ((string-match "," reply-to
)
5271 (format "Multiple Reply-To addresses: \"%s\". Really post? "
5273 ((or (not (string-match
5275 (setq ad
(nth 1 (mail-extract-address-components
5276 reply-to
))))) ;larsi@ifi
5277 (string-match "\\.\\." ad
) ;larsi@ifi..uio
5278 (string-match "@\\." ad
) ;larsi@.ifi.uio
5279 (string-match "\\.$" ad
) ;larsi@ifi.uio.
5280 (not (string-match "^[^@]+@[^@]+$" ad
)) ;larsi.ifi.uio
5281 (string-match "(.*).*(.*)" reply-to
)) ;(lars) (lars)
5284 "The Reply-To looks strange: \"%s\". Really post? "
5288 (defun message-check-news-body-syntax ()
5290 ;; Check for long lines.
5291 (message-check 'long-lines
5292 (goto-char (point-min))
5294 (concat "^" (regexp-quote mail-header-separator
) "$"))
5298 "<#\\(/\\)?\\(multipart\\|part\\|external\\|mml\\)")
5301 (< (- (point) p
) 80)))
5302 (zerop (forward-line 1))))
5306 "You have lines longer than 79 characters. Really post? ")))
5307 ;; Check whether the article is empty.
5308 (message-check 'empty
5309 (goto-char (point-min))
5311 (concat "^" (regexp-quote mail-header-separator
) "$"))
5314 (goto-char (point-max))
5315 (re-search-backward message-signature-separator nil t
)
5317 (or (re-search-backward "[^ \n\t]" b t
)
5318 (if (message-gnksa-enable-p 'empty-article
)
5319 (y-or-n-p "Empty article. Really post? ")
5320 (message "Denied posting -- Empty article.")
5322 ;; Check for control characters.
5323 (message-check 'control-chars
5324 (if (re-search-forward
5325 (mm-string-to-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]")
5328 "The article contains control characters. Really post? ")
5330 ;; Check excessive size.
5331 (message-check 'size
5332 (if (> (buffer-size) 60000)
5334 (format "The article is %d octets long. Really post? "
5337 ;; Check whether any new text has been added.
5338 (message-check 'new-text
5340 (not message-checksum
)
5341 (not (eq (message-checksum) message-checksum
))
5342 (if (message-gnksa-enable-p 'quoted-text-only
)
5344 "It looks like no new text has been added. Really post? ")
5345 (message "Denied posting -- no new text has been added.")
5347 ;; Check the length of the signature.
5348 (message-check 'signature
5349 (let (sig-start sig-end
)
5350 (goto-char (point-max))
5351 (if (not (re-search-backward message-signature-separator nil t
))
5353 (setq sig-start
(1+ (point-at-eol)))
5355 (if (re-search-forward
5356 "<#/?\\(multipart\\|part\\|external\\|mml\\)" nil t
)
5357 (- (point-at-bol) 1)
5359 (if (>= (count-lines sig-start sig-end
) 5)
5360 (if (message-gnksa-enable-p 'signature
)
5362 (format "Signature is excessively long (%d lines). Really post? "
5363 (count-lines sig-start sig-end
)))
5364 (message "Denied posting -- Excessive signature.")
5367 ;; Ensure that text follows last quoted portion.
5368 (message-check 'quoting-style
5369 (goto-char (point-max))
5370 (let ((no-problem t
))
5371 (when (search-backward-regexp "^>[^\n]*\n" nil t
)
5372 (setq no-problem
(search-forward-regexp "^[ \t]*[^>\n]" nil t
)))
5375 (if (message-gnksa-enable-p 'quoted-text-only
)
5376 (y-or-n-p "Your text should follow quoted text. Really post? ")
5378 (goto-char (point-min))
5380 (concat "^" (regexp-quote mail-header-separator
) "$"))
5381 (if (search-forward-regexp "^[ \t]*[^>\n]" nil t
)
5382 (y-or-n-p "Your text should follow quoted text. Really post? ")
5383 (message "Denied posting -- only quoted text.")
5386 (defun message-checksum ()
5387 "Return a \"checksum\" for the current buffer."
5390 (goto-char (point-min))
5392 (concat "^" (regexp-quote mail-header-separator
) "$"))
5394 (when (not (looking-at "[ \t\n]"))
5395 (setq sum
(logxor (ash sum
1) (if (natnump sum
) 0 1)
5400 (defun message-do-fcc ()
5401 "Process Fcc headers in the current buffer."
5402 (let ((case-fold-search t
)
5403 (buf (current-buffer))
5405 (mml-externalize-attachments message-fcc-externalize-attachments
))
5408 (message-narrow-to-headers)
5409 (setq file
(message-fetch-field "fcc" t
)))
5411 (set-buffer (get-buffer-create " *message temp*"))
5413 (insert-buffer-substring buf
)
5414 (message-encode-message-body)
5416 (message-narrow-to-headers)
5417 (while (setq file
(message-fetch-field "fcc" t
))
5419 (message-remove-header "fcc" nil t
))
5420 (let ((mail-parse-charset message-default-charset
)
5421 (rfc2047-header-encoding-alist
5422 (cons '("Newsgroups" . default
)
5423 rfc2047-header-encoding-alist
)))
5424 (mail-encode-encoded-word-buffer)))
5425 (goto-char (point-min))
5426 (when (re-search-forward
5427 (concat "^" (regexp-quote mail-header-separator
) "$")
5429 (replace-match "" t t
))
5430 ;; Process FCC operations.
5432 (setq file
(pop list
))
5433 (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file
)
5434 ;; Pipe the article to the program in question.
5435 (call-process-region (point-min) (point-max) shell-file-name
5436 nil nil nil shell-command-switch
5437 (match-string 1 file
))
5438 ;; Save the article.
5439 (setq file
(expand-file-name file
))
5440 (unless (file-exists-p (file-name-directory file
))
5441 (make-directory (file-name-directory file
) t
))
5442 (if (and message-fcc-handler-function
5443 (not (eq message-fcc-handler-function
'rmail-output
)))
5444 (funcall message-fcc-handler-function file
)
5445 ;; FIXME this option, rmail-output (also used if
5446 ;; message-fcc-handler-function is nil) is not
5447 ;; documented anywhere AFAICS. It should work in Emacs
5448 ;; 23; I suspect it does not work in Emacs 22.
5449 ;; FIXME I don't see the need for the two different cases here.
5450 ;; mail-use-rfc822 makes no difference (in Emacs 23),and
5451 ;; the third argument just controls \"Wrote file\" message.
5452 (if (and (file-readable-p file
) (mail-file-babyl-p file
))
5453 (rmail-output file
1 nil t
)
5454 (let ((mail-use-rfc822 t
))
5455 (rmail-output file
1 t t
))))))
5456 (kill-buffer (current-buffer))))))
5458 (defun message-output (filename)
5459 "Append this article to Unix/babyl mail file FILENAME."
5460 (if (or (and (file-readable-p filename
)
5461 (mail-file-babyl-p filename
))
5462 ;; gnus-output-to-mail does the wrong thing with live, mbox
5463 ;; Rmail buffers in Emacs 23.
5464 ;; http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597255
5465 (let ((buff (find-buffer-visiting filename
)))
5466 (and buff
(with-current-buffer buff
5467 (eq major-mode
'rmail-mode
)))))
5468 (gnus-output-to-rmail filename t
)
5469 (gnus-output-to-mail filename t
)))
5471 (defun message-cleanup-headers ()
5472 "Do various automatic cleanups of the headers."
5473 ;; Remove empty lines in the header.
5475 (message-narrow-to-headers)
5476 ;; Remove blank lines.
5477 (while (re-search-forward "^[ \t]*\n" nil t
)
5478 (replace-match "" t t
))
5480 ;; Correct Newsgroups and Followup-To headers: Change sequence of
5481 ;; spaces to comma and eliminate spaces around commas. Eliminate
5482 ;; embedded line breaks.
5483 (goto-char (point-min))
5484 (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t
)
5488 (if (re-search-forward "^[^ \t]" nil t
)
5492 (goto-char (point-min))
5493 (while (re-search-forward "\n[ \t]+" nil t
)
5494 (replace-match " " t t
)) ;No line breaks (too confusing)
5495 (goto-char (point-min))
5496 (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t
)
5497 (replace-match "," t t
))
5498 (goto-char (point-min))
5499 ;; Remove trailing commas.
5500 (when (re-search-forward ",+$" nil t
)
5501 (replace-match "" t t
))))))
5503 (defun message-make-date (&optional now
)
5504 "Make a valid data header.
5505 If NOW, use that time instead."
5506 (let ((system-time-locale "C"))
5507 (format-time-string "%a, %d %b %Y %T %z" now
)))
5509 (defun message-insert-expires (days)
5510 "Insert the Expires header. Expiry in DAYS days."
5511 (interactive "NExpire article in how many days? ")
5513 (message-position-on-field "Expires" "X-Draft-From")
5514 (insert (message-make-expires-date days
))))
5516 (defun message-make-expires-date (days)
5517 "Make date string for the Expires header. Expiry in DAYS days.
5519 In posting styles use `(\"Expires\" (make-expires-date 30))'."
5520 (let* ((cur (decode-time (current-time)))
5521 (nday (+ days
(nth 3 cur
))))
5522 (setf (nth 3 cur
) nday
)
5523 (message-make-date (apply 'encode-time cur
))))
5525 (defun message-make-message-id ()
5526 "Make a unique Message-ID."
5527 (concat "<" (message-unique-id)
5528 (let ((psubject (save-excursion (message-fetch-field "subject")))
5530 (save-excursion (message-fetch-field "supersedes"))))
5532 (and message-reply-headers
5533 (mail-header-references message-reply-headers
)
5534 (mail-header-subject message-reply-headers
)
5537 (message-strip-subject-re
5538 (mail-header-subject message-reply-headers
))
5539 (message-strip-subject-re psubject
))))
5541 (string-match "_-_@" psupersedes
)))
5543 "@" (message-make-fqdn) ">"))
5545 (defvar message-unique-id-char nil
)
5547 ;; If you ever change this function, make sure the new version
5548 ;; cannot generate IDs that the old version could.
5549 ;; You might for example insert a "." somewhere (not next to another dot
5550 ;; or string boundary), or modify the "fsf" string.
5551 (defun message-unique-id ()
5552 ;; Don't use microseconds from (current-time), they may be unsupported.
5553 ;; Instead we use this randomly inited counter.
5554 (setq message-unique-id-char
5555 (%
(1+ (or message-unique-id-char
5556 (logand (random most-positive-fixnum
) (1- (lsh 1 20)))))
5557 ;; (current-time) returns 16-bit ints,
5558 ;; and 2^16*25 just fits into 4 digits i base 36.
5560 (let ((tm (current-time)))
5562 (if (or (eq system-type
'ms-dos
)
5563 ;; message-number-base36 doesn't handle bigints.
5564 (floatp (user-uid)))
5565 (let ((user (downcase (user-login-name))))
5566 (while (string-match "[^a-z0-9_]" user
)
5567 (aset user
(match-beginning 0) ?_
))
5569 (message-number-base36 (user-uid) -
1))
5570 (message-number-base36 (+ (car tm
)
5571 (lsh (% message-unique-id-char
25) 16)) 4)
5572 (message-number-base36 (+ (nth 1 tm
)
5573 (lsh (/ message-unique-id-char
25) 16)) 4)
5574 ;; Append a given name, because while the generated ID is unique
5575 ;; to this newsreader, other newsreaders might otherwise generate
5576 ;; the same ID via another algorithm.
5579 (defun message-number-base36 (num len
)
5584 (concat (message-number-base36 (/ num
36) (1- len
))
5585 (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
5588 (defun message-make-organization ()
5589 "Make an Organization header."
5590 (let* ((organization
5591 (when message-user-organization
5592 (if (functionp message-user-organization
)
5593 (funcall message-user-organization
)
5594 message-user-organization
))))
5596 (mm-enable-multibyte)
5597 (cond ((stringp organization
)
5598 (insert organization
))
5599 ((and (eq t organization
)
5600 message-user-organization-file
5601 (file-exists-p message-user-organization-file
))
5602 (insert-file-contents message-user-organization-file
)))
5603 (goto-char (point-min))
5604 (while (re-search-forward "[\t\n]+" nil t
)
5605 (replace-match "" t t
))
5606 (unless (zerop (buffer-size))
5609 (defun message-make-lines ()
5610 "Count the number of lines and return numeric string."
5615 (int-to-string (count-lines (point) (point-max))))))
5617 (defun message-make-references ()
5618 "Return the References header for this message."
5619 (when message-reply-headers
5620 (let ((message-id (mail-header-id message-reply-headers
))
5621 (references (mail-header-references message-reply-headers
)))
5622 (if (or references message-id
)
5623 (concat (or references
"") (and references
" ")
5627 (defun message-make-in-reply-to ()
5628 "Return the In-Reply-To header for this message."
5629 (when message-reply-headers
5630 (let ((from (mail-header-from message-reply-headers
))
5631 (date (mail-header-date message-reply-headers
))
5632 (msg-id (mail-header-id message-reply-headers
)))
5634 (let ((name (mail-extract-address-components from
)))
5636 msg-id
(if msg-id
" (")
5638 (if (string-match "[^\000-\177]" (car name
))
5639 ;; Quote a string containing non-ASCII characters.
5640 ;; It will make the RFC2047 encoder cause an error
5641 ;; if there are special characters.
5642 (mm-with-multibyte-buffer
5644 (goto-char (point-min))
5645 (while (search-forward "\"" nil t
)
5648 (zerop (%
(skip-chars-backward "\\\\") 2))
5649 (goto-char (match-beginning 0)))
5652 ;; Those quotes will be removed by the RFC2047 encoder.
5653 (concat "\"" (buffer-string) "\""))
5657 (if (or (not date
) (string= date
""))
5658 "(unknown date)" date
)
5659 "\"" (if msg-id
")")))))))
5661 (defun message-make-distribution ()
5662 "Make a Distribution header."
5663 (let ((orig-distribution (message-fetch-reply-field "distribution")))
5664 (cond ((functionp message-distribution-function
)
5665 (funcall message-distribution-function
))
5666 (t orig-distribution
))))
5668 (defun message-make-expires ()
5669 "Return an Expires header based on `message-expires'."
5670 (let ((current (current-time))
5671 (future (* 1.0 message-expires
60 60 24)))
5672 ;; Add the future to current.
5673 (setcar current
(+ (car current
) (round (/ future
(expt 2 16)))))
5674 (setcar (cdr current
) (+ (nth 1 current
) (%
(round future
) (expt 2 16))))
5675 (message-make-date current
)))
5677 (defun message-make-path ()
5679 (let ((login-name (user-login-name)))
5680 (cond ((null message-user-path
)
5681 (concat (system-name) "!" login-name
))
5682 ((stringp message-user-path
)
5683 ;; Support GENERICPATH. Suggested by vixie@decwrl.dec.com.
5684 (concat message-user-path
"!" login-name
))
5687 (defun message-make-from (&optional name address
)
5688 "Make a From header."
5689 (let* ((style message-from-style
)
5690 (login (or address
(message-make-address)))
5692 (and (boundp 'user-full-name
)
5695 (when (string= fullname
"&")
5696 (setq fullname
(user-login-name)))
5698 (mm-enable-multibyte)
5701 (equal fullname
""))
5703 ((or (eq style
'angles
)
5704 (and (not (eq style
'parens
))
5705 ;; Use angles if no quoting is needed, or if parens would
5706 ;; need quoting too.
5707 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname
))
5708 (let ((tmp (concat fullname nil
)))
5709 (while (string-match "([^()]*)" tmp
)
5710 (aset tmp
(match-beginning 0) ?-
)
5711 (aset tmp
(1- (match-end 0)) ?-
))
5712 (string-match "[\\()]" tmp
)))))
5714 (goto-char (point-min))
5715 ;; Look for a character that cannot appear unquoted
5716 ;; according to RFC 822.
5717 (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil
1)
5718 ;; Quote fullname, escaping specials.
5719 (goto-char (point-min))
5721 (while (re-search-forward "[\"\\]" nil
1)
5722 (replace-match "\\\\\\&" t
))
5724 (insert " <" login
">"))
5725 (t ; 'parens or default
5727 (let ((fullname-start (point)))
5729 (goto-char fullname-start
)
5730 ;; RFC 822 says \ and nonmatching parentheses
5731 ;; must be escaped in comments.
5732 ;; Escape every instance of ()\ ...
5733 (while (re-search-forward "[()\\]" nil
1)
5734 (replace-match "\\\\\\&" t
))
5735 ;; ... then undo escaping of matching parentheses,
5736 ;; including matching nested parentheses.
5737 (goto-char fullname-start
)
5738 (while (re-search-forward
5739 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
5741 (replace-match "\\1(\\3)" t
)
5742 (goto-char fullname-start
)))
5746 (defun message-make-sender ()
5747 "Return the \"real\" user address.
5748 This function tries to ignore all user modifications, and
5749 give as trustworthy answer as possible."
5750 (concat (user-login-name) "@" (system-name)))
5752 (defun message-make-address ()
5753 "Make the address of the user."
5754 (or (message-user-mail-address)
5755 (concat (user-login-name) "@" (message-make-domain))))
5757 (defun message-user-mail-address ()
5758 "Return the pertinent part of `user-mail-address'."
5759 (when (and user-mail-address
5760 (string-match "@.*\\." user-mail-address
))
5761 (if (string-match " " user-mail-address
)
5762 (nth 1 (mail-extract-address-components user-mail-address
))
5763 user-mail-address
)))
5765 (defun message-sendmail-envelope-from ()
5766 "Return the envelope from."
5767 (cond ((eq message-sendmail-envelope-from
'header
)
5768 (nth 1 (mail-extract-address-components
5769 (message-fetch-field "from"))))
5770 ((stringp message-sendmail-envelope-from
)
5771 message-sendmail-envelope-from
)
5773 (message-make-address))))
5775 (defun message-make-fqdn ()
5776 "Return user's fully qualified domain name."
5777 (let* ((system-name (system-name))
5778 (user-mail (message-user-mail-address))
5781 (string-match "@\\(.*\\)\\'" user-mail
))
5782 (match-string 1 user-mail
)))
5783 (case-fold-search t
))
5785 ((and message-user-fqdn
5786 (stringp message-user-fqdn
)
5787 (string-match message-valid-fqdn-regexp message-user-fqdn
)
5788 (not (string-match message-bogus-system-names message-user-fqdn
)))
5789 ;; `message-user-fqdn' seems to be valid
5791 ((and (string-match message-valid-fqdn-regexp system-name
)
5792 (not (string-match message-bogus-system-names system-name
)))
5793 ;; `system-name' returned the right result.
5795 ;; Try `mail-host-address'.
5796 ((and (boundp 'mail-host-address
)
5797 (stringp mail-host-address
)
5798 (string-match message-valid-fqdn-regexp mail-host-address
)
5799 (not (string-match message-bogus-system-names mail-host-address
)))
5801 ;; We try `user-mail-address' as a backup.
5803 (stringp user-domain
)
5804 (string-match message-valid-fqdn-regexp user-domain
)
5805 (not (string-match message-bogus-system-names user-domain
)))
5807 ;; Default to this bogus thing.
5810 ".i-did-not-set--mail-host-address--so-tickle-me")))))
5812 (defun message-make-domain ()
5813 "Return the domain name."
5814 (or mail-host-address
5815 (message-make-fqdn)))
5817 (defun message-to-list-only ()
5818 "Send a message to the list only.
5819 Remove all addresses but the list address from To and Cc headers."
5821 (let ((listaddr (message-make-mail-followup-to t
)))
5824 (message-remove-header "to")
5825 (message-remove-header "cc")
5826 (message-position-on-field "To" "X-Draft-From")
5827 (insert listaddr
)))))
5829 (defun message-make-mail-followup-to (&optional only-show-subscribed
)
5830 "Return the Mail-Followup-To header.
5831 If passed the optional argument ONLY-SHOW-SUBSCRIBED only return the
5832 subscribed address (and not the additional To and Cc header contents)."
5833 (let* ((case-fold-search t
)
5834 (to (message-fetch-field "To"))
5835 (cc (message-fetch-field "cc"))
5836 (msg-recipients (concat to
(and to cc
", ") cc
))
5838 (mapcar 'mail-strip-quoted-names
5839 (message-tokenize-header msg-recipients
)))
5841 (if message-subscribed-address-file
5842 (let (begin end item re
)
5845 (insert-file-contents message-subscribed-address-file
)
5847 (setq begin
(point))
5850 (if (bolp) (setq end
(1- end
)))
5851 (setq item
(regexp-quote (buffer-substring begin end
)))
5852 (if re
(setq re
(concat re
"\\|" item
))
5853 (setq re
(concat "\\`\\(" item
))))
5854 (and re
(list (concat re
"\\)\\'"))))))))
5855 (mft-regexps (apply 'append message-subscribed-regexps
5856 (mapcar 'regexp-quote
5857 message-subscribed-addresses
)
5860 message-subscribed-address-functions
))))
5863 (loop for recipient in recipients
5864 when
(loop for regexp in mft-regexps
5865 when
(string-match regexp recipient
) return t
)
5868 (if only-show-subscribed
5870 msg-recipients
))))))
5872 (defun message-idna-to-ascii-rhs-1 (header)
5873 "Interactively potentially IDNA encode domain names in HEADER."
5874 (let ((field (message-fetch-field header
))
5878 (mm-delete-duplicates
5879 (mapcar (lambda (rhs) (or (cadr (split-string rhs
"@")) ""))
5885 (mail-extract-address-components field t
))))))
5886 ;; Note that `rhs' will be "" if the address does not have
5887 ;; the domain part, i.e., if it is a local user's address.
5888 (setq ace
(if (string-match "\\`[[:ascii:]]*\\'" rhs
)
5890 (downcase (idna-to-ascii rhs
))))
5891 (when (and (not (equal rhs ace
))
5892 (or (not (eq message-use-idna
'ask
))
5893 (y-or-n-p (format "Replace %s with %s in %s:? "
5895 (goto-char (point-min))
5896 (while (re-search-forward (concat "^" header
":") nil t
)
5897 (message-narrow-to-field)
5898 (while (search-forward (concat "@" rhs
) nil t
)
5899 (replace-match (concat "@" ace
) t t
))
5900 (goto-char (point-max))
5903 (defun message-idna-to-ascii-rhs ()
5904 "Possibly IDNA encode non-ASCII domain names in From:, To: and Cc: headers.
5905 See `message-idna-encode'."
5907 (when message-use-idna
5910 ;; `message-narrow-to-head' that recognizes only the first empty
5911 ;; line as the message header separator used to be used here.
5912 ;; However, since there is the "--text follows this line--" line
5913 ;; normally, it failed in narrowing to the headers and potentially
5914 ;; caused the IDNA encoding on lines that look like headers in
5915 ;; the message body.
5916 (message-narrow-to-headers-or-head)
5917 (message-idna-to-ascii-rhs-1 "From")
5918 (message-idna-to-ascii-rhs-1 "To")
5919 (message-idna-to-ascii-rhs-1 "Reply-To")
5920 (message-idna-to-ascii-rhs-1 "Mail-Reply-To")
5921 (message-idna-to-ascii-rhs-1 "Mail-Followup-To")
5922 (message-idna-to-ascii-rhs-1 "Cc")))))
5926 (defvar Organization
)
5931 (defvar In-Reply-To
)
5934 (defvar Distribution
)
5939 (defun message-generate-headers (headers)
5940 "Prepare article HEADERS.
5941 Headers already prepared in the buffer are not modified."
5942 (setq headers
(append headers message-required-headers
))
5944 (message-narrow-to-headers)
5945 (let* ((Date (message-make-date))
5946 (Message-ID (message-make-message-id))
5947 (Organization (message-make-organization))
5948 (From (message-make-from))
5949 (Path (message-make-path))
5952 (In-Reply-To (message-make-in-reply-to))
5953 (References (message-make-references))
5955 (Distribution (message-make-distribution))
5956 (Lines (message-make-lines))
5957 (User-Agent message-newsreader
)
5958 (Expires (message-make-expires))
5959 (case-fold-search t
)
5961 header value elem header-string
)
5962 ;; First we remove any old generated headers.
5963 (let ((headers message-deletable-headers
))
5964 (unless (buffer-modified-p)
5965 (setq headers
(delq 'Message-ID
(copy-sequence headers
))))
5967 (goto-char (point-min))
5968 (and (re-search-forward
5969 (concat "^" (symbol-name (car headers
)) ": *") nil t
)
5970 (get-text-property (1+ (match-beginning 0)) 'message-deletable
)
5971 (message-delete-line))
5973 ;; Go through all the required headers and see if they are in the
5974 ;; articles already. If they are not, or are empty, they are
5975 ;; inserted automatically - except for Subject, Newsgroups and
5978 (goto-char (point-min))
5979 (setq elem
(pop headers
))
5981 (if (eq (car elem
) 'optional
)
5982 (setq header
(cdr elem
)
5984 (setq header
(car elem
)))
5986 (setq header-string
(if (stringp header
)
5988 (symbol-name header
)))
5989 (when (or (not (re-search-forward
5991 (regexp-quote (downcase header-string
))
5995 ;; The header was found. We insert a space after the
5996 ;; colon, if there is none.
5997 (if (/= (char-after) ?
) (insert " ") (forward-char 1))
5998 ;; Find out whether the header is empty.
5999 (looking-at "[ \t]*\n[^ \t]")))
6000 ;; So we find out what value we should insert.
6004 (eq (car elem
) 'optional
)
6005 (not (member header-string message-inserted-headers
)))
6006 ;; This is an optional header. If the cdr of this
6007 ;; is something that is nil, then we do not insert
6009 (setq header
(cdr elem
))
6010 (or (and (functionp (cdr elem
))
6011 (funcall (cdr elem
)))
6012 (and (boundp (cdr elem
))
6013 (symbol-value (cdr elem
)))))
6015 ;; The element is a cons. Either the cdr is a
6016 ;; string to be inserted verbatim, or it is a
6017 ;; function, and we insert the value returned from
6019 (or (and (stringp (cdr elem
))
6021 (and (functionp (cdr elem
))
6022 (funcall (cdr elem
)))))
6023 ((and (boundp header
)
6024 (symbol-value header
))
6025 ;; The element is a symbol. We insert the value
6026 ;; of this symbol, if any.
6027 (symbol-value header
))
6028 ((not (message-check-element
6029 (intern (downcase (symbol-name header
)))))
6030 ;; We couldn't generate a value for this header,
6031 ;; so we just ask the user.
6032 (read-from-minibuffer
6033 (format "Empty header for %s; enter value: " header
)))))
6034 ;; Finally insert the header.
6036 (not (equal value
"")))
6040 ;; This header didn't exist, so we insert it.
6041 (goto-char (point-max))
6043 (cdr (assq header message-header-format-alist
))))
6045 (funcall formatter header value
)
6046 (insert header-string
": " value
))
6047 (push header-string message-inserted-headers
)
6048 (goto-char (message-fill-field))
6049 ;; We check whether the value was ended by a
6050 ;; newline. If not, we insert one.
6054 ;; The value of this header was empty, so we clear
6055 ;; totally and insert the new value.
6056 (delete-region (point) (point-at-eol))
6057 ;; If the header is optional, and the header was
6058 ;; empty, we can't insert it anyway.
6060 (push header-string message-inserted-headers
)
6062 (message-fill-field)))
6063 ;; Add the deletable property to the headers that require it.
6064 (and (memq header message-deletable-headers
)
6065 (progn (beginning-of-line) (looking-at "[^:]+: "))
6066 (add-text-properties
6067 (point) (match-end 0)
6068 '(message-deletable t face italic
) (current-buffer)))))))
6069 ;; Insert new Sender if the From is strange.
6070 (let ((from (message-fetch-field "from"))
6071 (sender (message-fetch-field "sender"))
6072 (secure-sender (message-make-sender)))
6074 (not (message-check-element 'sender
))
6077 (cadr (mail-extract-address-components from
)))
6078 (downcase secure-sender
)))
6083 (cadr (mail-extract-address-components sender
)))
6084 (downcase secure-sender
)))))
6085 (goto-char (point-min))
6086 ;; Rename any old Sender headers to Original-Sender.
6087 (when (re-search-forward "^\\(Original-\\)*Sender:" nil t
)
6089 (insert "Original-")
6090 (beginning-of-line))
6091 (when (or (message-news-p)
6092 (string-match "@.+\\.." secure-sender
))
6093 (insert "Sender: " secure-sender
"\n"))))
6095 (message-idna-to-ascii-rhs))))
6097 (defun message-insert-courtesy-copy (message)
6098 "Insert a courtesy message in mail copies of combined messages."
6102 (message-narrow-to-headers)
6103 (when (setq newsgroups
(message-fetch-field "newsgroups"))
6104 (goto-char (point-max))
6105 (insert "Posted-To: " newsgroups
"\n")))
6109 ((string-match "%s" message
)
6110 (insert (format message newsgroups
)))
6112 (insert message
)))))))
6115 ;;; Setting up a message buffer
6118 (defun message-skip-to-next-address ()
6119 (let ((end (save-excursion
6120 (message-next-header)
6123 (when (looking-at ",")
6125 (while (and (not (= (point) end
))
6126 (or (not (eq char ?
,))
6128 (skip-chars-forward "^,\"" end
)
6129 (when (eq (setq char
(following-char)) ?
\")
6130 (setq quoted
(not quoted
)))
6131 (unless (= (point) end
)
6133 (skip-chars-forward " \t\n")))
6135 (defun message-split-line ()
6136 "Split current line, moving portion beyond point vertically down.
6137 If the current line has `message-yank-prefix', insert it on the new line."
6140 (split-line message-yank-prefix
) ;; Emacs 22.1+ supports arg.
6144 (defun message-insert-header (header value
)
6145 (insert (capitalize (symbol-name header
))
6147 (if (consp value
) (car value
) value
)))
6149 (defun message-field-name ()
6151 (goto-char (point-min))
6152 (when (looking-at "\\([^:]+\\):")
6153 (intern (capitalize (match-string 1))))))
6155 (defun message-fill-field ()
6158 (message-narrow-to-field)
6159 (let ((field-name (message-field-name)))
6160 (funcall (or (cadr (assq field-name message-field-fillers
))
6161 'message-fill-field-general
)))
6164 (defun message-fill-field-address ()
6167 (message-skip-to-next-address)
6173 (when (and (> (current-column) 78)
6177 (delete-char (- (skip-chars-backward " \t")))
6179 (setq last
(point)))
6180 (forward-line end
)))
6182 (defun message-fill-field-general ()
6183 (let ((begin (point))
6186 (while (and (search-forward "\n" nil t
)
6188 (replace-match " " t t
))
6189 (fill-region-as-paragraph begin
(point-max))
6190 ;; Tapdance around looong Message-IDs.
6192 (when (looking-at "[ \t]*$")
6193 (message-delete-line))
6195 (search-forward ":" nil t
)
6196 (when (looking-at "\n[ \t]+")
6197 (replace-match " " t t
))
6198 (goto-char (point-max))))
6200 (defun message-shorten-1 (list cut surplus
)
6201 "Cut SURPLUS elements out of LIST, beginning with CUTth one."
6202 (setcdr (nthcdr (- cut
2) list
)
6203 (nthcdr (+ (- cut
2) surplus
1) list
)))
6205 (defun message-shorten-references (header references
)
6206 "Trim REFERENCES to be 21 Message-ID long or less, and fold them.
6207 When sending via news, also check that the REFERENCES are less
6208 than 988 characters long, and if they are not, trim them until
6210 ;; 21 is the number suggested by USAGE.
6217 (goto-char (point-min))
6218 ;; Cons a list of valid references. GNKSA says we must not include MIDs
6219 ;; with whitespace or missing brackets (7.a "Does not propagate broken
6220 ;; Message-IDs in original References").
6221 (while (re-search-forward "<[^ <]+@[^ <]+>" nil t
)
6222 (push (match-string 0) refs
))
6223 (setq refs
(nreverse refs
)
6224 count
(length refs
)))
6226 ;; If the list has more than MAXCOUNT elements, trim it by
6227 ;; removing the CUTth element and the required number of
6228 ;; elements that follow.
6229 (when (> count maxcount
)
6230 (let ((surplus (- count maxcount
)))
6231 (message-shorten-1 refs cut surplus
)
6232 (decf count surplus
)))
6234 ;; When sending via news, make sure the total folded length will
6235 ;; be less than 998 characters. This is to cater to broken INN
6236 ;; 2.3 which counts the total number of characters in a header
6237 ;; rather than the physical line length of each line, as it should.
6239 ;; This hack should be removed when it's believed than INN 2.3 is
6240 ;; no longer widely used.
6242 ;; At this point the headers have not been generated, thus we use
6243 ;; message-this-is-news directly.
6244 (when message-this-is-news
6247 (message-insert-header
6248 header
(mapconcat #'identity refs
" "))
6250 (message-shorten-1 refs cut
1)))
6251 ;; Finally, collect the references back into a string and insert
6252 ;; it into the buffer.
6253 (message-insert-header header
(mapconcat #'identity refs
" "))))
6255 (defun message-position-point ()
6256 "Move point to where the user probably wants to find it."
6257 (message-narrow-to-headers)
6259 ((re-search-forward "^[^:]+:[ \t]*$" nil t
)
6260 (search-backward ":" )
6263 (if (eq (char-after) ?
)
6267 (goto-char (point-max))
6270 (unless (looking-at "$")
6274 (defcustom message-beginning-of-line t
6275 "Whether \\<message-mode-map>\\[message-beginning-of-line]\
6276 goes to beginning of header values."
6278 :group
'message-buffers
6279 :link
'(custom-manual "(message)Movement")
6282 (defun message-beginning-of-line (&optional n
)
6283 "Move point to beginning of header value or to beginning of line.
6284 The prefix argument N is passed directly to `beginning-of-line'.
6286 This command is identical to `beginning-of-line' if point is
6287 outside the message header or if the option `message-beginning-of-line'
6290 If point is in the message header and on a (non-continued) header
6291 line, move point to the beginning of the header value or the beginning of line,
6292 whichever is closer. If point is already at beginning of line, move point to
6293 beginning of header value. Therefore, repeated calls will toggle point
6294 between beginning of field and beginning of line."
6296 (let ((zrs 'zmacs-region-stays
))
6297 (when (and (featurep 'xemacs
) (interactive-p) (boundp zrs
))
6299 (if (and message-beginning-of-line
6300 (message-point-in-header-p))
6301 (let* ((here (point))
6302 (bol (progn (beginning-of-line n
) (point)))
6303 (eol (point-at-eol))
6304 (eoh (re-search-forward ": *" eol t
)))
6306 (if (and eoh
(or (< eoh here
) (= bol here
)))
6308 (beginning-of-line n
)))
6310 (defun message-buffer-name (type &optional to group
)
6311 "Return a new (unique) buffer name based on TYPE and TO."
6313 ;; Generate a new buffer name The Message Way.
6314 ((memq message-generate-new-buffers
'(unique t
))
6315 (generate-new-buffer-name
6319 (or (car (mail-extract-address-components to
))
6322 (if (and group
(not (string= group
""))) (concat " on " group
) "")
6324 ;; Check whether `message-generate-new-buffers' is a function,
6325 ;; and if so, call it.
6326 ((functionp message-generate-new-buffers
)
6327 (funcall message-generate-new-buffers type to group
))
6328 ((eq message-generate-new-buffers
'unsent
)
6329 (generate-new-buffer-name
6330 (concat "*unsent " type
6333 (or (car (mail-extract-address-components to
))
6336 (if (and group
(not (string= group
""))) (concat " on " group
) "")
6338 ;; Search for the existing message buffer with the specified name.
6340 (let* ((new (if (eq message-generate-new-buffers
'standard
)
6341 (generate-new-buffer-name (concat "*" type
" message*"))
6342 (let ((message-generate-new-buffers 'unique
))
6343 (message-buffer-name type to group
))))
6344 (regexp (concat "\\`"
6346 (if (string-match "<[0-9]+>\\'" new
)
6347 (substring new
0 (match-beginning 0))
6349 "\\(?:<\\([0-9]+\\)>\\)?\\'"))
6350 (case-fold-search nil
))
6357 (when (and (string-match regexp
(setq b
(buffer-name b
)))
6358 (eq (with-current-buffer b major-mode
)
6360 (cons (string-to-number (or (match-string 1 b
) "1"))
6363 'car-less-than-car
)))
6366 (defun message-pop-to-buffer (name &optional switch-function
)
6367 "Pop to buffer NAME, and warn if it already exists and is modified."
6368 (let ((buffer (get-buffer name
)))
6370 (buffer-name buffer
))
6371 (let ((window (get-buffer-window buffer
0)))
6373 ;; Raise the frame already displaying the message buffer.
6375 (gnus-select-frame-set-input-focus (window-frame window
))
6376 (select-window window
))
6377 (funcall (or switch-function
#'pop-to-buffer
) buffer
)
6378 (set-buffer buffer
))
6379 (when (and (buffer-modified-p)
6382 "Message already being composed; erase? ")
6384 (error "Message being composed")))
6385 (funcall (or switch-function
6386 (if (fboundp #'pop-to-buffer-same-window
)
6387 #'pop-to-buffer-same-window
6394 (defun message-do-send-housekeeping ()
6395 "Kill old message buffers."
6396 ;; We might have sent this buffer already. Delete it from the
6398 (setq message-buffer-list
(delq (current-buffer) message-buffer-list
))
6399 (while (and message-max-buffers
6401 (>= (length message-buffer-list
) message-max-buffers
))
6402 ;; Kill the oldest buffer -- unless it has been changed.
6403 (let ((buffer (pop message-buffer-list
)))
6404 (when (and (buffer-name buffer
)
6405 (not (buffer-modified-p buffer
)))
6406 (kill-buffer buffer
))))
6407 ;; Rename the buffer.
6408 (if message-send-rename-function
6409 (funcall message-send-rename-function
)
6410 (message-default-send-rename-function))
6411 ;; Push the current buffer onto the list.
6412 (when message-max-buffers
6413 (setq message-buffer-list
6414 (nconc message-buffer-list
(list (current-buffer))))))
6416 (defun message-default-send-rename-function ()
6417 ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
6419 "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
6421 (let ((name (match-string 2 (buffer-name)))
6423 (if (not (or (null name
)
6424 (string-equal name
"mail")
6425 (string-equal name
"posting")))
6426 (setq name
(concat "*sent " name
"*"))
6427 (message-narrow-to-headers)
6428 (setq to
(message-fetch-field "to"))
6429 (setq group
(message-fetch-field "newsgroups"))
6433 (to (concat "*sent mail to "
6434 (or (car (mail-extract-address-components to
))
6436 ((and group
(not (string= group
"")))
6437 (concat "*sent posting on " group
"*"))
6438 (t "*sent mail*"))))
6439 (unless (string-equal name
(buffer-name))
6440 (rename-buffer name t
)))))
6442 (defun message-mail-user-agent ()
6444 ((not message-mail-user-agent
) nil
)
6445 ((eq message-mail-user-agent t
) mail-user-agent
)
6446 (t message-mail-user-agent
))))
6447 (if (memq mua
'(message-user-agent gnus-user-agent
))
6451 ;; YANK-ACTION, if non-nil, can be a buffer or a yank action of the
6452 ;; form (FUNCTION . ARGS).
6453 (defun message-setup (headers &optional yank-action actions
6454 continue switch-function return-action
)
6455 (let ((mua (message-mail-user-agent))
6457 (if (not (and message-this-is-mail mua
))
6458 (message-setup-1 headers yank-action actions return-action
)
6459 (setq headers
(copy-sequence headers
))
6460 (setq field
(assq 'Subject headers
))
6462 (setq subject
(cdr field
))
6463 (setq headers
(delq field headers
)))
6464 (setq field
(assq 'To headers
))
6466 (setq to
(cdr field
))
6467 (setq headers
(delq field headers
)))
6468 (let ((mail-user-agent mua
))
6469 (compose-mail to subject
6470 (mapcar (lambda (item)
6472 (format "%s" (car item
))
6475 continue switch-function
6476 (if (bufferp yank-action
)
6477 (list 'insert-buffer yank-action
)
6481 (defun message-headers-to-generate (headers included-headers excluded-headers
)
6482 "Return a list that includes all headers from HEADERS.
6483 If INCLUDED-HEADERS is a list, just include those headers. If it is
6484 t, include all headers. In any case, headers from EXCLUDED-HEADERS
6488 (dolist (header headers
)
6489 (setq header-name
(cond
6490 ((and (consp header
)
6491 (eq (car header
) 'optional
))
6492 ;; On the form (optional . Header)
6495 ;; On the form (Header . function)
6500 (when (and (not (memq header-name excluded-headers
))
6501 (or (eq included-headers t
)
6502 (memq header-name included-headers
)))
6503 (push header result
)))
6506 (defun message-setup-1 (headers &optional yank-action actions return-action
)
6507 (dolist (action actions
)
6509 (add-to-list 'message-send-actions
6510 `(apply ',(car action
) ',(cdr action
)))))
6511 (setq message-return-action return-action
)
6512 (setq message-reply-buffer
6513 (if (and (consp yank-action
)
6514 (eq (car yank-action
) 'insert-buffer
))
6517 (goto-char (point-min))
6518 ;; Insert all the headers.
6521 (alist message-header-format-alist
))
6523 (unless (assq (caar h
) message-header-format-alist
)
6524 (push (list (caar h
)) alist
))
6528 (delete-region (point) (progn (forward-line -
1) (point)))
6529 (when message-default-headers
6531 (if (functionp message-default-headers
)
6532 (funcall message-default-headers
)
6533 message-default-headers
))
6534 (or (bolp) (insert ?
\n)))
6535 (insert (concat mail-header-separator
"\n"))
6537 ;; If a crash happens while replying, the auto-save file would *not* have a
6538 ;; `References:' header if `message-generate-headers-first' was nil.
6539 ;; Therefore, always generate it first.
6540 (let ((message-generate-headers-first
6541 (if (eq message-generate-headers-first t
)
6543 (append message-generate-headers-first
'(References)))))
6544 (when (message-news-p)
6545 (when message-default-news-headers
6546 (insert message-default-news-headers
)
6547 (or (bolp) (insert ?
\n)))
6548 (message-generate-headers
6549 (message-headers-to-generate
6550 (append message-required-news-headers
6551 message-required-headers
)
6552 message-generate-headers-first
6554 (when (message-mail-p)
6555 (when message-default-mail-headers
6556 (insert message-default-mail-headers
)
6557 (or (bolp) (insert ?
\n)))
6558 (message-generate-headers
6559 (message-headers-to-generate
6560 (append message-required-mail-headers
6561 message-required-headers
)
6562 message-generate-headers-first
6563 '(Lines Subject
)))))
6564 (run-hooks 'message-signature-setup-hook
)
6565 (message-insert-signature)
6567 (message-narrow-to-headers)
6568 (run-hooks 'message-header-setup-hook
))
6569 (setq buffer-undo-list nil
)
6570 (when message-generate-hashcash
6571 ;; Generate hashcash headers for recipients already known
6572 (mail-add-payment-async))
6573 ;; Gnus posting styles are applied via buffer-local `message-setup-hook'
6575 (run-hooks 'message-setup-hook
)
6576 ;; Do this last to give it precedence over posting styles, etc.
6577 (when (message-mail-p)
6579 (message-narrow-to-headers)
6580 (if message-alternative-emails
6581 (message-use-alternative-email-as-from))))
6582 (message-position-point)
6583 ;; Allow correct handling of `message-checksum' in `message-yank-original':
6584 (set-buffer-modified-p nil
)
6586 ;; rmail-start-mail expects message-mail to return t (Bug#9392)
6589 (defun message-set-auto-save-file-name ()
6590 "Associate the message buffer with a file in the drafts directory."
6591 (when message-auto-save-directory
6592 (unless (file-directory-p
6593 (directory-file-name message-auto-save-directory
))
6594 (make-directory message-auto-save-directory t
))
6596 (setq message-draft-article
6597 (nndraft-request-associate-buffer "drafts"))
6599 ;; If Gnus were alive, draft messages would be saved in the drafts folder.
6600 ;; But Gnus is not alive, so arrange to save the draft message in a
6601 ;; regular file in message-auto-save-directory. Append a unique
6602 ;; time-based suffix to the filename to allow multiple drafts to be saved
6603 ;; simultaneously without overwriting each other (which mimics the
6604 ;; functionality of the Gnus drafts folder).
6605 (setq buffer-file-name
(expand-file-name
6607 (if (memq system-type
6608 '(ms-dos windows-nt cygwin
))
6611 (format-time-string "-%Y%m%d-%H%M%S"))
6612 message-auto-save-directory
))
6613 (setq buffer-auto-save-file-name
(make-auto-save-file-name)))
6614 (clear-visited-file-modtime)
6615 (setq buffer-file-coding-system message-draft-coding-system
)))
6617 (defun message-disassociate-draft ()
6618 "Disassociate the message buffer from the drafts directory."
6619 (when message-draft-article
6620 (nndraft-request-expire-articles
6621 (list message-draft-article
) "drafts" nil t
)))
6623 (defun message-insert-headers ()
6624 "Generate the headers for the article."
6628 (message-narrow-to-headers)
6629 (when (message-news-p)
6630 (message-generate-headers
6633 (copy-sequence message-required-news-headers
)))))
6634 (when (message-mail-p)
6635 (message-generate-headers
6638 (copy-sequence message-required-mail-headers
))))))))
6643 ;;; Commands for interfacing with message
6647 (defun message-mail (&optional to subject other-headers continue
6648 switch-function yank-action send-actions
6649 return-action
&rest ignored
)
6650 "Start editing a mail message to be sent.
6651 OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether
6652 to continue editing a message already being composed. SWITCH-FUNCTION
6653 is a function used to switch to and display the mail buffer."
6655 (let ((message-this-is-mail t
))
6656 (unless (message-mail-user-agent)
6657 (message-pop-to-buffer
6658 ;; Search for the existing message buffer if `continue' is non-nil.
6659 (let ((message-generate-new-buffers
6660 (when (or (not continue
)
6661 (eq message-generate-new-buffers
'standard
)
6662 (functionp message-generate-new-buffers
))
6663 message-generate-new-buffers
)))
6664 (message-buffer-name "mail" to
))
6668 `((To .
,(or to
"")) (Subject .
,(or subject
"")))
6669 ;; C-h f compose-mail says that headers should be specified as
6670 ;; (string . value); however all the rest of message expects
6671 ;; headers to be symbols, not strings (eg message-header-format-alist).
6672 ;; http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00337.html
6673 ;; We need to convert any string input, eg from rmail-start-mail.
6674 (dolist (h other-headers other-headers
)
6675 (if (stringp (car h
)) (setcar h
(intern (capitalize (car h
)))))))
6676 yank-action send-actions continue switch-function
6680 (defun message-news (&optional newsgroups subject
)
6681 "Start editing a news article to be sent."
6683 (let ((message-this-is-news t
))
6684 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
))
6685 (message-setup `((Newsgroups .
,(or newsgroups
""))
6686 (Subject .
,(or subject
""))))))
6688 (defun message-alter-recipients-discard-bogus-full-name (addrcell)
6689 "Discard mail address in full names.
6690 When the full name in reply headers contains the mail
6691 address (e.g. \"foo@bar <foo@bar>\"), discard full name.
6692 ADDRCELL is a cons cell where the car is the mail address and the
6693 cdr is the complete address (full name and mail address)."
6694 (if (string-match (concat (regexp-quote (car addrcell
)) ".*"
6695 (regexp-quote (car addrcell
)))
6697 (cons (car addrcell
) (car addrcell
))
6700 (defcustom message-alter-recipients-function nil
6701 "Function called to allow alteration of reply header structures.
6702 It is called in `message-get-reply-headers' for each recipient.
6703 The function is called with one parameter, a cons cell ..."
6704 :type
'(choice (const :tag
"None" nil
)
6705 (const :tag
"Discard bogus full name"
6706 message-alter-recipients-discard-bogus-full-name
)
6708 :version
"23.1" ;; No Gnus
6709 :group
'message-headers
)
6711 (defun message-get-reply-headers (wide &optional to-address address-headers
)
6712 (let (follow-to mct never-mct to cc author mft recipients extra
)
6713 ;; Find all relevant headers we need.
6715 (message-narrow-to-headers-or-head)
6716 ;; Gmane renames "To". Look at "Original-To", too, if it is present in
6717 ;; message-header-synonyms.
6718 (setq to
(or (message-fetch-field "to")
6719 (and (loop for synonym in message-header-synonyms
6720 when
(memq 'Original-To synonym
)
6722 (message-fetch-field "original-to")))
6723 cc
(message-fetch-field "cc")
6724 extra
(when message-extra-wide-headers
6725 (mapconcat 'identity
6726 (mapcar 'message-fetch-field
6727 message-extra-wide-headers
)
6729 mct
(message-fetch-field "mail-copies-to")
6730 author
(or (message-fetch-field "mail-reply-to")
6731 (message-fetch-field "reply-to")
6732 (message-fetch-field "from")
6734 mft
(and message-use-mail-followup-to
6735 (message-fetch-field "mail-followup-to"))))
6737 ;; Handle special values of Mail-Copies-To.
6739 (cond ((or (equal (downcase mct
) "never")
6740 (equal (downcase mct
) "nobody"))
6743 ((or (equal (downcase mct
) "always")
6744 (equal (downcase mct
) "poster"))
6745 (setq mct author
))))
6748 ;; Build (textual) list of new recipient addresses.
6751 (setq recipients
(concat ", " to-address
))
6752 ;; If the author explicitly asked for a copy, we don't deny it to them.
6753 (if mct
(setq recipients
(concat recipients
", " mct
))))
6755 (setq recipients
(concat ", " author
)))
6757 (dolist (header address-headers
)
6758 (let ((value (message-fetch-field header
)))
6760 (setq recipients
(concat recipients
", " value
))))))
6762 (string-match "[^ \t,]" mft
)
6763 (or (not (eq message-use-mail-followup-to
'ask
))
6764 (message-y-or-n-p "Obey Mail-Followup-To? " t
"\
6765 You should normally obey the Mail-Followup-To: header. In this
6766 article, it has the value of
6770 which directs your response to " (if (string-match "," mft
)
6771 "the specified addresses"
6772 "that address only") ".
6774 Most commonly, Mail-Followup-To is used by a mailing list poster to
6775 express that responses should be sent to just the list, and not the
6778 If a message is posted to several mailing lists, Mail-Followup-To may
6779 also be used to direct the following discussion to one list only,
6780 because discussions that are spread over several lists tend to be
6781 fragmented and very difficult to follow.
6783 Also, some source/announcement lists are not intended for discussion;
6784 responses here are directed to other addresses.
6786 You may customize the variable `message-use-mail-followup-to', if you
6787 want to get rid of this query permanently.")))
6788 (setq recipients
(concat ", " mft
)))
6790 (setq recipients
(if never-mct
"" (concat ", " author
)))
6791 (if to
(setq recipients
(concat recipients
", " to
)))
6792 (if cc
(setq recipients
(concat recipients
", " cc
)))
6793 (if extra
(setq recipients
(concat recipients
", " extra
)))
6794 (if mct
(setq recipients
(concat recipients
", " mct
)))))
6795 (if (>= (length recipients
) 2)
6796 ;; Strip the leading ", ".
6797 (setq recipients
(substring recipients
2)))
6798 ;; Squeeze whitespace.
6799 (while (string-match "[ \t][ \t]+" recipients
)
6800 (setq recipients
(replace-match " " t t recipients
)))
6801 ;; Remove addresses that match `mail-dont-reply-to-names'.
6802 (let ((mail-dont-reply-to-names (message-dont-reply-to-names)))
6803 (setq recipients
(mail-dont-reply-to recipients
)))
6804 ;; Perhaps "Mail-Copies-To: never" removed the only address?
6805 (if (string-equal recipients
"")
6806 (setq recipients author
))
6807 ;; Convert string to a list of (("foo@bar" . "Name <Foo@BAR>") ...).
6811 (if message-alter-recipients-function
6812 (funcall message-alter-recipients-function
6813 (cons (downcase (mail-strip-quoted-names addr
))
6815 (cons (downcase (mail-strip-quoted-names addr
)) addr
)))
6816 (message-tokenize-header recipients
)))
6817 ;; Remove all duplicates.
6818 (let ((s recipients
))
6820 (let ((address (car (pop s
))))
6821 (while (assoc address s
)
6822 (setq recipients
(delq (assoc address s
) recipients
)
6823 s
(delq (assoc address s
) s
))))))
6825 ;; Remove hierarchical lists that are contained within each other,
6826 ;; if message-hierarchical-addresses is defined.
6827 (when message-hierarchical-addresses
6828 (let ((plain-addrs (mapcar 'car recipients
))
6831 (setq subaddrs
(assoc (car plain-addrs
)
6832 message-hierarchical-addresses
)
6833 plain-addrs
(cdr plain-addrs
))
6835 (setq subaddrs
(cdr subaddrs
))
6837 (setq recip
(assoc (car subaddrs
) recipients
)
6838 subaddrs
(cdr subaddrs
))
6840 (setq recipients
(delq recip recipients
))))))))
6842 (setq recipients
(message-prune-recipients recipients
))
6844 ;; Build the header alist. Allow the user to be asked whether
6845 ;; or not to reply to all recipients in a wide reply.
6846 (setq follow-to
(list (cons 'To
(cdr (pop recipients
)))))
6847 (when (and recipients
6848 (or (not message-wide-reply-confirm-recipients
)
6849 (y-or-n-p "Reply to all recipients? ")))
6850 (setq recipients
(mapconcat
6851 (lambda (addr) (cdr addr
)) recipients
", "))
6852 (if (string-match "^ +" recipients
)
6853 (setq recipients
(substring recipients
(match-end 0))))
6854 (push (cons 'Cc recipients
) follow-to
)))
6857 (defun message-prune-recipients (recipients)
6858 (dolist (rule message-prune-recipient-rules
)
6859 (let ((match (car rule
))
6862 (dolist (recipient recipients
)
6863 (setq address
(car recipient
))
6864 (when (string-match match address
)
6865 (setq dup-match
(replace-match (cadr rule
) nil nil address
))
6866 (dolist (recipient recipients
)
6867 ;; Don't delete the address that triggered this.
6868 (when (and (not (eq address
(car recipient
)))
6869 (string-match dup-match
(car recipient
)))
6870 (setq recipients
(delq recipient recipients
))))))))
6873 (defcustom message-simplify-subject-functions
6874 '(message-strip-list-identifiers
6875 message-strip-subject-re
6876 message-strip-subject-trailing-was
6877 message-strip-subject-encoded-words
)
6878 "List of functions taking a string argument that simplify subjects.
6879 The functions are applied when replying to a message.
6881 Useful functions to put in this list include:
6882 `message-strip-list-identifiers', `message-strip-subject-re',
6883 `message-strip-subject-trailing-was', and
6884 `message-strip-subject-encoded-words'."
6885 :version
"22.1" ;; Gnus 5.10.9
6886 :group
'message-various
6887 :type
'(repeat function
))
6889 (defun message-simplify-subject (subject &optional functions
)
6890 "Return simplified SUBJECT."
6893 (setq functions message-simplify-subject-functions
))
6894 (when (and (memq 'message-strip-list-identifiers functions
)
6895 gnus-list-identifiers
)
6896 (setq subject
(message-strip-list-identifiers subject
)))
6897 (when (memq 'message-strip-subject-re functions
)
6898 (setq subject
(concat "Re: " (message-strip-subject-re subject
))))
6899 (when (and (memq 'message-strip-subject-trailing-was functions
)
6900 message-subject-trailing-was-query
)
6901 (setq subject
(message-strip-subject-trailing-was subject
)))
6902 (when (memq 'message-strip-subject-encoded-words functions
)
6903 (setq subject
(message-strip-subject-encoded-words subject
)))
6907 (defun message-reply (&optional to-address wide switch-function
)
6908 "Start editing a reply to the article in the current buffer."
6910 (require 'gnus-sum
) ; for gnus-list-identifiers
6911 (let ((cur (current-buffer))
6913 references message-id follow-to
6914 (inhibit-point-motion-hooks t
)
6915 (message-this-is-mail t
)
6918 (message-narrow-to-head-1)
6919 ;; Allow customizations to have their say.
6921 ;; This is a regular reply.
6922 (when (functionp message-reply-to-function
)
6924 (setq follow-to
(funcall message-reply-to-function
))))
6925 ;; This is a followup.
6926 (when (functionp message-wide-reply-to-function
)
6929 (funcall message-wide-reply-to-function
)))))
6930 (setq message-id
(message-fetch-field "message-id" t
)
6931 references
(message-fetch-field "references")
6932 date
(message-fetch-field "date")
6933 from
(or (message-fetch-field "from") "nobody")
6934 subject
(or (message-fetch-field "subject") "none"))
6936 ;; Strip list identifiers, "Re: ", and "was:"
6937 (setq subject
(message-simplify-subject subject
))
6939 (when (and (setq gnus-warning
(message-fetch-field "gnus-warning"))
6940 (string-match "<[^>]+>" gnus-warning
))
6941 (setq message-id
(match-string 0 gnus-warning
)))
6944 (setq follow-to
(message-get-reply-headers wide to-address
))))
6947 `((Subject .
,subject
)
6949 (unless (message-mail-user-agent)
6950 (message-pop-to-buffer
6951 (message-buffer-name
6952 (if wide
"wide reply" "reply") from
6953 (if wide to-address nil
))
6955 (setq message-reply-headers
6956 (vector 0 (cdr (assq 'Subject headers
))
6957 from date message-id references
0 0 ""))
6958 (message-setup headers cur
))))
6961 (defun message-wide-reply (&optional to-address
)
6962 "Make a \"wide\" reply to the message in the current buffer."
6964 (message-reply to-address t
))
6967 (defun message-followup (&optional to-newsgroups
)
6968 "Follow up to the message in the current buffer.
6969 If TO-NEWSGROUPS, use that as the new Newsgroups line."
6971 (require 'gnus-sum
) ; for gnus-list-identifiers
6972 (let ((cur (current-buffer))
6973 from subject date reply-to mrt mct
6974 references message-id follow-to
6975 (inhibit-point-motion-hooks t
)
6976 (message-this-is-news t
)
6977 followup-to distribution newsgroups gnus-warning posted-to
)
6980 (goto-char (point-min))
6981 (if (search-forward "\n\n" nil t
)
6984 (when (functionp message-followup-to-function
)
6986 (funcall message-followup-to-function
)))
6987 (setq from
(message-fetch-field "from")
6988 date
(message-fetch-field "date")
6989 subject
(or (message-fetch-field "subject") "none")
6990 references
(message-fetch-field "references")
6991 message-id
(message-fetch-field "message-id" t
)
6992 followup-to
(message-fetch-field "followup-to")
6993 newsgroups
(message-fetch-field "newsgroups")
6994 posted-to
(message-fetch-field "posted-to")
6995 reply-to
(message-fetch-field "reply-to")
6996 mrt
(message-fetch-field "mail-reply-to")
6997 distribution
(message-fetch-field "distribution")
6998 mct
(message-fetch-field "mail-copies-to"))
6999 (when (and (setq gnus-warning
(message-fetch-field "gnus-warning"))
7000 (string-match "<[^>]+>" gnus-warning
))
7001 (setq message-id
(match-string 0 gnus-warning
)))
7002 ;; Remove bogus distribution.
7003 (when (and (stringp distribution
)
7004 (let ((case-fold-search t
))
7005 (string-match "world" distribution
)))
7006 (setq distribution nil
))
7007 ;; Strip list identifiers, "Re: ", and "was:"
7008 (setq subject
(message-simplify-subject subject
))
7011 (message-pop-to-buffer (message-buffer-name "followup" from newsgroups
))
7013 (setq message-reply-headers
7014 (vector 0 subject from date message-id references
0 0 ""))
7017 `((Subject .
,subject
)
7020 (list (cons 'Newsgroups to-newsgroups
)))
7021 (follow-to follow-to
)
7022 ((and followup-to message-use-followup-to
)
7025 ((equal (downcase followup-to
) "poster")
7026 (if (or (eq message-use-followup-to
'use
)
7027 (message-y-or-n-p "Obey Followup-To: poster? " t
"\
7028 You should normally obey the Followup-To: header.
7030 `Followup-To: poster' sends your response via e-mail instead of news.
7032 A typical situation where `Followup-To: poster' is used is when the poster
7033 does not read the newsgroup, so he wouldn't see any replies sent to it.
7035 You may customize the variable `message-use-followup-to', if you
7036 want to get rid of this query permanently."))
7038 (setq message-this-is-news nil
)
7039 (cons 'To
(or mrt reply-to from
"")))
7040 (cons 'Newsgroups newsgroups
)))
7042 (if (or (equal followup-to newsgroups
)
7043 (not (eq message-use-followup-to
'ask
))
7045 (concat "Obey Followup-To: " followup-to
"? ") t
"\
7046 You should normally obey the Followup-To: header.
7048 `Followup-To: " followup-to
"'
7049 directs your response to " (if (string-match "," followup-to
)
7050 "the specified newsgroups"
7051 "that newsgroup only") ".
7053 If a message is posted to several newsgroups, Followup-To is often
7054 used to direct the following discussion to one newsgroup only,
7055 because discussions that are spread over several newsgroup tend to
7056 be fragmented and very difficult to follow.
7058 Also, some source/announcement newsgroups are not intended for discussion;
7059 responses here are directed to other newsgroups.
7061 You may customize the variable `message-use-followup-to', if you
7062 want to get rid of this query permanently."))
7063 (cons 'Newsgroups followup-to
)
7064 (cons 'Newsgroups newsgroups
))))))
7066 `((Newsgroups .
,posted-to
)))
7068 `((Newsgroups .
,newsgroups
))))
7069 ,@(and distribution
(list (cons 'Distribution distribution
)))
7071 (not (or (equal (downcase mct
) "never")
7072 (equal (downcase mct
) "nobody"))))
7073 (list (cons 'Cc
(if (or (equal (downcase mct
) "always")
7074 (equal (downcase mct
) "poster"))
7075 (or mrt reply-to from
"")
7080 (defun message-is-yours-p ()
7081 "Non-nil means current article is yours.
7082 If you have added 'cancel-messages to `message-shoot-gnksa-feet', all articles
7083 are yours except those that have Cancel-Lock header not belonging to you.
7084 Instead of shooting GNKSA feet, you should modify `message-alternative-emails'
7085 regexp to match all of yours addresses."
7086 ;; Canlock-logic as suggested by Per Abrahamsen
7087 ;; <abraham@dina.kvl.dk>
7089 ;; IF article has cancel-lock THEN
7090 ;; IF we can verify it THEN
7093 ;; error: cancellock: article is not yours
7095 ;; Use old rules, comparing sender...
7098 (message-narrow-to-head-1)
7099 (if (and (message-fetch-field "Cancel-Lock")
7100 (message-gnksa-enable-p 'canlock-verify
))
7101 (if (null (canlock-verify))
7103 (error "Failed to verify Cancel-lock: This article is not yours"))
7106 (message-gnksa-enable-p 'cancel-messages
)
7107 (and (setq sender
(message-fetch-field "sender"))
7108 (string-equal (downcase sender
)
7109 (downcase (message-make-sender))))
7110 ;; Email address in From field equals to our address
7111 (and (setq from
(message-fetch-field "from"))
7113 (downcase (car (mail-header-parse-address from
)))
7114 (downcase (car (mail-header-parse-address
7115 (message-make-from))))))
7116 ;; Email address in From field matches
7117 ;; 'message-alternative-emails' regexp
7119 message-alternative-emails
7121 message-alternative-emails
7122 (car (mail-header-parse-address from
))))))))))
7125 (defun message-cancel-news (&optional arg
)
7126 "Cancel an article you posted.
7127 If ARG, allow editing of the cancellation message."
7129 (unless (message-news-p)
7130 (error "This is not a news article; canceling is impossible"))
7131 (let (from newsgroups message-id distribution buf
)
7133 ;; Get header info from original article.
7135 (message-narrow-to-head-1)
7136 (setq from
(message-fetch-field "from")
7137 newsgroups
(message-fetch-field "newsgroups")
7138 message-id
(message-fetch-field "message-id" t
)
7139 distribution
(message-fetch-field "distribution")))
7140 ;; Make sure that this article was written by the user.
7141 (unless (message-is-yours-p)
7142 (error "This article is not yours"))
7143 (when (yes-or-no-p "Do you really want to cancel this article? ")
7144 ;; Make control message.
7147 (setq buf
(set-buffer (get-buffer-create " *message cancel*"))))
7149 (insert "Newsgroups: " newsgroups
"\n"
7151 "Subject: cmsg cancel " message-id
"\n"
7152 "Control: cancel " message-id
"\n"
7154 (concat "Distribution: " distribution
"\n")
7156 mail-header-separator
"\n"
7157 message-cancel-message
)
7158 (run-hooks 'message-cancel-hook
)
7160 (message "Canceling your article...")
7161 (if (let ((message-syntax-checks
7162 'dont-check-for-anything-just-trust-me
))
7163 (funcall message-send-news-function
))
7164 (message "Canceling your article...done"))
7165 (kill-buffer buf
))))))
7168 (defun message-supersede ()
7169 "Start composing a message to supersede the current message.
7170 This is done simply by taking the old article and adding a Supersedes
7171 header line with the old Message-ID."
7173 (let ((cur (current-buffer)))
7174 ;; Check whether the user owns the article that is to be superseded.
7175 (unless (message-is-yours-p)
7176 (error "This article is not yours"))
7177 ;; Get a normal message buffer.
7178 (message-pop-to-buffer (message-buffer-name "supersede"))
7179 (insert-buffer-substring cur
)
7181 (message-narrow-to-head-1)
7182 ;; Remove unwanted headers.
7183 (when message-ignored-supersedes-headers
7184 (message-remove-header message-ignored-supersedes-headers t
))
7185 (goto-char (point-min))
7186 (if (not (re-search-forward "^Message-ID: " nil t
))
7187 (error "No Message-ID in this article")
7188 (replace-match "Supersedes: " t t
))
7189 (goto-char (point-max))
7190 (insert mail-header-separator
)
7195 (defun message-recover ()
7196 "Reread contents of current buffer from its last auto-save file."
7198 (let ((file-name (make-auto-save-file-name)))
7199 (cond ((save-window-excursion
7200 (with-output-to-temp-buffer "*Directory*"
7201 (with-current-buffer standard-output
7202 (fundamental-mode)) ; for Emacs 20.4+
7203 (buffer-disable-undo standard-output
)
7204 (let ((default-directory "/"))
7206 "ls" nil standard-output nil
"-l" file-name
)))
7207 (yes-or-no-p (format "Recover auto save file %s? " file-name
)))
7208 (let ((buffer-read-only nil
))
7210 (insert-file-contents file-name nil
)))
7211 (t (error "message-recover cancelled")))))
7213 ;;; Washing Subject:
7215 (defun message-wash-subject (subject)
7216 "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
7217 Previous forwarders, repliers, etc. may add it."
7220 (goto-char (point-min))
7221 ;; strip Re/Fwd stuff off the beginning
7222 (while (re-search-forward
7223 "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t
)
7226 ;; and gnus-style forwards [foo@bar.com] subject
7227 (goto-char (point-min))
7228 (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t
)
7232 (goto-char (point-max))
7233 (while (re-search-backward "([Ff][Ww][Dd])" nil t
)
7236 ;; and finally, any whitespace that was left-over
7237 (goto-char (point-min))
7238 (while (re-search-forward "^[ \t]+" nil t
)
7240 (goto-char (point-max))
7241 (while (re-search-backward "[ \t]+$" nil t
)
7246 ;;; Forwarding messages.
7248 (defvar message-forward-decoded-p nil
7249 "Non-nil means the original message is decoded.")
7251 (defun message-forward-subject-name-subject (subject)
7252 "Generate a SUBJECT for a forwarded message.
7253 The form is: [Source] Subject, where if the original message was mail,
7254 Source is the name of the sender, and if the original message was
7255 news, Source is the list of newsgroups is was posted to."
7256 (let* ((group (message-fetch-field "newsgroups"))
7257 (from (message-fetch-field "from"))
7260 (gnus-group-decoded-name group
)
7262 (car (gnus-extract-address-components from
))
7263 (cadr (gnus-extract-address-components from
))))
7266 (if message-forward-decoded-p
7268 (mail-decode-encoded-word-string prefix
))
7271 (defun message-forward-subject-author-subject (subject)
7272 "Generate a SUBJECT for a forwarded message.
7273 The form is: [Source] Subject, where if the original message was mail,
7274 Source is the sender, and if the original message was news, Source is
7275 the list of newsgroups is was posted to."
7276 (let* ((group (message-fetch-field "newsgroups"))
7279 (gnus-group-decoded-name group
)
7280 (or (message-fetch-field "from")
7283 (if message-forward-decoded-p
7285 (mail-decode-encoded-word-string prefix
))
7288 (defun message-forward-subject-fwd (subject)
7289 "Generate a SUBJECT for a forwarded message.
7290 The form is: Fwd: Subject, where Subject is the original subject of
7292 (if (string-match "^Fwd: " subject
)
7294 (concat "Fwd: " subject
)))
7296 (defun message-make-forward-subject ()
7297 "Return a Subject header suitable for the message in the current buffer."
7300 (message-narrow-to-head-1)
7301 (let ((funcs message-make-forward-subject-function
)
7302 (subject (message-fetch-field "Subject")))
7305 (if message-forward-decoded-p
7307 (mail-decode-encoded-word-string subject
))
7309 (when message-wash-forwarded-subjects
7310 (setq subject
(message-wash-subject subject
)))
7311 ;; Make sure funcs is a list.
7314 (setq funcs
(list funcs
)))
7315 ;; Apply funcs in order, passing subject generated by previous
7316 ;; func to the next one.
7317 (dolist (func funcs
)
7318 (when (functionp func
)
7319 (setq subject
(funcall func subject
))))
7322 (defvar gnus-article-decoded-p
)
7326 (defun message-forward (&optional news digest
)
7327 "Forward the current message via mail.
7328 Optional NEWS will use news to forward instead of mail.
7329 Optional DIGEST will use digest to forward."
7331 (let* ((cur (current-buffer))
7332 (message-forward-decoded-p
7333 (if (local-variable-p 'gnus-article-decoded-p
(current-buffer))
7334 gnus-article-decoded-p
;; In an article buffer.
7335 message-forward-decoded-p
))
7336 (subject (message-make-forward-subject)))
7338 (message-news nil subject
)
7339 (message-mail nil subject
))
7340 (message-forward-make-body cur digest
)))
7342 (defun message-forward-make-body-plain (forward-buffer)
7344 "\n-------------------- Start of forwarded message --------------------\n")
7346 (contents (with-current-buffer forward-buffer
(buffer-string)))
7348 (unless (featurep 'xemacs
)
7349 (unless (mm-multibyte-string-p contents
)
7350 (error "Attempt to insert unibyte string from the buffer \"%s\"\
7351 to the multibyte buffer \"%s\""
7352 (if (bufferp forward-buffer
)
7353 (buffer-name forward-buffer
)
7356 (insert (mm-with-multibyte-buffer
7359 (goto-char (point-min))
7360 (when (looking-at "From ")
7361 (replace-match "X-From-Line: "))
7363 (unless (bolp) (insert "\n"))
7366 "-------------------- End of forwarded message --------------------\n")
7367 (message-remove-ignored-headers b e
)))
7369 (defun message-remove-ignored-headers (b e
)
7370 (when message-forward-ignored-headers
7372 (narrow-to-region b e
)
7374 (narrow-to-region (point)
7375 (or (search-forward "\n\n" nil t
) (point)))
7376 (let ((ignored (if (stringp message-forward-ignored-headers
)
7377 (list message-forward-ignored-headers
)
7378 message-forward-ignored-headers
)))
7379 (dolist (elem ignored
)
7380 (message-remove-header elem t
))))))
7382 (defun message-forward-make-body-mime (forward-buffer)
7384 (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n")
7386 (narrow-to-region (point) (point))
7387 (mml-insert-buffer forward-buffer
)
7388 (goto-char (point-min))
7389 (when (looking-at "From ")
7390 (replace-match "X-From-Line: "))
7391 (goto-char (point-max)))
7392 (insert "<#/part>\n")
7393 ;; Consider there is no illegible text.
7394 (add-text-properties
7396 `(no-illegible-text t rear-nonsticky t start-open t
))))
7398 (defun message-forward-make-body-mml (forward-buffer)
7399 (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
7400 (let ((b (point)) e
)
7401 (if (not message-forward-decoded-p
)
7402 (let ((contents (with-current-buffer forward-buffer
(buffer-string))))
7403 (unless (featurep 'xemacs
)
7404 (unless (mm-multibyte-string-p contents
)
7405 (error "Attempt to insert unibyte string from the buffer \"%s\"\
7406 to the multibyte buffer \"%s\""
7407 (if (bufferp forward-buffer
)
7408 (buffer-name forward-buffer
)
7411 (insert (mm-with-multibyte-buffer
7414 (goto-char (point-min))
7415 (when (looking-at "From ")
7416 (replace-match "X-From-Line: "))
7419 (narrow-to-region (point) (point))
7420 (mml-insert-buffer forward-buffer
)
7421 (goto-char (point-min))
7422 (when (looking-at "From ")
7423 (replace-match "X-From-Line: "))
7424 (goto-char (point-max))))
7426 (insert "<#/mml>\n")
7427 (when (and (not message-forward-decoded-p
)
7428 message-forward-ignored-headers
)
7429 (message-remove-ignored-headers b e
))))
7431 (defun message-forward-make-body-digest-plain (forward-buffer)
7433 "\n-------------------- Start of forwarded message --------------------\n")
7434 (mml-insert-buffer forward-buffer
)
7436 "\n-------------------- End of forwarded message --------------------\n"))
7438 (defun message-forward-make-body-digest-mime (forward-buffer)
7439 (insert "\n<#multipart type=digest>\n")
7440 (let ((b (point)) e
)
7441 (insert-buffer-substring forward-buffer
)
7443 (insert "<#/multipart>\n")
7445 (narrow-to-region b e
)
7447 (narrow-to-region (point)
7448 (or (search-forward "\n\n" nil t
) (point)))
7449 (delete-region (point-min) (point-max)))))
7451 (defun message-forward-make-body-digest (forward-buffer)
7452 (if message-forward-as-mime
7453 (message-forward-make-body-digest-mime forward-buffer
)
7454 (message-forward-make-body-digest-plain forward-buffer
)))
7456 (autoload 'mm-uu-dissect-text-parts
"mm-uu")
7457 (autoload 'mm-uu-dissect
"mm-uu")
7459 (defun message-signed-or-encrypted-p (&optional dont-emulate-mime handles
)
7460 "Say whether the current buffer contains signed or encrypted message.
7461 If DONT-EMULATE-MIME is nil, this function does the MIME emulation on
7462 messages that don't conform to PGP/MIME described in RFC2015. HANDLES
7463 is for the internal use."
7465 (let ((mm-decrypt-option 'never
)
7466 (mm-verify-option 'never
))
7467 (if (setq handles
(mm-dissect-buffer nil t
))
7468 (unless dont-emulate-mime
7469 (mm-uu-dissect-text-parts handles
))
7470 (unless dont-emulate-mime
7471 (setq handles
(mm-uu-dissect))))))
7472 ;; Check text/plain message in which there is a signed or encrypted
7473 ;; body that has been encoded by B or Q.
7474 (unless (or handles dont-emulate-mime
)
7475 (let ((cur (current-buffer))
7476 (mm-decrypt-option 'never
)
7477 (mm-verify-option 'never
))
7479 (insert-buffer-substring cur
)
7480 (when (setq handles
(mm-dissect-buffer t t
))
7481 (if (and (bufferp (car handles
))
7482 (equal (mm-handle-media-type handles
) "text/plain"))
7485 (insert-buffer-substring (car handles
))
7486 (mm-decode-content-transfer-encoding
7487 (mm-handle-encoding handles
))
7488 (mm-destroy-parts handles
)
7489 (setq handles
(mm-uu-dissect)))
7490 (mm-destroy-parts handles
)
7491 (setq handles nil
))))))
7495 (dolist (handle (if (stringp (car handles
))
7496 (if (member (car handles
)
7497 '("multipart/signed"
7498 "multipart/encrypted"))
7502 (if (stringp (car handle
))
7503 (when (message-signed-or-encrypted-p dont-emulate-mime handle
)
7505 (when (and (bufferp (car handle
))
7506 (equal (mm-handle-media-type handle
)
7508 (with-current-buffer (mm-handle-buffer handle
)
7509 (when (message-signed-or-encrypted-p dont-emulate-mime
)
7510 (throw 'found t
)))))))
7511 (mm-destroy-parts handles
))))
7514 (defun message-forward-make-body (forward-buffer &optional digest
)
7515 ;; Put point where we want it before inserting the forwarded
7517 (if message-forward-before-signature
7519 (goto-char (point-max)))
7521 (message-forward-make-body-digest forward-buffer
)
7522 (if message-forward-as-mime
7523 (if (and message-forward-show-mml
7524 (not (and (eq message-forward-show-mml
'best
)
7525 ;; Use the raw form in the body if it contains
7526 ;; signed or encrypted message so as not to be
7527 ;; destroyed by re-encoding.
7528 (with-current-buffer forward-buffer
7530 (message-signed-or-encrypted-p)
7532 (message-forward-make-body-mml forward-buffer
)
7533 (message-forward-make-body-mime forward-buffer
))
7534 (message-forward-make-body-plain forward-buffer
)))
7535 (message-position-point))
7537 (declare-function rmail-toggle-header
"rmail" (&optional arg
))
7540 (defun message-forward-rmail-make-body (forward-buffer)
7541 (save-window-excursion
7542 (set-buffer forward-buffer
)
7543 (if (rmail-msg-is-pruned)
7544 (if (fboundp 'rmail-msg-restore-non-pruned-header
)
7545 (rmail-msg-restore-non-pruned-header) ; Emacs 22
7546 (rmail-toggle-header 0)))) ; Emacs 23
7547 (message-forward-make-body forward-buffer
))
7549 ;; Fixme: Should have defcustom.
7551 (defun message-insinuate-rmail ()
7552 "Let RMAIL use message to forward."
7554 (setq rmail-enable-mime-composing t
)
7555 (setq rmail-insert-mime-forwarded-message-function
7556 'message-forward-rmail-make-body
))
7558 (defvar message-inhibit-body-encoding nil
)
7561 (defun message-resend (address)
7562 "Resend the current article to ADDRESS."
7564 (list (message-read-from-minibuffer "Resend message to: ")))
7565 (message "Resending message to %s..." address
)
7567 (let ((cur (current-buffer))
7569 ;; We first set up a normal mail buffer.
7570 (unless (message-mail-user-agent)
7571 (set-buffer (get-buffer-create " *message resend*"))
7572 (let ((inhibit-read-only t
))
7574 (let ((message-this-is-mail t
)
7575 message-generate-hashcash
7577 (message-setup `((To .
,address
))))
7578 ;; Insert our usual headers.
7579 (message-generate-headers '(From Date To Message-ID
))
7580 (message-narrow-to-headers)
7581 (when (setq gcc
(mail-fetch-field "gcc" nil t
))
7582 (message-remove-header "gcc"))
7583 ;; Remove X-Draft-From header etc.
7584 (message-remove-header message-ignored-mail-headers t
)
7585 ;; Rename them all to "Resent-*".
7586 (goto-char (point-min))
7587 (while (re-search-forward "^[A-Za-z]" nil t
)
7592 (let ((inhibit-read-only t
))
7593 (delete-region (point) (point-max)))
7595 ;; Insert the message to be resent.
7596 (insert-buffer-substring cur
)
7597 (goto-char (point-min))
7598 (search-forward "\n\n")
7601 (narrow-to-region beg
(point))
7602 (message-remove-header message-ignored-resent-headers t
)
7603 (goto-char (point-max)))
7604 (insert mail-header-separator
)
7605 ;; Rename all old ("Also-")Resent headers.
7606 (while (re-search-backward "^\\(Also-\\)*Resent-" beg t
)
7609 ;; Quote any "From " lines at the beginning.
7611 (when (looking-at "From ")
7612 (replace-match "X-From-Line: "))
7614 (let ((message-inhibit-body-encoding
7615 ;; Don't do any further encoding if it looks like the
7616 ;; message has already been encoded.
7617 (let ((case-fold-search t
))
7618 (re-search-forward "^mime-version:" nil t
)))
7619 (message-inhibit-ecomplete t
)
7620 message-required-mail-headers
7621 message-generate-hashcash
7622 rfc2047-encode-encoded-words
)
7623 (message-send-mail))
7626 (insert "Gcc: " gcc
"\n"))
7627 (run-hooks 'message-sent-hook
)
7628 (kill-buffer (current-buffer)))
7629 (message "Resending message to %s...done" address
)))
7632 (defun message-bounce ()
7633 "Re-mail the current message.
7634 This only makes sense if the current message is a bounce message that
7635 contains some mail you have written which has been bounced back to
7638 (let ((handles (mm-dissect-buffer t
))
7640 (message-pop-to-buffer (message-buffer-name "bounce"))
7641 (if (stringp (car handles
))
7642 ;; This is a MIME bounce.
7643 (mm-insert-part (car (last handles
)))
7644 ;; This is a non-MIME bounce, so we try to remove things
7646 (mm-insert-part handles
)
7648 (goto-char (point-min))
7649 (re-search-forward "\n\n+" nil t
)
7650 (setq boundary
(point))
7651 ;; We remove everything before the bounced mail.
7652 (if (or (re-search-forward message-unsent-separator nil t
)
7654 (search-forward "\n\n" nil
'move
)
7655 (re-search-backward "^Return-Path:.*\n" boundary t
)))
7658 (delete-region (point-min)
7659 (if (re-search-forward "^[^ \n\t]+:" nil t
)
7662 (goto-char boundary
)
7663 (when (re-search-backward "^.?From .*\n" nil t
)
7664 (delete-region (match-beginning 0) (match-end 0)))))
7667 (message-narrow-to-head-1)
7668 (message-remove-header message-ignored-bounced-headers t
)
7669 (goto-char (point-max))
7670 (insert mail-header-separator
))
7671 (message-position-point)))
7674 ;;; Interactive entry points for new message buffers.
7678 (defun message-mail-other-window (&optional to subject
)
7679 "Like `message-mail' command, but display mail buffer in another window."
7681 (unless (message-mail-user-agent)
7682 (message-pop-to-buffer (message-buffer-name "mail" to
)
7683 'switch-to-buffer-other-window
))
7684 (let ((message-this-is-mail t
))
7685 (message-setup `((To .
,(or to
"")) (Subject .
,(or subject
"")))
7686 nil nil nil
'switch-to-buffer-other-window
)))
7689 (defun message-mail-other-frame (&optional to subject
)
7690 "Like `message-mail' command, but display mail buffer in another frame."
7692 (unless (message-mail-user-agent)
7693 (message-pop-to-buffer (message-buffer-name "mail" to
)
7694 'switch-to-buffer-other-frame
))
7695 (let ((message-this-is-mail t
))
7696 (message-setup `((To .
,(or to
"")) (Subject .
,(or subject
"")))
7697 nil nil nil
'switch-to-buffer-other-frame
)))
7700 (defun message-news-other-window (&optional newsgroups subject
)
7701 "Start editing a news article to be sent."
7703 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
)
7704 'switch-to-buffer-other-window
)
7705 (let ((message-this-is-news t
))
7706 (message-setup `((Newsgroups .
,(or newsgroups
""))
7707 (Subject .
,(or subject
""))))))
7710 (defun message-news-other-frame (&optional newsgroups subject
)
7711 "Start editing a news article to be sent."
7713 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
)
7714 'switch-to-buffer-other-frame
)
7715 (let ((message-this-is-news t
))
7716 (message-setup `((Newsgroups .
,(or newsgroups
""))
7717 (Subject .
,(or subject
""))))))
7721 ;; This code should be moved to underline.el (from which it is stolen).
7724 (defun message-bold-region (start end
)
7725 "Bold all nonblank characters in the region.
7726 Works by overstriking characters.
7727 Called from program, takes two arguments START and END
7728 which specify the range to operate on."
7731 (let ((end1 (make-marker)))
7732 (move-marker end1
(max start end
))
7733 (goto-char (min start end
))
7734 (while (< (point) end1
)
7735 (or (looking-at "[_\^@- ]")
7736 (insert (char-after) "\b"))
7737 (forward-char 1)))))
7740 (defun message-unbold-region (start end
)
7741 "Remove all boldness (overstruck characters) in the region.
7742 Called from program, takes two arguments START and END
7743 which specify the range to operate on."
7746 (let ((end1 (make-marker)))
7747 (move-marker end1
(max start end
))
7748 (goto-char (min start end
))
7749 (while (search-forward "\b" end1 t
)
7750 (if (eq (char-after) (char-after (- (point) 2)))
7751 (delete-char -
2))))))
7753 (defun message-exchange-point-and-mark ()
7754 "Exchange point and mark, but don't activate region if it was inactive."
7755 (goto-char (prog1 (mark t
)
7756 (set-marker (mark-marker) (point)))))
7758 (defalias 'message-make-overlay
'make-overlay
)
7759 (defalias 'message-delete-overlay
'delete-overlay
)
7760 (defalias 'message-overlay-put
'overlay-put
)
7761 (defun message-kill-all-overlays ()
7762 (if (featurep 'xemacs
)
7763 (map-extents (lambda (extent ignore
) (delete-extent extent
)))
7764 (mapcar #'delete-overlay
(overlays-in (point-min) (point-max)))))
7766 ;; Support for toolbar
7767 (defvar tool-bar-mode
)
7769 ;; Note: The :set function in the `message-tool-bar*' variables will only
7770 ;; affect _new_ message buffers. We might add a function that walks thru all
7771 ;; message-mode buffers and force the update.
7772 (defun message-tool-bar-update (&optional symbol value
)
7773 "Update message mode toolbar.
7774 Setter function for custom variables."
7775 (setq-default message-tool-bar-map nil
)
7777 ;; When used as ":set" function:
7778 (set-default symbol value
)))
7780 (defcustom message-tool-bar
(if (eq gmm-tool-bar-style
'gnome
)
7781 'message-tool-bar-gnome
7782 'message-tool-bar-retro
)
7783 "Specifies the message mode tool bar.
7785 It can be either a list or a symbol referring to a list. See
7786 `gmm-tool-bar-from-list' for the format of the list. The
7787 default key map is `message-mode-map'.
7789 Pre-defined symbols include `message-tool-bar-gnome' and
7790 `message-tool-bar-retro'."
7791 :type
'(repeat gmm-tool-bar-list-item
)
7792 :type
'(choice (const :tag
"GNOME style" message-tool-bar-gnome
)
7793 (const :tag
"Retro look" message-tool-bar-retro
)
7794 (repeat :tag
"User defined list" gmm-tool-bar-item
)
7796 :version
"23.1" ;; No Gnus
7797 :initialize
'custom-initialize-default
7798 :set
'message-tool-bar-update
7801 (defcustom message-tool-bar-gnome
7802 '((ispell-message "spell" nil
7804 :visible
(or (not (boundp 'flyspell-mode
))
7805 (not flyspell-mode
)))
7806 (flyspell-buffer "spell" t
7808 :visible
(and (boundp 'flyspell-mode
)
7810 :help
"Flyspell whole buffer")
7811 (message-send-and-exit "mail/send" t
:label
"Send")
7812 (message-dont-send "mail/save-draft")
7813 (mml-attach-file "attach" mml-mode-map
:vert-only t
)
7814 (mml-preview "mail/preview" mml-mode-map
)
7815 (mml-secure-message-sign-encrypt "lock" mml-mode-map
:visible nil
)
7816 (message-insert-importance-high "important" nil
:visible nil
)
7817 (message-insert-importance-low "unimportant" nil
:visible nil
)
7818 (message-insert-disposition-notification-to "receipt" nil
:visible nil
))
7819 "List of items for the message tool bar (GNOME style).
7821 See `gmm-tool-bar-from-list' for details on the format of the list."
7822 :type
'(repeat gmm-tool-bar-item
)
7823 :version
"23.1" ;; No Gnus
7824 :initialize
'custom-initialize-default
7825 :set
'message-tool-bar-update
7828 (defcustom message-tool-bar-retro
7829 '(;; Old Emacs 21 icon for consistency.
7830 (message-send-and-exit "gnus/mail-send")
7831 (message-kill-buffer "close")
7832 (message-dont-send "cancel")
7833 (mml-attach-file "attach" mml-mode-map
)
7834 (ispell-message "spell")
7835 (mml-preview "preview" mml-mode-map
)
7836 (message-insert-importance-high "gnus/important")
7837 (message-insert-importance-low "gnus/unimportant")
7838 (message-insert-disposition-notification-to "gnus/receipt"))
7839 "List of items for the message tool bar (retro style).
7841 See `gmm-tool-bar-from-list' for details on the format of the list."
7842 :type
'(repeat gmm-tool-bar-item
)
7843 :version
"23.1" ;; No Gnus
7844 :initialize
'custom-initialize-default
7845 :set
'message-tool-bar-update
7848 (defcustom message-tool-bar-zap-list
7849 '(new-file open-file dired kill-buffer write-file
7850 print-buffer customize help
)
7851 "List of icon items from the global tool bar.
7852 These items are not displayed on the message mode tool bar.
7854 See `gmm-tool-bar-from-list' for the format of the list."
7855 :type
'gmm-tool-bar-zap-list
7856 :version
"23.1" ;; No Gnus
7857 :initialize
'custom-initialize-default
7858 :set
'message-tool-bar-update
7861 (defvar image-load-path
)
7863 (defun message-make-tool-bar (&optional force
)
7864 "Make a message mode tool bar from `message-tool-bar-list'.
7865 When FORCE, rebuild the tool bar."
7866 (when (and (not (featurep 'xemacs
))
7867 (boundp 'tool-bar-mode
)
7869 (or (not message-tool-bar-map
) force
))
7870 (setq message-tool-bar-map
7872 (gmm-image-load-path-for-library "message"
7873 "mail/save-draft.xpm"
7875 (image-load-path (cons (car load-path
)
7876 (when (boundp 'image-load-path
)
7878 (gmm-tool-bar-from-list message-tool-bar
7879 message-tool-bar-zap-list
7880 'message-mode-map
))))
7881 message-tool-bar-map
)
7883 ;;; Group name completion.
7885 (defcustom message-newgroups-header-regexp
7886 "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
7887 "Regexp that match headers that lists groups."
7891 (defcustom message-completion-alist
7892 (list (cons message-newgroups-header-regexp
'message-expand-group
)
7893 '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name
)
7894 '("^\\(Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):"
7895 . message-expand-name
)
7896 '("^\\(Disposition-Notification-To\\|Return-Receipt-To\\):"
7897 . message-expand-name
))
7898 "Alist of (RE . FUN). Use FUN for completion on header lines matching RE."
7901 :type
'(alist :key-type regexp
:value-type function
))
7903 (defcustom message-expand-name-databases
7905 "List of databases to try for name completion (`message-expand-name').
7906 Each element is a symbol and can be `bbdb' or `eudc'."
7908 :type
'(set (const bbdb
) (const eudc
)))
7910 (defcustom message-tab-body-function nil
7911 "*Function to execute when `message-tab' (TAB) is executed in the body.
7912 If nil, the function bound in `text-mode-map' or `global-map' is executed."
7915 :link
'(custom-manual "(message)Various Commands")
7916 :type
'(choice (const nil
)
7919 (declare-function mail-abbrev-in-expansion-header-p
"mailabbrev" ())
7921 (defun message-tab ()
7922 "Complete names according to `message-completion-alist'.
7923 Execute function specified by `message-tab-body-function' when not in
7927 ((if (and (boundp 'completion-fail-discreetly
)
7928 (fboundp 'completion-at-point
))
7929 (let ((completion-fail-discreetly t
)) (completion-at-point))
7930 (funcall (or (message-completion-function) #'ignore
)))
7931 ;; Completion was performed; nothing else to do.
7933 (message-tab-body-function (funcall message-tab-body-function
))
7934 (t (funcall (or (lookup-key text-mode-map
"\t")
7935 (lookup-key global-map
"\t")
7936 'indent-relative
)))))
7938 (defvar mail-abbrev-mode-regexp
)
7940 (defun message-completion-function ()
7941 (let ((alist message-completion-alist
))
7943 (let ((mail-abbrev-mode-regexp (caar alist
)))
7944 (not (mail-abbrev-in-expansion-header-p))))
7945 (setq alist
(cdr alist
)))
7947 (lexical-let ((fun (cdar alist
)))
7948 ;; Even if completion fails, return a non-nil value, so as to avoid
7949 ;; falling back to message-tab-body-function.
7950 (lambda () (funcall fun
) 'completion-attempted
)))))
7955 (let ((standard-output (current-buffer)))
7956 (eval '(display-completion-list nil
"")))
7957 (defalias 'message-display-completion-list
'display-completion-list
))
7958 (error ;; Don't use `wrong-number-of-arguments' here because of XEmacs.
7959 (defun message-display-completion-list (completions &optional ignore
)
7960 "Display the list of completions, COMPLETIONS, using `standard-output'."
7961 (display-completion-list completions
)))))
7963 (defun message-expand-group ()
7964 "Expand the group name under point."
7965 (let* ((b (save-excursion
7970 (skip-chars-forward "^:")
7973 (skip-chars-backward "^, \t\n") (point))))
7974 (completion-ignore-case t
)
7975 (e (progn (skip-chars-forward "^,\t\n ") (point)))
7976 (hashtb (and (boundp 'gnus-active-hashtb
) gnus-active-hashtb
)))
7977 (message-completion-in-region e b hashtb
)))
7979 (defalias 'message-completion-in-region
7980 (if (fboundp 'completion-in-region
)
7981 'completion-in-region
7982 (lambda (e b hashtb
)
7983 (let* ((string (buffer-substring b e
))
7984 (completions (all-completions string hashtb
))
7986 (delete-region b
(point))
7988 ((= (length completions
) 1)
7989 (if (string= (car completions
) string
)
7992 (message "Only matching group"))
7993 (insert (car completions
))))
7994 ((and (setq comp
(try-completion string hashtb
))
7995 (not (string= comp string
)))
8000 (message "No matching groups")
8001 (save-selected-window
8002 (pop-to-buffer "*Completions*")
8003 (buffer-disable-undo)
8004 (let ((buffer-read-only nil
))
8006 (let ((standard-output (current-buffer)))
8007 (message-display-completion-list (sort completions
'string
<)
8009 (setq buffer-read-only nil
)
8010 (goto-char (point-min))
8011 (delete-region (point)
8012 (progn (forward-line 3) (point))))))))))))
8014 (defun message-expand-name ()
8015 (cond ((and (memq 'eudc message-expand-name-databases
)
8016 (boundp 'eudc-protocol
)
8018 (eudc-expand-inline))
8019 ((and (memq 'bbdb message-expand-name-databases
)
8020 (fboundp 'bbdb-complete-name
))
8021 (let ((starttick (buffer-modified-tick)))
8022 (or (bbdb-complete-name)
8023 ;; Apparently, bbdb-complete-name can return nil even when
8024 ;; completion took place. So let's double check the buffer was
8026 (/= starttick
(buffer-modified-tick)))))
8032 (defun message-talkative-question (ask question show
&rest text
)
8033 "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
8034 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
8035 The following arguments may contain lists of values."
8037 (setq text
(message-flatten-list text
)))
8038 (save-window-excursion
8039 (with-output-to-temp-buffer " *MESSAGE information message*"
8040 (with-current-buffer " *MESSAGE information message*"
8041 (fundamental-mode) ; for Emacs 20.4+
8043 (goto-char (point-min))))
8044 (funcall ask question
))
8045 (funcall ask question
)))
8047 (defun message-flatten-list (list)
8048 "Return a new, flat list that contains all elements of LIST.
8050 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
8053 (apply 'append
(mapcar 'message-flatten-list list
)))
8057 (defun message-generate-new-buffer-clone-locals (name &optional varstr
)
8058 "Create and return a buffer with name based on NAME using `generate-new-buffer'.
8059 Then clone the local variables and values from the old buffer to the
8060 new one, cloning only the locals having a substring matching the
8062 (let ((oldbuf (current-buffer)))
8063 (with-current-buffer (generate-new-buffer name
)
8064 (message-clone-locals oldbuf varstr
)
8067 (defun message-clone-locals (buffer &optional varstr
)
8068 "Clone the local variables from BUFFER to the current buffer."
8069 (let ((locals (with-current-buffer buffer
(buffer-local-variables)))
8070 (regexp "^gnus\\|^nn\\|^message\\|^sendmail\\|^smtp\\|^user-mail-address"))
8073 (when (and (consp local
)
8075 (string-match regexp
(symbol-name (car local
)))
8077 (string-match varstr
(symbol-name (car local
)))))
8079 (set (make-local-variable (car local
))
8087 (defun message-encode-message-body ()
8088 (unless message-inhibit-body-encoding
8089 (let ((mail-parse-charset (or mail-parse-charset
8090 message-default-charset
))
8091 (case-fold-search t
)
8092 lines content-type-p
)
8095 (narrow-to-region (point) (point-max))
8096 (let ((new (mml-generate-mime)))
8098 (delete-region (point-min) (point-max))
8100 (goto-char (point-min))
8101 (if (eq (aref new
0) ?
\n)
8103 (search-forward "\n\n")
8104 (setq lines
(buffer-substring (point-min) (1- (point))))
8105 (delete-region (point-min) (point))))))
8107 (message-narrow-to-headers-or-head)
8108 (message-remove-header "Mime-Version")
8109 (goto-char (point-max))
8110 (insert "MIME-Version: 1.0\n")
8113 (setq content-type-p
8115 (re-search-backward "^Content-Type:" nil t
))))
8117 (message-narrow-to-headers-or-head)
8118 (message-remove-first-header "Content-Type")
8119 (message-remove-first-header "Content-Transfer-Encoding"))
8120 ;; We always make sure that the message has a Content-Type
8121 ;; header. This is because some broken MTAs and MUAs get
8122 ;; awfully confused when confronted with a message with a
8123 ;; MIME-Version header and without a Content-Type header. For
8124 ;; instance, Solaris' /usr/bin/mail.
8125 (unless content-type-p
8126 (goto-char (point-min))
8127 ;; For unknown reason, MIME-Version doesn't exist.
8128 (when (re-search-forward "^MIME-Version:" nil t
)
8130 (insert "Content-Type: text/plain; charset=us-ascii\n"))))))
8132 (defun message-read-from-minibuffer (prompt &optional initial-contents
)
8133 "Read from the minibuffer while providing abbrev expansion."
8134 (if (fboundp 'mail-abbrevs-setup
)
8135 (let ((minibuffer-setup-hook 'mail-abbrevs-setup
)
8136 (minibuffer-local-map message-minibuffer-local-map
))
8137 (flet ((mail-abbrev-in-expansion-header-p nil t
))
8138 (read-from-minibuffer prompt initial-contents
)))
8139 (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook
)
8140 (minibuffer-local-map message-minibuffer-local-map
))
8141 (read-string prompt initial-contents
))))
8143 (defun message-use-alternative-email-as-from ()
8144 "Set From field of the outgoing message to the first matching
8145 address in `message-alternative-emails', looking at To, Cc and
8146 From headers in the original article."
8147 (require 'mail-utils
)
8148 (let* ((fields '("To" "Cc" "From"))
8151 (mail-strip-quoted-names
8152 (mapconcat 'message-fetch-reply-field fields
","))
8156 (if (string-match message-alternative-emails
(car emails
))
8157 (setq email
(car emails
)
8160 (unless (or (not email
) (equal email user-mail-address
))
8161 (message-remove-header "From")
8162 (goto-char (point-max))
8163 (insert "From: " (let ((user-mail-address email
)) (message-make-from))
8166 (defun message-options-get (symbol)
8167 (cdr (assq symbol message-options
)))
8169 (defun message-options-set (symbol value
)
8170 (let ((the-cons (assq symbol message-options
)))
8173 (setcdr the-cons value
)
8174 (setq message-options
(delq the-cons message-options
)))
8176 (push (cons symbol value
) message-options
))))
8179 (defun message-options-set-recipient ()
8181 (message-narrow-to-headers-or-head)
8182 (message-options-set 'message-sender
8183 (mail-strip-quoted-names
8184 (message-fetch-field "from")))
8185 (message-options-set 'message-recipients
8186 (mail-strip-quoted-names
8187 (let ((to (message-fetch-field "to"))
8188 (cc (message-fetch-field "cc"))
8189 (bcc (message-fetch-field "bcc")))
8192 (if (and to cc
) ", ")
8194 (if (and (or to cc
) bcc
) ", ")
8197 (defun message-hide-headers ()
8198 "Hide headers based on the `message-hidden-headers' variable."
8199 (let ((regexps (if (stringp message-hidden-headers
)
8200 (list message-hidden-headers
)
8201 message-hidden-headers
))
8202 (inhibit-point-motion-hooks t
)
8203 (after-change-functions nil
)
8204 (end-of-headers (point-min)))
8208 (message-narrow-to-headers)
8209 (goto-char (point-min))
8211 (if (not (message-hide-header-p regexps
))
8212 (message-next-header)
8213 (let ((begin (point))
8215 (message-next-header)
8216 (setq header
(buffer-substring begin
(point))
8217 header-len
(- (point) begin
))
8218 (delete-region begin
(point))
8219 (goto-char end-of-headers
)
8221 (setq end-of-headers
8222 (+ end-of-headers header-len
))))))))
8223 (narrow-to-region end-of-headers
(point-max))))
8225 (defun message-hide-header-p (regexps)
8228 (when (eq (car regexps
) 'not
)
8231 (dolist (regexp regexps
)
8232 (setq result
(or result
(looking-at regexp
))))
8237 (declare-function ecomplete-add-item
"ecomplete" (type key text
))
8238 (declare-function ecomplete-save
"ecomplete" ())
8240 (defun message-put-addresses-in-ecomplete ()
8241 (require 'ecomplete
)
8242 (dolist (header '("to" "cc" "from" "reply-to"))
8243 (let ((value (message-field-value header
)))
8244 (dolist (string (mail-header-parse-addresses value
'raw
))
8246 (gnus-replace-in-string
8247 (gnus-replace-in-string string
"^ +\\| +$" "") "\n" ""))
8248 (ecomplete-add-item 'mail
(car (mail-header-parse-address string
))
8252 (autoload 'ecomplete-display-matches
"ecomplete")
8254 (defun message-display-abbrev (&optional choose
)
8255 "Display the next possible abbrev for the text before point."
8256 (interactive (list t
))
8257 (when (and (memq (char-after (point-at-bol)) '(?C ?T ?
\t ?
))
8258 (message-point-in-header-p)
8261 (while (and (memq (char-after) '(?
\t ?
))
8262 (zerop (forward-line -
1))))
8263 (looking-at "To:\\|Cc:")))
8264 (let* ((end (point))
8265 (start (save-excursion
8266 (and (re-search-backward "[\n\t ]" nil t
)
8268 (word (when start
(buffer-substring start end
)))
8269 (match (when (and word
8270 (not (zerop (length word
))))
8271 (ecomplete-display-matches 'mail word choose
))))
8272 (when (and choose match
)
8273 (delete-region start end
)
8276 ;; To send pre-formatted letters like the example below, you can use
8277 ;; `message-send-form-letter':
8278 ;; --8<---------------cut here---------------start------------->8---
8279 ;; To: alice@invalid.invalid
8280 ;; Subject: Verification of your contact information
8281 ;; From: Contact verification <admin@foo.invalid>
8282 ;; --text follows this line--
8284 ;; please verify that your contact information is still valid:
8285 ;; Alice A, A avenue 11, 1111 A town, Austria
8286 ;; ----------next form letter message follows this line----------
8287 ;; To: bob@invalid.invalid
8288 ;; Subject: Verification of your contact information
8289 ;; From: Contact verification <admin@foo.invalid>
8290 ;; --text follows this line--
8292 ;; please verify that your contact information is still valid:
8293 ;; Bob, B street 22, 22222 Be town, Belgium
8294 ;; ----------next form letter message follows this line----------
8295 ;; To: charlie@invalid.invalid
8296 ;; Subject: Verification of your contact information
8297 ;; From: Contact verification <admin@foo.invalid>
8298 ;; --text follows this line--
8300 ;; please verify that your contact information is still valid:
8301 ;; Charlie Chaplin, C plaza 33, 33333 C town, Chile
8302 ;; --8<---------------cut here---------------end--------------->8---
8304 ;; FIXME: What is the most common term (circular letter, form letter, serial
8305 ;; letter, standard letter) for such kind of letter? See also
8306 ;; <http://en.wikipedia.org/wiki/Form_letter>
8308 ;; FIXME: Maybe extent message-mode's font-lock support to recognize
8309 ;; `message-form-letter-separator', i.e. highlight each message like a single
8312 (defcustom message-form-letter-separator
8313 "\n----------next form letter message follows this line----------\n"
8314 "Separator for `message-send-form-letter'."
8315 ;; :group 'message-form-letter
8316 :group
'message-various
8317 :version
"23.1" ;; No Gnus
8320 (defcustom message-send-form-letter-delay
1
8321 "Delay in seconds when sending a message with `message-send-form-letter'.
8322 Only used when `message-send-form-letter' is called with non-nil
8324 ;; :group 'message-form-letter
8325 :group
'message-various
8326 :version
"23.1" ;; No Gnus
8329 (defun message-send-form-letter (&optional force
)
8330 "Sent all form letter messages from current buffer.
8331 Unless FORCE, prompt before sending.
8333 The messages are separated by `message-form-letter-separator'.
8334 Header and body are separated by `mail-header-separator'."
8336 (let ((sent 0) (skipped 0)
8340 (goto-char (point-min))
8343 end
(if (search-forward message-form-letter-separator nil t
)
8344 (- (point) (length message-form-letter-separator
) -
1)
8348 (buffer-substring-no-properties start end
))
8349 (setq buff
(generate-new-buffer "*mail - form letter*"))
8350 (with-current-buffer buff
8353 (setq to
(message-fetch-field "To"))
8354 (switch-to-buffer buff
)
8356 (sit-for message-send-form-letter-delay
))
8358 (y-or-n-p (format "Send message to `%s'? " to
)))
8360 (setq sent
(1+ sent
))
8361 (message-send-and-exit))
8362 (message (format "Message to `%s' skipped." to
))
8363 (setq skipped
(1+ skipped
)))
8364 (when (buffer-live-p buff
)
8365 (kill-buffer buff
))))
8366 (message "%s message(s) sent, %s skipped." sent skipped
)))
8368 (defun message-replace-header (header new-value
&optional after force
)
8369 "Remove HEADER and insert the NEW-VALUE.
8370 If AFTER, insert after this header. If FORCE, insert new field
8371 even if NEW-VALUE is empty."
8372 ;; Similar to `nnheader-replace-header' but for message buffers.
8375 (message-narrow-to-headers)
8376 (message-remove-header header
))
8377 (when (or force
(> (length new-value
) 0))
8379 (message-position-on-field header after
)
8380 (message-position-on-field header
))
8381 (insert new-value
))))
8383 (defcustom message-recipients-without-full-name
8384 (list "ding@gnus.org"
8386 "emacs-devel@gnu.org"
8387 "emacs-pretest-bug@gnu.org"
8388 "bug-gnu-emacs@gnu.org")
8389 "Mail addresses that have no full name.
8390 Used in `message-simplify-recipients'."
8391 ;; Maybe the addresses could be extracted from
8392 ;; `gnus-parameter-to-list-alist'?
8393 :type
'(choice (const :tag
"None" nil
)
8395 :version
"23.1" ;; No Gnus
8396 :group
'message-headers
)
8398 (defun message-simplify-recipients ()
8400 (dolist (hdr '("Cc" "To"))
8401 (message-replace-header
8405 (if (and message-recipients-without-full-name
8407 (regexp-opt message-recipients-without-full-name
)
8411 (message-make-from (car addrcomp
) (cadr addrcomp
))
8413 (when (message-fetch-field hdr
)
8414 (mail-extract-address-components
8415 (message-fetch-field hdr
) t
))
8418 (when (featurep 'xemacs
)
8419 (require 'messagexmas
)
8420 (message-xmas-redefine))
8424 (run-hooks 'message-load-hook
)
8427 ;; coding: iso-8859-1
8430 ;;; message.el ends here