1 ;;; message.el --- composing mail and news messages
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: mail, news
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This mode provides mail-sending facilities from within Emacs. It
27 ;; consists mainly of large chunks of code from the sendmail.el,
28 ;; gnus-msg.el and rnewspost.el files.
33 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
42 ;; This is apparently necessary even though things are autoloaded.
43 ;; Because we dynamically bind mail-abbrev-mode-regexp, we'd better
44 ;; require mailabbrev here.
45 (if (featurep 'xemacs
)
46 (require 'mail-abbrevs
)
47 (require 'mailabbrev
))
53 (autoload 'mailclient-send-it
"mailclient") ;; Emacs 22 or contrib/
55 (defvar gnus-message-group-art
)
56 (defvar gnus-list-identifiers
) ; gnus-sum is required where necessary
57 (defvar rmail-enable-mime-composing
)
59 (defgroup message
'((user-mail-address custom-variable
)
60 (user-full-name custom-variable
))
61 "Mail and news message composing."
62 :link
'(custom-manual "(message)Top")
66 (put 'user-mail-address
'custom-type
'string
)
67 (put 'user-full-name
'custom-type
'string
)
69 (defgroup message-various nil
70 "Various Message Variables."
71 :link
'(custom-manual "(message)Various Message Variables")
74 (defgroup message-buffers nil
76 :link
'(custom-manual "(message)Message Buffers")
79 (defgroup message-sending nil
81 :link
'(custom-manual "(message)Sending Variables")
84 (defgroup message-interface nil
86 :link
'(custom-manual "(message)Interface")
89 (defgroup message-forwarding nil
91 :link
'(custom-manual "(message)Forwarding")
92 :group
'message-interface
)
94 (defgroup message-insertion nil
96 :link
'(custom-manual "(message)Insertion")
99 (defgroup message-headers nil
101 :link
'(custom-manual "(message)Message Headers")
104 (defgroup message-news nil
105 "Composing News Messages."
108 (defgroup message-mail nil
109 "Composing Mail Messages."
112 (defgroup message-faces nil
113 "Faces used for message composing."
117 (defcustom message-directory
"~/Mail/"
118 "*Directory from which all other mail file variables are derived."
119 :group
'message-various
122 (defcustom message-max-buffers
10
123 "*How many buffers to keep before starting to kill them off."
124 :group
'message-buffers
127 (defcustom message-send-rename-function nil
128 "Function called to rename the buffer after sending it."
129 :group
'message-buffers
130 :type
'(choice function
(const nil
)))
132 (defcustom message-fcc-handler-function
'message-output
133 "*A function called to save outgoing articles.
134 This function will be called with the name of the file to store the
135 article in. The default function is `message-output' which saves in Unix
137 :type
'(radio (function-item message-output
)
138 (function :tag
"Other"))
139 :group
'message-sending
)
141 (defcustom message-fcc-externalize-attachments nil
142 "If non-nil, attachments are included as external parts in Fcc copies."
145 :group
'message-sending
)
147 (defcustom message-courtesy-message
148 "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
149 "*This is inserted at the start of a mailed copy of a posted message.
150 If the string contains the format spec \"%s\", the Newsgroups
151 the article has been posted to will be inserted there.
152 If this variable is nil, no such courtesy message will be added."
153 :group
'message-sending
154 :type
'(radio string
(const nil
)))
156 (defcustom message-ignored-bounced-headers
157 "^\\(Received\\|Return-Path\\|Delivered-To\\):"
158 "*Regexp that matches headers to be removed in resent bounced mail."
159 :group
'message-interface
162 (defcustom message-from-style mail-from-style
163 ;; Default to the value of `mail-from-style', available in all Emacsen
164 ;; that Gnus supports.
165 "*Specifies how \"From\" headers look.
167 If nil, they contain just the return address like:
169 If `parens', they look like:
170 king@grassland.com (Elvis Parsley)
171 If `angles', they look like:
172 Elvis Parsley <king@grassland.com>
174 Otherwise, most addresses look like `angles', but they look like
175 `parens' if `angles' would need quoting and `parens' would not."
177 :type
'(choice (const :tag
"simple" nil
)
181 :group
'message-headers
)
183 (defcustom message-insert-canlock t
184 "Whether to insert a Cancel-Lock header in news postings."
186 :group
'message-headers
189 (defcustom message-syntax-checks
190 (if message-insert-canlock
'((sender . disabled
)) nil
)
191 ;; Guess this one shouldn't be easy to customize...
192 "*Controls what syntax checks should not be performed on outgoing posts.
193 To disable checking of long signatures, for instance, add
194 `(signature . disabled)' to this list.
196 Don't touch this variable unless you really know what you're doing.
198 Checks include `approved', `bogus-recipient', `continuation-headers',
199 `control-chars', `empty', `existing-newsgroups', `from', `illegible-text',
200 `invisible-text', `long-header-lines', `long-lines', `message-id',
201 `multiple-headers', `new-text', `newsgroups', `quoting-style',
202 `repeated-newsgroups', `reply-to', `sender', `sendsys', `shoot',
203 `shorten-followup-to', `signature', `size', `subject', `subject-cmsg'
204 and `valid-newsgroups'."
206 :type
'(repeat sexp
)) ; Fixme: improve this
208 (defcustom message-required-headers
'((optional . References
)
210 "*Headers to be generated or prompted for when sending a message.
211 Also see `message-required-news-headers' and
212 `message-required-mail-headers'."
215 :group
'message-headers
216 :link
'(custom-manual "(message)Message Headers")
217 :type
'(repeat sexp
))
219 (defcustom message-draft-headers
'(References From Date
)
220 "*Headers to be generated when saving a draft message."
223 :group
'message-headers
224 :link
'(custom-manual "(message)Message Headers")
225 :type
'(repeat sexp
))
227 (defcustom message-required-news-headers
228 '(From Newsgroups Subject Date Message-ID
229 (optional . Organization
)
230 (optional . User-Agent
))
231 "*Headers to be generated or prompted for when posting an article.
232 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
233 Message-ID. Organization, Lines, In-Reply-To, Expires, and
234 User-Agent are optional. If you don't want message to insert some
235 header, remove it from this list."
237 :group
'message-headers
238 :link
'(custom-manual "(message)Message Headers")
239 :type
'(repeat sexp
))
241 (defcustom message-required-mail-headers
242 '(From Subject Date
(optional . In-Reply-To
) Message-ID
243 (optional . User-Agent
))
244 "*Headers to be generated or prompted for when mailing a message.
245 It is recommended that From, Date, To, Subject and Message-ID be
246 included. Organization and User-Agent are optional."
248 :group
'message-headers
249 :link
'(custom-manual "(message)Message Headers")
250 :type
'(repeat sexp
))
252 (defcustom message-deletable-headers
'(Message-ID Date Lines
)
253 "Headers to be deleted if they already exist and were generated by message previously."
254 :group
'message-headers
255 :link
'(custom-manual "(message)Message Headers")
258 (defcustom message-ignored-news-headers
259 "^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
260 "*Regexp of headers to be removed unconditionally before posting."
262 :group
'message-headers
263 :link
'(custom-manual "(message)Message Headers")
264 :type
'(repeat :value-to-internal
(lambda (widget value
)
265 (custom-split-regexp-maybe value
))
266 :match
(lambda (widget value
)
268 (widget-editable-list-match widget value
)))
271 (defcustom message-ignored-mail-headers
272 "^[GF]cc:\\|^Resent-Fcc:\\|^Xref:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
273 "*Regexp of headers to be removed unconditionally before mailing."
275 :group
'message-headers
276 :link
'(custom-manual "(message)Mail Headers")
279 (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:"
280 "*Header lines matching this regexp will be deleted before posting.
281 It's best to delete old Path and Date headers before posting to avoid
283 :group
'message-interface
284 :link
'(custom-manual "(message)Superseding")
285 :type
'(repeat :value-to-internal
(lambda (widget value
)
286 (custom-split-regexp-maybe value
))
287 :match
(lambda (widget value
)
289 (widget-editable-list-match widget value
)))
292 (defcustom message-subject-re-regexp
293 "^[ \t]*\\([Rr][Ee]\\(\\[[0-9]*\\]\\)*:[ \t]*\\)*[ \t]*"
294 "*Regexp matching \"Re: \" in the subject line."
295 :group
'message-various
296 :link
'(custom-manual "(message)Message Headers")
299 ;;; Start of variables adopted from `message-utils.el'.
301 (defcustom message-subject-trailing-was-query
'ask
302 "*What to do with trailing \"(was: <old subject>)\" in subject lines.
303 If nil, leave the subject unchanged. If it is the symbol `ask', query
304 the user what do do. In this case, the subject is matched against
305 `message-subject-trailing-was-ask-regexp'. If
306 `message-subject-trailing-was-query' is t, always strip the trailing
307 old subject. In this case, `message-subject-trailing-was-regexp' is
310 :type
'(choice (const :tag
"never" nil
)
311 (const :tag
"always strip" t
)
313 :link
'(custom-manual "(message)Message Headers")
314 :group
'message-various
)
316 (defcustom message-subject-trailing-was-ask-regexp
317 "[ \t]*\\([[(]+[Ww][Aa][Ss][ \t]*.*[\])]+\\)"
318 "*Regexp matching \"(was: <old subject>)\" in the subject line.
320 The function `message-strip-subject-trailing-was' uses this regexp if
321 `message-subject-trailing-was-query' is set to the symbol `ask'. If
322 the variable is t instead of `ask', use
323 `message-subject-trailing-was-regexp' instead.
325 It is okay to create some false positives here, as the user is asked."
327 :group
'message-various
328 :link
'(custom-manual "(message)Message Headers")
331 (defcustom message-subject-trailing-was-regexp
332 "[ \t]*\\((*[Ww][Aa][Ss]:[ \t]*.*)\\)"
333 "*Regexp matching \"(was: <old subject>)\" in the subject line.
335 If `message-subject-trailing-was-query' is set to t, the subject is
336 matched against `message-subject-trailing-was-regexp' in
337 `message-strip-subject-trailing-was'. You should use a regexp creating very
338 few false positives here."
340 :group
'message-various
341 :link
'(custom-manual "(message)Message Headers")
344 ;;; marking inserted text
346 (defcustom message-mark-insert-begin
347 "--8<---------------cut here---------------start------------->8---\n"
348 "How to mark the beginning of some inserted text."
351 :link
'(custom-manual "(message)Insertion Variables")
352 :group
'message-various
)
354 (defcustom message-mark-insert-end
355 "--8<---------------cut here---------------end--------------->8---\n"
356 "How to mark the end of some inserted text."
359 :link
'(custom-manual "(message)Insertion Variables")
360 :group
'message-various
)
362 (defcustom message-archive-header
"X-No-Archive: Yes\n"
363 "Header to insert when you don't want your article to be archived.
364 Archives \(such as groups.google.com\) respect this header."
367 :link
'(custom-manual "(message)Header Commands")
368 :group
'message-various
)
370 (defcustom message-archive-note
371 "X-No-Archive: Yes - save http://groups.google.com/"
372 "Note to insert why you wouldn't want this posting archived.
373 If nil, don't insert any text in the body."
375 :type
'(radio string
(const nil
))
376 :link
'(custom-manual "(message)Header Commands")
377 :group
'message-various
)
379 ;;; Crossposts and Followups
380 ;; inspired by JoH-followup-to by Jochem Huhman <joh at gmx.de>
381 ;; new suggestions by R. Weikusat <rw at another.de>
383 (defvar message-cross-post-old-target nil
384 "Old target for cross-posts or follow-ups.")
385 (make-variable-buffer-local 'message-cross-post-old-target
)
387 (defcustom message-cross-post-default t
388 "When non-nil `message-cross-post-followup-to' will perform a crosspost.
389 If nil, `message-cross-post-followup-to' will only do a followup. Note that
390 you can explicitly override this setting by calling
391 `message-cross-post-followup-to' with a prefix."
394 :group
'message-various
)
396 (defcustom message-cross-post-note
"Crosspost & Followup-To: "
397 "Note to insert before signature to notify of cross-post and follow-up."
400 :group
'message-various
)
402 (defcustom message-followup-to-note
"Followup-To: "
403 "Note to insert before signature to notify of follow-up only."
406 :group
'message-various
)
408 (defcustom message-cross-post-note-function
'message-cross-post-insert-note
409 "Function to use to insert note about Crosspost or Followup-To.
410 The function will be called with four arguments. The function should not only
411 insert a note, but also ensure old notes are deleted. See the documentation
412 for `message-cross-post-insert-note'."
415 :group
'message-various
)
417 ;;; End of variables adopted from `message-utils.el'.
419 (defcustom message-signature-separator
"^-- $"
420 "Regexp matching the signature separator.
421 This variable is used to strip off the signature from quoted text
422 when `message-cite-function' is
423 `message-cite-original-without-signature'. Most useful values
424 are \"^-- $\" (strict) and \"^-- *$\" (loose; allow missing
426 :type
'(choice (const :tag
"strict" "^-- $")
427 (const :tag
"loose" "^-- *$")
429 :version
"22.3" ;; Gnus 5.10.12 (changed default)
430 :link
'(custom-manual "(message)Various Message Variables")
431 :group
'message-various
)
433 (defcustom message-elide-ellipsis
"\n[...]\n\n"
434 "*The string which is inserted for elided text."
436 :link
'(custom-manual "(message)Various Commands")
437 :group
'message-various
)
439 (defcustom message-interactive mail-interactive
440 ;; Default to the value of `mail-interactive', available in all Emacsen
441 ;; that Gnus supports.
442 "Non-nil means when sending a message wait for and display errors.
443 A value of nil means let mailer mail back a message to report errors."
445 :group
'message-sending
447 :link
'(custom-manual "(message)Sending Variables")
450 (defcustom message-confirm-send nil
451 "When non-nil, ask for confirmation when sending a message."
452 :group
'message-sending
454 :version
"23.1" ;; No Gnus
455 :link
'(custom-manual "(message)Sending Variables")
458 (defcustom message-generate-new-buffers
'unique
459 "*Say whether to create a new message buffer to compose a message.
460 Valid values include:
463 Generate the buffer name in the Message way (e.g., *mail*, *news*,
464 *mail to whom*, *news on group*, etc.) and continue editing in the
465 existing buffer of that name. If there is no such buffer, it will
469 Create the new buffer with the name generated in the Message way.
472 Similar to `unique' but the buffer name begins with \"*unsent \".
475 Similar to nil but the buffer name is simpler like *mail message*.
478 If this is a function, call that function with three parameters:
479 The type, the To address and the group name (any of these may be nil).
480 The function should return the new buffer name."
481 :group
'message-buffers
482 :link
'(custom-manual "(message)Message Buffers")
483 :type
'(choice (const nil
)
484 (sexp :tag
"unique" :format
"unique\n" :value unique
485 :match
(lambda (widget value
) (memq value
'(unique t
))))
488 (function :format
"\n %{%t%}: %v")))
490 (defcustom message-kill-buffer-on-exit nil
491 "*Non-nil means that the message buffer will be killed after sending a message."
492 :group
'message-buffers
493 :link
'(custom-manual "(message)Message Buffers")
496 (defcustom message-kill-buffer-query t
497 "*Non-nil means that killing a modified message buffer has to be confirmed.
498 This is used by `message-kill-buffer'."
499 :version
"23.1" ;; No Gnus
500 :group
'message-buffers
503 (defvar gnus-local-organization
)
504 (defcustom message-user-organization
505 (or (and (boundp 'gnus-local-organization
)
506 (stringp gnus-local-organization
)
507 gnus-local-organization
)
508 (getenv "ORGANIZATION")
510 "*String to be used as an Organization header.
511 If t, use `message-user-organization-file'."
512 :group
'message-headers
513 :type
'(choice string
514 (const :tag
"consult file" t
)))
516 (defcustom message-user-organization-file
518 (dolist (f (list "/etc/organization"
519 "/etc/news/organization"
520 "/usr/lib/news/organization"))
521 (when (file-readable-p f
)
524 "*Local news organization file."
526 :link
'(custom-manual "(message)News Headers")
527 :group
'message-headers
)
529 (defcustom message-make-forward-subject-function
530 #'message-forward-subject-name-subject
531 "*List of functions called to generate subject headers for forwarded messages.
532 The subject generated by the previous function is passed into each
535 The provided functions are:
537 * `message-forward-subject-author-subject' Source of article (author or
538 newsgroup), in brackets followed by the subject
539 * `message-forward-subject-name-subject' Source of article (name of author
540 or newsgroup), in brackets followed by the subject
541 * `message-forward-subject-fwd' Subject of article with 'Fwd:' prepended
543 :group
'message-forwarding
544 :link
'(custom-manual "(message)Forwarding")
545 :type
'(radio (function-item message-forward-subject-author-subject
)
546 (function-item message-forward-subject-fwd
)
547 (function-item message-forward-subject-name-subject
)
548 (repeat :tag
"List of functions" function
)))
550 (defcustom message-forward-as-mime t
551 "*Non-nil means forward messages as an inline/rfc822 MIME section.
552 Otherwise, directly inline the old message in the forwarded message."
554 :group
'message-forwarding
555 :link
'(custom-manual "(message)Forwarding")
558 (defcustom message-forward-show-mml
'best
559 "*Non-nil means show forwarded messages as MML (decoded from MIME).
560 Otherwise, forwarded messages are unchanged.
561 Can also be the symbol `best' to indicate that MML should be
562 used, except when it is a bad idea to use MML. One example where
563 it is a bad idea is when forwarding a signed or encrypted
564 message, because converting MIME to MML would invalidate the
567 :group
'message-forwarding
568 :type
'(choice (const :tag
"use MML" t
)
569 (const :tag
"don't use MML " nil
)
570 (const :tag
"use MML when appropriate" best
)))
572 (defcustom message-forward-before-signature t
573 "*Non-nil means put forwarded message before signature, else after."
574 :group
'message-forwarding
577 (defcustom message-wash-forwarded-subjects nil
578 "*Non-nil means try to remove as much cruft as possible from the subject.
579 Done before generating the new subject of a forward."
580 :group
'message-forwarding
581 :link
'(custom-manual "(message)Forwarding")
584 (defcustom message-ignored-resent-headers
585 ;; `Delivered-To' needs to be removed because some mailers use it to
586 ;; detect loops, so if you resend a message to an address that ultimately
587 ;; comes back to you (e.g. a mailing-list to which you subscribe, in which
588 ;; case you may be removed from the list on the grounds that mail to you
589 ;; bounced with a "mailing loop" error).
590 "^Return-receipt\\|^X-Gnus\\|^Gnus-Warning:\\|^>?From \\|^Delivered-To:"
591 "*All headers that match this regexp will be deleted when resending a message."
592 :group
'message-interface
593 :link
'(custom-manual "(message)Resending")
594 :type
'(repeat :value-to-internal
(lambda (widget value
)
595 (custom-split-regexp-maybe value
))
596 :match
(lambda (widget value
)
598 (widget-editable-list-match widget value
)))
601 (defcustom message-forward-ignored-headers
"^Content-Transfer-Encoding:\\|^X-Gnus"
602 "*All headers that match this regexp will be deleted when forwarding a message."
604 :group
'message-forwarding
605 :type
'(repeat :value-to-internal
(lambda (widget value
)
606 (custom-split-regexp-maybe value
))
607 :match
(lambda (widget value
)
609 (widget-editable-list-match widget value
)))
612 (defcustom message-ignored-cited-headers
"."
613 "*Delete these headers from the messages you yank."
614 :group
'message-insertion
615 :link
'(custom-manual "(message)Insertion Variables")
618 (defcustom message-cite-prefix-regexp
619 ;; Default to the value of `mail-citation-prefix-regexp' if available.
620 ;; Note: as for Emacs 21, XEmacs 21.4 and 21.5, it is unavailable
621 ;; unless sendmail.el is loaded.
622 (cond ((boundp 'mail-citation-prefix-regexp
)
623 mail-citation-prefix-regexp
)
624 ((string-match "[[:digit:]]" "1")
625 ;; Support POSIX? XEmacs 21.5.27 doesn't.
626 "\\([ \t]*[_.[:word:]]+>+\\|[ \t]*[]>|}]\\)+")
628 ;; ?-, ?_ or ?. MUST NOT be in syntax entry w.
629 (let (non-word-constituents)
630 (with-syntax-table text-mode-syntax-table
631 (setq non-word-constituents
633 (if (string-match "\\w" "_") "" "_")
634 (if (string-match "\\w" ".") "" "."))))
635 (if (equal non-word-constituents
"")
636 "\\([ \t]*\\(\\w\\)+>+\\|[ \t]*[]>|}]\\)+"
637 (concat "\\([ \t]*\\(\\w\\|["
638 non-word-constituents
639 "]\\)+>+\\|[ \t]*[]>|}]\\)+")))))
640 "*Regexp matching the longest possible citation prefix on a line."
642 :group
'message-insertion
643 :link
'(custom-manual "(message)Insertion Variables")
645 :set
(lambda (symbol value
)
647 (custom-set-default symbol value
)
648 (if (boundp 'gnus-message-cite-prefix-regexp
)
649 (setq gnus-message-cite-prefix-regexp
650 (concat "^\\(?:" value
"\\)"))))))
652 (defcustom message-cancel-message
"I am canceling my own article.\n"
653 "Message to be inserted in the cancel message."
654 :group
'message-interface
655 :link
'(custom-manual "(message)Canceling News")
658 (defvar smtpmail-default-smtp-server
)
660 (defun message-send-mail-function ()
661 "Return suitable value for the variable `message-send-mail-function'."
662 (cond ((and (require 'sendmail
)
663 (boundp 'sendmail-program
)
665 (executable-find sendmail-program
))
666 'message-send-mail-with-sendmail
)
667 ((and (locate-library "smtpmail")
669 smtpmail-default-smtp-server
)
670 'message-smtpmail-send-it
)
671 ((locate-library "mailclient")
672 'message-send-mail-with-mailclient
)
675 (error "Don't know how to send mail. Please customize `message-send-mail-function'")))))
677 ;; Useful to set in site-init.el
678 (defcustom message-send-mail-function
679 (cond ((eq send-mail-function
'smtpmail-send-it
) 'message-smtpmail-send-it
)
680 ((eq send-mail-function
'feedmail-send-it
) 'feedmail-send-it
)
681 ((eq send-mail-function
'mailclient-send-it
)
682 'message-send-mail-with-mailclient
)
683 (t (message-send-mail-function)))
684 "Function to call to send the current buffer as mail.
685 The headers should be delimited by a line whose contents match the
686 variable `mail-header-separator'.
688 Valid values include `message-send-mail-with-sendmail'
689 `message-send-mail-with-mh', `message-send-mail-with-qmail',
690 `message-smtpmail-send-it', `smtpmail-send-it',
691 `feedmail-send-it' and `message-send-mail-with-mailclient'. The
692 default is system dependent and determined by the function
693 `message-send-mail-function'.
695 See also `send-mail-function'."
696 :type
'(radio (function-item message-send-mail-with-sendmail
)
697 (function-item message-send-mail-with-mh
)
698 (function-item message-send-mail-with-qmail
)
699 (function-item message-smtpmail-send-it
)
700 (function-item smtpmail-send-it
)
701 (function-item feedmail-send-it
)
702 (function-item message-send-mail-with-mailclient
703 :tag
"Use Mailclient package")
704 (function :tag
"Other"))
705 :group
'message-sending
707 :initialize
'custom-initialize-default
708 :link
'(custom-manual "(message)Mail Variables")
709 :group
'message-mail
)
711 (defcustom message-send-news-function
'message-send-news
712 "Function to call to send the current buffer as news.
713 The headers should be delimited by a line whose contents match the
714 variable `mail-header-separator'."
715 :group
'message-sending
717 :link
'(custom-manual "(message)News Variables")
720 (defcustom message-reply-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)Reply")
726 :type
'(choice function
(const nil
)))
728 (defcustom message-wide-reply-to-function nil
729 "If non-nil, function that should return a list of headers.
730 This function should pick out addresses from the To, Cc, and From headers
731 and respond with new To and Cc headers."
732 :group
'message-interface
733 :link
'(custom-manual "(message)Wide Reply")
734 :type
'(choice function
(const nil
)))
736 (defcustom message-followup-to-function nil
737 "If non-nil, function that should return a list of headers.
738 This function should pick out addresses from the To, Cc, and From headers
739 and respond with new To and Cc headers."
740 :group
'message-interface
741 :link
'(custom-manual "(message)Followup")
742 :type
'(choice function
(const nil
)))
744 (defcustom message-extra-wide-headers nil
745 "If non-nil, a list of additional address headers.
746 These are used when composing a wide reply."
747 :group
'message-sending
748 :type
'(repeat string
))
750 (defcustom message-use-followup-to
'ask
751 "*Specifies what to do with Followup-To header.
752 If nil, always ignore the header. If it is t, use its value, but
753 query before using the \"poster\" value. If it is the symbol `ask',
754 always query the user whether to use the value. If it is the symbol
755 `use', always use the value."
756 :group
'message-interface
757 :link
'(custom-manual "(message)Followup")
758 :type
'(choice (const :tag
"ignore" nil
)
759 (const :tag
"use & query" t
)
763 (defcustom message-use-mail-followup-to
'use
764 "*Specifies what to do with Mail-Followup-To header.
765 If nil, always ignore the header. If it is the symbol `ask', always
766 query the user whether to use the value. If it is the symbol `use',
767 always use the value."
769 :group
'message-interface
770 :link
'(custom-manual "(message)Mailing Lists")
771 :type
'(choice (const :tag
"ignore" nil
)
775 (defcustom message-subscribed-address-functions nil
776 "*Specifies functions for determining list subscription.
777 If nil, do not attempt to determine list subscription with functions.
778 If non-nil, this variable contains a list of functions which return
779 regular expressions to match lists. These functions can be used in
780 conjunction with `message-subscribed-regexps' and
781 `message-subscribed-addresses'."
783 :group
'message-interface
784 :link
'(custom-manual "(message)Mailing Lists")
785 :type
'(repeat sexp
))
787 (defcustom message-subscribed-address-file nil
788 "*A file containing addresses the user is subscribed to.
789 If nil, do not look at any files to determine list subscriptions. If
790 non-nil, each line of this file should be a mailing list address."
792 :group
'message-interface
793 :link
'(custom-manual "(message)Mailing Lists")
794 :type
'(radio file
(const nil
)))
796 (defcustom message-subscribed-addresses nil
797 "*Specifies a list of addresses the user is subscribed to.
798 If nil, do not use any predefined list subscriptions. This list of
799 addresses can be used in conjunction with
800 `message-subscribed-address-functions' and `message-subscribed-regexps'."
802 :group
'message-interface
803 :link
'(custom-manual "(message)Mailing Lists")
804 :type
'(repeat string
))
806 (defcustom message-subscribed-regexps nil
807 "*Specifies a list of addresses the user is subscribed to.
808 If nil, do not use any predefined list subscriptions. This list of
809 regular expressions can be used in conjunction with
810 `message-subscribed-address-functions' and `message-subscribed-addresses'."
812 :group
'message-interface
813 :link
'(custom-manual "(message)Mailing Lists")
814 :type
'(repeat regexp
))
816 (defcustom message-allow-no-recipients
'ask
817 "Specifies what to do when there are no recipients other than Gcc/Fcc.
818 If it is the symbol `always', the posting is allowed. If it is the
819 symbol `never', the posting is not allowed. If it is the symbol
820 `ask', you are prompted."
822 :group
'message-interface
823 :link
'(custom-manual "(message)Message Headers")
824 :type
'(choice (const always
)
828 (defcustom message-sendmail-f-is-evil nil
829 "*Non-nil means don't add \"-f username\" to the sendmail command line.
830 Doing so would be even more evil than leaving it out."
831 :group
'message-sending
832 :link
'(custom-manual "(message)Mail Variables")
835 (defcustom message-sendmail-envelope-from
836 ;; Default to the value of `mail-envelope-from' if available.
837 ;; Note: as for Emacsen that Gnus supports, except for SXEmacs, it is
838 ;; unavailable unless sendmail.el is loaded.
839 (if (boundp 'mail-envelope-from
) mail-envelope-from
)
840 "*Envelope-from when sending mail with sendmail.
841 If this is nil, use `user-mail-address'. If it is the symbol
842 `header', use the From: header of the message."
844 :type
'(choice (string :tag
"From name")
845 (const :tag
"Use From: header from message" header
)
846 (const :tag
"Use `user-mail-address'" nil
))
847 :link
'(custom-manual "(message)Mail Variables")
848 :group
'message-sending
)
850 (defcustom message-sendmail-extra-arguments nil
851 "Additional arguments to `sendmail-program'."
852 ;; E.g. '("-a" "account") for msmtp
853 :version
"23.1" ;; No Gnus
854 :type
'(repeat string
)
855 ;; :link '(custom-manual "(message)Mail Variables")
856 :group
'message-sending
)
858 ;; qmail-related stuff
859 (defcustom message-qmail-inject-program
"/var/qmail/bin/qmail-inject"
860 "Location of the qmail-inject program."
861 :group
'message-sending
862 :link
'(custom-manual "(message)Mail Variables")
865 (defcustom message-qmail-inject-args nil
866 "Arguments passed to qmail-inject programs.
867 This should be a list of strings, one string for each argument.
868 It may also be a function.
870 For e.g., if you wish to set the envelope sender address so that bounces
871 go to the right place or to deal with listserv's usage of that address, you
872 might set this variable to '(\"-f\" \"you@some.where\")."
873 :group
'message-sending
874 :link
'(custom-manual "(message)Mail Variables")
875 :type
'(choice (function)
878 (defvar gnus-post-method
)
879 (defvar gnus-select-method
)
880 (defcustom message-post-method
881 (cond ((and (boundp 'gnus-post-method
)
882 (listp gnus-post-method
)
885 ((boundp 'gnus-select-method
)
888 "*Method used to post news.
889 Note that when posting from inside Gnus, for instance, this
890 variable isn't used."
892 :group
'message-sending
893 ;; This should be the `gnus-select-method' widget, but that might
894 ;; create a dependence to `gnus.el'.
897 ;; FIXME: This should be a temporary workaround until someone implements a
898 ;; proper solution. If a crash happens while replying, the auto-save file
899 ;; will *not* have a `References:' header if `message-generate-headers-first'
900 ;; is nil. See: http://article.gmane.org/gmane.emacs.gnus.general/51138
901 (defcustom message-generate-headers-first
'(references)
902 "Which headers should be generated before starting to compose a message.
903 If t, generate all required headers. This can also be a list of headers to
904 generate. The variables `message-required-news-headers' and
905 `message-required-mail-headers' specify which headers to generate.
907 Note that the variable `message-deletable-headers' specifies headers which
908 are to be deleted and then re-generated before sending, so this variable
909 will not have a visible effect for those headers."
910 :group
'message-headers
911 :link
'(custom-manual "(message)Message Headers")
912 :type
'(choice (const :tag
"None" nil
)
913 (const :tag
"References" '(references))
915 (repeat (sexp :tag
"Header"))))
917 (defcustom message-fill-column
72
918 "Column beyond which automatic line-wrapping should happen.
919 Local value for message buffers. If non-nil, also turn on
920 auto-fill in message buffers."
921 :group
'message-various
922 ;; :link '(custom-manual "(message)Message Headers")
923 :type
'(choice (const :tag
"Don't turn on auto fill" nil
)
926 (defcustom message-setup-hook nil
927 "Normal hook, run each time a new outgoing message is initialized.
928 The function `message-setup' runs this hook."
929 :group
'message-various
930 :link
'(custom-manual "(message)Various Message Variables")
933 (defcustom message-cancel-hook nil
934 "Hook run when cancelling articles."
935 :group
'message-various
936 :link
'(custom-manual "(message)Various Message Variables")
939 (defcustom message-signature-setup-hook nil
940 "Normal hook, run each time a new outgoing message is initialized.
941 It is run after the headers have been inserted and before
942 the signature is inserted."
943 :group
'message-various
944 :link
'(custom-manual "(message)Various Message Variables")
947 (defcustom message-mode-hook nil
948 "Hook run in message mode buffers."
949 :group
'message-various
952 (defcustom message-header-hook nil
953 "Hook run in a message mode buffer narrowed to the headers."
954 :group
'message-various
957 (defcustom message-header-setup-hook nil
958 "Hook called narrowed to the headers when setting up a message buffer."
959 :group
'message-various
960 :link
'(custom-manual "(message)Various Message Variables")
963 (defcustom message-minibuffer-local-map
964 (let ((map (make-sparse-keymap 'message-minibuffer-local-map
)))
965 (set-keymap-parent map minibuffer-local-map
)
967 "Keymap for `message-read-from-minibuffer'."
969 :group
'message-various
)
971 (defcustom message-citation-line-function
'message-insert-citation-line
972 "*Function called to insert the \"Whomever writes:\" line.
974 Predefined functions include `message-insert-citation-line' and
975 `message-insert-formatted-citation-line' (see the variable
976 `message-citation-line-format').
978 Note that Gnus provides a feature where the reader can click on
979 `writes:' to hide the cited text. If you change this line too much,
980 people who read your message will have to change their Gnus
981 configuration. See the variable `gnus-cite-attribution-suffix'."
983 (function-item :tag
"plain" message-insert-citation-line
)
984 (function-item :tag
"formatted" message-insert-formatted-citation-line
)
985 (function :tag
"Other"))
986 :link
'(custom-manual "(message)Insertion Variables")
987 :group
'message-insertion
)
989 (defcustom message-citation-line-format
"On %a, %b %d %Y, %N wrote:\n"
990 "Format of the \"Whomever writes:\" line.
992 The string is formatted using `format-spec'. The following
993 constructs are replaced:
995 %f The full From, e.g. \"John Doe <john.doe@example.invalid>\".
996 %n The mail address, e.g. \"john.doe@example.invalid\".
997 %N The real name if present, e.g.: \"John Doe\", else fall
998 back to the mail address.
999 %F The first name if present, e.g.: \"John\".
1000 %L The last name if present, e.g.: \"Doe\".
1002 All other format specifiers are passed to `format-time-string'
1003 which is called using the date from the article your replying to.
1004 Extracting the first (%F) and last name (%L) is done
1005 heuristically, so you should always check it yourself.
1007 Please also read the note in the documentation of
1008 `message-citation-line-function'."
1009 :type
'(choice (const :tag
"Plain" "%f writes:")
1010 (const :tag
"Include date" "On %a, %b %d %Y, %n wrote:")
1012 :link
'(custom-manual "(message)Insertion Variables")
1013 :version
"23.1" ;; No Gnus
1014 :group
'message-insertion
)
1016 (defcustom message-yank-prefix
1017 ;; Default to the value of `mail-yank-prefix' if available.
1018 ;; Note: as for Emacs 21, it is unavailable unless sendmail.el is loaded.
1019 (if (boundp 'mail-yank-prefix
) mail-yank-prefix
"> ")
1020 "*Prefix inserted on the lines of yanked messages.
1021 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
1022 See also `message-yank-cited-prefix' and `message-yank-empty-prefix'."
1025 :link
'(custom-manual "(message)Insertion Variables")
1026 :group
'message-insertion
)
1028 (defcustom message-yank-cited-prefix
">"
1029 "*Prefix inserted on cited lines of yanked messages.
1030 Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
1031 See also `message-yank-prefix' and `message-yank-empty-prefix'."
1034 :link
'(custom-manual "(message)Insertion Variables")
1035 :group
'message-insertion
)
1037 (defcustom message-yank-empty-prefix
">"
1038 "*Prefix inserted on empty lines of yanked messages.
1039 See also `message-yank-prefix' and `message-yank-cited-prefix'."
1042 :link
'(custom-manual "(message)Insertion Variables")
1043 :group
'message-insertion
)
1045 (defcustom message-indentation-spaces
1046 ;; Default to the value of `mail-indentation-spaces' if available.
1047 ;; Note: as for Emacs 21, XEmacs 21.4 and 21.5, it is unavailable
1048 ;; unless sendmail.el is loaded.
1049 (if (boundp 'mail-indentation-spaces
) mail-indentation-spaces
3)
1050 "*Number of spaces to insert at the beginning of each cited line.
1051 Used by `message-yank-original' via `message-yank-cite'."
1053 :group
'message-insertion
1054 :link
'(custom-manual "(message)Insertion Variables")
1057 (defcustom message-cite-function
'message-cite-original-without-signature
1058 "*Function for citing an original message.
1059 Predefined functions include `message-cite-original' and
1060 `message-cite-original-without-signature'.
1061 Note that these functions use `mail-citation-hook' if that is non-nil."
1062 :type
'(radio (function-item message-cite-original
)
1063 (function-item message-cite-original-without-signature
)
1064 (function-item sc-cite-original
)
1065 (function :tag
"Other"))
1066 :link
'(custom-manual "(message)Insertion Variables")
1067 :version
"22.3" ;; Gnus 5.10.12 (changed default)
1068 :group
'message-insertion
)
1070 (defcustom message-indent-citation-function
'message-indent-citation
1071 "*Function for modifying a citation just inserted in the mail buffer.
1072 This can also be a list of functions. Each function can find the
1073 citation between (point) and (mark t). And each function should leave
1074 point and mark around the citation text as modified."
1076 :link
'(custom-manual "(message)Insertion Variables")
1077 :group
'message-insertion
)
1079 (defcustom message-signature mail-signature
1080 ;; Default to the value of `mail-signature', available in all Emacsen
1081 ;; that Gnus supports.
1082 "*String to be inserted at the end of the message buffer.
1083 If t, the `message-signature-file' file will be inserted instead.
1084 If a function, the result from the function will be used instead.
1085 If a form, the result from the form will be used instead."
1088 :link
'(custom-manual "(message)Insertion Variables")
1089 :group
'message-insertion
)
1091 (defcustom message-signature-file
1092 ;; Default to the value of `mail-signature-file' if available.
1093 ;; Note: as for Emacs 21, XEmacs 21.4 and 21.5, it is unavailable
1094 ;; unless sendmail.el is loaded.
1095 (if (boundp 'mail-signature-file
) mail-signature-file
"~/.signature")
1096 "*Name of file containing the text inserted at end of message buffer.
1097 Ignored if the named file doesn't exist.
1098 If nil, don't insert a signature.
1099 If a path is specified, the value of `message-signature-directory' is ignored,
1102 :type
'(choice file
(const :tags
"None" nil
))
1103 :link
'(custom-manual "(message)Insertion Variables")
1104 :group
'message-insertion
)
1106 (defcustom message-signature-directory nil
1107 "*Name of directory containing signature files.
1108 Comes in handy if you have many such files, handled via posting styles for
1110 If nil, `message-signature-file' is expected to specify the directory if
1112 :type
'(choice string
(const :tags
"None" nil
))
1113 :link
'(custom-manual "(message)Insertion Variables")
1114 :group
'message-insertion
)
1116 (defcustom message-signature-insert-empty-line t
1117 "*If non-nil, insert an empty line before the signature separator."
1120 :link
'(custom-manual "(message)Insertion Variables")
1121 :group
'message-insertion
)
1123 (defcustom message-distribution-function nil
1124 "*Function called to return a Distribution header."
1125 :group
'message-news
1126 :group
'message-headers
1127 :link
'(custom-manual "(message)News Headers")
1128 :type
'(choice function
(const nil
)))
1130 (defcustom message-expires
14
1131 "Number of days before your article expires."
1132 :group
'message-news
1133 :group
'message-headers
1134 :link
'(custom-manual "(message)News Headers")
1137 (defcustom message-user-path nil
1138 "If nil, use the NNTP server name in the Path header.
1139 If stringp, use this; if non-nil, use no host name (user name only)."
1140 :group
'message-news
1141 :group
'message-headers
1142 :link
'(custom-manual "(message)News Headers")
1143 :type
'(choice (const :tag
"nntp" nil
)
1144 (string :tag
"name")
1145 (sexp :tag
"none" :format
"%t" t
)))
1147 ;; This can be the name of a buffer, or a cons cell (FUNCTION . ARGS)
1148 ;; for yanking the original buffer.
1149 (defvar message-reply-buffer nil
)
1150 (defvar message-reply-headers nil
1151 "The headers of the current replied article.
1152 It is a vector of the following headers:
1153 \[number subject from date id references chars lines xref extra].")
1154 (defvar message-newsreader nil
)
1155 (defvar message-mailer nil
)
1156 (defvar message-sent-message-via nil
)
1157 (defvar message-checksum nil
)
1158 (defvar message-send-actions nil
1159 "A list of actions to be performed upon successful sending of a message.")
1160 (defvar message-exit-actions nil
1161 "A list of actions to be performed upon exiting after sending a message.")
1162 (defvar message-kill-actions nil
1163 "A list of actions to be performed before killing a message buffer.")
1164 (defvar message-postpone-actions nil
1165 "A list of actions to be performed after postponing a message.")
1167 (define-widget 'message-header-lines
'text
1168 "All header lines must be LFD terminated."
1169 :format
"%{%t%}:%n%v"
1170 :valid-regexp
"^\\'"
1171 :error
"All header lines must be newline terminated")
1173 (defcustom message-default-headers
""
1174 "*A string containing header lines to be inserted in outgoing messages.
1175 It is inserted before you edit the message, so you can edit or delete
1178 :group
'message-headers
1179 :link
'(custom-manual "(message)Message Headers")
1180 :type
'message-header-lines
)
1182 (defcustom message-default-mail-headers
1183 ;; Ease the transition from mail-mode to message-mode. See bugs#4431, 5555.
1184 (concat (if (and (boundp 'mail-default-reply-to
)
1185 (stringp mail-default-reply-to
))
1186 (format "Reply-to: %s\n" mail-default-reply-to
))
1187 (if (and (boundp 'mail-self-blind
)
1189 (format "BCC: %s\n" user-mail-address
))
1190 (if (and (boundp 'mail-archive-file-name
)
1191 (stringp mail-archive-file-name
))
1192 (format "FCC: %s\n" mail-archive-file-name
))
1193 ;; Use the value of `mail-default-headers' if available.
1194 ;; Note: as for Emacs 21, XEmacs 21.4 and 21.5, it is
1195 ;; unavailable unless sendmail.el is loaded.
1196 (if (boundp 'mail-default-headers
)
1197 mail-default-headers
))
1198 "*A string of header lines to be inserted in outgoing mails."
1200 :group
'message-headers
1201 :group
'message-mail
1202 :link
'(custom-manual "(message)Mail Headers")
1203 :type
'message-header-lines
)
1205 (defcustom message-default-news-headers
""
1206 "*A string of header lines to be inserted in outgoing news articles."
1207 :group
'message-headers
1208 :group
'message-news
1209 :link
'(custom-manual "(message)News Headers")
1210 :type
'message-header-lines
)
1212 ;; Note: could use /usr/ucb/mail instead of sendmail;
1213 ;; options -t, and -v if not interactive.
1214 (defcustom message-mailer-swallows-blank-line
1215 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
1216 system-configuration
)
1217 (file-readable-p "/etc/sendmail.cf")
1218 (let ((buffer (get-buffer-create " *temp*")))
1220 (with-current-buffer buffer
1221 (insert-file-contents "/etc/sendmail.cf")
1222 (goto-char (point-min))
1223 (let ((case-fold-search nil
))
1224 (re-search-forward "^OR\\>" nil t
)))
1225 (kill-buffer buffer
))))
1226 ;; According to RFC822, "The field-name must be composed of printable
1227 ;; ASCII characters (i. e., characters that have decimal values between
1228 ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
1230 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
1231 "*Set this non-nil if the system's mailer runs the header and body together.
1232 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
1233 The value should be an expression to test whether the problem will
1235 :group
'message-sending
1236 :link
'(custom-manual "(message)Mail Variables")
1240 (define-mail-user-agent 'message-user-agent
1241 'message-mail
'message-send-and-exit
1242 'message-kill-buffer
'message-send-hook
)
1244 (defvar message-mh-deletable-headers
'(Message-ID Date Lines Sender
)
1245 "If non-nil, delete the deletable headers before feeding to mh.")
1247 (defvar message-send-method-alist
1248 '((news message-news-p message-send-via-news
)
1249 (mail message-mail-p message-send-via-mail
))
1250 "Alist of ways to send outgoing messages.
1251 Each element has the form
1253 \(TYPE PREDICATE FUNCTION)
1255 where TYPE is a symbol that names the method; PREDICATE is a function
1256 called without any parameters to determine whether the message is
1257 a message of type TYPE; and FUNCTION is a function to be called if
1258 PREDICATE returns non-nil. FUNCTION is called with one parameter --
1261 (defcustom message-mail-alias-type
'abbrev
1262 "*What alias expansion type to use in Message buffers.
1263 The default is `abbrev', which uses mailabbrev. `ecomplete' uses
1264 an electric completion mode. nil switches mail aliases off.
1265 This can also be a list of values."
1267 :link
'(custom-manual "(message)Mail Aliases")
1268 :type
'(choice (const :tag
"Use Mailabbrev" abbrev
)
1269 (const :tag
"Use ecomplete" ecomplete
)
1270 (const :tag
"No expansion" nil
)))
1272 (defcustom message-self-insert-commands
'(self-insert-command)
1273 "List of `self-insert-command's used to trigger ecomplete.
1274 When one of those commands is invoked to enter a character in To or Cc
1275 header, ecomplete will suggest the candidates of recipients (see also
1276 `message-mail-alias-type'). If you use some tool to enter non-ASCII
1277 text and it replaces `self-insert-command' with the other command, e.g.
1278 `egg-self-insert-command', you may want to add it to this list."
1279 :group
'message-various
1280 :type
'(repeat function
))
1282 (defcustom message-auto-save-directory
1283 (file-name-as-directory (nnheader-concat message-directory
"drafts"))
1284 "*Directory where Message auto-saves buffers if Gnus isn't running.
1285 If nil, Message won't auto-save."
1286 :group
'message-buffers
1287 :link
'(custom-manual "(message)Various Message Variables")
1288 :type
'(choice directory
(const :tag
"Don't auto-save" nil
)))
1290 (defcustom message-default-charset
1291 (and (not (mm-multibyte-p)) 'iso-8859-1
)
1292 "Default charset used in non-MULE Emacsen.
1293 If nil, you might be asked to input the charset."
1296 :link
'(custom-manual "(message)Various Message Variables")
1299 (defcustom message-dont-reply-to-names
1300 (and (boundp 'rmail-dont-reply-to-names
) rmail-dont-reply-to-names
)
1301 "*Addresses to prune when doing wide replies.
1302 This can be a regexp or a list of regexps. Also, a value of nil means
1303 exclude your own user name only."
1306 :link
'(custom-manual "(message)Wide Reply")
1307 :type
'(choice (const :tag
"Yourself" nil
)
1309 (repeat :tag
"Regexp List" regexp
)))
1311 (defsubst message-dont-reply-to-names
()
1312 (gmm-regexp-concat message-dont-reply-to-names
))
1314 (defvar message-shoot-gnksa-feet nil
1315 "*A list of GNKSA feet you are allowed to shoot.
1316 Gnus gives you all the opportunity you could possibly want for
1317 shooting yourself in the foot. Also, Gnus allows you to shoot the
1318 feet of Good Net-Keeping Seal of Approval. The following are foot
1320 `empty-article' Allow you to post an empty article;
1321 `quoted-text-only' Allow you to post quoted text only;
1322 `multiple-copies' Allow you to post multiple copies;
1323 `cancel-messages' Allow you to cancel or supersede messages from
1324 your other email addresses.")
1326 (defsubst message-gnksa-enable-p
(feature)
1327 (or (not (listp message-shoot-gnksa-feet
))
1328 (memq feature message-shoot-gnksa-feet
)))
1330 (defcustom message-hidden-headers
'("^References:" "^Face:" "^X-Face:"
1332 "Regexp of headers to be hidden when composing new messages.
1333 This can also be a list of regexps to match headers. Or a list
1334 starting with `not' and followed by regexps."
1337 :link
'(custom-manual "(message)Message Headers")
1339 :format
"%{%t%}: %[Value Type%] %v"
1340 (regexp :menu-tag
"regexp" :format
"regexp\n%t: %v")
1341 (repeat :menu-tag
"(regexp ...)" :format
"(regexp ...)\n%v%i"
1342 (regexp :format
"%t: %v"))
1343 (cons :menu-tag
"(not regexp ...)" :format
"(not regexp ...)\n%v"
1345 (repeat :format
"%v%i"
1346 (regexp :format
"%t: %v")))))
1348 (defcustom message-cite-articles-with-x-no-archive t
1349 "If non-nil, cite text from articles that has X-No-Archive set."
1353 ;;; Internal variables.
1354 ;;; Well, not really internal.
1356 (defvar message-mode-syntax-table
1357 (let ((table (copy-syntax-table text-mode-syntax-table
)))
1358 (modify-syntax-entry ?%
". " table
)
1359 (modify-syntax-entry ?
> ". " table
)
1360 (modify-syntax-entry ?
< ". " table
)
1362 "Syntax table used while in Message mode.")
1364 (defface message-header-to
1367 (:foreground
"DarkOliveGreen1" :bold t
))
1370 (:foreground
"MidnightBlue" :bold t
))
1372 (:bold t
:italic t
)))
1373 "Face used for displaying From headers."
1374 :group
'message-faces
)
1375 ;; backward-compatibility alias
1376 (put 'message-header-to-face
'face-alias
'message-header-to
)
1377 (put 'message-header-to-face
'obsolete-face
"22.1")
1379 (defface message-header-cc
1382 (:foreground
"chartreuse1" :bold t
))
1385 (:foreground
"MidnightBlue"))
1388 "Face used for displaying Cc headers."
1389 :group
'message-faces
)
1390 ;; backward-compatibility alias
1391 (put 'message-header-cc-face
'face-alias
'message-header-cc
)
1392 (put 'message-header-cc-face
'obsolete-face
"22.1")
1394 (defface message-header-subject
1397 (:foreground
"OliveDrab1"))
1400 (:foreground
"navy blue" :bold t
))
1403 "Face used for displaying subject headers."
1404 :group
'message-faces
)
1405 ;; backward-compatibility alias
1406 (put 'message-header-subject-face
'face-alias
'message-header-subject
)
1407 (put 'message-header-subject-face
'obsolete-face
"22.1")
1409 (defface message-header-newsgroups
1412 (:foreground
"yellow" :bold t
:italic t
))
1415 (:foreground
"blue4" :bold t
:italic t
))
1417 (:bold t
:italic t
)))
1418 "Face used for displaying newsgroups headers."
1419 :group
'message-faces
)
1420 ;; backward-compatibility alias
1421 (put 'message-header-newsgroups-face
'face-alias
'message-header-newsgroups
)
1422 (put 'message-header-newsgroups-face
'obsolete-face
"22.1")
1424 (defface message-header-other
1427 (:foreground
"VioletRed1"))
1430 (:foreground
"steel blue"))
1432 (:bold t
:italic t
)))
1433 "Face used for displaying newsgroups headers."
1434 :group
'message-faces
)
1435 ;; backward-compatibility alias
1436 (put 'message-header-other-face
'face-alias
'message-header-other
)
1437 (put 'message-header-other-face
'obsolete-face
"22.1")
1439 (defface message-header-name
1442 (:foreground
"green"))
1445 (:foreground
"cornflower blue"))
1448 "Face used for displaying header names."
1449 :group
'message-faces
)
1450 ;; backward-compatibility alias
1451 (put 'message-header-name-face
'face-alias
'message-header-name
)
1452 (put 'message-header-name-face
'obsolete-face
"22.1")
1454 (defface message-header-xheader
1457 (:foreground
"DeepSkyBlue1"))
1460 (:foreground
"blue"))
1463 "Face used for displaying X-Header headers."
1464 :group
'message-faces
)
1465 ;; backward-compatibility alias
1466 (put 'message-header-xheader-face
'face-alias
'message-header-xheader
)
1467 (put 'message-header-xheader-face
'obsolete-face
"22.1")
1469 (defface message-separator
1472 (:foreground
"LightSkyBlue1"))
1475 (:foreground
"brown"))
1478 "Face used for displaying the separator."
1479 :group
'message-faces
)
1480 ;; backward-compatibility alias
1481 (put 'message-separator-face
'face-alias
'message-separator
)
1482 (put 'message-separator-face
'obsolete-face
"22.1")
1484 (defface message-cited-text
1487 (:foreground
"LightPink1"))
1490 (:foreground
"red"))
1493 "Face used for displaying cited text names."
1494 :group
'message-faces
)
1495 ;; backward-compatibility alias
1496 (put 'message-cited-text-face
'face-alias
'message-cited-text
)
1497 (put 'message-cited-text-face
'obsolete-face
"22.1")
1499 (defface message-mml
1502 (:foreground
"MediumSpringGreen"))
1505 (:foreground
"ForestGreen"))
1508 "Face used for displaying MML."
1509 :group
'message-faces
)
1510 ;; backward-compatibility alias
1511 (put 'message-mml-face
'face-alias
'message-mml
)
1512 (put 'message-mml-face
'obsolete-face
"22.1")
1514 (defun message-font-lock-make-header-matcher (regexp)
1517 (let ((start (point)))
1520 (goto-char (point-min))
1521 (if (re-search-forward
1522 (concat "^" (regexp-quote mail-header-separator
) "$")
1524 (setq limit
(min limit
(match-beginning 0))))
1526 (and (< start limit
)
1527 (re-search-forward ,regexp limit t
))))))
1528 (if (featurep 'bytecomp
)
1532 (defvar message-font-lock-keywords
1533 (let ((content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)\n?"))
1534 `((,(message-font-lock-make-header-matcher
1535 (concat "^\\([Tt]o:\\)" content
))
1536 (1 'message-header-name
)
1537 (2 'message-header-to nil t
))
1538 (,(message-font-lock-make-header-matcher
1539 (concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content
))
1540 (1 'message-header-name
)
1541 (2 'message-header-cc nil t
))
1542 (,(message-font-lock-make-header-matcher
1543 (concat "^\\([Ss]ubject:\\)" content
))
1544 (1 'message-header-name
)
1545 (2 'message-header-subject nil t
))
1546 (,(message-font-lock-make-header-matcher
1547 (concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content
))
1548 (1 'message-header-name
)
1549 (2 'message-header-newsgroups nil t
))
1550 (,(message-font-lock-make-header-matcher
1551 (concat "^\\(X-[A-Za-z0-9-]+:\\|In-Reply-To:\\)" content
))
1552 (1 'message-header-name
)
1553 (2 'message-header-xheader
))
1554 (,(message-font-lock-make-header-matcher
1555 (concat "^\\([A-Z][^: \n\t]+:\\)" content
))
1556 (1 'message-header-name
)
1557 (2 'message-header-other nil t
))
1558 ,@(if (and mail-header-separator
1559 (not (equal mail-header-separator
"")))
1560 `((,(concat "^\\(" (regexp-quote mail-header-separator
) "\\)$")
1561 1 'message-separator
))
1564 (re-search-forward (concat "^\\("
1565 message-cite-prefix-regexp
1568 (0 'message-cited-text
))
1569 ("<#/?\\(multipart\\|part\\|external\\|mml\\|secure\\)[^>]*>"
1571 "Additional expressions to highlight in Message mode.")
1574 ;; XEmacs does it like this. For Emacs, we have to set the
1575 ;; `font-lock-defaults' buffer-local variable.
1576 (put 'message-mode
'font-lock-defaults
'(message-font-lock-keywords t
))
1578 (defvar message-face-alist
1579 '((bold . message-bold-region
)
1580 (underline . underline-region
)
1581 (default .
(lambda (b e
)
1582 (message-unbold-region b e
)
1583 (ununderline-region b e
))))
1584 "Alist of mail and news faces for facemenu.
1585 The cdr of each entry is a function for applying the face to a region.")
1587 (defcustom message-send-hook nil
1588 "Hook run before sending messages.
1589 This hook is run quite early when sending."
1590 :group
'message-various
1591 :options
'(ispell-message)
1592 :link
'(custom-manual "(message)Various Message Variables")
1595 (defcustom message-send-mail-hook nil
1596 "Hook run before sending mail messages.
1597 This hook is run very late -- just before the message is sent as
1599 :group
'message-various
1600 :link
'(custom-manual "(message)Various Message Variables")
1603 (defcustom message-send-news-hook nil
1604 "Hook run before sending news messages.
1605 This hook is run very late -- just before the message is sent as
1607 :group
'message-various
1608 :link
'(custom-manual "(message)Various Message Variables")
1611 (defcustom message-sent-hook nil
1612 "Hook run after sending messages."
1613 :group
'message-various
1616 (defvar message-send-coding-system
'binary
1617 "Coding system to encode outgoing mail.")
1619 (defvar message-draft-coding-system
1620 mm-auto-save-coding-system
1621 "*Coding system to compose mail.
1622 If you'd like to make it possible to share draft files between XEmacs
1623 and Emacs, you may use `iso-2022-7bit' for this value at your own risk.
1624 Note that the coding-system `iso-2022-7bit' isn't suitable to all data.")
1626 (defcustom message-send-mail-partially-limit
1000000
1627 "The limitation of messages sent as message/partial.
1628 The lower bound of message size in characters, beyond which the message
1629 should be sent in several parts. If it is nil, the size is unlimited."
1631 :group
'message-buffers
1632 :link
'(custom-manual "(message)Mail Variables")
1633 :type
'(choice (const :tag
"unlimited" nil
)
1636 (defcustom message-alternative-emails nil
1637 "*Regexp matching alternative email addresses.
1638 The first address in the To, Cc or From headers of the original
1639 article matching this variable is used as the From field of
1642 This variable has precedence over posting styles and anything that runs
1643 off `message-setup-hook'."
1644 :group
'message-headers
1645 :link
'(custom-manual "(message)Message Headers")
1646 :type
'(choice (const :tag
"Always use primary" nil
)
1649 (defcustom message-hierarchical-addresses nil
1650 "A list of hierarchical mail address definitions.
1652 Inside each entry, the first address is the \"top\" address, and
1653 subsequent addresses are subaddresses; this is used to indicate that
1654 mail sent to the first address will automatically be delivered to the
1655 subaddresses. So if the first address appears in the recipient list
1656 for a message, the subaddresses will be removed (if present) before
1657 the mail is sent. All addresses in this structure should be
1660 :group
'message-headers
1661 :type
'(repeat (repeat string
)))
1663 (defcustom message-mail-user-agent nil
1664 "Like `mail-user-agent'.
1665 Except if it is nil, use Gnus native MUA; if it is t, use
1668 :type
'(radio (const :tag
"Gnus native"
1671 (const :tag
"`mail-user-agent'"
1674 (function-item :tag
"Default Emacs mail"
1676 sendmail-user-agent
)
1677 (function-item :tag
"Emacs interface to MH"
1680 (function :tag
"Other"))
1684 (defcustom message-wide-reply-confirm-recipients nil
1685 "Whether to confirm a wide reply to multiple email recipients.
1686 If this variable is nil, don't ask whether to reply to all recipients.
1687 If this variable is non-nil, pose the question \"Reply to all
1688 recipients?\" before a wide reply to multiple recipients. If the user
1689 answers yes, reply to all recipients as usual. If the user answers
1690 no, only reply back to the author."
1692 :group
'message-headers
1693 :link
'(custom-manual "(message)Wide Reply")
1696 (defcustom message-user-fqdn nil
1697 "*Domain part of Message-Ids."
1699 :group
'message-headers
1700 :link
'(custom-manual "(message)News Headers")
1701 :type
'(radio (const :format
"%v " nil
)
1702 (string :format
"FQDN: %v")))
1704 (defcustom message-use-idna
(and (condition-case nil
(require 'idna
)
1706 (mm-coding-system-p 'utf-8
)
1707 (executable-find idna-program
)
1708 (string= (idna-to-ascii "räksmörgås")
1709 "xn--rksmrgs-5wao1o")
1711 "Whether to encode non-ASCII in domain names into ASCII according to IDNA.
1712 GNU Libidn, and in particular the elisp package \"idna.el\" and
1713 the external program \"idn\", must be installed for this
1714 functionality to work."
1716 :group
'message-headers
1717 :link
'(custom-manual "(message)IDNA")
1718 :type
'(choice (const :tag
"Ask" ask
)
1719 (const :tag
"Never" nil
)
1720 (const :tag
"Always" t
)))
1722 (defcustom message-generate-hashcash
(if (executable-find "hashcash") t
)
1723 "*Whether to generate X-Hashcash: headers.
1724 If t, always generate hashcash headers. If `opportunistic',
1725 only generate hashcash headers if it can be done without the user
1726 waiting (i.e., only asynchronously).
1728 You must have the \"hashcash\" binary installed, see `hashcash-path'."
1729 :group
'message-headers
1730 :link
'(custom-manual "(message)Mail Headers")
1731 :type
'(choice (const :tag
"Always" t
)
1732 (const :tag
"Never" nil
)
1733 (const :tag
"Opportunistic" opportunistic
)))
1735 ;;; Internal variables.
1737 (defvar message-sending-message
"Sending...")
1738 (defvar message-buffer-list nil
)
1739 (defvar message-this-is-news nil
)
1740 (defvar message-this-is-mail nil
)
1741 (defvar message-draft-article nil
)
1742 (defvar message-mime-part nil
)
1743 (defvar message-posting-charset nil
)
1744 (defvar message-inserted-headers nil
)
1746 ;; Byte-compiler warning
1747 (defvar gnus-active-hashtb
)
1748 (defvar gnus-read-active-file
)
1750 ;;; Regexp matching the delimiter of messages in UNIX mail format
1751 ;;; (UNIX From lines), minus the initial ^. It should be a copy
1752 ;;; of rmail.el's rmail-unix-mail-delimiter.
1753 (defvar message-unix-mail-delimiter
1754 (let ((time-zone-regexp
1755 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
1756 "\\|[-+]?[0-9][0-9][0-9][0-9]"
1762 ;; Many things can happen to an RFC 822 mailbox before it is put into
1763 ;; a `From' line. The leading phrase can be stripped, e.g.
1764 ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'. The <> can be stripped, e.g.
1765 ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'. Everything starting with a CRLF
1766 ;; can be removed, e.g.
1767 ;; From: joe@y.z (Joe K
1769 ;; can yield `From joe@y.z (Joe K Fri Mar 22 08:11:15 1996', and
1772 ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
1773 ;; The mailbox can be removed or be replaced by white space, e.g.
1774 ;; From: "Joe User"{space}{tab}
1776 ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
1777 ;; where {space} and {tab} represent the Ascii space and tab characters.
1778 ;; We want to match the results of any of these manglings.
1779 ;; The following regexp rejects names whose first characters are
1780 ;; obviously bogus, but after that anything goes.
1781 "\\([^\0-\b\n-\r\^?].*\\)?"
1783 ;; The time the message was sent.
1784 "\\([^\0-\r \^?]+\\) +" ; day of the week
1785 "\\([^\0-\r \^?]+\\) +" ; month
1786 "\\([0-3]?[0-9]\\) +" ; day of month
1787 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day
1789 ;; Perhaps a time zone, specified by an abbreviation, or by a
1794 " \\([0-9][0-9]+\\) *"
1796 ;; On some systems the time zone can appear after the year, too.
1800 "\\(remote from .*\\)?"
1803 "Regexp matching the delimiter of messages in UNIX mail format.")
1805 (defvar message-unsent-separator
1806 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
1807 "^ *---+ +Returned message +---+ *$\\|"
1808 "^Start of returned message$\\|"
1809 "^ *---+ +Original message +---+ *$\\|"
1810 "^ *--+ +begin message +--+ *$\\|"
1811 "^ *---+ +Original message follows +---+ *$\\|"
1812 "^ *---+ +Undelivered message follows +---+ *$\\|"
1813 "^------ This is a copy of the message, including all the headers. ------ *$\\|"
1814 "^|? *---+ +Message text follows: +---+ *|?$")
1815 "A regexp that matches the separator before the text of a failed message.")
1817 (defvar message-field-fillers
1818 '((To message-fill-field-address
)
1819 (Cc message-fill-field-address
)
1820 (From message-fill-field-address
))
1821 "Alist of header names/filler functions.")
1823 (defvar message-header-format-alist
1838 (References . message-shorten-references
)
1840 "Alist used for formatting headers.")
1842 (defvar message-options nil
1843 "Some saved answers when sending message.")
1845 (defvar message-send-mail-real-function nil
1846 "Internal send mail function.")
1848 (defvar message-bogus-system-names
"^localhost\\.\\|\\.local$"
1849 "The regexp of bogus system names.")
1851 (defcustom message-valid-fqdn-regexp
1852 (concat "[a-z0-9][-.a-z0-9]+\\." ;; [hostname.subdomain.]domain.
1854 "\\([a-z][a-z]\\|" ;; two letter country TDLs
1855 "aero\\|arpa\\|bitnet\\|biz\\|bofh\\|"
1856 "cat\\|com\\|coop\\|edu\\|gov\\|"
1857 "info\\|int\\|jobs\\|"
1858 "mil\\|mobi\\|museum\\|name\\|net\\|"
1859 "org\\|pro\\|travel\\|uucp\\)")
1860 ;; http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains
1861 ;; http://en.wikipedia.org/wiki/GTLD
1862 ;; `in the process of being approved': .asia .post .tel .sex
1863 ;; "dead" nato bitnet uucp
1864 "Regular expression that matches a valid FQDN."
1865 ;; see also: gnus-button-valid-fqdn-regexp
1867 :group
'message-headers
1870 (autoload 'gnus-alive-p
"gnus-util")
1871 (autoload 'gnus-delay-article
"gnus-delay")
1872 (autoload 'gnus-extract-address-components
"gnus-util")
1873 (autoload 'gnus-find-method-for-group
"gnus")
1874 (autoload 'gnus-group-decoded-name
"gnus-group")
1875 (autoload 'gnus-group-name-charset
"gnus-group")
1876 (autoload 'gnus-group-name-decode
"gnus-group")
1877 (autoload 'gnus-groups-from-server
"gnus")
1878 (autoload 'gnus-make-local-hook
"gnus-util")
1879 (autoload 'gnus-open-server
"gnus-int")
1880 (autoload 'gnus-output-to-mail
"gnus-util")
1881 (autoload 'gnus-output-to-rmail
"gnus-util")
1882 (autoload 'gnus-request-post
"gnus-int")
1883 (autoload 'gnus-select-frame-set-input-focus
"gnus-util")
1884 (autoload 'gnus-server-string
"gnus")
1885 (autoload 'idna-to-ascii
"idna")
1886 (autoload 'message-setup-toolbar
"messagexmas")
1887 (autoload 'mh-new-draft-name
"mh-comp")
1888 (autoload 'mh-send-letter
"mh-comp")
1889 (autoload 'nndraft-request-associate-buffer
"nndraft")
1890 (autoload 'nndraft-request-expire-articles
"nndraft")
1891 (autoload 'nnvirtual-find-group-art
"nnvirtual")
1892 (autoload 'rmail-dont-reply-to
"mail-utils")
1893 (autoload 'rmail-msg-is-pruned
"rmail")
1894 (autoload 'rmail-output
"rmailout")
1899 ;;; Utility functions.
1902 (defmacro message-y-or-n-p
(question show
&rest text
)
1903 "Ask QUESTION, displaying remaining args in a temporary buffer if SHOW."
1904 `(message-talkative-question 'y-or-n-p
,question
,show
,@text
))
1906 (defmacro message-delete-line
(&optional n
)
1907 "Delete the current line (and the next N lines)."
1908 `(delete-region (progn (beginning-of-line) (point))
1909 (progn (forward-line ,(or n
1)) (point))))
1911 (defun message-mark-active-p ()
1912 "Non-nil means the mark and region are currently active in this buffer."
1915 (defun message-unquote-tokens (elems)
1916 "Remove double quotes (\") from strings in list ELEMS."
1917 (mapcar (lambda (item)
1918 (while (string-match "^\\(.*\\)\"\\(.*\\)$" item
)
1919 (setq item
(concat (match-string 1 item
)
1920 (match-string 2 item
))))
1924 (defun message-tokenize-header (header &optional separator
)
1925 "Split HEADER into a list of header elements.
1926 SEPARATOR is a string of characters to be used as separators. \",\"
1927 is used by default."
1930 (let ((regexp (format "[%s]+" (or separator
",")))
1932 beg quoted elems paren
)
1934 (mm-enable-multibyte)
1935 (setq beg
(point-min))
1937 (goto-char (point-min))
1942 (cond ((and (> (point) beg
)
1944 (and (looking-at regexp
)
1947 (push (buffer-substring beg
(point)) elems
)
1948 (setq beg
(match-end 0)))
1949 ((eq (char-after) ?
\")
1950 (setq quoted
(not quoted
)))
1951 ((and (eq (char-after) ?\
()
1954 ((and (eq (char-after) ?\
))
1957 (nreverse elems
)))))
1959 (defun message-mail-file-mbox-p (file)
1960 "Say whether FILE looks like a Unix mbox file."
1961 (when (and (file-exists-p file
)
1962 (file-readable-p file
)
1963 (file-regular-p file
))
1965 (nnheader-insert-file-contents file
)
1966 (goto-char (point-min))
1967 (looking-at message-unix-mail-delimiter
))))
1969 (defun message-fetch-field (header &optional not-all
)
1970 "The same as `mail-fetch-field', only remove all newlines.
1971 The buffer is expected to be narrowed to just the header of the message;
1972 see `message-narrow-to-headers-or-head'."
1973 (let* ((inhibit-point-motion-hooks t
)
1974 (value (mail-fetch-field header nil
(not not-all
))))
1976 (while (string-match "\n[\t ]+" value
)
1977 (setq value
(replace-match " " t t value
)))
1980 (defun message-field-value (header &optional not-all
)
1981 "The same as `message-fetch-field', only narrow to the headers first."
1984 (message-narrow-to-headers-or-head)
1985 (message-fetch-field header not-all
))))
1987 (defun message-narrow-to-field ()
1988 "Narrow the buffer to the header on the current line."
1990 (while (looking-at "[ \t]")
1996 (if (re-search-forward "^[^ \n\t]" nil t
)
1999 (goto-char (point-min)))
2001 (defun message-add-header (&rest headers
)
2002 "Add the HEADERS to the message header, skipping those already present."
2005 (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers
))
2006 (error "Invalid header `%s'" (car headers
)))
2007 (setq hclean
(match-string 1 (car headers
)))
2009 (message-narrow-to-headers)
2010 (unless (re-search-forward (concat "^" (regexp-quote hclean
) ":") nil t
)
2011 (goto-char (point-max))
2012 (if (string-match "\n$" (car headers
))
2013 (insert (car headers
))
2014 (insert (car headers
) ?
\n)))))
2015 (setq headers
(cdr headers
))))
2017 (defmacro message-with-reply-buffer
(&rest forms
)
2018 "Evaluate FORMS in the reply buffer, if it exists."
2019 `(when (and (bufferp message-reply-buffer
)
2020 (buffer-name message-reply-buffer
))
2021 (with-current-buffer message-reply-buffer
2024 (put 'message-with-reply-buffer
'lisp-indent-function
0)
2025 (put 'message-with-reply-buffer
'edebug-form-spec
'(body))
2027 (defun message-fetch-reply-field (header)
2028 "Fetch field HEADER from the message we're replying to."
2029 (message-with-reply-buffer
2031 (mail-narrow-to-head)
2032 (message-fetch-field header
))))
2034 (defun message-strip-list-identifiers (subject)
2035 "Remove list identifiers in `gnus-list-identifiers' from string SUBJECT."
2036 (require 'gnus-sum
) ; for gnus-list-identifiers
2037 (let ((regexp (if (stringp gnus-list-identifiers
)
2038 gnus-list-identifiers
2039 (mapconcat 'identity gnus-list-identifiers
" *\\|"))))
2040 (if (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
2041 " *\\)\\)+\\(Re: +\\)?\\)") subject
)
2042 (concat (substring subject
0 (match-beginning 1))
2043 (or (match-string 3 subject
)
2044 (match-string 5 subject
))
2049 (defun message-strip-subject-re (subject)
2050 "Remove \"Re:\" from subject lines in string SUBJECT."
2051 (if (string-match message-subject-re-regexp subject
)
2052 (substring subject
(match-end 0))
2055 (defcustom message-replacement-char
"."
2056 "Replacement character used instead of unprintable or not decodable chars."
2057 :group
'message-various
2058 :version
"22.1" ;; Gnus 5.10.9
2059 :type
'(choice string
2063 ;; FIXME: We also should call `message-strip-subject-encoded-words'
2064 ;; when forwarding. Probably in `message-make-forward-subject' and
2065 ;; `message-forward-make-body'.
2067 (defun message-strip-subject-encoded-words (subject)
2068 "Fix non-decodable words in SUBJECT."
2069 ;; Cf. `gnus-simplify-subject-fully'.
2070 (let* ((case-fold-search t
)
2071 (replacement-chars (format "[%s%s%s]"
2072 message-replacement-char
2073 message-replacement-char
2074 message-replacement-char
))
2075 (enc-word-re "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?\\([^?]+\\)\\(\\?=\\)")
2080 (goto-char (point-min))
2081 (when (re-search-forward enc-word-re nil t
)
2082 (setq cs-string
(match-string 1)))))
2083 cs-coding q-or-b word-beg word-end
)
2084 (if (or (not have-marker
) ;; No encoded word found...
2085 ;; ... or double encoding was correct:
2086 (and (stringp cs-string
)
2087 (setq cs-string
(downcase cs-string
))
2088 (mm-coding-system-p (intern cs-string
))
2092 Decoded Subject \"%s\"
2093 contains a valid encoded word. Decode again? "
2095 (setq cs-coding
(intern cs-string
))))))
2099 (goto-char (point-min))
2100 (while (re-search-forward enc-word-re nil t
)
2101 (setq cs-string
(downcase (match-string 1))
2102 q-or-b
(match-string 2)
2103 word-beg
(match-beginning 0)
2104 word-end
(match-end 0))
2106 (if (mm-coding-system-p (intern cs-string
))
2107 (setq cs-coding
(intern cs-string
))
2109 ;; No double encoded subject? => bogus charset.
2112 (mm-read-coding-system
2114 Decoded Subject \"%s\"
2115 contains an encoded word. The charset `%s' is unknown or invalid.
2116 Hit RET to replace non-decodable characters with \"%s\" or enter replacement
2118 subject cs-string message-replacement-char
)))
2120 (replace-match (concat "=?" (symbol-name cs-coding
)
2123 (goto-char word-beg
)
2124 (re-search-forward "=\\?\\([^?]+\\)\\?\\([QB]\\)\\?" word-end t
)
2127 (if (string-match "\\`Q\\'" q-or-b
)
2130 (message "Replacing non-decodable characters with \"%s\"."
2131 message-replacement-char
)
2132 (while (re-search-forward "\\(=[A-F0-9][A-F0-9]\\)+"
2134 (replace-match message-replacement-char
)))
2136 (message "Replacing non-decodable characters with \"%s\"."
2138 (re-search-forward "[^?]+" word-end t
)
2139 (replace-match replacement-chars
))
2140 (re-search-forward "\\?=")
2141 (replace-match "")))))
2142 (rfc2047-decode-region (point-min) (point-max))
2145 ;;; Start of functions adopted from `message-utils.el'.
2147 (defun message-strip-subject-trailing-was (subject)
2148 "Remove trailing \"(was: <old subject>)\" from SUBJECT lines.
2149 Leading \"Re: \" is not stripped by this function. Use the function
2150 `message-strip-subject-re' for this."
2151 (let* ((query message-subject-trailing-was-query
)
2156 message-subject-trailing-was-ask-regexp
2157 message-subject-trailing-was-regexp
)
2160 (setq new
(substring subject
0 (match-beginning 0))))
2161 (if (or (not found
) (eq query nil
))
2164 (if (message-y-or-n-p
2165 "Strip `(was: <old subject>)' in subject? " t
2167 "Strip `(was: <old subject>)' in subject "
2168 "and use the new one instead?\n\n"
2169 "Current subject is: \""
2171 "New subject would be: \""
2173 "See the variable `message-subject-trailing-was-query' "
2174 "to get rid of this query."
2179 ;;; Suggested by Jonas Steverud @ www.dtek.chalmers.se/~d4jonas/
2181 (defun message-change-subject (new-subject)
2182 "Ask for NEW-SUBJECT header, append (was: <Old Subject>)."
2183 ;; <URL:http://www.landfield.com/usefor/drafts/draft-ietf-usefor-useage--1.02.unpaged>
2186 (read-from-minibuffer "New subject: ")))
2187 (cond ((and (not (or (null new-subject
) ; new subject not empty
2188 (zerop (string-width new-subject
))
2189 (string-match "^[ \t]*$" new-subject
))))
2193 (message-narrow-to-headers)
2194 (message-fetch-field "Subject"))))
2195 (cond ((not old-subject
)
2196 (error "No current subject"))
2199 (regexp-quote new-subject
)
2201 old-subject
)) ; yes, it really is a new subject
2202 ;; delete eventual Re: prefix
2204 (message-strip-subject-re old-subject
))
2205 (message-goto-subject)
2206 (message-delete-line)
2207 (insert (concat "Subject: "
2210 old-subject
")\n")))))))))
2212 (defun message-mark-inserted-region (beg end
&optional verbatim
)
2213 "Mark some region in the current article with enclosing tags.
2214 See `message-mark-insert-begin' and `message-mark-insert-end'.
2215 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2216 (interactive "r\nP")
2218 ;; add to the end of the region first, otherwise end would be invalid
2220 (insert (if verbatim
"#v-\n" message-mark-insert-end
))
2222 (insert (if verbatim
"#v+\n" message-mark-insert-begin
))))
2224 (defun message-mark-insert-file (file &optional verbatim
)
2225 "Insert FILE at point, marking it with enclosing tags.
2226 See `message-mark-insert-begin' and `message-mark-insert-end'.
2227 If VERBATIM, use slrn style verbatim marks (\"#v+\" and \"#v-\")."
2228 (interactive "fFile to insert: \nP")
2229 ;; reverse insertion to get correct result.
2231 (insert (if verbatim
"#v-\n" message-mark-insert-end
))
2233 (insert-file-contents file
)
2235 (insert (if verbatim
"#v+\n" message-mark-insert-begin
))))
2237 (defun message-add-archive-header ()
2238 "Insert \"X-No-Archive: Yes\" in the header and a note in the body.
2239 The note can be customized using `message-archive-note'. When called with a
2240 prefix argument, ask for a text to insert. If you don't want the note in the
2241 body, set `message-archive-note' to nil."
2243 (if current-prefix-arg
2244 (setq message-archive-note
2245 (read-from-minibuffer "Reason for No-Archive: "
2246 (cons message-archive-note
0))))
2248 (if (message-goto-signature)
2249 (re-search-backward message-signature-separator
))
2250 (when message-archive-note
2251 (insert message-archive-note
)
2253 (message-add-header message-archive-header
)
2254 (message-sort-headers)))
2256 (defun message-cross-post-followup-to-header (target-group)
2257 "Mangles FollowUp-To and Newsgroups header to point to TARGET-GROUP.
2258 With prefix-argument just set Follow-Up, don't cross-post."
2260 (list ; Completion based on Gnus
2261 (completing-read "Followup To: "
2262 (if (boundp 'gnus-newsrc-alist
)
2264 nil nil
'("poster" .
0)
2265 (if (boundp 'gnus-group-history
)
2266 'gnus-group-history
))))
2267 (message-remove-header "Follow[Uu]p-[Tt]o" t
)
2268 (message-goto-newsgroups)
2270 ;; if we already did a crosspost before, kill old target
2271 (if (and message-cross-post-old-target
2273 (regexp-quote (concat "," message-cross-post-old-target
))
2276 ;; unless (followup is to poster or user explicitly asked not
2277 ;; to cross-post, or target-group is already in Newsgroups)
2278 ;; add target-group to Newsgroups line.
2280 ;; def: cross-post, req:no
2281 (and message-cross-post-default
(not current-prefix-arg
))
2282 ;; def: no-cross-post, req:yes
2283 (and (not message-cross-post-default
) current-prefix-arg
))
2284 (not (string-match "poster" target-group
))
2285 (not (string-match (regexp-quote target-group
)
2286 (message-fetch-field "Newsgroups"))))
2288 (insert (concat "," target-group
))))
2289 (end-of-line) ; ensure Followup: comes after Newsgroups:
2290 ;; unless new followup would be identical to Newsgroups line
2291 ;; make a new Followup-To line
2292 (if (not (string-match (concat "^[ \t]*"
2295 (message-fetch-field "Newsgroups")))
2296 (insert (concat "\nFollowup-To: " target-group
)))
2297 (setq message-cross-post-old-target target-group
))
2299 (defun message-cross-post-insert-note (target-group cross-post in-old
2301 "Insert a in message body note about a set Followup or Crosspost.
2302 If there have been previous notes, delete them. TARGET-GROUP specifies the
2303 group to Followup-To. When CROSS-POST is t, insert note about
2304 crossposting. IN-OLD specifies whether TARGET-GROUP is a member of
2305 OLD-GROUPS. OLD-GROUPS lists the old-groups the posting would have
2306 been made to before the user asked for a Crosspost."
2307 ;; start scanning body for previous uses
2308 (message-goto-signature)
2309 (let ((head (re-search-backward
2310 (concat "^" mail-header-separator
)
2311 nil t
))) ; just search in body
2312 (message-goto-signature)
2313 (while (re-search-backward
2314 (concat "^" (regexp-quote message-cross-post-note
) ".*")
2316 (message-delete-line))
2317 (message-goto-signature)
2318 (while (re-search-backward
2319 (concat "^" (regexp-quote message-followup-to-note
) ".*")
2321 (message-delete-line))
2323 (if (message-goto-signature)
2324 (re-search-backward message-signature-separator
))
2327 (string-match "^[ \t]*poster[ \t]*$" target-group
))
2328 (insert (concat message-followup-to-note target-group
"\n"))
2329 (insert (concat message-cross-post-note target-group
"\n")))))
2331 (defun message-cross-post-followup-to (target-group)
2332 "Crossposts message and set Followup-To to TARGET-GROUP.
2333 With prefix-argument just set Follow-Up, don't cross-post."
2335 (list ; Completion based on Gnus
2336 (completing-read "Followup To: "
2337 (if (boundp 'gnus-newsrc-alist
)
2339 nil nil
'("poster" .
0)
2340 (if (boundp 'gnus-group-history
)
2341 'gnus-group-history
))))
2342 (cond ((not (or (null target-group
) ; new subject not empty
2343 (zerop (string-width target-group
))
2344 (string-match "^[ \t]*$" target-group
)))
2346 (let* ((old-groups (message-fetch-field "Newsgroups"))
2347 (in-old (string-match
2348 (regexp-quote target-group
)
2349 (or old-groups
""))))
2350 ;; check whether target exactly matches old Newsgroups
2351 (cond ((not old-groups
)
2352 (error "No current newsgroup"))
2356 (regexp-quote target-group
)
2359 ;; yes, Newsgroups line must change
2360 (message-cross-post-followup-to-header target-group
)
2361 ;; insert note whether we do cross-post or followup-to
2362 (funcall message-cross-post-note-function
2364 (if (or (and message-cross-post-default
2365 (not current-prefix-arg
))
2366 (and (not message-cross-post-default
)
2367 current-prefix-arg
)) t
)
2368 in-old old-groups
))))))))
2370 ;;; Reduce To: to Cc: or Bcc: header
2372 (defun message-reduce-to-to-cc ()
2373 "Replace contents of To: header with contents of Cc: or Bcc: header."
2376 (save-restriction (message-narrow-to-headers)
2377 (message-fetch-field "cc")))
2379 (if (and (not cc-content
)
2382 (message-narrow-to-headers)
2383 (message-fetch-field "bcc"))))
2388 (message-delete-line)
2389 (insert (concat "To: " cc-content
"\n"))
2391 (message-narrow-to-headers)
2392 (message-remove-header (if bcc
2396 ;;; End of functions adopted from `message-utils.el'.
2398 (defun message-remove-header (header &optional is-regexp first reverse
)
2399 "Remove HEADER in the narrowed buffer.
2400 If IS-REGEXP, HEADER is a regular expression.
2401 If FIRST, only remove the first instance of the header.
2402 Return the number of headers removed."
2403 (goto-char (point-min))
2404 (let ((regexp (if is-regexp header
(concat "^" (regexp-quote header
) ":")))
2406 (case-fold-search t
)
2408 (while (and (not (eobp))
2411 (not (looking-at regexp
))
2412 (looking-at regexp
))
2419 ;; There might be a continuation header, so we have to search
2420 ;; until we find a new non-continuation line.
2423 (if (re-search-forward "^[^ \t]" nil t
)
2424 (goto-char (match-beginning 0))
2427 (if (re-search-forward "^[^ \t]" nil t
)
2428 (goto-char (match-beginning 0))
2429 (goto-char (point-max)))))
2432 (defun message-remove-first-header (header)
2433 "Remove the first instance of HEADER if there is more than one."
2435 (regexp (concat "^" (regexp-quote header
) ":")))
2437 (goto-char (point-min))
2438 (while (re-search-forward regexp nil t
)
2441 (message-remove-header header nil t
)
2444 (defun message-narrow-to-headers ()
2445 "Narrow the buffer to the head of the message."
2448 (goto-char (point-min))
2449 (if (re-search-forward
2450 (concat "^" (regexp-quote mail-header-separator
) "\n") nil t
)
2453 (goto-char (point-min)))
2455 (defun message-narrow-to-head-1 ()
2456 "Like `message-narrow-to-head'. Don't widen."
2458 (goto-char (point-min))
2459 (if (search-forward "\n\n" nil
1)
2462 (goto-char (point-min)))
2464 ;; FIXME: clarify diffference: message-narrow-to-head,
2465 ;; message-narrow-to-headers-or-head, message-narrow-to-headers
2466 (defun message-narrow-to-head ()
2467 "Narrow the buffer to the head of the message.
2468 Point is left at the beginning of the narrowed-to region."
2470 (message-narrow-to-head-1))
2472 (defun message-narrow-to-headers-or-head ()
2473 "Narrow the buffer to the head of the message."
2476 (goto-char (point-min))
2477 (if (re-search-forward (concat "\\(\n\\)\n\\|^\\("
2478 (regexp-quote mail-header-separator
)
2481 (or (match-end 1) (match-beginning 2))
2483 (goto-char (point-min)))
2485 (defun message-news-p ()
2486 "Say whether the current buffer contains a news message."
2487 (and (not message-this-is-mail
)
2488 (or message-this-is-news
2491 (message-narrow-to-headers)
2492 (and (message-fetch-field "newsgroups")
2493 (not (message-fetch-field "posted-to"))))))))
2495 (defun message-mail-p ()
2496 "Say whether the current buffer contains a mail message."
2497 (and (not message-this-is-news
)
2498 (or message-this-is-mail
2501 (message-narrow-to-headers)
2502 (or (message-fetch-field "to")
2503 (message-fetch-field "cc")
2504 (message-fetch-field "bcc")))))))
2506 (defun message-subscribed-p ()
2507 "Say whether we need to insert a MFT header."
2508 (or message-subscribed-regexps
2509 message-subscribed-addresses
2510 message-subscribed-address-file
2511 message-subscribed-address-functions
))
2513 (defun message-next-header ()
2514 "Go to the beginning of the next header."
2516 (or (eobp) (forward-char 1))
2517 (not (if (re-search-forward "^[^ \t]" nil t
)
2519 (goto-char (point-max)))))
2521 (defun message-sort-headers-1 ()
2522 "Sort the buffer as headers using `message-rank' text props."
2523 (goto-char (point-min))
2526 nil
'message-next-header
2528 (message-next-header)
2532 (or (get-text-property (point) 'message-rank
)
2535 (defun message-sort-headers ()
2536 "Sort the headers of the current message according to `message-header-format-alist'."
2540 (let ((max (1+ (length message-header-format-alist
)))
2542 (message-narrow-to-headers)
2543 (while (re-search-forward "^[^ \n]+:" nil t
)
2545 (match-beginning 0) (1+ (match-beginning 0))
2547 (if (setq rank
(length (memq (assq (intern (buffer-substring
2549 (1- (match-end 0))))
2550 message-header-format-alist
)
2551 message-header-format-alist
)))
2554 (message-sort-headers-1))))
2556 (defun message-kill-address ()
2557 "Kill the address under point."
2559 (let ((start (point)))
2560 (message-skip-to-next-address)
2561 (kill-region start
(point))))
2564 (autoload 'Info-goto-node
"info")
2565 (defvar mml2015-use
)
2567 (defun message-info (&optional arg
)
2568 "Display the Message manual.
2570 Prefixed with one \\[universal-argument], display the Emacs MIME
2571 manual. With two \\[universal-argument]'s, display the EasyPG or
2572 PGG manual, depending on the value of `mml2015-use'."
2574 ;; Don't use `info' because support for `(filename)nodename' is not
2575 ;; available in XEmacs < 21.5.12.
2576 (Info-goto-node (format "(%s)Top"
2580 ((eq arg
4) 'emacs-mime
)
2581 ;; `booleanp' only available in Emacs 22+
2582 ((and (not (memq arg
'(nil t
)))
2596 (defvar message-mode-map nil
)
2598 (unless message-mode-map
2599 (setq message-mode-map
(make-keymap))
2600 (set-keymap-parent message-mode-map text-mode-map
)
2601 (define-key message-mode-map
"\C-c?" 'describe-mode
)
2603 (define-key message-mode-map
"\C-c\C-f\C-t" 'message-goto-to
)
2604 (define-key message-mode-map
"\C-c\C-f\C-o" 'message-goto-from
)
2605 (define-key message-mode-map
"\C-c\C-f\C-b" 'message-goto-bcc
)
2606 (define-key message-mode-map
"\C-c\C-f\C-w" 'message-goto-fcc
)
2607 (define-key message-mode-map
"\C-c\C-f\C-c" 'message-goto-cc
)
2608 (define-key message-mode-map
"\C-c\C-f\C-s" 'message-goto-subject
)
2609 (define-key message-mode-map
"\C-c\C-f\C-r" 'message-goto-reply-to
)
2610 (define-key message-mode-map
"\C-c\C-f\C-n" 'message-goto-newsgroups
)
2611 (define-key message-mode-map
"\C-c\C-f\C-d" 'message-goto-distribution
)
2612 (define-key message-mode-map
"\C-c\C-f\C-f" 'message-goto-followup-to
)
2613 (define-key message-mode-map
"\C-c\C-f\C-m" 'message-goto-mail-followup-to
)
2614 (define-key message-mode-map
"\C-c\C-f\C-k" 'message-goto-keywords
)
2615 (define-key message-mode-map
"\C-c\C-f\C-u" 'message-goto-summary
)
2616 (define-key message-mode-map
"\C-c\C-f\C-i"
2617 'message-insert-or-toggle-importance
)
2618 (define-key message-mode-map
"\C-c\C-f\C-a"
2619 'message-generate-unsubscribed-mail-followup-to
)
2621 ;; modify headers (and insert notes in body)
2622 (define-key message-mode-map
"\C-c\C-fs" 'message-change-subject
)
2624 (define-key message-mode-map
"\C-c\C-fx" 'message-cross-post-followup-to
)
2625 ;; prefix+message-cross-post-followup-to = same w/o cross-post
2626 (define-key message-mode-map
"\C-c\C-ft" 'message-reduce-to-to-cc
)
2627 (define-key message-mode-map
"\C-c\C-fa" 'message-add-archive-header
)
2628 ;; mark inserted text
2629 (define-key message-mode-map
"\C-c\M-m" 'message-mark-inserted-region
)
2630 (define-key message-mode-map
"\C-c\M-f" 'message-mark-insert-file
)
2632 (define-key message-mode-map
"\C-c\C-b" 'message-goto-body
)
2633 (define-key message-mode-map
"\C-c\C-i" 'message-goto-signature
)
2635 (define-key message-mode-map
"\C-c\C-t" 'message-insert-to
)
2636 (define-key message-mode-map
"\C-c\C-fw" 'message-insert-wide-reply
)
2637 (define-key message-mode-map
"\C-c\C-n" 'message-insert-newsgroups
)
2638 (define-key message-mode-map
"\C-c\C-l" 'message-to-list-only
)
2639 (define-key message-mode-map
"\C-c\C-f\C-e" 'message-insert-expires
)
2641 (define-key message-mode-map
"\C-c\C-u" 'message-insert-or-toggle-importance
)
2642 (define-key message-mode-map
"\C-c\M-n"
2643 'message-insert-disposition-notification-to
)
2645 (define-key message-mode-map
"\C-c\C-y" 'message-yank-original
)
2646 (define-key message-mode-map
"\C-c\M-\C-y" 'message-yank-buffer
)
2647 (define-key message-mode-map
"\C-c\C-q" 'message-fill-yanked-message
)
2648 (define-key message-mode-map
"\C-c\C-w" 'message-insert-signature
)
2649 (define-key message-mode-map
"\C-c\M-h" 'message-insert-headers
)
2650 (define-key message-mode-map
"\C-c\C-r" 'message-caesar-buffer-body
)
2651 (define-key message-mode-map
"\C-c\C-o" 'message-sort-headers
)
2652 (define-key message-mode-map
"\C-c\M-r" 'message-rename-buffer
)
2654 (define-key message-mode-map
"\C-c\C-c" 'message-send-and-exit
)
2655 (define-key message-mode-map
"\C-c\C-s" 'message-send
)
2656 (define-key message-mode-map
"\C-c\C-k" 'message-kill-buffer
)
2657 (define-key message-mode-map
"\C-c\C-d" 'message-dont-send
)
2658 (define-key message-mode-map
"\C-c\n" 'gnus-delay-article
)
2660 (define-key message-mode-map
"\C-c\M-k" 'message-kill-address
)
2661 (define-key message-mode-map
"\C-c\C-e" 'message-elide-region
)
2662 (define-key message-mode-map
"\C-c\C-v" 'message-delete-not-region
)
2663 (define-key message-mode-map
"\C-c\C-z" 'message-kill-to-signature
)
2664 (define-key message-mode-map
"\M-\r" 'message-newline-and-reformat
)
2665 (define-key message-mode-map
[remap split-line
] 'message-split-line
)
2667 (define-key message-mode-map
"\C-c\C-a" 'mml-attach-file
)
2669 (define-key message-mode-map
"\C-a" 'message-beginning-of-line
)
2670 (define-key message-mode-map
"\t" 'message-tab
)
2671 (define-key message-mode-map
"\M-;" 'comment-region
)
2673 (define-key message-mode-map
"\M-n" 'message-display-abbrev
))
2676 message-mode-menu message-mode-map
"Message Menu."
2678 ["Yank Original" message-yank-original message-reply-buffer
]
2679 ["Fill Yanked Message" message-fill-yanked-message t
]
2680 ["Insert Signature" message-insert-signature t
]
2681 ["Caesar (rot13) Message" message-caesar-buffer-body t
]
2682 ["Caesar (rot13) Region" message-caesar-region
(message-mark-active-p)]
2683 ["Elide Region" message-elide-region
2684 :active
(message-mark-active-p)
2685 ,@(if (featurep 'xemacs
) nil
2686 '(:help
"Replace text in region with an ellipsis"))]
2687 ["Delete Outside Region" message-delete-not-region
2688 :active
(message-mark-active-p)
2689 ,@(if (featurep 'xemacs
) nil
2690 '(:help
"Delete all quoted text outside region"))]
2691 ["Kill To Signature" message-kill-to-signature t
]
2692 ["Newline and Reformat" message-newline-and-reformat t
]
2693 ["Rename buffer" message-rename-buffer t
]
2694 ["Spellcheck" ispell-message
2695 ,@(if (featurep 'xemacs
) '(t)
2696 '(:help
"Spellcheck this message"))]
2698 ["Insert Region Marked" message-mark-inserted-region
2699 :active
(message-mark-active-p)
2700 ,@(if (featurep 'xemacs
) nil
2701 '(:help
"Mark region with enclosing tags"))]
2702 ["Insert File Marked..." message-mark-insert-file
2703 ,@(if (featurep 'xemacs
) '(t)
2704 '(:help
"Insert file at point marked with enclosing tags"))]
2706 ["Send Message" message-send-and-exit
2707 ,@(if (featurep 'xemacs
) '(t)
2708 '(:help
"Send this message"))]
2709 ["Postpone Message" message-dont-send
2710 ,@(if (featurep 'xemacs
) '(t)
2711 '(:help
"File this draft message and exit"))]
2712 ["Send at Specific Time..." gnus-delay-article
2713 ,@(if (featurep 'xemacs
) '(t)
2714 '(:help
"Ask, then arrange to send message at that time"))]
2715 ["Kill Message" message-kill-buffer
2716 ,@(if (featurep 'xemacs
) '(t)
2717 '(:help
"Delete this message without sending"))]
2719 ["Message manual" message-info
2720 ,@(if (featurep 'xemacs
) '(t)
2721 '(:help
"Display the Message manual"))]))
2724 message-mode-field-menu message-mode-map
""
2726 ["To" message-goto-to t
]
2727 ["From" message-goto-from t
]
2728 ["Subject" message-goto-subject t
]
2729 ["Change subject..." message-change-subject t
]
2730 ["Cc" message-goto-cc t
]
2731 ["Bcc" message-goto-bcc t
]
2732 ["Fcc" message-goto-fcc t
]
2733 ["Reply-To" message-goto-reply-to t
]
2734 ["Flag As Important" message-insert-importance-high
2735 ,@(if (featurep 'xemacs
) '(t)
2736 '(:help
"Mark this message as important"))]
2737 ["Flag As Unimportant" message-insert-importance-low
2738 ,@(if (featurep 'xemacs
) '(t)
2739 '(:help
"Mark this message as unimportant"))]
2741 message-insert-disposition-notification-to
2742 ,@(if (featurep 'xemacs
) '(t)
2743 '(:help
"Request a receipt notification"))]
2745 ;; (typical) news stuff
2746 ["Summary" message-goto-summary t
]
2747 ["Keywords" message-goto-keywords t
]
2748 ["Newsgroups" message-goto-newsgroups t
]
2749 ["Fetch Newsgroups" message-insert-newsgroups t
]
2750 ["Followup-To" message-goto-followup-to t
]
2751 ;; ["Followup-To (with note in body)" message-cross-post-followup-to t]
2752 ["Crosspost / Followup-To..." message-cross-post-followup-to t
]
2753 ["Distribution" message-goto-distribution t
]
2754 ["Expires" message-insert-expires t
]
2755 ["X-No-Archive" message-add-archive-header t
]
2757 ;; (typical) mailing-lists stuff
2758 ["Fetch To" message-insert-to
2759 ,@(if (featurep 'xemacs
) '(t)
2760 '(:help
"Insert a To header that points to the author."))]
2761 ["Fetch To and Cc" message-insert-wide-reply
2762 ,@(if (featurep 'xemacs
) '(t)
2764 "Insert To and Cc headers as if you were doing a wide reply."))]
2766 ["Send to list only" message-to-list-only t
]
2767 ["Mail-Followup-To" message-goto-mail-followup-to t
]
2768 ["Unsubscribed list post" message-generate-unsubscribed-mail-followup-to
2769 ,@(if (featurep 'xemacs
) '(t)
2770 '(:help
"Insert a reasonable `Mail-Followup-To:' header."))]
2771 ["Reduce To: to Cc:" message-reduce-to-to-cc t
]
2773 ["Sort Headers" message-sort-headers t
]
2774 ["Encode non-ASCII domain names" message-idna-to-ascii-rhs t
]
2775 ;; We hide `message-hidden-headers' by narrowing the buffer.
2776 ["Show Hidden Headers" widen t
]
2777 ["Goto Body" message-goto-body t
]
2778 ["Goto Signature" message-goto-signature t
]))
2780 (defvar message-tool-bar-map nil
)
2782 (defvar facemenu-add-face-function
)
2783 (defvar facemenu-remove-face-function
)
2785 ;;; Forbidden properties
2787 ;; We use `after-change-functions' to keep special text properties
2788 ;; that interfere with the normal function of message mode out of the
2791 (defcustom message-strip-special-text-properties t
2792 "Strip special properties from the message buffer.
2794 Emacs has a number of special text properties which can break message
2795 composing in various ways. If this option is set, message will strip
2796 these properties from the message composition buffer. However, some
2797 packages requires these properties to be present in order to work.
2798 If you use one of these packages, turn this option off, and hope the
2799 message composition doesn't break too bad."
2801 :group
'message-various
2802 :link
'(custom-manual "(message)Various Message Variables")
2805 (defconst message-forbidden-properties
2806 ;; No reason this should be clutter up customize. We make it a
2807 ;; property list (rather than a list of property symbols), to be
2808 ;; directly useful for `remove-text-properties'.
2809 '(field nil read-only nil invisible nil intangible nil
2810 mouse-face nil modification-hooks nil insert-in-front-hooks nil
2811 insert-behind-hooks nil point-entered nil point-left nil
)
2812 ;; Other special properties:
2813 ;; category, face, display: probably doesn't do any harm.
2814 ;; fontified: is used by font-lock.
2815 ;; syntax-table, local-map: I dunno.
2816 ;; We need to add XEmacs names to the list.
2817 "Property list of with properties forbidden in message buffers.
2818 The values of the properties are ignored, only the property names are used.")
2820 (defun message-tamago-not-in-use-p (pos)
2821 "Return t when tamago version 4 is not in use at the cursor position.
2822 Tamago version 4 is a popular input method for writing Japanese text.
2823 It uses the properties `intangible', `invisible', `modification-hooks'
2824 and `read-only' when translating ascii or kana text to kanji text.
2825 These properties are essential to work, so we should never strip them."
2826 (not (and (boundp 'egg-modefull-mode
)
2827 (symbol-value 'egg-modefull-mode
)
2828 (or (memq (get-text-property pos
'intangible
)
2829 '(its-part-1 its-part-2
))
2830 (get-text-property pos
'egg-end
)
2831 (get-text-property pos
'egg-lang
)
2832 (get-text-property pos
'egg-start
)))))
2834 (defsubst message-mail-alias-type-p
(type)
2835 (if (atom message-mail-alias-type
)
2836 (eq message-mail-alias-type type
)
2837 (memq type message-mail-alias-type
)))
2839 (defun message-strip-forbidden-properties (begin end
&optional old-length
)
2840 "Strip forbidden properties between BEGIN and END, ignoring the third arg.
2841 This function is intended to be called from `after-change-functions'.
2842 See also `message-forbidden-properties'."
2843 (when (and (message-mail-alias-type-p 'ecomplete
)
2844 (memq this-command message-self-insert-commands
))
2845 (message-display-abbrev))
2846 (when (and message-strip-special-text-properties
2847 (message-tamago-not-in-use-p begin
))
2848 (let ((buffer-read-only nil
)
2849 (inhibit-read-only t
))
2850 (remove-text-properties begin end message-forbidden-properties
))))
2853 (define-derived-mode message-mode text-mode
"Message"
2854 "Major mode for editing mail and news to be sent.
2855 Like Text Mode but with these additional commands:\\<message-mode-map>
2856 C-c C-s `message-send' (send the message) C-c C-c `message-send-and-exit'
2857 C-c C-d Postpone sending the message C-c C-k Kill the message
2858 C-c C-f move to a header field (and create it if there isn't):
2859 C-c C-f C-t move to To C-c C-f C-s move to Subject
2860 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
2861 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
2862 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
2863 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
2864 C-c C-f C-o move to From (\"Originator\")
2865 C-c C-f C-f move to Followup-To
2866 C-c C-f C-m move to Mail-Followup-To
2867 C-c C-f C-e move to Expires
2868 C-c C-f C-i cycle through Importance values
2869 C-c C-f s change subject and append \"(was: <Old Subject>)\"
2870 C-c C-f x crossposting with FollowUp-To header and note in body
2871 C-c C-f t replace To: header with contents of Cc: or Bcc:
2872 C-c C-f a Insert X-No-Archive: header and a note in the body
2873 C-c C-t `message-insert-to' (add a To header to a news followup)
2874 C-c C-l `message-to-list-only' (removes all but list address in to/cc)
2875 C-c C-n `message-insert-newsgroups' (add a Newsgroup header to a news reply)
2876 C-c C-b `message-goto-body' (move to beginning of message text).
2877 C-c C-i `message-goto-signature' (move to the beginning of the signature).
2878 C-c C-w `message-insert-signature' (insert `message-signature-file' file).
2879 C-c C-y `message-yank-original' (insert current message, if any).
2880 C-c C-q `message-fill-yanked-message' (fill what was yanked).
2881 C-c C-e `message-elide-region' (elide the text between point and mark).
2882 C-c C-v `message-delete-not-region' (remove the text outside the region).
2883 C-c C-z `message-kill-to-signature' (kill the text up to the signature).
2884 C-c C-r `message-caesar-buffer-body' (rot13 the message body).
2885 C-c C-a `mml-attach-file' (attach a file as MIME).
2886 C-c C-u `message-insert-or-toggle-importance' (insert or cycle importance).
2887 C-c M-n `message-insert-disposition-notification-to' (request receipt).
2888 C-c M-m `message-mark-inserted-region' (mark region with enclosing tags).
2889 C-c M-f `message-mark-insert-file' (insert file marked with enclosing tags).
2890 M-RET `message-newline-and-reformat' (break the line and reformat)."
2891 (setq local-abbrev-table text-mode-abbrev-table
)
2892 (set (make-local-variable 'message-reply-buffer
) nil
)
2893 (set (make-local-variable 'message-inserted-headers
) nil
)
2894 (set (make-local-variable 'message-send-actions
) nil
)
2895 (set (make-local-variable 'message-exit-actions
) nil
)
2896 (set (make-local-variable 'message-kill-actions
) nil
)
2897 (set (make-local-variable 'message-postpone-actions
) nil
)
2898 (set (make-local-variable 'message-draft-article
) nil
)
2899 (setq buffer-offer-save t
)
2900 (set (make-local-variable 'facemenu-add-face-function
)
2902 (let ((face-fun (cdr (assq face message-face-alist
))))
2904 (funcall face-fun
(point) end
)
2905 (error "Face %s not configured for %s mode" face mode-name
)))
2907 (set (make-local-variable 'facemenu-remove-face-function
) t
)
2908 (set (make-local-variable 'message-reply-headers
) nil
)
2909 (make-local-variable 'message-newsreader
)
2910 (make-local-variable 'message-mailer
)
2911 (make-local-variable 'message-post-method
)
2912 (set (make-local-variable 'message-sent-message-via
) nil
)
2913 (set (make-local-variable 'message-checksum
) nil
)
2914 (set (make-local-variable 'message-mime-part
) 0)
2915 (message-setup-fill-variables)
2916 (when message-fill-column
2917 (setq fill-column message-fill-column
)
2918 (turn-on-auto-fill))
2919 ;; Allow using comment commands to add/remove quoting.
2920 ;; (set (make-local-variable 'comment-start) message-yank-prefix)
2921 (when message-yank-prefix
2922 (set (make-local-variable 'comment-start
) message-yank-prefix
)
2923 (set (make-local-variable 'comment-start-skip
)
2924 (concat "^" (regexp-quote message-yank-prefix
) "[ \t]*")))
2925 (if (featurep 'xemacs
)
2926 (message-setup-toolbar)
2927 (set (make-local-variable 'font-lock-defaults
)
2928 '(message-font-lock-keywords t
))
2929 (if (boundp 'tool-bar-map
)
2930 (set (make-local-variable 'tool-bar-map
) (message-make-tool-bar))))
2931 (easy-menu-add message-mode-menu message-mode-map
)
2932 (easy-menu-add message-mode-field-menu message-mode-map
)
2933 (gnus-make-local-hook 'after-change-functions
)
2934 ;; Mmmm... Forbidden properties...
2935 (add-hook 'after-change-functions
'message-strip-forbidden-properties
2937 ;; Allow mail alias things.
2939 ((message-mail-alias-type-p 'abbrev
)
2940 (if (fboundp 'mail-abbrevs-setup
)
2941 (mail-abbrevs-setup)
2942 (if (fboundp 'mail-aliases-setup
) ; warning avoidance
2943 (mail-aliases-setup))))
2944 ((message-mail-alias-type-p 'ecomplete
)
2946 (unless buffer-file-name
2947 (message-set-auto-save-file-name))
2948 (unless (buffer-base-buffer)
2949 ;; Don't enable multibyte on an indirect buffer. Maybe enabling
2950 ;; multibyte is not necessary at all. -- zsh
2951 (mm-enable-multibyte))
2952 (set (make-local-variable 'indent-tabs-mode
) nil
) ;No tabs for indentation.
2955 (defun message-setup-fill-variables ()
2956 "Setup message fill variables."
2957 (set (make-local-variable 'fill-paragraph-function
)
2958 'message-fill-paragraph
)
2959 (make-local-variable 'paragraph-separate
)
2960 (make-local-variable 'paragraph-start
)
2961 (make-local-variable 'adaptive-fill-regexp
)
2962 (unless (boundp 'adaptive-fill-first-line-regexp
)
2963 (setq adaptive-fill-first-line-regexp nil
))
2964 (make-local-variable 'adaptive-fill-first-line-regexp
)
2965 (let ((quote-prefix-regexp
2966 ;; User should change message-cite-prefix-regexp if
2967 ;; message-yank-prefix is set to an abnormal value.
2968 (concat "\\(" message-cite-prefix-regexp
"\\)[ \t]*")))
2969 (setq paragraph-start
2971 (regexp-quote mail-header-separator
) "$\\|"
2972 "[ \t]*$\\|" ; blank lines
2973 "-- $\\|" ; signature delimiter
2974 "---+$\\|" ; delimiters for forwarded messages
2975 page-delimiter
"$\\|" ; spoiler warnings
2976 ".*wrote:$\\|" ; attribution lines
2977 quote-prefix-regexp
"$\\|" ; empty lines in quoted text
2979 "<#!*/?\\(multipart\\|part\\|external\\|mml\\|secure\\)"))
2980 (setq paragraph-separate paragraph-start
)
2981 (setq adaptive-fill-regexp
2982 (concat quote-prefix-regexp
"\\|" adaptive-fill-regexp
))
2983 (setq adaptive-fill-first-line-regexp
2984 (concat quote-prefix-regexp
"\\|"
2985 adaptive-fill-first-line-regexp
)))
2986 (make-local-variable 'auto-fill-inhibit-regexp
)
2987 ;;(setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:")
2988 (setq auto-fill-inhibit-regexp nil
)
2989 (make-local-variable 'normal-auto-fill-function
)
2990 (setq normal-auto-fill-function
'message-do-auto-fill
)
2991 ;; KLUDGE: auto fill might already be turned on in `text-mode-hook'.
2992 ;; In that case, ensure that it uses the right function. The real
2993 ;; solution would be not to use `define-derived-mode', and run
2994 ;; `text-mode-hook' ourself at the end of the mode.
2995 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> Date: 2001-10-19.
2996 ;; This kludge is unneeded in Emacs>=21 since define-derived-mode is
2997 ;; now careful to run parent hooks after the body. --Stef
2998 (when auto-fill-function
2999 (setq auto-fill-function normal-auto-fill-function
)))
3004 ;;; Message mode commands
3007 ;;; Movement commands
3009 (defun message-goto-to ()
3010 "Move point to the To header."
3012 (message-position-on-field "To"))
3014 (defun message-goto-from ()
3015 "Move point to the From header."
3017 (message-position-on-field "From"))
3019 (defun message-goto-subject ()
3020 "Move point to the Subject header."
3022 (message-position-on-field "Subject"))
3024 (defun message-goto-cc ()
3025 "Move point to the Cc header."
3027 (message-position-on-field "Cc" "To"))
3029 (defun message-goto-bcc ()
3030 "Move point to the Bcc header."
3032 (message-position-on-field "Bcc" "Cc" "To"))
3034 (defun message-goto-fcc ()
3035 "Move point to the Fcc header."
3037 (message-position-on-field "Fcc" "To" "Newsgroups"))
3039 (defun message-goto-reply-to ()
3040 "Move point to the Reply-To header."
3042 (message-position-on-field "Reply-To" "Subject"))
3044 (defun message-goto-newsgroups ()
3045 "Move point to the Newsgroups header."
3047 (message-position-on-field "Newsgroups"))
3049 (defun message-goto-distribution ()
3050 "Move point to the Distribution header."
3052 (message-position-on-field "Distribution"))
3054 (defun message-goto-followup-to ()
3055 "Move point to the Followup-To header."
3057 (message-position-on-field "Followup-To" "Newsgroups"))
3059 (defun message-goto-mail-followup-to ()
3060 "Move point to the Mail-Followup-To header."
3062 (message-position-on-field "Mail-Followup-To" "To"))
3064 (defun message-goto-keywords ()
3065 "Move point to the Keywords header."
3067 (message-position-on-field "Keywords" "Subject"))
3069 (defun message-goto-summary ()
3070 "Move point to the Summary header."
3072 (message-position-on-field "Summary" "Subject"))
3074 (defun message-goto-body (&optional interactivep
)
3075 "Move point to the beginning of the message body."
3076 (interactive (list t
))
3077 (when (and interactivep
3078 (looking-at "[ \t]*\n"))
3080 (goto-char (point-min))
3081 (or (search-forward (concat "\n" mail-header-separator
"\n") nil t
)
3082 (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t
)))
3084 (defun message-in-body-p ()
3085 "Return t if point is in the message body."
3086 (let ((body (save-excursion (message-goto-body) (point))))
3089 (defun message-goto-eoh ()
3090 "Move point to the end of the headers."
3095 (defun message-goto-signature ()
3096 "Move point to the beginning of the message signature.
3097 If there is no signature in the article, go to the end and
3100 (goto-char (point-min))
3101 (if (re-search-forward message-signature-separator nil t
)
3103 (goto-char (point-max))
3106 (defun message-generate-unsubscribed-mail-followup-to (&optional include-cc
)
3107 "Insert a reasonable MFT header in a post to an unsubscribed list.
3108 When making original posts to a mailing list you are not subscribed to,
3109 you have to type in a MFT header by hand. The contents, usually, are
3110 the addresses of the list and your own address. This function inserts
3111 such a header automatically. It fetches the contents of the To: header
3112 in the current mail buffer, and appends the current `user-mail-address'.
3114 If the optional argument INCLUDE-CC is non-nil, the addresses in the
3115 Cc: header are also put into the MFT."
3120 (message-narrow-to-headers)
3121 (message-remove-header "Mail-Followup-To")
3122 (setq cc
(and include-cc
(message-fetch-field "Cc")))
3124 (concat (message-fetch-field "To") "," cc
)
3125 (message-fetch-field "To"))))
3126 (message-goto-mail-followup-to)
3127 (insert (concat tos
", " user-mail-address
))))
3131 (defun message-insert-to (&optional force
)
3132 "Insert a To header that points to the author of the article being replied to.
3133 If the original author requested not to be sent mail, don't insert unless the
3134 prefix FORCE is given."
3136 (let* ((mct (message-fetch-reply-field "mail-copies-to"))
3137 (dont (and mct
(or (equal (downcase mct
) "never")
3138 (equal (downcase mct
) "nobody"))))
3139 (to (or (message-fetch-reply-field "mail-reply-to")
3140 (message-fetch-reply-field "reply-to")
3141 (message-fetch-reply-field "from"))))
3145 "Ignoring the user request not to have copies sent via mail"
3146 "Complying with the user request not to have copies sent via mail")))
3147 (when (and force
(not to
))
3148 (error "No mail address in the article"))
3149 (when (and to
(or force
(not dont
)))
3150 (message-carefully-insert-headers (list (cons 'To to
))))))
3152 (defun message-insert-wide-reply ()
3153 "Insert To and Cc headers as if you were doing a wide reply."
3155 (let ((headers (message-with-reply-buffer
3156 (message-get-reply-headers t
))))
3157 (message-carefully-insert-headers headers
)))
3159 (defcustom message-header-synonyms
3162 "List of lists of header synonyms.
3163 E.g., if this list contains a member list with elements `Cc' and `To',
3164 then `message-carefully-insert-headers' will not insert a `To' header
3165 when the message is already `Cc'ed to the recipient."
3167 :group
'message-headers
3168 :link
'(custom-manual "(message)Message Headers")
3169 :type
'(repeat sexp
))
3171 (defun message-carefully-insert-headers (headers)
3172 "Insert the HEADERS, an alist, into the message buffer.
3173 Does not insert the headers when they are already present there
3174 or in the synonym headers, defined by `message-header-synonyms'."
3175 ;; FIXME: Should compare only the address and not the full name. Comparison
3176 ;; should be done case-folded (and with `string=' rather than
3178 ;; (mail-strip-quoted-names "Foo Bar <foo@bar>, bla@fasel (Bla Fasel)")
3179 (dolist (header headers
)
3180 (let* ((header-name (symbol-name (car header
)))
3181 (new-header (cdr header
))
3182 (synonyms (loop for synonym in message-header-synonyms
3183 when
(memq (car header
) synonym
) return synonym
))
3185 (loop for synonym in synonyms
3186 for old-header
= (mail-fetch-field (symbol-name synonym
))
3187 when
(and old-header
(string-match new-header old-header
))
3190 (message "already have `%s' in `%s'" new-header old-header
)
3191 (when (and (message-position-on-field header-name
)
3192 (setq old-header
(mail-fetch-field header-name
))
3193 (not (string-match "\\` *\\'" old-header
)))
3195 (insert new-header
)))))
3197 (defun message-widen-reply ()
3198 "Widen the reply to include maximum recipients."
3201 (and (bufferp message-reply-buffer
)
3202 (buffer-name message-reply-buffer
)
3203 (with-current-buffer message-reply-buffer
3204 (message-get-reply-headers t
)))))
3207 (message-narrow-to-headers)
3208 (dolist (elem follow-to
)
3209 (message-remove-header (symbol-name (car elem
)))
3210 (goto-char (point-min))
3211 (insert (symbol-name (car elem
)) ": "
3212 (cdr elem
) "\n"))))))
3214 (defun message-insert-newsgroups ()
3215 "Insert the Newsgroups header from the article being replied to."
3217 (when (and (message-position-on-field "Newsgroups")
3218 (mail-fetch-field "newsgroups")
3219 (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
3221 (insert (or (message-fetch-reply-field "newsgroups") "")))
3225 ;;; Various commands
3227 (defun message-delete-not-region (beg end
)
3228 "Delete everything in the body of the current message outside of the region."
3233 ;; snarf citation prefix, if appropriate
3234 (unless (eq (point) (progn (beginning-of-line) (point)))
3235 (when (looking-at message-cite-prefix-regexp
)
3236 (setq citeprefix
(match-string 0))))
3238 (delete-region (point) (if (not (message-goto-signature))
3244 (delete-region beg
(progn (message-goto-body)
3248 (insert citeprefix
))))
3249 (when (message-goto-signature)
3252 (defun message-kill-to-signature (&optional arg
)
3253 "Kill all text up to the signature.
3254 If a numeric argument or prefix arg is given, leave that number
3255 of lines before the signature intact."
3259 (let ((point (point)))
3260 (narrow-to-region point
(point-max))
3261 (message-goto-signature)
3263 (if (and arg
(numberp arg
))
3264 (forward-line (- -
1 arg
))
3266 (unless (= point
(point))
3267 (kill-region point
(point))
3271 (defun message-newline-and-reformat (&optional arg not-break
)
3272 "Insert four newlines, and then reformat if inside quoted text.
3273 Prefix arg means justify as well."
3274 (interactive (list (if current-prefix-arg
'full
)))
3275 (let (quoted point beg end leading-space bolp fill-paragraph-function
)
3276 (setq point
(point))
3279 (setq bolp
(= beg point
))
3280 ;; Find first line of the paragraph.
3282 (while (and (not (eobp))
3283 (not (looking-at message-cite-prefix-regexp
))
3284 (looking-at paragraph-start
))
3287 (when (looking-at message-cite-prefix-regexp
)
3288 (setq quoted
(match-string 0))
3289 (goto-char (match-end 0))
3290 (looking-at "[ \t]*")
3291 (setq leading-space
(match-string 0)))
3295 (< (- point beg
) (length quoted
)))
3296 ;; break inside the cite prefix.
3302 (while (and (not (eobp))
3303 (not (looking-at paragraph-separate
))
3304 (looking-at message-cite-prefix-regexp
)
3305 (equal quoted
(match-string 0)))
3306 (goto-char (match-end 0))
3307 (looking-at "[ \t]*")
3308 (if (> (length leading-space
) (length (match-string 0)))
3309 (setq leading-space
(match-string 0)))
3313 (while (and (if (bobp) nil
(forward-line -
1) t
)
3314 (not (looking-at paragraph-start
))
3315 (looking-at message-cite-prefix-regexp
)
3316 (equal quoted
(match-string 0)))
3318 (goto-char (match-end 0))
3319 (looking-at "[ \t]*")
3320 (if (> (length leading-space
) (length (match-string 0)))
3321 (setq leading-space
(match-string 0)))))
3322 (while (and (not (eobp))
3323 (not (looking-at paragraph-separate
))
3324 (not (looking-at message-cite-prefix-regexp
)))
3328 (while (and (if (bobp) nil
(forward-line -
1) t
)
3329 (not (looking-at paragraph-start
))
3330 (not (looking-at message-cite-prefix-regexp
)))
3331 (setq beg
(point))))
3334 (narrow-to-region beg end
)
3341 (setq point
(point))
3342 ;; (newline 2) doesn't mark both newline's as hard, so call
3343 ;; newline twice. -jas
3346 (delete-region (point) (re-search-forward "[ \t]*"))
3347 (when (and quoted
(not bolp
))
3348 (insert quoted leading-space
)))
3351 (let* ((adaptive-fill-regexp
3352 (regexp-quote (concat quoted leading-space
)))
3353 (adaptive-fill-first-line-regexp
3354 adaptive-fill-regexp
))
3355 (fill-paragraph arg
))
3356 (fill-paragraph arg
))
3357 (if point
(goto-char point
)))))
3359 (defun message-fill-paragraph (&optional arg
)
3360 "Message specific function to fill a paragraph.
3361 This function is used as the value of `fill-paragraph-function' in
3362 Message buffers and is not meant to be called directly."
3363 (interactive (list (if current-prefix-arg
'full
)))
3364 (if (if (boundp 'filladapt-mode
) filladapt-mode
)
3366 (if (message-point-in-header-p)
3367 (message-fill-field)
3368 (message-newline-and-reformat arg t
))
3371 (defun message-point-in-header-p ()
3372 "Return t if point is in the header."
3374 (not (re-search-backward
3375 (concat "^" (regexp-quote mail-header-separator
) "\n") nil t
))))
3377 (defun message-do-auto-fill ()
3378 "Like `do-auto-fill', but don't fill in message header."
3379 (unless (message-point-in-header-p)
3382 (defun message-insert-signature (&optional force
)
3383 "Insert a signature. See documentation for variable `message-signature'."
3384 (interactive (list 0))
3387 ((and (null message-signature
)
3390 (goto-char (point-max))
3391 (not (re-search-backward message-signature-separator nil t
))))
3392 ((and (null message-signature
)
3395 ((functionp message-signature
)
3396 (funcall message-signature
))
3397 ((listp message-signature
)
3398 (eval message-signature
))
3399 (t message-signature
)))
3402 (cond ((stringp signature
)
3404 ((and (eq t signature
) message-signature-file
)
3405 (setq signature-file
3406 (if (and message-signature-directory
3407 ;; don't actually use the signature directory
3408 ;; if message-signature-file contains a path.
3409 (not (file-name-directory
3410 message-signature-file
)))
3411 (nnheader-concat message-signature-directory
3412 message-signature-file
)
3413 message-signature-file
))
3414 (file-exists-p signature-file
))))
3416 (goto-char (point-max))
3417 ;; Insert the signature.
3420 (when message-signature-insert-empty-line
3423 (if (eq signature t
)
3424 (insert-file-contents signature-file
)
3426 (goto-char (point-max))
3427 (or (bolp) (insert "\n")))))
3429 (defun message-insert-importance-high ()
3430 "Insert header to mark message as important."
3434 (message-narrow-to-headers)
3435 (message-remove-header "Importance"))
3437 (insert "Importance: high\n")))
3439 (defun message-insert-importance-low ()
3440 "Insert header to mark message as unimportant."
3444 (message-narrow-to-headers)
3445 (message-remove-header "Importance"))
3447 (insert "Importance: low\n")))
3449 (defun message-insert-or-toggle-importance ()
3450 "Insert a \"Importance: high\" header, or cycle through the header values.
3451 The three allowed values according to RFC 1327 are `high', `normal'
3458 (message-narrow-to-headers)
3459 (when (setq cur
(message-fetch-field "Importance"))
3460 (message-remove-header "Importance")
3461 (setq new
(cond ((string= cur
"high")
3463 ((string= cur
"low")
3468 (insert (format "Importance: %s\n" new
)))))
3470 (defun message-insert-disposition-notification-to ()
3471 "Request a disposition notification (return receipt) to this message.
3472 Note that this should not be used in newsgroups."
3476 (message-narrow-to-headers)
3477 (message-remove-header "Disposition-Notification-To"))
3479 (insert (format "Disposition-Notification-To: %s\n"
3480 (or (message-field-value "Reply-to")
3481 (message-field-value "From")
3482 (message-make-from))))))
3484 (defun message-elide-region (b e
)
3485 "Elide the text in the region.
3486 An ellipsis (from `message-elide-ellipsis') will be inserted where the
3490 (insert message-elide-ellipsis
))
3492 (defvar message-caesar-translation-table nil
)
3494 (defun message-caesar-region (b e
&optional n
)
3495 "Caesar rotate region B to E by N, default 13, for decrypting netnews."
3498 (min (point) (or (mark t
) (point)))
3499 (max (point) (or (mark t
) (point)))
3500 (when current-prefix-arg
3501 (prefix-numeric-value current-prefix-arg
))))
3503 (setq n
(if (numberp n
) (mod n
26) 13)) ;canonize N
3504 (unless (or (zerop n
) ; no action needed for a rot of 0
3505 (= b e
)) ; no region to rotate
3506 ;; We build the table, if necessary.
3507 (when (or (not message-caesar-translation-table
)
3508 (/= (aref message-caesar-translation-table ?a
) (+ ?a n
)))
3509 (setq message-caesar-translation-table
3510 (message-make-caesar-translation-table n
)))
3511 (translate-region b e message-caesar-translation-table
)))
3513 (defun message-make-caesar-translation-table (n)
3514 "Create a rot table with offset N."
3516 (table (make-string 256 0)))
3517 (while (< (incf i
) 256)
3520 (substring table
0 ?A
)
3521 (substring table
(+ ?A n
) (+ ?A n
(- 26 n
)))
3522 (substring table ?A
(+ ?A n
))
3523 (substring table
(+ ?A
26) ?a
)
3524 (substring table
(+ ?a n
) (+ ?a n
(- 26 n
)))
3525 (substring table ?a
(+ ?a n
))
3526 (substring table
(+ ?a
26) 255))))
3528 (defun message-caesar-buffer-body (&optional rotnum wide
)
3529 "Caesar rotate all letters in the current buffer by 13 places.
3530 Used to encode/decode possibly offensive messages (commonly in rec.humor).
3531 With prefix arg, specifies the number of places to rotate each letter forward.
3532 Mail and USENET news headers are not rotated unless WIDE is non-nil."
3533 (interactive (if current-prefix-arg
3534 (list (prefix-numeric-value current-prefix-arg
))
3538 (when (and (not wide
) (message-goto-body))
3539 (narrow-to-region (point) (point-max)))
3540 (message-caesar-region (point-min) (point-max) rotnum
))))
3542 (defun message-pipe-buffer-body (program)
3543 "Pipe the message body in the current buffer through PROGRAM."
3546 (when (message-goto-body)
3547 (narrow-to-region (point) (point-max)))
3548 (shell-command-on-region
3549 (point-min) (point-max) program nil t
))))
3551 (defun message-rename-buffer (&optional enter-string
)
3552 "Rename the *message* buffer to \"*message* RECIPIENT\".
3553 If the function is run with a prefix, it will ask for a new buffer
3554 name, rather than giving an automatic name."
3555 (interactive "Pbuffer name: ")
3558 (goto-char (point-min))
3559 (narrow-to-region (point)
3560 (search-forward mail-header-separator nil
'end
))
3562 (if (message-news-p) (message-fetch-field "Newsgroups")
3563 (message-fetch-field "To"))
3566 (if (string-match "," mail-to
)
3567 (concat (substring mail-to
0 (match-beginning 0)) ", ...")
3569 (name-default (concat "*message* " mail-trimmed-to
))
3570 (name (if enter-string
3571 (read-string "New buffer name: " name-default
)
3573 (rename-buffer name t
)))))
3575 (defun message-fill-yanked-message (&optional justifyp
)
3576 "Fill the paragraphs of a message yanked into this one.
3577 Numeric argument means justify as well."
3580 (goto-char (point-min))
3581 (search-forward (concat "\n" mail-header-separator
"\n") nil t
)
3582 (let ((fill-prefix message-yank-prefix
))
3583 (fill-individual-paragraphs (point) (point-max) justifyp
))))
3585 (defun message-indent-citation (&optional start end yank-only
)
3586 "Modify text just inserted from a message to be cited.
3587 The inserted text should be the region.
3588 When this function returns, the region is again around the modified text.
3590 Normally, indent each nonblank line `message-indentation-spaces' spaces.
3591 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
3592 (unless start
(setq start
(point)))
3594 ;; Remove unwanted headers.
3595 (when message-ignored-cited-headers
3600 (if (search-forward "\n\n" nil t
)
3603 (message-remove-header message-ignored-cited-headers t
)
3604 (when (= (point-min) (point-max))
3605 (setq all-removed t
))
3606 (goto-char (point-max)))
3610 ;; Delete blank lines at the start of the buffer.
3611 (while (and (point-min)
3614 (message-delete-line))
3615 ;; Delete blank lines at the end of the buffer.
3616 (goto-char (point-max))
3619 (while (and (zerop (forward-line -
1))
3621 (message-delete-line)))
3622 ;; Do the indentation.
3623 (if (null message-yank-prefix
)
3624 (indent-rigidly start
(or end
(mark t
)) message-indentation-spaces
)
3627 (while (< (point) (or end
(mark t
)))
3628 (cond ((looking-at ">")
3629 (insert message-yank-cited-prefix
))
3631 (insert message-yank-empty-prefix
))
3633 (insert message-yank-prefix
)))
3637 (defun message-remove-blank-cited-lines (&optional remove
)
3638 "Remove cited lines containing only blanks.
3639 If REMOVE is non-nil, remove newlines, too.
3641 To use this automatically, you may add this function to
3642 `gnus-message-setup-hook'."
3647 (when (boundp 'message-yank-cited-prefix
)
3648 (concat message-yank-cited-prefix
"\\|"))
3652 (gnus-message 8 "removing `%s'" citexp
)
3655 (while (re-search-forward citexp nil t
)
3656 (replace-match (if remove
"" "\n"))))))
3658 (defvar message-cite-reply-above nil
3659 "If non-nil, start own text above the quote.
3661 Note: Top posting is bad netiquette. Don't use it unless you
3662 really must. You probably want to set variable only for specific
3663 groups, e.g. using `gnus-posting-styles':
3665 (eval (set (make-local-variable 'message-cite-reply-above) t))
3667 This variable has no effect in news postings.")
3669 (defun message-yank-original (&optional arg
)
3670 "Insert the message being replied to, if any.
3671 Puts point before the text and mark after.
3672 Normally indents each nonblank line ARG spaces (default 3). However,
3673 if `message-yank-prefix' is non-nil, insert that prefix on each line.
3675 This function uses `message-cite-function' to do the actual citing.
3677 Just \\[universal-argument] as argument means don't indent, insert no
3678 prefix, and don't delete any headers."
3680 (let ((modified (buffer-modified-p))
3682 (when (and message-reply-buffer
3683 message-cite-function
)
3684 (when message-cite-reply-above
3685 (if (and (not (message-news-p))
3686 (or (eq message-cite-reply-above
'is-evil
)
3688 Top posting is bad netiquette. Please don't top post unless you really must.
3689 Really top post? ")))
3692 (buffer-substring (message-goto-body)
3694 (delete-region (message-goto-body) (point-max)))
3695 (set (make-local-variable 'message-cite-reply-above
) nil
)))
3696 (if (bufferp message-reply-buffer
)
3697 (delete-windows-on message-reply-buffer t
))
3698 (push-mark (save-excursion
3700 ((bufferp message-reply-buffer
)
3701 (insert-buffer-substring message-reply-buffer
))
3702 ((and (consp message-reply-buffer
)
3703 (functionp (car message-reply-buffer
)))
3704 (apply (car message-reply-buffer
)
3705 (cdr message-reply-buffer
))))
3710 (funcall message-cite-function
)
3711 (unless (eq (char-before (mark t
)) ?
\n)
3713 (goto-char (mark t
))
3714 (insert-before-markers ?
\n)
3716 (when message-cite-reply-above
3719 (insert (if (bolp) "\n" "\n\n"))
3720 (message-goto-body))
3721 ;; Add a `message-setup-very-last-hook' here?
3722 ;; Add `gnus-article-highlight-citation' here?
3724 (setq message-checksum
(message-checksum))))))
3726 (defun message-yank-buffer (buffer)
3727 "Insert BUFFER into the current buffer and quote it."
3728 (interactive "bYank buffer: ")
3729 (let ((message-reply-buffer (get-buffer buffer
)))
3730 (save-window-excursion
3731 (message-yank-original))))
3733 (defun message-buffers ()
3734 "Return a list of active message buffers."
3736 (save-current-buffer
3737 (dolist (buffer (buffer-list t
))
3739 (when (and (eq major-mode
'message-mode
)
3740 (null message-sent-message-via
))
3741 (push (buffer-name buffer
) buffers
))))
3742 (nreverse buffers
)))
3744 (defun message-cite-original-1 (strip-signature)
3745 "Cite an original message.
3746 If STRIP-SIGNATURE is non-nil, strips off the signature from the
3749 This function uses `mail-citation-hook' if that is non-nil."
3750 (if (and (boundp 'mail-citation-hook
)
3752 (run-hooks 'mail-citation-hook
)
3753 (let* ((start (point))
3757 (when message-indent-citation-function
3758 (if (listp message-indent-citation-function
)
3759 message-indent-citation-function
3760 (list message-indent-citation-function
))))
3761 ;; This function may be called by `gnus-summary-yank-message' and
3762 ;; may insert a different article from the original. So, we will
3763 ;; modify the value of `message-reply-headers' with that article.
3764 (message-reply-headers
3766 (narrow-to-region start end
)
3767 (message-narrow-to-head-1)
3768 (setq x-no-archive
(message-fetch-field "x-no-archive"))
3770 (or (message-fetch-field "subject") "none")
3771 (or (message-fetch-field "from") "nobody")
3772 (message-fetch-field "date")
3773 (message-fetch-field "message-id" t
)
3774 (message-fetch-field "references")
3776 (mml-quote-region start end
)
3777 (when strip-signature
3781 (when (re-search-backward message-signature-separator start t
)
3782 ;; Also peel off any blank lines before the signature.
3784 (while (looking-at "^[ \t]*$")
3787 (delete-region (point) end
)
3788 (unless (search-backward "\n\n" start t
)
3789 ;; Insert a blank line if it is peeled off.
3792 (mapc 'funcall functions
)
3793 (when message-citation-line-function
3796 (funcall message-citation-line-function
))
3797 (when (and x-no-archive
3798 (not message-cite-articles-with-x-no-archive
)
3799 (string-match "yes" x-no-archive
))
3801 (delete-region (point) (mark t
))
3802 (insert "> [Quoted text removed due to X-No-Archive]\n")
3804 (forward-line -
1)))))
3806 (defun message-cite-original ()
3807 "Cite function in the standard Message manner."
3808 (message-cite-original-1 nil
))
3810 (defvar gnus-extract-address-components
)
3812 (autoload 'format-spec
"format-spec")
3814 (defun message-insert-formatted-citation-line (&optional from date
)
3815 "Function that inserts a formatted citation line.
3817 See `message-citation-line-format'."
3818 ;; The optional args are for testing/debugging. They will disappear later.
3820 ;; (with-temp-buffer
3821 ;; (message-insert-formatted-citation-line
3822 ;; "John Doe <john.doe@example.invalid>"
3825 (when (or message-reply-headers
(and from date
))
3827 (setq from
(mail-header-from message-reply-headers
)))
3828 (let* ((data (condition-case ()
3829 (funcall (if (boundp gnus-extract-address-components
)
3830 gnus-extract-address-components
3831 'mail-extract-address-components
)
3837 (net (car (cdr data
)))
3838 (name-or-net (or (car data
)
3839 (car (cdr data
)) from
))
3843 ;; We need Gnus functionality if the user wants date or time from
3844 ;; the original article:
3845 (when (string-match "%[^fnNFL]" message-citation-line-format
)
3846 (autoload 'gnus-date-get-time
"gnus-util")
3847 (gnus-date-get-time (mail-header-date message-reply-headers
)))))
3850 (when (stringp name
)
3851 ;; Guess first name and last name:
3852 (cond ((string-match
3853 "\\`\\(\\w\\|[-.]\\)+ \\(\\w\\|[-.]\\)+\\'" name
)
3854 (setq fname
(nth 0 (split-string name
"[ \t]+"))
3855 lname
(nth 1 (split-string name
"[ \t]+"))))
3857 "\\`\\(\\w\\|[-.]\\)+, \\(\\w\\|[-.]\\)+\\'" name
)
3858 (setq fname
(nth 1 (split-string name
"[ \t,]+"))
3859 lname
(nth 0 (split-string name
"[ \t,]+"))))
3861 "\\`\\(\\w\\|[-.]\\)+\\'" name
)
3864 ;; The following letters are not used in `format-time-string':
3865 (push ?E lst
) (push "<E>" lst
)
3866 (push ?F lst
) (push fname lst
)
3867 ;; We might want to use "" instead of "<X>" later.
3868 (push ?J lst
) (push "<J>" lst
)
3869 (push ?K lst
) (push "<K>" lst
)
3870 (push ?L lst
) (push lname lst
)
3871 (push ?N lst
) (push name-or-net lst
)
3872 (push ?O lst
) (push "<O>" lst
)
3873 (push ?P lst
) (push "<P>" lst
)
3874 (push ?Q lst
) (push "<Q>" lst
)
3875 (push ?f lst
) (push from lst
)
3876 (push ?i lst
) (push "<i>" lst
)
3877 (push ?n lst
) (push net lst
)
3878 (push ?o lst
) (push "<o>" lst
)
3879 (push ?q lst
) (push "<q>" lst
)
3880 (push ?t lst
) (push "<t>" lst
)
3881 (push ?v lst
) (push "<v>" lst
)
3882 ;; Delegate the rest to `format-time-string':
3884 (when (and (not (memq i lst
))
3889 (push (condition-case nil
3890 (format-time-string (format "%%%c" i
) replydate
)
3891 (error (format ">%c<" i
)))
3895 (spec (apply 'format-spec-make flist
)))
3896 (insert (format-spec message-citation-line-format spec
)))
3899 (defun message-cite-original-without-signature ()
3900 "Cite function in the standard Message manner.
3901 This function strips off the signature from the original message."
3902 (message-cite-original-1 t
))
3904 (defun message-insert-citation-line ()
3905 "Insert a simple citation line."
3906 (when message-reply-headers
3907 (insert (mail-header-from message-reply-headers
) " writes:")
3911 (defun message-position-on-field (header &rest afters
)
3912 (let ((case-fold-search t
))
3915 (goto-char (point-min))
3918 (concat "^" (regexp-quote mail-header-separator
) "$"))
3919 (match-beginning 0)))
3920 (goto-char (point-min))
3921 (if (re-search-forward (concat "^" (regexp-quote header
) ":") nil t
)
3923 (re-search-forward "^[^ \t]" nil
'move
)
3925 (skip-chars-backward "\n")
3928 (not (re-search-forward
3929 (concat "^" (regexp-quote (car afters
)) ":")
3933 (re-search-forward "^[^ \t]" nil
'move
)
3934 (beginning-of-line))
3935 (insert header
": \n")
3939 (defun message-remove-signature ()
3940 "Remove the signature from the text between point and mark.
3941 The text will also be indented the normal way."
3943 (let ((start (point))
3945 (if (not (re-search-forward message-signature-separator
(mark t
) t
))
3946 ;; No signature here, so we just indent the cited text.
3947 (message-indent-citation)
3948 ;; Find the last non-empty line.
3950 (while (looking-at "[ \t]*$")
3953 (setq mark
(set-marker (make-marker) (point)))
3955 (message-indent-citation)
3956 ;; Enable undoing the deletion.
3958 (delete-region mark
(mark t
))
3959 (set-marker mark nil
)))))
3964 ;;; Sending messages
3967 (defun message-send-and-exit (&optional arg
)
3968 "Send message like `message-send', then, if no errors, exit from mail buffer."
3970 (let ((buf (current-buffer))
3971 (actions message-exit-actions
))
3972 (when (and (message-send arg
)
3974 (if message-kill-buffer-on-exit
3977 (when (eq buf
(current-buffer))
3978 (message-bury buf
)))
3979 (message-do-actions actions
)
3982 (defun message-dont-send ()
3983 "Don't send the message you have been editing.
3984 Instead, just auto-save the buffer and then bury it."
3986 (set-buffer-modified-p t
)
3988 (let ((actions message-postpone-actions
))
3989 (message-bury (current-buffer))
3990 (message-do-actions actions
)))
3992 (defun message-kill-buffer ()
3993 "Kill the current buffer."
3995 (when (or (not (buffer-modified-p))
3996 (not message-kill-buffer-query
)
3997 (yes-or-no-p "Message modified; kill anyway? "))
3998 (let ((actions message-kill-actions
)
3999 (draft-article message-draft-article
)
4000 (auto-save-file-name buffer-auto-save-file-name
)
4001 (file-name buffer-file-name
)
4002 (modified (buffer-modified-p)))
4003 (setq buffer-file-name nil
)
4004 (kill-buffer (current-buffer))
4005 (when (and (or (and auto-save-file-name
4006 (file-exists-p auto-save-file-name
))
4008 (file-exists-p file-name
)))
4010 ;; If the message buffer has lived in a dedicated window,
4011 ;; `kill-buffer' has killed the frame. Thus the
4012 ;; `yes-or-no-p' may show up in a lowered frame. Make sure
4013 ;; that the user can see the question by raising the
4016 (yes-or-no-p (format "Remove the backup file%s? "
4017 (if modified
" too" "")))))
4019 (delete-file auto-save-file-name
))
4020 (let ((message-draft-article draft-article
))
4021 (message-disassociate-draft)))
4022 (message-do-actions actions
))))
4024 (defun message-bury (buffer)
4025 "Bury this mail BUFFER."
4026 (let ((newbuf (other-buffer buffer
)))
4027 (bury-buffer buffer
)
4028 (if (and (window-dedicated-p (selected-window))
4029 (not (null (delq (selected-frame) (visible-frame-list)))))
4030 (delete-frame (selected-frame))
4031 (switch-to-buffer newbuf
))))
4033 (defun message-send (&optional arg
)
4034 "Send the message in the current buffer.
4035 If `message-interactive' is non-nil, wait for success indication or
4036 error messages, and inform user.
4037 Otherwise any failure is reported in a message back to the user from
4039 The usage of ARG is defined by the instance that called Message.
4040 It should typically alter the sending method in some way or other."
4042 ;; Make it possible to undo the coming changes.
4044 (let ((inhibit-read-only t
))
4045 (put-text-property (point-min) (point-max) 'read-only nil
))
4046 (message-fix-before-sending)
4047 (run-hooks 'message-send-hook
)
4048 (when message-confirm-send
4049 (or (y-or-n-p "Send message? ")
4051 (message message-sending-message
)
4052 (let ((alist message-send-method-alist
)
4054 elem sent dont-barf-on-no-method
4055 (message-options message-options
))
4056 (message-options-set-recipient)
4058 (setq elem
(pop alist
)))
4059 (when (funcall (cadr elem
))
4060 (when (and (or (not (memq (car elem
)
4061 message-sent-message-via
))
4062 (message-fetch-field "supersedes")
4063 (if (or (message-gnksa-enable-p 'multiple-copies
)
4064 (not (eq (car elem
) 'news
)))
4067 "Already sent message via %s; resend? "
4069 (error "Denied posting -- multiple copies")))
4070 (setq success
(funcall (caddr elem
) arg
)))
4074 (let ((fcc (message-fetch-field "Fcc"))
4075 (gcc (message-fetch-field "Gcc")))
4077 (or (eq message-allow-no-recipients
'always
)
4078 (and (not (eq message-allow-no-recipients
'never
))
4079 (setq dont-barf-on-no-method
4081 (format "No receiver, perform %s anyway? "
4082 (cond ((and fcc gcc
) "Fcc and Gcc")
4085 (error "No methods specified to send by"))
4086 (when (or dont-barf-on-no-method
4090 (run-hooks 'message-sent-hook
))
4091 (message "Sending...done")
4092 ;; Do ecomplete address snarfing.
4093 (when (message-mail-alias-type-p 'ecomplete
)
4094 (message-put-addresses-in-ecomplete))
4095 ;; Mark the buffer as unmodified and delete auto-save.
4096 (set-buffer-modified-p nil
)
4097 (delete-auto-save-file-if-necessary t
)
4098 (message-disassociate-draft)
4099 ;; Delete other mail buffers and stuff.
4100 (message-do-send-housekeeping)
4101 (message-do-actions message-send-actions
)
4105 (defun message-send-via-mail (arg)
4106 "Send the current message via mail."
4107 (message-send-mail arg
))
4109 (defun message-send-via-news (arg)
4110 "Send the current message via news."
4111 (funcall message-send-news-function arg
))
4113 (defmacro message-check
(type &rest forms
)
4114 "Eval FORMS if TYPE is to be checked."
4115 `(or (message-check-element ,type
)
4119 (put 'message-check
'lisp-indent-function
1)
4120 (put 'message-check
'edebug-form-spec
'(form body
))
4122 (defun message-text-with-property (prop &optional start end reverse
)
4123 "Return a list of start and end positions where the text has PROP.
4124 START and END bound the search, they default to `point-min' and
4125 `point-max' respectively. If REVERSE is non-nil, find text which does
4128 (setq start
(point-min)))
4130 (setq end
(point-max)))
4134 (setq start
(text-property-any start end prop nil
)))
4135 (setq next
(next-single-property-change start prop nil end
))
4136 (push (cons start
(or next end
)) regions
)
4139 (or (get-text-property start prop
)
4140 (and (setq start
(next-single-property-change
4141 start prop nil end
))
4142 (get-text-property start prop
))))
4143 (setq next
(text-property-any start end prop nil
))
4144 (push (cons start
(or next end
)) regions
)
4146 (nreverse regions
)))
4148 (defcustom message-bogus-addresses
4149 ;; '("noreply" "nospam" "invalid")
4150 '("noreply" "nospam" "invalid" "@@" "[^[:ascii:]].*@" "[ \t]")
4151 "List of regexps of potentially bogus mail addresses.
4152 See `message-check-recipients' how to setup checking.
4154 This list should make it possible to catch typos or warn about
4155 spam-trap addresses. It doesn't aim to verify strict RFC
4157 :version
"23.1" ;; No Gnus
4158 :group
'message-headers
4160 (const :tag
"None" nil
)
4166 (const :tag
"duplicate @" "@@")
4167 (const :tag
"non-ascii local part" "[^[:ascii:]].*@")
4168 ;; Already caught by `message-valid-fqdn-regexp'
4169 ;; (const :tag "`_' in domain part" "@.*_")
4170 (const :tag
"whitespace" "[ \t]"))
4175 (defun message-fix-before-sending ()
4176 "Do various things to make the message nice before sending it."
4177 ;; Make sure there's a newline at the end of the message.
4178 (goto-char (point-max))
4181 ;; Make the hidden headers visible.
4183 ;; Sort headers before sending the message.
4184 (message-sort-headers)
4185 ;; Make invisible text visible.
4186 ;; It doesn't seem as if this is useful, since the invisible property
4187 ;; is clobbered by an after-change hook anyhow.
4188 (message-check 'invisible-text
4189 (let ((regions (message-text-with-property 'invisible
))
4193 (setq from
(caar regions
)
4195 regions
(cdr regions
))
4196 (put-text-property from to
'invisible nil
)
4197 (message-overlay-put (message-make-overlay from to
)
4199 (unless (yes-or-no-p
4200 "Invisible text found and made visible; continue sending? ")
4201 (error "Invisible text found and made visible")))))
4202 (message-check 'illegible-text
4203 (let (char found choice
)
4206 (skip-chars-forward mm-7bit-chars
)
4207 (when (get-text-property (point) 'no-illegible-text
)
4208 ;; There is a signed or encrypted raw message part
4209 ;; that is considered to be safe.
4210 (goto-char (or (next-single-property-change
4211 (point) 'no-illegible-text
)
4213 (setq char
(char-after)))
4214 (when (or (< (mm-char-int char
) 128)
4215 (and (mm-multibyte-p)
4216 (memq (char-charset char
)
4217 '(eight-bit-control eight-bit-graphic
4218 ;; Emacs 23, Bug#1770:
4221 (not (get-text-property
4222 (point) 'untranslated-utf-8
))))
4223 (message-overlay-put (message-make-overlay (point) (1+ (point)))
4229 (gnus-multiple-choice
4230 "Non-printable characters found. Continue sending?"
4231 `((?d
"Remove non-printable characters and send")
4233 "Replace non-printable characters with \"%s\" and send"
4234 message-replacement-char
))
4235 (?i
"Ignore non-printable characters and send")
4236 (?e
"Continue editing"))))
4238 (error "Non-printable characters"))
4240 (skip-chars-forward mm-7bit-chars
)
4242 (when (let ((char (char-after)))
4243 (or (< (mm-char-int char
) 128)
4244 (and (mm-multibyte-p)
4245 ;; FIXME: Wrong for Emacs 23 (unicode) and for
4246 ;; things like undecodable utf-8 (in Emacs 21?).
4247 ;; Should at least use find-coding-systems-region.
4249 (memq (char-charset char
)
4250 '(eight-bit-control eight-bit-graphic
4251 ;; Emacs 23, Bug#1770:
4254 (not (get-text-property
4255 (point) 'untranslated-utf-8
)))))
4257 (message-kill-all-overlays)
4259 (when (eq choice ?r
)
4260 (insert message-replacement-char
))))
4262 (skip-chars-forward mm-7bit-chars
)))))
4263 (message-check 'bogus-recipient
4264 ;; Warn before sending a mail to an invalid address.
4265 (message-check-recipients)))
4267 (defun message-bogus-recipient-p (recipients)
4268 "Check if a mail address in RECIPIENTS looks bogus.
4270 RECIPIENTS is a mail header. Return a list of potentially bogus
4271 addresses. If none is found, return nil.
4273 An address might be bogus if the domain part is not fully
4274 qualified, see `message-valid-fqdn-regexp', or if there's a
4275 matching entry in `message-bogus-addresses'."
4276 ;; FIXME: How about "foo@subdomain", when the MTA adds ".domain.tld"?
4278 (mapc (lambda (address)
4279 (setq address
(cadr address
))
4283 (not (string-match "@" address
))
4286 message-valid-fqdn-regexp
"\\)\\'") address
)))
4287 (and message-bogus-addresses
4289 (if (listp message-bogus-addresses
)
4290 (mapconcat 'identity
4291 message-bogus-addresses
4293 message-bogus-addresses
)))
4294 (string-match re address
))))
4295 (push address found
)))
4297 (mail-extract-address-components recipients t
))
4300 (defun message-check-recipients ()
4301 "Warn before composing or sending a mail to an invalid address.
4303 This function could be useful in `message-setup-hook'."
4306 (message-narrow-to-headers)
4307 (dolist (hdr '("To" "Cc" "Bcc"))
4308 (let ((addr (message-fetch-field hdr
)))
4309 (when (stringp addr
)
4310 (dolist (bog (message-bogus-recipient-p addr
))
4314 "Address `%s' might be bogus. Continue? " bog
)))
4315 (error "Bogus address"))))))))
4317 (custom-add-option 'message-setup-hook
'message-check-recipients
)
4319 (defun message-add-action (action &rest types
)
4320 "Add ACTION to be performed when doing an exit of type TYPES."
4322 (add-to-list (intern (format "message-%s-actions" (pop types
)))
4325 (defun message-delete-action (action &rest types
)
4326 "Delete ACTION from lists of actions performed when doing an exit of type TYPES."
4329 (set (setq var
(intern (format "message-%s-actions" (pop types
))))
4330 (delq action
(symbol-value var
))))))
4332 (defun message-do-actions (actions)
4333 "Perform all actions in ACTIONS."
4334 ;; Now perform actions on successful sending.
4335 (dolist (action actions
)
4338 ;; A simple function.
4341 ;; Something to be evaled.
4345 (defun message-send-mail-partially ()
4346 "Send mail as message/partial."
4347 ;; replace the header delimiter with a blank line
4348 (goto-char (point-min))
4350 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4351 (replace-match "\n")
4352 (run-hooks 'message-send-mail-hook
)
4353 (let ((p (goto-char (point-min)))
4354 (tembuf (message-generate-new-buffer-clone-locals " message temp"))
4355 (curbuf (current-buffer))
4356 (id (message-make-message-id)) (n 1)
4357 plist total header required-mail-headers
)
4359 (if (< (point-max) (+ p message-send-mail-partially-limit
))
4360 (goto-char (point-max))
4361 (goto-char (+ p message-send-mail-partially-limit
))
4363 (if (<= (point) p
) (forward-line 1))) ;; In case of bad message.
4366 (setq total
(length plist
))
4367 (push (point-max) plist
)
4368 (setq plist
(nreverse plist
))
4371 (setq p
(pop plist
))
4374 (copy-to-buffer tembuf p
(car plist
))
4376 (goto-char (point-min))
4379 (goto-char (point-min))
4380 (narrow-to-region (point) (point))
4383 (setq header
(buffer-substring (point-min) (point)))
4384 (goto-char (point-min))
4385 (narrow-to-region (point) (point))
4387 (message-remove-header "Mime-Version")
4388 (message-remove-header "Content-Type")
4389 (message-remove-header "Content-Transfer-Encoding")
4390 (message-remove-header "Message-ID")
4391 (message-remove-header "Lines")
4392 (goto-char (point-max))
4393 (insert "Mime-Version: 1.0\n")
4394 (setq header
(buffer-string)))
4395 (goto-char (point-max))
4396 (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n\n"
4399 (let ((mail-header-separator ""))
4400 (when (memq 'Message-ID message-required-mail-headers
)
4401 (insert "Message-ID: " (message-make-message-id) "\n"))
4402 (when (memq 'Lines message-required-mail-headers
)
4403 (insert "Lines: " (message-make-lines) "\n"))
4404 (message-goto-subject)
4406 (insert (format " (%d/%d)" n total
))
4408 (funcall (or message-send-mail-real-function
4409 message-send-mail-function
)))
4411 (setq p
(pop plist
))
4413 (kill-buffer tembuf
))))
4415 (defun message-send-mail (&optional arg
)
4416 (require 'mail-utils
)
4417 (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
4418 (case-fold-search nil
)
4419 (news (message-news-p))
4420 (mailbuf (current-buffer))
4421 (message-this-is-mail t
)
4422 (message-posting-charset
4423 (if (fboundp 'gnus-setup-posting-charset
)
4424 (gnus-setup-posting-charset nil
)
4425 message-posting-charset
))
4426 (headers message-required-mail-headers
))
4427 (when (and message-generate-hashcash
4428 (not (eq message-generate-hashcash
'opportunistic
)))
4429 (message "Generating hashcash...")
4430 ;; Wait for calculations already started to finish...
4431 (hashcash-wait-async)
4432 ;; ...and do calculations not already done. mail-add-payment
4433 ;; will leave existing X-Hashcash headers alone.
4435 (message "Generating hashcash...done"))
4437 (message-narrow-to-headers)
4438 ;; Generate the Mail-Followup-To header if the header is not there...
4439 (if (and (message-subscribed-p)
4440 (not (mail-fetch-field "mail-followup-to")))
4443 (cons "Mail-Followup-To" (message-make-mail-followup-to))
4444 message-required-mail-headers
))
4445 ;; otherwise, delete the MFT header if the field is empty
4446 (when (equal "" (mail-fetch-field "mail-followup-to"))
4447 (message-remove-header "^Mail-Followup-To:")))
4448 ;; Insert some headers.
4449 (let ((message-deletable-headers
4450 (if news nil message-deletable-headers
)))
4451 (message-generate-headers headers
))
4452 ;; Check continuation headers.
4453 (message-check 'continuation-headers
4454 (goto-char (point-min))
4455 (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t
)
4456 (goto-char (match-beginning 0))
4457 (if (y-or-n-p "Fix continuation lines? ")
4460 (unless (y-or-n-p "Send anyway? ")
4461 (error "Failed to send the message")))))
4462 ;; Let the user do all of the above.
4463 (run-hooks 'message-header-hook
))
4465 (with-current-buffer tembuf
4467 ;; Avoid copying text props (except hard newlines).
4468 (insert (with-current-buffer mailbuf
4469 (mml-buffer-substring-no-properties-except-hard-newlines
4470 (point-min) (point-max))))
4471 ;; Remove some headers.
4472 (message-encode-message-body)
4474 (message-narrow-to-headers)
4475 ;; We (re)generate the Lines header.
4476 (when (memq 'Lines message-required-mail-headers
)
4477 (message-generate-headers '(Lines)))
4478 ;; Remove some headers.
4479 (message-remove-header message-ignored-mail-headers t
)
4480 (let ((mail-parse-charset message-default-charset
))
4481 (mail-encode-encoded-word-buffer)))
4482 (goto-char (point-max))
4483 ;; require one newline at the end.
4484 (or (= (preceding-char) ?
\n)
4486 (message-cleanup-headers)
4487 ;; FIXME: we're inserting the courtesy copy after encoding.
4488 ;; This is wrong if the courtesy copy string contains
4489 ;; non-ASCII characters. -- jh
4492 (message-narrow-to-headers)
4494 (or (message-fetch-field "cc")
4495 (message-fetch-field "bcc")
4496 (message-fetch-field "to"))
4497 (let ((content-type (message-fetch-field
4502 (string= "text/plain"
4504 (mail-header-parse-content-type
4508 (message-fetch-field
4509 "content-transfer-encoding")))))))
4510 (message-insert-courtesy-copy))
4511 ;; Let's make sure we encoded all the body.
4512 (assert (save-excursion
4513 (goto-char (point-min))
4514 (not (re-search-forward "[^\000-\377]" nil t
))))
4515 (mm-disable-multibyte)
4516 (if (or (not message-send-mail-partially-limit
)
4517 (< (buffer-size) message-send-mail-partially-limit
)
4518 (not (message-y-or-n-p
4519 "The message size is too large, split? "
4523 (/ (buffer-size) 1000) "KB, is too large.
4525 Some mail gateways (MTA's) bounce large messages. To avoid the
4526 problem, answer `y', and the message will be split into several
4527 smaller pieces, the size of each is about "
4528 (/ message-send-mail-partially-limit
1000)
4532 However, some mail readers (MUA's) can't read split messages, i.e.,
4533 mails in message/partially format. Answer `n', and the message will be
4536 The size limit is controlled by `message-send-mail-partially-limit'.
4537 If you always want Gnus to send messages in one piece, set
4538 `message-send-mail-partially-limit' to nil.
4541 (message "Sending via mail...")
4542 (funcall (or message-send-mail-real-function
4543 message-send-mail-function
)))
4544 (message-send-mail-partially)))
4545 (kill-buffer tembuf
))
4546 (set-buffer mailbuf
)
4547 (push 'mail message-sent-message-via
)))
4549 (defun message-send-mail-with-sendmail ()
4550 "Send off the prepared buffer with sendmail."
4551 (let ((errbuf (if message-interactive
4552 (message-generate-new-buffer-clone-locals
4555 resend-to-addresses delimline
)
4558 (let ((case-fold-search t
))
4560 (message-narrow-to-headers)
4561 (setq resend-to-addresses
(message-fetch-field "resent-to")))
4562 ;; Change header-delimiter to be what sendmail expects.
4563 (goto-char (point-min))
4565 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4566 (replace-match "\n")
4568 (setq delimline
(point-marker))
4569 (run-hooks 'message-send-mail-hook
)
4570 ;; Insert an extra newline if we need it to work around
4571 ;; Sun's bug that swallows newlines.
4572 (goto-char (1+ delimline
))
4573 (when (eval message-mailer-swallows-blank-line
)
4575 (when message-interactive
4576 (with-current-buffer errbuf
4578 (let* ((default-directory "/")
4579 (coding-system-for-write message-send-coding-system
)
4581 'call-process-region
4583 (list (point-min) (point-max)
4584 (cond ((boundp 'sendmail-program
)
4586 ((file-exists-p "/usr/sbin/sendmail")
4587 "/usr/sbin/sendmail")
4588 ((file-exists-p "/usr/lib/sendmail")
4589 "/usr/lib/sendmail")
4590 ((file-exists-p "/usr/ucblib/sendmail")
4591 "/usr/ucblib/sendmail")
4593 nil errbuf nil
"-oi")
4594 message-sendmail-extra-arguments
4595 ;; Always specify who from,
4596 ;; since some systems have broken sendmails.
4597 ;; But some systems are more broken with -f, so
4598 ;; we'll let users override this.
4599 (and (null message-sendmail-f-is-evil
)
4600 (list "-f" (message-sendmail-envelope-from)))
4601 ;; These mean "report errors by mail"
4602 ;; and "deliver in background".
4603 (if (null message-interactive
) '("-oem" "-odb"))
4604 ;; Get the addresses from the message
4605 ;; unless this is a resend.
4606 ;; We must not do that for a resend
4607 ;; because we would find the original addresses.
4608 ;; For a resend, include the specific addresses.
4609 (if resend-to-addresses
4610 (list resend-to-addresses
)
4612 (unless (or (null cpr
) (and (numberp cpr
) (zerop cpr
)))
4613 (if errbuf
(pop-to-buffer errbuf
))
4614 (error "Sending...failed with exit value %d" cpr
)))
4615 (when message-interactive
4616 (with-current-buffer errbuf
4617 (goto-char (point-min))
4618 (while (re-search-forward "\n+ *" nil t
)
4619 (replace-match "; "))
4620 (if (not (zerop (buffer-size)))
4621 (error "Sending...failed to %s"
4622 (buffer-string))))))
4623 (when (bufferp errbuf
)
4624 (kill-buffer errbuf
)))))
4626 (defun message-send-mail-with-qmail ()
4627 "Pass the prepared message buffer to qmail-inject.
4628 Refer to the documentation for the variable `message-send-mail-function'
4629 to find out how to use this."
4630 ;; replace the header delimiter with a blank line
4631 (goto-char (point-min))
4633 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4634 (replace-match "\n")
4635 (run-hooks 'message-send-mail-hook
)
4638 (let ((coding-system-for-write message-send-coding-system
))
4640 'call-process-region
(point-min) (point-max)
4641 message-qmail-inject-program nil nil nil
4642 ;; qmail-inject's default behavior is to look for addresses on the
4643 ;; command line; if there're none, it scans the headers.
4644 ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
4646 ;; in general, ALL of qmail-inject's defaults are perfect for simply
4647 ;; reading a formatted (i. e., at least a To: or Resent-To header)
4648 ;; message from stdin.
4650 ;; qmail also has the advantage of not having been raped by
4651 ;; various vendors, so we don't have to allow for that, either --
4652 ;; compare this with message-send-mail-with-sendmail and weep
4653 ;; for sendmail's lost innocence.
4655 ;; all this is way cool coz it lets us keep the arguments entirely
4656 ;; free for -inject-arguments -- a big win for the user and for us
4657 ;; since we don't have to play that double-guessing game and the user
4658 ;; gets full control (no gestapo'ish -f's, for instance). --sj
4659 (if (functionp message-qmail-inject-args
)
4660 (funcall message-qmail-inject-args
)
4661 message-qmail-inject-args
)))
4662 ;; qmail-inject doesn't say anything on it's stdout/stderr,
4663 ;; we have to look at the retval instead
4665 (100 (error "qmail-inject reported permanent failure"))
4666 (111 (error "qmail-inject reported transient failure"))
4667 ;; should never happen
4668 (t (error "qmail-inject reported unknown failure"))))
4670 (defun message-send-mail-with-mh ()
4671 "Send the prepared message buffer with mh."
4672 (let ((mh-previous-window-config nil
)
4673 (name (mh-new-draft-name)))
4674 (setq buffer-file-name name
)
4675 ;; MH wants to generate these headers itself.
4676 (when message-mh-deletable-headers
4677 (let ((headers message-mh-deletable-headers
))
4679 (goto-char (point-min))
4680 (and (re-search-forward
4681 (concat "^" (symbol-name (car headers
)) ": *") nil t
)
4682 (message-delete-line))
4684 (run-hooks 'message-send-mail-hook
)
4685 ;; Pass it on to mh.
4688 (defun message-smtpmail-send-it ()
4689 "Send the prepared message buffer with `smtpmail-send-it'.
4690 The only difference from `smtpmail-send-it' is that this command
4691 evaluates `message-send-mail-hook' just before sending a message.
4692 It is useful if your ISP requires the POP-before-SMTP
4693 authentication. See the Gnus manual for details."
4694 (run-hooks 'message-send-mail-hook
)
4697 (defun message-send-mail-with-mailclient ()
4698 "Send the prepared message buffer with `mailclient-send-it'.
4699 The only difference from `mailclient-send-it' is that this
4700 command evaluates `message-send-mail-hook' just before sending a message."
4701 (run-hooks 'message-send-mail-hook
)
4702 (mailclient-send-it))
4704 (defun message-canlock-generate ()
4705 "Return a string that is non-trivial to guess.
4706 Do not use this for anything important, it is cryptographically weak."
4708 (let (sha1-maximum-internal-length)
4709 (sha1 (concat (message-unique-id)
4710 (format "%x%x%x" (random) (random t
) (random))
4711 (prin1-to-string (recent-keys))
4712 (prin1-to-string (garbage-collect))))))
4714 (defun message-canlock-password ()
4715 "The password used by message for cancel locks.
4716 This is the value of `canlock-password', if that option is non-nil.
4717 Otherwise, generate and save a value for `canlock-password' first."
4718 (unless canlock-password
4719 (customize-save-variable 'canlock-password
(message-canlock-generate))
4720 (setq canlock-password-for-verify canlock-password
))
4723 (defun message-insert-canlock ()
4724 (when message-insert-canlock
4725 (message-canlock-password)
4726 (canlock-insert-header)))
4728 (defun message-send-news (&optional arg
)
4729 (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
4730 (case-fold-search nil
)
4731 (method (if (functionp message-post-method
)
4732 (funcall message-post-method arg
)
4733 message-post-method
))
4734 (newsgroups-field (save-restriction
4735 (message-narrow-to-headers-or-head)
4736 (message-fetch-field "Newsgroups")))
4737 (followup-field (save-restriction
4738 (message-narrow-to-headers-or-head)
4739 (message-fetch-field "Followup-To")))
4740 ;; BUG: We really need to get the charset for each name in the
4741 ;; Newsgroups and Followup-To lines to allow crossposting
4742 ;; between group namess with incompatible character sets.
4743 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
4744 (group-field-charset
4745 (gnus-group-name-charset method newsgroups-field
))
4746 (followup-field-charset
4747 (gnus-group-name-charset method
(or followup-field
"")))
4748 (rfc2047-header-encoding-alist
4749 (append (when group-field-charset
4750 (list (cons "Newsgroups" group-field-charset
)))
4751 (when followup-field-charset
4752 (list (cons "Followup-To" followup-field-charset
)))
4753 rfc2047-header-encoding-alist
))
4754 (messbuf (current-buffer))
4755 (message-syntax-checks
4757 (listp message-syntax-checks
))
4758 (cons '(existing-newsgroups . disabled
)
4759 message-syntax-checks
)
4760 message-syntax-checks
))
4761 (message-this-is-news t
)
4762 (message-posting-charset
4763 (gnus-setup-posting-charset newsgroups-field
))
4765 (if (not (message-check-news-body-syntax))
4768 (message-narrow-to-headers)
4769 ;; Insert some headers.
4770 (message-generate-headers message-required-news-headers
)
4771 (message-insert-canlock)
4772 ;; Let the user do all of the above.
4773 (run-hooks 'message-header-hook
))
4774 ;; Note: This check will be disabled by the ".*" default value for
4775 ;; gnus-group-name-charset-group-alist. -- Pa 2001-10-07.
4776 (when (and group-field-charset
4777 (listp message-syntax-checks
))
4778 (setq message-syntax-checks
4779 (cons '(valid-newsgroups . disabled
)
4780 message-syntax-checks
)))
4781 (message-cleanup-headers)
4782 (if (not (let ((message-post-method method
))
4783 (message-check-news-syntax)))
4786 (with-current-buffer tembuf
4787 (buffer-disable-undo)
4789 ;; Avoid copying text props (except hard newlines).
4791 (with-current-buffer messbuf
4792 (mml-buffer-substring-no-properties-except-hard-newlines
4793 (point-min) (point-max))))
4794 (message-encode-message-body)
4795 ;; Remove some headers.
4797 (message-narrow-to-headers)
4798 ;; We (re)generate the Lines header.
4799 (when (memq 'Lines message-required-mail-headers
)
4800 (message-generate-headers '(Lines)))
4801 ;; Remove some headers.
4802 (message-remove-header message-ignored-news-headers t
)
4803 (let ((mail-parse-charset message-default-charset
))
4804 (mail-encode-encoded-word-buffer)))
4805 (goto-char (point-max))
4806 ;; require one newline at the end.
4807 (or (= (preceding-char) ?
\n)
4809 (let ((case-fold-search t
))
4810 ;; Remove the delimiter.
4811 (goto-char (point-min))
4813 (concat "^" (regexp-quote mail-header-separator
) "\n"))
4814 (replace-match "\n")
4816 (run-hooks 'message-send-news-hook
)
4817 (gnus-open-server method
)
4818 (message "Sending news via %s..." (gnus-server-string method
))
4819 (setq result
(let ((mail-header-separator ""))
4820 (gnus-request-post method
))))
4821 (kill-buffer tembuf
))
4822 (set-buffer messbuf
)
4824 (push 'news message-sent-message-via
)
4825 (message "Couldn't send message via news: %s"
4826 (nnheader-get-report (car method
)))
4830 ;;; Header generation & syntax checking.
4833 (defun message-check-element (type)
4834 "Return non-nil if this TYPE is not to be checked."
4835 (if (eq message-syntax-checks
'dont-check-for-anything-just-trust-me
)
4837 (let ((able (assq type message-syntax-checks
)))
4839 (eq (cdr able
) 'disabled
)))))
4841 (defun message-check-news-syntax ()
4842 "Check the syntax of the message."
4846 ;; We narrow to the headers and check them first.
4849 (message-narrow-to-headers)
4850 (message-check-news-header-syntax))))))
4852 (defun message-check-news-header-syntax ()
4854 ;; Check Newsgroups header.
4855 (message-check 'newsgroups
4856 (let ((group (message-fetch-field "newsgroups")))
4859 (not (string-match "\\`[ \t]*\\'" group
)))
4862 "The newsgroups field is empty or missing. Posting is denied.")))))
4863 ;; Check the Subject header.
4864 (message-check 'subject
4865 (let* ((case-fold-search t
)
4866 (subject (message-fetch-field "subject")))
4869 (not (string-match "\\`[ \t]*\\'" subject
)))
4872 "The subject field is empty or missing. Posting is denied.")))))
4873 ;; Check for commands in Subject.
4874 (message-check 'subject-cmsg
4875 (if (string-match "^cmsg " (message-fetch-field "subject"))
4877 "The control code \"cmsg\" is in the subject. Really post? ")
4879 ;; Check long header lines.
4880 (message-check 'long-header-lines
4881 (let ((start (point))
4885 (while (and (not found
)
4886 (re-search-forward "^\\([^ \t:]+\\): " nil t
))
4887 (if (> (- (point) (match-beginning 0)) 998)
4889 length
(- (point) (match-beginning 0)))
4890 (setq header
(match-string-no-properties 1)))
4891 (setq start
(match-beginning 0))
4894 (y-or-n-p (format "Your %s header is too long (%d). Really post? "
4897 ;; Check for multiple identical headers.
4898 (message-check 'multiple-headers
4900 (while (and (not found
)
4901 (re-search-forward "^[^ \t:]+: " nil t
))
4903 (or (re-search-forward
4908 (match-beginning 0) (- (match-end 0) 2))))
4913 (y-or-n-p (format "Multiple %s headers. Really post? " found
))
4915 ;; Check for Version and Sendsys.
4916 (message-check 'sendsys
4917 (if (re-search-forward "^Sendsys:\\|^Version:" nil t
)
4919 (format "The article contains a %s command. Really post? "
4920 (buffer-substring (match-beginning 0)
4921 (1- (match-end 0)))))
4923 ;; See whether we can shorten Followup-To.
4924 (message-check 'shorten-followup-to
4925 (let ((newsgroups (message-fetch-field "newsgroups"))
4926 (followup-to (message-fetch-field "followup-to"))
4928 (when (and newsgroups
4929 (string-match "," newsgroups
)
4934 (setq to
(completing-read
4935 "Followups to (default no Followup-To header): "
4938 (message-tokenize-header
4940 (goto-char (point-min))
4941 (insert "Followup-To: " to
"\n"))
4943 ;; Check "Shoot me".
4944 (message-check 'shoot
4945 (if (re-search-forward
4946 "Message-ID.*.i-did-not-set--mail-host-address--so-tickle-me" nil t
)
4947 (y-or-n-p "You appear to have a misconfigured system. Really post? ")
4949 ;; Check for Approved.
4950 (message-check 'approved
4951 (if (re-search-forward "^Approved:" nil t
)
4952 (y-or-n-p "The article contains an Approved header. Really post? ")
4954 ;; Check the Message-ID header.
4955 (message-check 'message-id
4956 (let* ((case-fold-search t
)
4957 (message-id (message-fetch-field "message-id" t
)))
4958 (or (not message-id
)
4959 ;; Is there an @ in the ID?
4960 (and (string-match "@" message-id
)
4961 ;; Is there a dot in the ID?
4962 (string-match "@[^.]*\\." message-id
)
4963 ;; Does the ID end with a dot?
4964 (not (string-match "\\.>" message-id
)))
4966 (format "The Message-ID looks strange: \"%s\". Really post? "
4968 ;; Check the Newsgroups & Followup-To headers.
4969 (message-check 'existing-newsgroups
4970 (let* ((case-fold-search t
)
4971 (newsgroups (message-fetch-field "newsgroups"))
4972 (followup-to (message-fetch-field "followup-to"))
4973 (groups (message-tokenize-header
4975 (concat newsgroups
"," followup-to
)
4977 (post-method (if (functionp message-post-method
)
4978 (funcall message-post-method
)
4979 message-post-method
))
4980 ;; KLUDGE to handle nnvirtual groups. Doing this right
4981 ;; would probably involve a new nnoo function.
4982 ;; -- Per Abrahamsen <abraham@dina.kvl.dk>, 2001-10-17.
4983 (method (if (and (consp post-method
)
4984 (eq (car post-method
) 'nnvirtual
)
4985 gnus-message-group-art
)
4986 (let ((group (car (nnvirtual-find-group-art
4987 (car gnus-message-group-art
)
4988 (cdr gnus-message-group-art
)))))
4989 (gnus-find-method-for-group group
))
4993 (gnus-group-name-decode
4994 (gnus-group-real-name n
)
4995 (gnus-group-name-charset method n
)))
4996 (gnus-groups-from-server method
)))
4999 (when (and (not (equal (car groups
) "poster"))
5000 (not (member (car groups
) known-groups
))
5001 (not (member (car groups
) errors
)))
5002 (push (car groups
) errors
))
5005 ;; Gnus is not running.
5006 ((or (not (and (boundp 'gnus-active-hashtb
)
5007 gnus-active-hashtb
))
5008 (not (boundp 'gnus-read-active-file
)))
5010 ;; We don't have all the group names.
5011 ((and (or (not gnus-read-active-file
)
5012 (eq gnus-read-active-file
'some
))
5016 "Really use %s possibly unknown group%s: %s? "
5017 (if (= (length errors
) 1) "this" "these")
5018 (if (= (length errors
) 1) "" "s")
5019 (mapconcat 'identity errors
", "))))
5020 ;; There were no errors.
5023 ;; There are unknown groups.
5027 "Really post to %s unknown group%s: %s? "
5028 (if (= (length errors
) 1) "this" "these")
5029 (if (= (length errors
) 1) "" "s")
5030 (mapconcat 'identity errors
", ")))))))
5031 ;; Check continuation headers.
5032 (message-check 'continuation-headers
5033 (goto-char (point-min))
5034 (let ((do-posting t
))
5035 (while (re-search-forward "^[^ \t\n][^ \t\n:]*[ \t\n]" nil t
)
5036 (goto-char (match-beginning 0))
5037 (if (y-or-n-p "Fix continuation lines? ")
5040 (unless (y-or-n-p "Send anyway? ")
5041 (setq do-posting nil
))))
5043 ;; Check the Newsgroups & Followup-To headers for syntax errors.
5044 (message-check 'valid-newsgroups
5045 (let ((case-fold-search t
)
5046 (headers '("Newsgroups" "Followup-To"))
5048 (while (and headers
(not error
))
5049 (when (setq header
(mail-fetch-field (car headers
)))
5053 "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
5058 (not (string-match "\\.\\'\\|\\.\\." g
)))
5059 (message-tokenize-header header
","))))
5066 (format "The %s header looks odd: \"%s\". Really post? "
5067 (car headers
) header
)))))
5068 (message-check 'repeated-newsgroups
5069 (let ((case-fold-search t
)
5070 (headers '("Newsgroups" "Followup-To"))
5071 header error groups group
)
5074 (when (setq header
(mail-fetch-field (pop headers
)))
5075 (setq groups
(message-tokenize-header header
","))
5076 (while (setq group
(pop groups
))
5077 (when (member group groups
)
5083 (format "Group %s is repeated in headers. Really post? " error
)))))
5084 ;; Check the From header.
5085 (message-check 'from
5086 (let* ((case-fold-search t
)
5087 (from (message-fetch-field "from"))
5091 (message "There is no From line. Posting is denied.")
5093 ((or (not (string-match
5095 (setq ad
(nth 1 (mail-extract-address-components
5096 from
))))) ;larsi@ifi
5097 (string-match "\\.\\." ad
) ;larsi@ifi..uio
5098 (string-match "@\\." ad
) ;larsi@.ifi.uio
5099 (string-match "\\.$" ad
) ;larsi@ifi.uio.
5100 (not (string-match "^[^@]+@[^@]+$" ad
)) ;larsi.ifi.uio
5101 (string-match "(.*).*(.*)" from
)) ;(lars) (lars)
5103 "Denied posting -- the From looks strange: \"%s\"." from
)
5105 ((let ((addresses (rfc822-addresses from
)))
5106 ;; `rfc822-addresses' returns a string if parsing fails.
5107 (while (and (consp addresses
)
5108 (not (eq (string-to-char (car addresses
)) ?\
()))
5109 (setq addresses
(cdr addresses
)))
5112 "Denied posting -- bad From address: \"%s\"." from
)
5115 ;; Check the Reply-To header.
5116 (message-check 'reply-to
5117 (let* ((case-fold-search t
)
5118 (reply-to (message-fetch-field "reply-to"))
5123 ((string-match "," reply-to
)
5125 (format "Multiple Reply-To addresses: \"%s\". Really post? "
5127 ((or (not (string-match
5129 (setq ad
(nth 1 (mail-extract-address-components
5130 reply-to
))))) ;larsi@ifi
5131 (string-match "\\.\\." ad
) ;larsi@ifi..uio
5132 (string-match "@\\." ad
) ;larsi@.ifi.uio
5133 (string-match "\\.$" ad
) ;larsi@ifi.uio.
5134 (not (string-match "^[^@]+@[^@]+$" ad
)) ;larsi.ifi.uio
5135 (string-match "(.*).*(.*)" reply-to
)) ;(lars) (lars)
5138 "The Reply-To looks strange: \"%s\". Really post? "
5142 (defun message-check-news-body-syntax ()
5144 ;; Check for long lines.
5145 (message-check 'long-lines
5146 (goto-char (point-min))
5148 (concat "^" (regexp-quote mail-header-separator
) "$"))
5152 "<#\\(/\\)?\\(multipart\\|part\\|external\\|mml\\)")
5155 (< (- (point) p
) 80)))
5156 (zerop (forward-line 1))))
5160 "You have lines longer than 79 characters. Really post? ")))
5161 ;; Check whether the article is empty.
5162 (message-check 'empty
5163 (goto-char (point-min))
5165 (concat "^" (regexp-quote mail-header-separator
) "$"))
5168 (goto-char (point-max))
5169 (re-search-backward message-signature-separator nil t
)
5171 (or (re-search-backward "[^ \n\t]" b t
)
5172 (if (message-gnksa-enable-p 'empty-article
)
5173 (y-or-n-p "Empty article. Really post? ")
5174 (message "Denied posting -- Empty article.")
5176 ;; Check for control characters.
5177 (message-check 'control-chars
5178 (if (re-search-forward
5179 (mm-string-to-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]")
5182 "The article contains control characters. Really post? ")
5184 ;; Check excessive size.
5185 (message-check 'size
5186 (if (> (buffer-size) 60000)
5188 (format "The article is %d octets long. Really post? "
5191 ;; Check whether any new text has been added.
5192 (message-check 'new-text
5194 (not message-checksum
)
5195 (not (eq (message-checksum) message-checksum
))
5196 (if (message-gnksa-enable-p 'quoted-text-only
)
5198 "It looks like no new text has been added. Really post? ")
5199 (message "Denied posting -- no new text has been added.")
5201 ;; Check the length of the signature.
5202 (message-check 'signature
5203 (let (sig-start sig-end
)
5204 (goto-char (point-max))
5205 (if (not (re-search-backward message-signature-separator nil t
))
5207 (setq sig-start
(1+ (point-at-eol)))
5209 (if (re-search-forward
5210 "<#/?\\(multipart\\|part\\|external\\|mml\\)" nil t
)
5211 (- (point-at-bol) 1)
5213 (if (>= (count-lines sig-start sig-end
) 5)
5214 (if (message-gnksa-enable-p 'signature
)
5216 (format "Signature is excessively long (%d lines). Really post? "
5217 (count-lines sig-start sig-end
)))
5218 (message "Denied posting -- Excessive signature.")
5221 ;; Ensure that text follows last quoted portion.
5222 (message-check 'quoting-style
5223 (goto-char (point-max))
5224 (let ((no-problem t
))
5225 (when (search-backward-regexp "^>[^\n]*\n" nil t
)
5226 (setq no-problem
(search-forward-regexp "^[ \t]*[^>\n]" nil t
)))
5229 (if (message-gnksa-enable-p 'quoted-text-only
)
5230 (y-or-n-p "Your text should follow quoted text. Really post? ")
5232 (goto-char (point-min))
5234 (concat "^" (regexp-quote mail-header-separator
) "$"))
5235 (if (search-forward-regexp "^[ \t]*[^>\n]" nil t
)
5236 (y-or-n-p "Your text should follow quoted text. Really post? ")
5237 (message "Denied posting -- only quoted text.")
5240 (defun message-checksum ()
5241 "Return a \"checksum\" for the current buffer."
5244 (goto-char (point-min))
5246 (concat "^" (regexp-quote mail-header-separator
) "$"))
5248 (when (not (looking-at "[ \t\n]"))
5249 (setq sum
(logxor (ash sum
1) (if (natnump sum
) 0 1)
5254 (defun message-do-fcc ()
5255 "Process Fcc headers in the current buffer."
5256 (let ((case-fold-search t
)
5257 (buf (current-buffer))
5259 (mml-externalize-attachments message-fcc-externalize-attachments
))
5262 (message-narrow-to-headers)
5263 (setq file
(message-fetch-field "fcc" t
)))
5265 (set-buffer (get-buffer-create " *message temp*"))
5267 (insert-buffer-substring buf
)
5268 (message-encode-message-body)
5270 (message-narrow-to-headers)
5271 (while (setq file
(message-fetch-field "fcc" t
))
5273 (message-remove-header "fcc" nil t
))
5274 (let ((mail-parse-charset message-default-charset
)
5275 (rfc2047-header-encoding-alist
5276 (cons '("Newsgroups" . default
)
5277 rfc2047-header-encoding-alist
)))
5278 (mail-encode-encoded-word-buffer)))
5279 (goto-char (point-min))
5280 (when (re-search-forward
5281 (concat "^" (regexp-quote mail-header-separator
) "$")
5283 (replace-match "" t t
))
5284 ;; Process FCC operations.
5286 (setq file
(pop list
))
5287 (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file
)
5288 ;; Pipe the article to the program in question.
5289 (call-process-region (point-min) (point-max) shell-file-name
5290 nil nil nil shell-command-switch
5291 (match-string 1 file
))
5292 ;; Save the article.
5293 (setq file
(expand-file-name file
))
5294 (unless (file-exists-p (file-name-directory file
))
5295 (make-directory (file-name-directory file
) t
))
5296 (if (and message-fcc-handler-function
5297 (not (eq message-fcc-handler-function
'rmail-output
)))
5298 (funcall message-fcc-handler-function file
)
5299 ;; FIXME this option, rmail-output (also used if
5300 ;; message-fcc-handler-function is nil) is not
5301 ;; documented anywhere AFAICS. It should work in Emacs
5302 ;; 23; I suspect it does not work in Emacs 22.
5303 ;; FIXME I don't see the need for the two different cases here.
5304 ;; mail-use-rfc822 makes no difference (in Emacs 23),and
5305 ;; the third argument just controls \"Wrote file\" message.
5306 (if (and (file-readable-p file
) (mail-file-babyl-p file
))
5307 (rmail-output file
1 nil t
)
5308 (let ((mail-use-rfc822 t
))
5309 (rmail-output file
1 t t
))))))
5310 (kill-buffer (current-buffer))))))
5312 (defun message-output (filename)
5313 "Append this article to Unix/babyl mail file FILENAME."
5314 (if (or (and (file-readable-p filename
)
5315 (mail-file-babyl-p filename
))
5316 ;; gnus-output-to-mail does the wrong thing with live, mbox
5317 ;; Rmail buffers in Emacs 23.
5318 ;; http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597255
5319 (let ((buff (find-buffer-visiting filename
)))
5320 (and buff
(with-current-buffer buff
5321 (eq major-mode
'rmail-mode
)))))
5322 (gnus-output-to-rmail filename t
)
5323 (gnus-output-to-mail filename t
)))
5325 (defun message-cleanup-headers ()
5326 "Do various automatic cleanups of the headers."
5327 ;; Remove empty lines in the header.
5329 (message-narrow-to-headers)
5330 ;; Remove blank lines.
5331 (while (re-search-forward "^[ \t]*\n" nil t
)
5332 (replace-match "" t t
))
5334 ;; Correct Newsgroups and Followup-To headers: Change sequence of
5335 ;; spaces to comma and eliminate spaces around commas. Eliminate
5336 ;; embedded line breaks.
5337 (goto-char (point-min))
5338 (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t
)
5342 (if (re-search-forward "^[^ \t]" nil t
)
5346 (goto-char (point-min))
5347 (while (re-search-forward "\n[ \t]+" nil t
)
5348 (replace-match " " t t
)) ;No line breaks (too confusing)
5349 (goto-char (point-min))
5350 (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t
)
5351 (replace-match "," t t
))
5352 (goto-char (point-min))
5353 ;; Remove trailing commas.
5354 (when (re-search-forward ",+$" nil t
)
5355 (replace-match "" t t
))))))
5357 (defun message-make-date (&optional now
)
5358 "Make a valid data header.
5359 If NOW, use that time instead."
5360 (let ((system-time-locale "C"))
5361 (format-time-string "%a, %d %b %Y %T %z" now
)))
5363 (defun message-insert-expires (days)
5364 "Insert the Expires header. Expiry in DAYS days."
5365 (interactive "NExpire article in how many days? ")
5367 (message-position-on-field "Expires" "X-Draft-From")
5368 (insert (message-make-expires-date days
))))
5370 (defun message-make-expires-date (days)
5371 "Make date string for the Expires header. Expiry in DAYS days.
5373 In posting styles use `(\"Expires\" (make-expires-date 30))'."
5374 (let* ((cur (decode-time (current-time)))
5375 (nday (+ days
(nth 3 cur
))))
5376 (setf (nth 3 cur
) nday
)
5377 (message-make-date (apply 'encode-time cur
))))
5379 (defun message-make-message-id ()
5380 "Make a unique Message-ID."
5381 (concat "<" (message-unique-id)
5382 (let ((psubject (save-excursion (message-fetch-field "subject")))
5384 (save-excursion (message-fetch-field "supersedes"))))
5386 (and message-reply-headers
5387 (mail-header-references message-reply-headers
)
5388 (mail-header-subject message-reply-headers
)
5391 (message-strip-subject-re
5392 (mail-header-subject message-reply-headers
))
5393 (message-strip-subject-re psubject
))))
5395 (string-match "_-_@" psupersedes
)))
5397 "@" (message-make-fqdn) ">"))
5399 (defvar message-unique-id-char nil
)
5401 ;; If you ever change this function, make sure the new version
5402 ;; cannot generate IDs that the old version could.
5403 ;; You might for example insert a "." somewhere (not next to another dot
5404 ;; or string boundary), or modify the "fsf" string.
5405 (defun message-unique-id ()
5406 ;; Don't use microseconds from (current-time), they may be unsupported.
5407 ;; Instead we use this randomly inited counter.
5408 (setq message-unique-id-char
5409 (%
(1+ (or message-unique-id-char
(logand (random t
) (1- (lsh 1 20)))))
5410 ;; (current-time) returns 16-bit ints,
5411 ;; and 2^16*25 just fits into 4 digits i base 36.
5413 (let ((tm (current-time)))
5415 (if (or (memq system-type
'(ms-dos emx
))
5416 ;; message-number-base36 doesn't handle bigints.
5417 (floatp (user-uid)))
5418 (let ((user (downcase (user-login-name))))
5419 (while (string-match "[^a-z0-9_]" user
)
5420 (aset user
(match-beginning 0) ?_
))
5422 (message-number-base36 (user-uid) -
1))
5423 (message-number-base36 (+ (car tm
)
5424 (lsh (% message-unique-id-char
25) 16)) 4)
5425 (message-number-base36 (+ (nth 1 tm
)
5426 (lsh (/ message-unique-id-char
25) 16)) 4)
5427 ;; Append a given name, because while the generated ID is unique
5428 ;; to this newsreader, other newsreaders might otherwise generate
5429 ;; the same ID via another algorithm.
5432 (defun message-number-base36 (num len
)
5437 (concat (message-number-base36 (/ num
36) (1- len
))
5438 (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
5441 (defun message-make-organization ()
5442 "Make an Organization header."
5443 (let* ((organization
5444 (when message-user-organization
5445 (if (functionp message-user-organization
)
5446 (funcall message-user-organization
)
5447 message-user-organization
))))
5449 (mm-enable-multibyte)
5450 (cond ((stringp organization
)
5451 (insert organization
))
5452 ((and (eq t organization
)
5453 message-user-organization-file
5454 (file-exists-p message-user-organization-file
))
5455 (insert-file-contents message-user-organization-file
)))
5456 (goto-char (point-min))
5457 (while (re-search-forward "[\t\n]+" nil t
)
5458 (replace-match "" t t
))
5459 (unless (zerop (buffer-size))
5462 (defun message-make-lines ()
5463 "Count the number of lines and return numeric string."
5468 (int-to-string (count-lines (point) (point-max))))))
5470 (defun message-make-references ()
5471 "Return the References header for this message."
5472 (when message-reply-headers
5473 (let ((message-id (mail-header-message-id message-reply-headers
))
5474 (references (mail-header-references message-reply-headers
)))
5475 (if (or references message-id
)
5476 (concat (or references
"") (and references
" ")
5480 (defun message-make-in-reply-to ()
5481 "Return the In-Reply-To header for this message."
5482 (when message-reply-headers
5483 (let ((from (mail-header-from message-reply-headers
))
5484 (date (mail-header-date message-reply-headers
))
5485 (msg-id (mail-header-message-id message-reply-headers
)))
5487 (let ((name (mail-extract-address-components from
)))
5489 msg-id
(if msg-id
" (")
5491 (if (string-match "[^\000-\177]" (car name
))
5492 ;; Quote a string containing non-ASCII characters.
5493 ;; It will make the RFC2047 encoder cause an error
5494 ;; if there are special characters.
5495 (mm-with-multibyte-buffer
5497 (goto-char (point-min))
5498 (while (search-forward "\"" nil t
)
5501 (zerop (%
(skip-chars-backward "\\\\") 2))
5502 (goto-char (match-beginning 0)))
5505 ;; Those quotes will be removed by the RFC2047 encoder.
5506 (concat "\"" (buffer-string) "\""))
5510 (if (or (not date
) (string= date
""))
5511 "(unknown date)" date
)
5512 "\"" (if msg-id
")")))))))
5514 (defun message-make-distribution ()
5515 "Make a Distribution header."
5516 (let ((orig-distribution (message-fetch-reply-field "distribution")))
5517 (cond ((functionp message-distribution-function
)
5518 (funcall message-distribution-function
))
5519 (t orig-distribution
))))
5521 (defun message-make-expires ()
5522 "Return an Expires header based on `message-expires'."
5523 (let ((current (current-time))
5524 (future (* 1.0 message-expires
60 60 24)))
5525 ;; Add the future to current.
5526 (setcar current
(+ (car current
) (round (/ future
(expt 2 16)))))
5527 (setcar (cdr current
) (+ (nth 1 current
) (%
(round future
) (expt 2 16))))
5528 (message-make-date current
)))
5530 (defun message-make-path ()
5532 (let ((login-name (user-login-name)))
5533 (cond ((null message-user-path
)
5534 (concat (system-name) "!" login-name
))
5535 ((stringp message-user-path
)
5536 ;; Support GENERICPATH. Suggested by vixie@decwrl.dec.com.
5537 (concat message-user-path
"!" login-name
))
5540 (defun message-make-from (&optional name address
)
5541 "Make a From header."
5542 (let* ((style message-from-style
)
5543 (login (or address
(message-make-address)))
5545 (and (boundp 'user-full-name
)
5548 (when (string= fullname
"&")
5549 (setq fullname
(user-login-name)))
5551 (mm-enable-multibyte)
5554 (equal fullname
""))
5556 ((or (eq style
'angles
)
5557 (and (not (eq style
'parens
))
5558 ;; Use angles if no quoting is needed, or if parens would
5559 ;; need quoting too.
5560 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname
))
5561 (let ((tmp (concat fullname nil
)))
5562 (while (string-match "([^()]*)" tmp
)
5563 (aset tmp
(match-beginning 0) ?-
)
5564 (aset tmp
(1- (match-end 0)) ?-
))
5565 (string-match "[\\()]" tmp
)))))
5567 (goto-char (point-min))
5568 ;; Look for a character that cannot appear unquoted
5569 ;; according to RFC 822.
5570 (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil
1)
5571 ;; Quote fullname, escaping specials.
5572 (goto-char (point-min))
5574 (while (re-search-forward "[\"\\]" nil
1)
5575 (replace-match "\\\\\\&" t
))
5577 (insert " <" login
">"))
5578 (t ; 'parens or default
5580 (let ((fullname-start (point)))
5582 (goto-char fullname-start
)
5583 ;; RFC 822 says \ and nonmatching parentheses
5584 ;; must be escaped in comments.
5585 ;; Escape every instance of ()\ ...
5586 (while (re-search-forward "[()\\]" nil
1)
5587 (replace-match "\\\\\\&" t
))
5588 ;; ... then undo escaping of matching parentheses,
5589 ;; including matching nested parentheses.
5590 (goto-char fullname-start
)
5591 (while (re-search-forward
5592 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
5594 (replace-match "\\1(\\3)" t
)
5595 (goto-char fullname-start
)))
5599 (defun message-make-sender ()
5600 "Return the \"real\" user address.
5601 This function tries to ignore all user modifications, and
5602 give as trustworthy answer as possible."
5603 (concat (user-login-name) "@" (system-name)))
5605 (defun message-make-address ()
5606 "Make the address of the user."
5607 (or (message-user-mail-address)
5608 (concat (user-login-name) "@" (message-make-domain))))
5610 (defun message-user-mail-address ()
5611 "Return the pertinent part of `user-mail-address'."
5612 (when (and user-mail-address
5613 (string-match "@.*\\." user-mail-address
))
5614 (if (string-match " " user-mail-address
)
5615 (nth 1 (mail-extract-address-components user-mail-address
))
5616 user-mail-address
)))
5618 (defun message-sendmail-envelope-from ()
5619 "Return the envelope from."
5620 (cond ((eq message-sendmail-envelope-from
'header
)
5621 (nth 1 (mail-extract-address-components
5622 (message-fetch-field "from"))))
5623 ((stringp message-sendmail-envelope-from
)
5624 message-sendmail-envelope-from
)
5626 (message-make-address))))
5628 (defun message-make-fqdn ()
5629 "Return user's fully qualified domain name."
5630 (let* ((system-name (system-name))
5631 (user-mail (message-user-mail-address))
5634 (string-match "@\\(.*\\)\\'" user-mail
))
5635 (match-string 1 user-mail
)))
5636 (case-fold-search t
))
5638 ((and message-user-fqdn
5639 (stringp message-user-fqdn
)
5640 (string-match message-valid-fqdn-regexp message-user-fqdn
)
5641 (not (string-match message-bogus-system-names message-user-fqdn
)))
5642 ;; `message-user-fqdn' seems to be valid
5644 ((and (string-match message-valid-fqdn-regexp system-name
)
5645 (not (string-match message-bogus-system-names system-name
)))
5646 ;; `system-name' returned the right result.
5648 ;; Try `mail-host-address'.
5649 ((and (boundp 'mail-host-address
)
5650 (stringp mail-host-address
)
5651 (string-match message-valid-fqdn-regexp mail-host-address
)
5652 (not (string-match message-bogus-system-names mail-host-address
)))
5654 ;; We try `user-mail-address' as a backup.
5656 (stringp user-domain
)
5657 (string-match message-valid-fqdn-regexp user-domain
)
5658 (not (string-match message-bogus-system-names user-domain
)))
5660 ;; Default to this bogus thing.
5663 ".i-did-not-set--mail-host-address--so-tickle-me")))))
5665 (defun message-make-host-name ()
5666 "Return the name of the host."
5667 (let ((fqdn (message-make-fqdn)))
5668 (string-match "^[^.]+\\." fqdn
)
5669 (substring fqdn
0 (1- (match-end 0)))))
5671 (defun message-make-domain ()
5672 "Return the domain name."
5673 (or mail-host-address
5674 (message-make-fqdn)))
5676 (defun message-to-list-only ()
5677 "Send a message to the list only.
5678 Remove all addresses but the list address from To and Cc headers."
5680 (let ((listaddr (message-make-mail-followup-to t
)))
5683 (message-remove-header "to")
5684 (message-remove-header "cc")
5685 (message-position-on-field "To" "X-Draft-From")
5686 (insert listaddr
)))))
5688 (defun message-make-mail-followup-to (&optional only-show-subscribed
)
5689 "Return the Mail-Followup-To header.
5690 If passed the optional argument ONLY-SHOW-SUBSCRIBED only return the
5691 subscribed address (and not the additional To and Cc header contents)."
5692 (let* ((case-fold-search t
)
5693 (to (message-fetch-field "To"))
5694 (cc (message-fetch-field "cc"))
5695 (msg-recipients (concat to
(and to cc
", ") cc
))
5697 (mapcar 'mail-strip-quoted-names
5698 (message-tokenize-header msg-recipients
)))
5700 (if message-subscribed-address-file
5701 (let (begin end item re
)
5704 (insert-file-contents message-subscribed-address-file
)
5706 (setq begin
(point))
5709 (if (bolp) (setq end
(1- end
)))
5710 (setq item
(regexp-quote (buffer-substring begin end
)))
5711 (if re
(setq re
(concat re
"\\|" item
))
5712 (setq re
(concat "\\`\\(" item
))))
5713 (and re
(list (concat re
"\\)\\'"))))))))
5714 (mft-regexps (apply 'append message-subscribed-regexps
5715 (mapcar 'regexp-quote
5716 message-subscribed-addresses
)
5719 message-subscribed-address-functions
))))
5722 (loop for recipient in recipients
5723 when
(loop for regexp in mft-regexps
5724 when
(string-match regexp recipient
) return t
)
5727 (if only-show-subscribed
5729 msg-recipients
))))))
5731 (defun message-idna-to-ascii-rhs-1 (header)
5732 "Interactively potentially IDNA encode domain names in HEADER."
5733 (let ((field (message-fetch-field header
))
5737 (mm-delete-duplicates
5738 (mapcar (lambda (rhs) (or (cadr (split-string rhs
"@")) ""))
5742 (mail-extract-address-components field t
))))))
5743 ;; Note that `rhs' will be "" if the address does not have
5744 ;; the domain part, i.e., if it is a local user's address.
5745 (setq ace
(if (string-match "\\`[[:ascii:]]*\\'" rhs
)
5747 (downcase (idna-to-ascii rhs
))))
5748 (when (and (not (equal rhs ace
))
5749 (or (not (eq message-use-idna
'ask
))
5750 (y-or-n-p (format "Replace %s with %s in %s:? "
5752 (goto-char (point-min))
5753 (while (re-search-forward (concat "^" header
":") nil t
)
5754 (message-narrow-to-field)
5755 (while (search-forward (concat "@" rhs
) nil t
)
5756 (replace-match (concat "@" ace
) t t
))
5757 (goto-char (point-max))
5760 (defun message-idna-to-ascii-rhs ()
5761 "Possibly IDNA encode non-ASCII domain names in From:, To: and Cc: headers.
5762 See `message-idna-encode'."
5764 (when message-use-idna
5767 ;; `message-narrow-to-head' that recognizes only the first empty
5768 ;; line as the message header separator used to be used here.
5769 ;; However, since there is the "--text follows this line--" line
5770 ;; normally, it failed in narrowing to the headers and potentially
5771 ;; caused the IDNA encoding on lines that look like headers in
5772 ;; the message body.
5773 (message-narrow-to-headers-or-head)
5774 (message-idna-to-ascii-rhs-1 "From")
5775 (message-idna-to-ascii-rhs-1 "To")
5776 (message-idna-to-ascii-rhs-1 "Reply-To")
5777 (message-idna-to-ascii-rhs-1 "Mail-Reply-To")
5778 (message-idna-to-ascii-rhs-1 "Mail-Followup-To")
5779 (message-idna-to-ascii-rhs-1 "Cc")))))
5781 (defun message-generate-headers (headers)
5782 "Prepare article HEADERS.
5783 Headers already prepared in the buffer are not modified."
5784 (setq headers
(append headers message-required-headers
))
5786 (message-narrow-to-headers)
5787 (let* ((Date (message-make-date))
5788 (Message-ID (message-make-message-id))
5789 (Organization (message-make-organization))
5790 (From (message-make-from))
5791 (Path (message-make-path))
5794 (In-Reply-To (message-make-in-reply-to))
5795 (References (message-make-references))
5797 (Distribution (message-make-distribution))
5798 (Lines (message-make-lines))
5799 (User-Agent message-newsreader
)
5800 (Expires (message-make-expires))
5801 (case-fold-search t
)
5803 header value elem header-string
)
5804 ;; First we remove any old generated headers.
5805 (let ((headers message-deletable-headers
))
5806 (unless (buffer-modified-p)
5807 (setq headers
(delq 'Message-ID
(copy-sequence headers
))))
5809 (goto-char (point-min))
5810 (and (re-search-forward
5811 (concat "^" (symbol-name (car headers
)) ": *") nil t
)
5812 (get-text-property (1+ (match-beginning 0)) 'message-deletable
)
5813 (message-delete-line))
5815 ;; Go through all the required headers and see if they are in the
5816 ;; articles already. If they are not, or are empty, they are
5817 ;; inserted automatically - except for Subject, Newsgroups and
5820 (goto-char (point-min))
5821 (setq elem
(pop headers
))
5823 (if (eq (car elem
) 'optional
)
5824 (setq header
(cdr elem
)
5826 (setq header
(car elem
)))
5828 (setq header-string
(if (stringp header
)
5830 (symbol-name header
)))
5831 (when (or (not (re-search-forward
5833 (regexp-quote (downcase header-string
))
5837 ;; The header was found. We insert a space after the
5838 ;; colon, if there is none.
5839 (if (/= (char-after) ?
) (insert " ") (forward-char 1))
5840 ;; Find out whether the header is empty.
5841 (looking-at "[ \t]*\n[^ \t]")))
5842 ;; So we find out what value we should insert.
5846 (eq (car elem
) 'optional
)
5847 (not (member header-string message-inserted-headers
)))
5848 ;; This is an optional header. If the cdr of this
5849 ;; is something that is nil, then we do not insert
5851 (setq header
(cdr elem
))
5852 (or (and (functionp (cdr elem
))
5853 (funcall (cdr elem
)))
5854 (and (boundp (cdr elem
))
5855 (symbol-value (cdr elem
)))))
5857 ;; The element is a cons. Either the cdr is a
5858 ;; string to be inserted verbatim, or it is a
5859 ;; function, and we insert the value returned from
5861 (or (and (stringp (cdr elem
))
5863 (and (functionp (cdr elem
))
5864 (funcall (cdr elem
)))))
5865 ((and (boundp header
)
5866 (symbol-value header
))
5867 ;; The element is a symbol. We insert the value
5868 ;; of this symbol, if any.
5869 (symbol-value header
))
5870 ((not (message-check-element
5871 (intern (downcase (symbol-name header
)))))
5872 ;; We couldn't generate a value for this header,
5873 ;; so we just ask the user.
5874 (read-from-minibuffer
5875 (format "Empty header for %s; enter value: " header
)))))
5876 ;; Finally insert the header.
5878 (not (equal value
"")))
5882 ;; This header didn't exist, so we insert it.
5883 (goto-char (point-max))
5885 (cdr (assq header message-header-format-alist
))))
5887 (funcall formatter header value
)
5888 (insert header-string
": " value
))
5889 (push header-string message-inserted-headers
)
5890 (goto-char (message-fill-field))
5891 ;; We check whether the value was ended by a
5892 ;; newline. If not, we insert one.
5896 ;; The value of this header was empty, so we clear
5897 ;; totally and insert the new value.
5898 (delete-region (point) (point-at-eol))
5899 ;; If the header is optional, and the header was
5900 ;; empty, we can't insert it anyway.
5902 (push header-string message-inserted-headers
)
5904 (message-fill-field)))
5905 ;; Add the deletable property to the headers that require it.
5906 (and (memq header message-deletable-headers
)
5907 (progn (beginning-of-line) (looking-at "[^:]+: "))
5908 (add-text-properties
5909 (point) (match-end 0)
5910 '(message-deletable t face italic
) (current-buffer)))))))
5911 ;; Insert new Sender if the From is strange.
5912 (let ((from (message-fetch-field "from"))
5913 (sender (message-fetch-field "sender"))
5914 (secure-sender (message-make-sender)))
5916 (not (message-check-element 'sender
))
5919 (cadr (mail-extract-address-components from
)))
5920 (downcase secure-sender
)))
5925 (cadr (mail-extract-address-components sender
)))
5926 (downcase secure-sender
)))))
5927 (goto-char (point-min))
5928 ;; Rename any old Sender headers to Original-Sender.
5929 (when (re-search-forward "^\\(Original-\\)*Sender:" nil t
)
5931 (insert "Original-")
5932 (beginning-of-line))
5933 (when (or (message-news-p)
5934 (string-match "@.+\\.." secure-sender
))
5935 (insert "Sender: " secure-sender
"\n"))))
5937 (message-idna-to-ascii-rhs))))
5939 (defun message-insert-courtesy-copy ()
5940 "Insert a courtesy message in mail copies of combined messages."
5944 (message-narrow-to-headers)
5945 (when (setq newsgroups
(message-fetch-field "newsgroups"))
5946 (goto-char (point-max))
5947 (insert "Posted-To: " newsgroups
"\n")))
5949 (when message-courtesy-message
5951 ((string-match "%s" message-courtesy-message
)
5952 (insert (format message-courtesy-message newsgroups
)))
5954 (insert message-courtesy-message
)))))))
5957 ;;; Setting up a message buffer
5960 (defun message-skip-to-next-address ()
5961 (let ((end (save-excursion
5962 (message-next-header)
5965 (when (looking-at ",")
5967 (while (and (not (= (point) end
))
5968 (or (not (eq char ?
,))
5970 (skip-chars-forward "^,\"" (point-max))
5971 (when (eq (setq char
(following-char)) ?
\")
5972 (setq quoted
(not quoted
)))
5973 (unless (= (point) end
)
5975 (skip-chars-forward " \t\n")))
5977 (defun message-fill-address (header value
)
5978 (insert (capitalize (symbol-name header
))
5980 (if (consp value
) (car value
) value
)
5982 (message-fill-field-address))
5984 (defun message-split-line ()
5985 "Split current line, moving portion beyond point vertically down.
5986 If the current line has `message-yank-prefix', insert it on the new line."
5989 (split-line message-yank-prefix
) ;; Emacs 22.1+ supports arg.
5993 (defun message-insert-header (header value
)
5994 (insert (capitalize (symbol-name header
))
5996 (if (consp value
) (car value
) value
)))
5998 (defun message-field-name ()
6000 (goto-char (point-min))
6001 (when (looking-at "\\([^:]+\\):")
6002 (intern (capitalize (match-string 1))))))
6004 (defun message-fill-field ()
6007 (message-narrow-to-field)
6008 (let ((field-name (message-field-name)))
6009 (funcall (or (cadr (assq field-name message-field-fillers
))
6010 'message-fill-field-general
)))
6013 (defun message-fill-field-address ()
6015 (message-skip-to-next-address)
6017 (if (and (> (current-column) 78)
6023 (setq last
(1+ (point))))
6024 (setq last
(1+ (point)))))))
6026 (defun message-fill-field-general ()
6027 (let ((begin (point))
6030 (while (and (search-forward "\n" nil t
)
6032 (replace-match " " t t
))
6033 (fill-region-as-paragraph begin
(point-max))
6034 ;; Tapdance around looong Message-IDs.
6036 (when (looking-at "[ \t]*$")
6037 (message-delete-line))
6039 (search-forward ":" nil t
)
6040 (when (looking-at "\n[ \t]+")
6041 (replace-match " " t t
))
6042 (goto-char (point-max))))
6044 (defun message-shorten-1 (list cut surplus
)
6045 "Cut SURPLUS elements out of LIST, beginning with CUTth one."
6046 (setcdr (nthcdr (- cut
2) list
)
6047 (nthcdr (+ (- cut
2) surplus
1) list
)))
6049 (defun message-shorten-references (header references
)
6050 "Trim REFERENCES to be 21 Message-ID long or less, and fold them.
6051 When sending via news, also check that the REFERENCES are less
6052 than 988 characters long, and if they are not, trim them until
6060 (goto-char (point-min))
6061 ;; Cons a list of valid references. GNKSA says we must not include MIDs
6062 ;; with whitespace or missing brackets (7.a "Does not propagate broken
6063 ;; Message-IDs in original References").
6064 (while (re-search-forward "<[^ <]+@[^ <]+>" nil t
)
6065 (push (match-string 0) refs
))
6066 (setq refs
(nreverse refs
)
6067 count
(length refs
)))
6069 ;; If the list has more than MAXCOUNT elements, trim it by
6070 ;; removing the CUTth element and the required number of
6071 ;; elements that follow.
6072 (when (> count maxcount
)
6073 (let ((surplus (- count maxcount
)))
6074 (message-shorten-1 refs cut surplus
)
6075 (decf count surplus
)))
6077 ;; When sending via news, make sure the total folded length will
6078 ;; be less than 998 characters. This is to cater to broken INN
6079 ;; 2.3 which counts the total number of characters in a header
6080 ;; rather than the physical line length of each line, as it should.
6082 ;; This hack should be removed when it's believed than INN 2.3 is
6083 ;; no longer widely used.
6085 ;; At this point the headers have not been generated, thus we use
6086 ;; message-this-is-news directly.
6087 (when message-this-is-news
6090 (message-insert-header
6091 header
(mapconcat #'identity refs
" "))
6093 (message-shorten-1 refs cut
1)))
6094 ;; Finally, collect the references back into a string and insert
6095 ;; it into the buffer.
6096 (message-insert-header header
(mapconcat #'identity refs
" "))))
6098 (defun message-position-point ()
6099 "Move point to where the user probably wants to find it."
6100 (message-narrow-to-headers)
6102 ((re-search-forward "^[^:]+:[ \t]*$" nil t
)
6103 (search-backward ":" )
6106 (if (eq (char-after) ?
)
6110 (goto-char (point-max))
6113 (unless (looking-at "$")
6117 (defcustom message-beginning-of-line t
6118 "Whether \\<message-mode-map>\\[message-beginning-of-line]\
6119 goes to beginning of header values."
6121 :group
'message-buffers
6122 :link
'(custom-manual "(message)Movement")
6125 (defun message-beginning-of-line (&optional n
)
6126 "Move point to beginning of header value or to beginning of line.
6127 The prefix argument N is passed directly to `beginning-of-line'.
6129 This command is identical to `beginning-of-line' if point is
6130 outside the message header or if the option `message-beginning-of-line'
6133 If point is in the message header and on a (non-continued) header
6134 line, move point to the beginning of the header value or the beginning of line,
6135 whichever is closer. If point is already at beginning of line, move point to
6136 beginning of header value. Therefore, repeated calls will toggle point
6137 between beginning of field and beginning of line."
6139 (let ((zrs 'zmacs-region-stays
))
6140 (when (and (featurep 'xemacs
) (interactive-p) (boundp zrs
))
6142 (if (and message-beginning-of-line
6143 (message-point-in-header-p))
6144 (let* ((here (point))
6145 (bol (progn (beginning-of-line n
) (point)))
6146 (eol (point-at-eol))
6147 (eoh (re-search-forward ": *" eol t
)))
6149 (if (and eoh
(or (< eoh here
) (= bol here
)))
6151 (beginning-of-line n
)))
6153 (defun message-buffer-name (type &optional to group
)
6154 "Return a new (unique) buffer name based on TYPE and TO."
6156 ;; Generate a new buffer name The Message Way.
6157 ((memq message-generate-new-buffers
'(unique t
))
6158 (generate-new-buffer-name
6162 (or (car (mail-extract-address-components to
))
6165 (if (and group
(not (string= group
""))) (concat " on " group
) "")
6167 ;; Check whether `message-generate-new-buffers' is a function,
6168 ;; and if so, call it.
6169 ((functionp message-generate-new-buffers
)
6170 (funcall message-generate-new-buffers type to group
))
6171 ((eq message-generate-new-buffers
'unsent
)
6172 (generate-new-buffer-name
6173 (concat "*unsent " type
6176 (or (car (mail-extract-address-components to
))
6179 (if (and group
(not (string= group
""))) (concat " on " group
) "")
6181 ;; Search for the existing message buffer with the specified name.
6183 (let* ((new (if (eq message-generate-new-buffers
'standard
)
6184 (generate-new-buffer-name (concat "*" type
" message*"))
6185 (let ((message-generate-new-buffers 'unique
))
6186 (message-buffer-name type to group
))))
6187 (regexp (concat "\\`"
6189 (if (string-match "<[0-9]+>\\'" new
)
6190 (substring new
0 (match-beginning 0))
6192 "\\(?:<\\([0-9]+\\)>\\)?\\'"))
6193 (case-fold-search nil
))
6200 (when (and (string-match regexp
(setq b
(buffer-name b
)))
6201 (eq (with-current-buffer b major-mode
)
6203 (cons (string-to-number (or (match-string 1 b
) "1"))
6206 'car-less-than-car
)))
6209 (defun message-pop-to-buffer (name &optional switch-function
)
6210 "Pop to buffer NAME, and warn if it already exists and is modified."
6211 (let ((buffer (get-buffer name
)))
6213 (buffer-name buffer
))
6214 (let ((window (get-buffer-window buffer
0)))
6216 ;; Raise the frame already displaying the message buffer.
6218 (gnus-select-frame-set-input-focus (window-frame window
))
6219 (select-window window
))
6220 (funcall (or switch-function
'pop-to-buffer
) buffer
)
6221 (set-buffer buffer
))
6222 (when (and (buffer-modified-p)
6225 "Message already being composed; erase? ")
6227 (error "Message being composed")))
6228 (funcall (or switch-function
'pop-to-buffer
) name
)
6233 (defun message-do-send-housekeeping ()
6234 "Kill old message buffers."
6235 ;; We might have sent this buffer already. Delete it from the
6237 (setq message-buffer-list
(delq (current-buffer) message-buffer-list
))
6238 (while (and message-max-buffers
6240 (>= (length message-buffer-list
) message-max-buffers
))
6241 ;; Kill the oldest buffer -- unless it has been changed.
6242 (let ((buffer (pop message-buffer-list
)))
6243 (when (and (buffer-name buffer
)
6244 (not (buffer-modified-p buffer
)))
6245 (kill-buffer buffer
))))
6246 ;; Rename the buffer.
6247 (if message-send-rename-function
6248 (funcall message-send-rename-function
)
6249 ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
6251 "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
6253 (let ((name (match-string 2 (buffer-name)))
6255 (if (not (or (null name
)
6256 (string-equal name
"mail")
6257 (string-equal name
"posting")))
6258 (setq name
(concat "*sent " name
"*"))
6259 (message-narrow-to-headers)
6260 (setq to
(message-fetch-field "to"))
6261 (setq group
(message-fetch-field "newsgroups"))
6265 (to (concat "*sent mail to "
6266 (or (car (mail-extract-address-components to
))
6268 ((and group
(not (string= group
"")))
6269 (concat "*sent posting on " group
"*"))
6270 (t "*sent mail*"))))
6271 (unless (string-equal name
(buffer-name))
6272 (rename-buffer name t
)))))
6273 ;; Push the current buffer onto the list.
6274 (when message-max-buffers
6275 (setq message-buffer-list
6276 (nconc message-buffer-list
(list (current-buffer))))))
6278 (defun message-mail-user-agent ()
6280 ((not message-mail-user-agent
) nil
)
6281 ((eq message-mail-user-agent t
) mail-user-agent
)
6282 (t message-mail-user-agent
))))
6283 (if (memq mua
'(message-user-agent gnus-user-agent
))
6287 ;; YANK-ACTION, if non-nil, can be a buffer or a yank action of the
6288 ;; form (FUNCTION . ARGS).
6289 (defun message-setup (headers &optional yank-action actions
6290 continue switch-function
)
6291 (let ((mua (message-mail-user-agent))
6293 (if (not (and message-this-is-mail mua
))
6294 (message-setup-1 headers yank-action actions
)
6295 (setq headers
(copy-sequence headers
))
6296 (setq field
(assq 'Subject headers
))
6298 (setq subject
(cdr field
))
6299 (setq headers
(delq field headers
)))
6300 (setq field
(assq 'To headers
))
6302 (setq to
(cdr field
))
6303 (setq headers
(delq field headers
)))
6304 (let ((mail-user-agent mua
))
6305 (compose-mail to subject
6306 (mapcar (lambda (item)
6308 (format "%s" (car item
))
6311 continue switch-function
6312 (if (bufferp yank-action
)
6313 (list 'insert-buffer yank-action
)
6317 (defun message-headers-to-generate (headers included-headers excluded-headers
)
6318 "Return a list that includes all headers from HEADERS.
6319 If INCLUDED-HEADERS is a list, just include those headers. If it is
6320 t, include all headers. In any case, headers from EXCLUDED-HEADERS
6324 (dolist (header headers
)
6325 (setq header-name
(cond
6326 ((and (consp header
)
6327 (eq (car header
) 'optional
))
6328 ;; On the form (optional . Header)
6331 ;; On the form (Header . function)
6336 (when (and (not (memq header-name excluded-headers
))
6337 (or (eq included-headers t
)
6338 (memq header-name included-headers
)))
6339 (push header result
)))
6342 (defun message-setup-1 (headers &optional yank-action actions
)
6343 (dolist (action actions
)
6345 (add-to-list 'message-send-actions
6346 `(apply ',(car action
) ',(cdr action
)))))
6347 (setq message-reply-buffer
6348 (if (and (consp yank-action
)
6349 (eq (car yank-action
) 'insert-buffer
))
6352 (goto-char (point-min))
6353 ;; Insert all the headers.
6356 (alist message-header-format-alist
))
6358 (unless (assq (caar h
) message-header-format-alist
)
6359 (push (list (caar h
)) alist
))
6363 (delete-region (point) (progn (forward-line -
1) (point)))
6364 (when message-default-headers
6365 (insert message-default-headers
)
6366 (or (bolp) (insert ?
\n)))
6367 (insert mail-header-separator
"\n")
6369 (when (message-news-p)
6370 (when message-default-news-headers
6371 (insert message-default-news-headers
)
6372 (or (bolp) (insert ?
\n)))
6373 (when message-generate-headers-first
6374 (message-generate-headers
6375 (message-headers-to-generate
6376 (append message-required-news-headers
6377 message-required-headers
)
6378 message-generate-headers-first
6379 '(Lines Subject
)))))
6380 (when (message-mail-p)
6381 (when message-default-mail-headers
6382 (insert message-default-mail-headers
)
6383 (or (bolp) (insert ?
\n)))
6384 (when message-generate-headers-first
6385 (message-generate-headers
6386 (message-headers-to-generate
6387 (append message-required-mail-headers
6388 message-required-headers
)
6389 message-generate-headers-first
6390 '(Lines Subject
)))))
6391 (run-hooks 'message-signature-setup-hook
)
6392 (message-insert-signature)
6394 (message-narrow-to-headers)
6395 (run-hooks 'message-header-setup-hook
))
6396 (setq buffer-undo-list nil
)
6397 (when message-generate-hashcash
6398 ;; Generate hashcash headers for recipients already known
6399 (mail-add-payment-async))
6400 ;; Gnus posting styles are applied via buffer-local `message-setup-hook'
6402 (run-hooks 'message-setup-hook
)
6403 ;; Do this last to give it precedence over posting styles, etc.
6404 (when (message-mail-p)
6406 (message-narrow-to-headers)
6407 (if message-alternative-emails
6408 (message-use-alternative-email-as-from))))
6409 (message-position-point)
6410 ;; Allow correct handling of `message-checksum' in `message-yank-original':
6411 (set-buffer-modified-p nil
)
6414 (defun message-set-auto-save-file-name ()
6415 "Associate the message buffer with a file in the drafts directory."
6416 (when message-auto-save-directory
6417 (unless (file-directory-p
6418 (directory-file-name message-auto-save-directory
))
6419 (make-directory message-auto-save-directory t
))
6421 (setq message-draft-article
6422 (nndraft-request-associate-buffer "drafts"))
6424 ;; If Gnus were alive, draft messages would be saved in the drafts folder.
6425 ;; But Gnus is not alive, so arrange to save the draft message in a
6426 ;; regular file in message-auto-save-directory. Append a unique
6427 ;; time-based suffix to the filename to allow multiple drafts to be saved
6428 ;; simultaneously without overwriting each other (which mimics the
6429 ;; functionality of the Gnus drafts folder).
6430 (setq buffer-file-name
(expand-file-name
6432 (if (memq system-type
6433 '(ms-dos ms-windows windows-nt
6434 cygwin cygwin32 win32 w32
6438 (format-time-string "-%Y%m%d-%H%M%S"))
6439 message-auto-save-directory
))
6440 (setq buffer-auto-save-file-name
(make-auto-save-file-name)))
6441 (clear-visited-file-modtime)
6442 (setq buffer-file-coding-system message-draft-coding-system
)))
6444 (defun message-disassociate-draft ()
6445 "Disassociate the message buffer from the drafts directory."
6446 (when message-draft-article
6447 (nndraft-request-expire-articles
6448 (list message-draft-article
) "drafts" nil t
)))
6450 (defun message-insert-headers ()
6451 "Generate the headers for the article."
6455 (message-narrow-to-headers)
6456 (when (message-news-p)
6457 (message-generate-headers
6460 (copy-sequence message-required-news-headers
)))))
6461 (when (message-mail-p)
6462 (message-generate-headers
6465 (copy-sequence message-required-mail-headers
))))))))
6470 ;;; Commands for interfacing with message
6474 (defun message-mail (&optional to subject
6475 other-headers continue switch-function
6476 yank-action send-actions
)
6477 "Start editing a mail message to be sent.
6478 OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether
6479 to continue editing a message already being composed. SWITCH-FUNCTION
6480 is a function used to switch to and display the mail buffer."
6482 (let ((message-this-is-mail t
))
6483 (unless (message-mail-user-agent)
6484 (message-pop-to-buffer
6485 ;; Search for the existing message buffer if `continue' is non-nil.
6486 (let ((message-generate-new-buffers
6487 (when (or (not continue
)
6488 (eq message-generate-new-buffers
'standard
)
6489 (functionp message-generate-new-buffers
))
6490 message-generate-new-buffers
)))
6491 (message-buffer-name "mail" to
))
6495 `((To .
,(or to
"")) (Subject .
,(or subject
"")))
6496 (when other-headers other-headers
))
6497 yank-action send-actions continue switch-function
)
6498 ;; FIXME: Should return nil if failure.
6502 (defun message-news (&optional newsgroups subject
)
6503 "Start editing a news article to be sent."
6505 (let ((message-this-is-news t
))
6506 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
))
6507 (message-setup `((Newsgroups .
,(or newsgroups
""))
6508 (Subject .
,(or subject
""))))))
6510 (defun message-alter-recipients-discard-bogus-full-name (addrcell)
6511 "Discard mail address in full names.
6512 When the full name in reply headers contains the mail
6513 address (e.g. \"foo@bar <foo@bar>\"), discard full name.
6514 ADDRCELL is a cons cell where the car is the mail address and the
6515 cdr is the complete address (full name and mail address)."
6516 (if (string-match (concat (regexp-quote (car addrcell
)) ".*"
6517 (regexp-quote (car addrcell
)))
6519 (cons (car addrcell
) (car addrcell
))
6522 (defcustom message-alter-recipients-function nil
6523 "Function called to allow alteration of reply header structures.
6524 It is called in `message-get-reply-headers' for each recipient.
6525 The function is called with one parameter, a cons cell ..."
6526 :type
'(choice (const :tag
"None" nil
)
6527 (const :tag
"Discard bogus full name"
6528 message-alter-recipients-discard-bogus-full-name
)
6530 :version
"23.1" ;; No Gnus
6531 :group
'message-headers
)
6533 (defun message-get-reply-headers (wide &optional to-address address-headers
)
6534 (let (follow-to mct never-mct to cc author mft recipients extra
)
6535 ;; Find all relevant headers we need.
6537 (message-narrow-to-headers-or-head)
6538 ;; Gmane renames "To". Look at "Original-To", too, if it is present in
6539 ;; message-header-synonyms.
6540 (setq to
(or (message-fetch-field "to")
6541 (and (loop for synonym in message-header-synonyms
6542 when
(memq 'Original-To synonym
)
6544 (message-fetch-field "original-to")))
6545 cc
(message-fetch-field "cc")
6546 extra
(when message-extra-wide-headers
6547 (mapconcat 'identity
6548 (mapcar 'message-fetch-field
6549 message-extra-wide-headers
)
6551 mct
(message-fetch-field "mail-copies-to")
6552 author
(or (message-fetch-field "mail-reply-to")
6553 (message-fetch-field "reply-to")
6554 (message-fetch-field "from")
6556 mft
(and message-use-mail-followup-to
6557 (message-fetch-field "mail-followup-to"))))
6559 ;; Handle special values of Mail-Copies-To.
6561 (cond ((or (equal (downcase mct
) "never")
6562 (equal (downcase mct
) "nobody"))
6565 ((or (equal (downcase mct
) "always")
6566 (equal (downcase mct
) "poster"))
6567 (setq mct author
))))
6570 ;; Build (textual) list of new recipient addresses.
6573 (setq recipients
(concat ", " author
)))
6575 (dolist (header address-headers
)
6576 (let ((value (message-fetch-field header
)))
6578 (setq recipients
(concat recipients
", " value
))))))
6580 (string-match "[^ \t,]" mft
)
6581 (or (not (eq message-use-mail-followup-to
'ask
))
6582 (message-y-or-n-p "Obey Mail-Followup-To? " t
"\
6583 You should normally obey the Mail-Followup-To: header. In this
6584 article, it has the value of
6588 which directs your response to " (if (string-match "," mft
)
6589 "the specified addresses"
6590 "that address only") ".
6592 Most commonly, Mail-Followup-To is used by a mailing list poster to
6593 express that responses should be sent to just the list, and not the
6596 If a message is posted to several mailing lists, Mail-Followup-To may
6597 also be used to direct the following discussion to one list only,
6598 because discussions that are spread over several lists tend to be
6599 fragmented and very difficult to follow.
6601 Also, some source/announcement lists are not intended for discussion;
6602 responses here are directed to other addresses.
6604 You may customize the variable `message-use-mail-followup-to', if you
6605 want to get rid of this query permanently.")))
6606 (setq recipients
(concat ", " mft
)))
6608 (setq recipients
(concat ", " to-address
))
6609 ;; If the author explicitly asked for a copy, we don't deny it to them.
6610 (if mct
(setq recipients
(concat recipients
", " mct
))))
6612 (setq recipients
(if never-mct
"" (concat ", " author
)))
6613 (if to
(setq recipients
(concat recipients
", " to
)))
6614 (if cc
(setq recipients
(concat recipients
", " cc
)))
6615 (if extra
(setq recipients
(concat recipients
", " extra
)))
6616 (if mct
(setq recipients
(concat recipients
", " mct
)))))
6617 (if (>= (length recipients
) 2)
6618 ;; Strip the leading ", ".
6619 (setq recipients
(substring recipients
2)))
6620 ;; Squeeze whitespace.
6621 (while (string-match "[ \t][ \t]+" recipients
)
6622 (setq recipients
(replace-match " " t t recipients
)))
6623 ;; Remove addresses that match `rmail-dont-reply-to-names'.
6624 (let ((rmail-dont-reply-to-names (message-dont-reply-to-names)))
6625 (setq recipients
(rmail-dont-reply-to recipients
)))
6626 ;; Perhaps "Mail-Copies-To: never" removed the only address?
6627 (if (string-equal recipients
"")
6628 (setq recipients author
))
6629 ;; Convert string to a list of (("foo@bar" . "Name <Foo@BAR>") ...).
6633 (if message-alter-recipients-function
6634 (funcall message-alter-recipients-function
6635 (cons (downcase (mail-strip-quoted-names addr
))
6637 (cons (downcase (mail-strip-quoted-names addr
)) addr
)))
6638 (message-tokenize-header recipients
)))
6639 ;; Remove first duplicates. (Why not all duplicates? Is this a bug?)
6640 (let ((s recipients
))
6642 (setq recipients
(delq (assoc (car (pop s
)) s
) recipients
))))
6644 ;; Remove hierarchical lists that are contained within each other,
6645 ;; if message-hierarchical-addresses is defined.
6646 (when message-hierarchical-addresses
6647 (let ((plain-addrs (mapcar 'car recipients
))
6650 (setq subaddrs
(assoc (car plain-addrs
)
6651 message-hierarchical-addresses
)
6652 plain-addrs
(cdr plain-addrs
))
6654 (setq subaddrs
(cdr subaddrs
))
6656 (setq recip
(assoc (car subaddrs
) recipients
)
6657 subaddrs
(cdr subaddrs
))
6659 (setq recipients
(delq recip recipients
))))))))
6661 ;; Build the header alist. Allow the user to be asked whether
6662 ;; or not to reply to all recipients in a wide reply.
6663 (setq follow-to
(list (cons 'To
(cdr (pop recipients
)))))
6664 (when (and recipients
6665 (or (not message-wide-reply-confirm-recipients
)
6666 (y-or-n-p "Reply to all recipients? ")))
6667 (setq recipients
(mapconcat
6668 (lambda (addr) (cdr addr
)) recipients
", "))
6669 (if (string-match "^ +" recipients
)
6670 (setq recipients
(substring recipients
(match-end 0))))
6671 (push (cons 'Cc recipients
) follow-to
)))
6674 (defcustom message-simplify-subject-functions
6675 '(message-strip-list-identifiers
6676 message-strip-subject-re
6677 message-strip-subject-trailing-was
6678 message-strip-subject-encoded-words
)
6679 "List of functions taking a string argument that simplify subjects.
6680 The functions are applied when replying to a message.
6682 Useful functions to put in this list include:
6683 `message-strip-list-identifiers', `message-strip-subject-re',
6684 `message-strip-subject-trailing-was', and
6685 `message-strip-subject-encoded-words'."
6686 :version
"22.1" ;; Gnus 5.10.9
6687 :group
'message-various
6688 :type
'(repeat function
))
6690 (defun message-simplify-subject (subject &optional functions
)
6691 "Return simplified SUBJECT."
6694 (setq functions message-simplify-subject-functions
))
6695 (when (and (memq 'message-strip-list-identifiers functions
)
6696 gnus-list-identifiers
)
6697 (setq subject
(message-strip-list-identifiers subject
)))
6698 (when (memq 'message-strip-subject-re functions
)
6699 (setq subject
(concat "Re: " (message-strip-subject-re subject
))))
6700 (when (and (memq 'message-strip-subject-trailing-was functions
)
6701 message-subject-trailing-was-query
)
6702 (setq subject
(message-strip-subject-trailing-was subject
)))
6703 (when (memq 'message-strip-subject-encoded-words functions
)
6704 (setq subject
(message-strip-subject-encoded-words subject
)))
6708 (defun message-reply (&optional to-address wide
)
6709 "Start editing a reply to the article in the current buffer."
6711 (require 'gnus-sum
) ; for gnus-list-identifiers
6712 (let ((cur (current-buffer))
6713 from subject date reply-to to cc
6714 references message-id follow-to
6715 (inhibit-point-motion-hooks t
)
6716 (message-this-is-mail t
)
6719 (message-narrow-to-head-1)
6720 ;; Allow customizations to have their say.
6722 ;; This is a regular reply.
6723 (when (functionp message-reply-to-function
)
6725 (setq follow-to
(funcall message-reply-to-function
))))
6726 ;; This is a followup.
6727 (when (functionp message-wide-reply-to-function
)
6730 (funcall message-wide-reply-to-function
)))))
6731 (setq message-id
(message-fetch-field "message-id" t
)
6732 references
(message-fetch-field "references")
6733 date
(message-fetch-field "date")
6734 from
(or (message-fetch-field "from") "nobody")
6735 subject
(or (message-fetch-field "subject") "none"))
6737 ;; Strip list identifiers, "Re: ", and "was:"
6738 (setq subject
(message-simplify-subject subject
))
6740 (when (and (setq gnus-warning
(message-fetch-field "gnus-warning"))
6741 (string-match "<[^>]+>" gnus-warning
))
6742 (setq message-id
(match-string 0 gnus-warning
)))
6745 (setq follow-to
(message-get-reply-headers wide to-address
))))
6747 (unless (message-mail-user-agent)
6748 (message-pop-to-buffer
6749 (message-buffer-name
6750 (if wide
"wide reply" "reply") from
6751 (if wide to-address nil
))))
6753 (setq message-reply-headers
6754 (vector 0 subject from date message-id references
0 0 ""))
6757 `((Subject .
,subject
)
6762 (defun message-wide-reply (&optional to-address
)
6763 "Make a \"wide\" reply to the message in the current buffer."
6765 (message-reply to-address t
))
6768 (defun message-followup (&optional to-newsgroups
)
6769 "Follow up to the message in the current buffer.
6770 If TO-NEWSGROUPS, use that as the new Newsgroups line."
6772 (require 'gnus-sum
) ; for gnus-list-identifiers
6773 (let ((cur (current-buffer))
6774 from subject date reply-to mrt mct
6775 references message-id follow-to
6776 (inhibit-point-motion-hooks t
)
6777 (message-this-is-news t
)
6778 followup-to distribution newsgroups gnus-warning posted-to
)
6781 (goto-char (point-min))
6782 (if (search-forward "\n\n" nil t
)
6785 (when (functionp message-followup-to-function
)
6787 (funcall message-followup-to-function
)))
6788 (setq from
(message-fetch-field "from")
6789 date
(message-fetch-field "date")
6790 subject
(or (message-fetch-field "subject") "none")
6791 references
(message-fetch-field "references")
6792 message-id
(message-fetch-field "message-id" t
)
6793 followup-to
(message-fetch-field "followup-to")
6794 newsgroups
(message-fetch-field "newsgroups")
6795 posted-to
(message-fetch-field "posted-to")
6796 reply-to
(message-fetch-field "reply-to")
6797 mrt
(message-fetch-field "mail-reply-to")
6798 distribution
(message-fetch-field "distribution")
6799 mct
(message-fetch-field "mail-copies-to"))
6800 (when (and (setq gnus-warning
(message-fetch-field "gnus-warning"))
6801 (string-match "<[^>]+>" gnus-warning
))
6802 (setq message-id
(match-string 0 gnus-warning
)))
6803 ;; Remove bogus distribution.
6804 (when (and (stringp distribution
)
6805 (let ((case-fold-search t
))
6806 (string-match "world" distribution
)))
6807 (setq distribution nil
))
6808 ;; Strip list identifiers, "Re: ", and "was:"
6809 (setq subject
(message-simplify-subject subject
))
6812 (message-pop-to-buffer (message-buffer-name "followup" from newsgroups
))
6814 (setq message-reply-headers
6815 (vector 0 subject from date message-id references
0 0 ""))
6818 `((Subject .
,subject
)
6821 (list (cons 'Newsgroups to-newsgroups
)))
6822 (follow-to follow-to
)
6823 ((and followup-to message-use-followup-to
)
6826 ((equal (downcase followup-to
) "poster")
6827 (if (or (eq message-use-followup-to
'use
)
6828 (message-y-or-n-p "Obey Followup-To: poster? " t
"\
6829 You should normally obey the Followup-To: header.
6831 `Followup-To: poster' sends your response via e-mail instead of news.
6833 A typical situation where `Followup-To: poster' is used is when the poster
6834 does not read the newsgroup, so he wouldn't see any replies sent to it.
6836 You may customize the variable `message-use-followup-to', if you
6837 want to get rid of this query permanently."))
6839 (setq message-this-is-news nil
)
6840 (cons 'To
(or mrt reply-to from
"")))
6841 (cons 'Newsgroups newsgroups
)))
6843 (if (or (equal followup-to newsgroups
)
6844 (not (eq message-use-followup-to
'ask
))
6846 (concat "Obey Followup-To: " followup-to
"? ") t
"\
6847 You should normally obey the Followup-To: header.
6849 `Followup-To: " followup-to
"'
6850 directs your response to " (if (string-match "," followup-to
)
6851 "the specified newsgroups"
6852 "that newsgroup only") ".
6854 If a message is posted to several newsgroups, Followup-To is often
6855 used to direct the following discussion to one newsgroup only,
6856 because discussions that are spread over several newsgroup tend to
6857 be fragmented and very difficult to follow.
6859 Also, some source/announcement newsgroups are not intended for discussion;
6860 responses here are directed to other newsgroups.
6862 You may customize the variable `message-use-followup-to', if you
6863 want to get rid of this query permanently."))
6864 (cons 'Newsgroups followup-to
)
6865 (cons 'Newsgroups newsgroups
))))))
6867 `((Newsgroups .
,posted-to
)))
6869 `((Newsgroups .
,newsgroups
))))
6870 ,@(and distribution
(list (cons 'Distribution distribution
)))
6872 (not (or (equal (downcase mct
) "never")
6873 (equal (downcase mct
) "nobody"))))
6874 (list (cons 'Cc
(if (or (equal (downcase mct
) "always")
6875 (equal (downcase mct
) "poster"))
6876 (or mrt reply-to from
"")
6881 (defun message-is-yours-p ()
6882 "Non-nil means current article is yours.
6883 If you have added 'cancel-messages to `message-shoot-gnksa-feet', all articles
6884 are yours except those that have Cancel-Lock header not belonging to you.
6885 Instead of shooting GNKSA feet, you should modify `message-alternative-emails'
6886 regexp to match all of yours addresses."
6887 ;; Canlock-logic as suggested by Per Abrahamsen
6888 ;; <abraham@dina.kvl.dk>
6890 ;; IF article has cancel-lock THEN
6891 ;; IF we can verify it THEN
6894 ;; error: cancellock: article is not yours
6896 ;; Use old rules, comparing sender...
6899 (message-narrow-to-head-1)
6900 (if (message-fetch-field "Cancel-Lock")
6901 (if (null (canlock-verify))
6903 (error "Failed to verify Cancel-lock: This article is not yours"))
6906 (message-gnksa-enable-p 'cancel-messages
)
6907 (and (setq sender
(message-fetch-field "sender"))
6908 (string-equal (downcase sender
)
6909 (downcase (message-make-sender))))
6910 ;; Email address in From field equals to our address
6911 (and (setq from
(message-fetch-field "from"))
6913 (downcase (car (mail-header-parse-address from
)))
6914 (downcase (car (mail-header-parse-address
6915 (message-make-from))))))
6916 ;; Email address in From field matches
6917 ;; 'message-alternative-emails' regexp
6919 message-alternative-emails
6921 message-alternative-emails
6922 (car (mail-header-parse-address from
))))))))))
6925 (defun message-cancel-news (&optional arg
)
6926 "Cancel an article you posted.
6927 If ARG, allow editing of the cancellation message."
6929 (unless (message-news-p)
6930 (error "This is not a news article; canceling is impossible"))
6931 (let (from newsgroups message-id distribution buf
)
6933 ;; Get header info from original article.
6935 (message-narrow-to-head-1)
6936 (setq from
(message-fetch-field "from")
6937 newsgroups
(message-fetch-field "newsgroups")
6938 message-id
(message-fetch-field "message-id" t
)
6939 distribution
(message-fetch-field "distribution")))
6940 ;; Make sure that this article was written by the user.
6941 (unless (message-is-yours-p)
6942 (error "This article is not yours"))
6943 (when (yes-or-no-p "Do you really want to cancel this article? ")
6944 ;; Make control message.
6947 (setq buf
(set-buffer (get-buffer-create " *message cancel*"))))
6949 (insert "Newsgroups: " newsgroups
"\n"
6951 "Subject: cmsg cancel " message-id
"\n"
6952 "Control: cancel " message-id
"\n"
6954 (concat "Distribution: " distribution
"\n")
6956 mail-header-separator
"\n"
6957 message-cancel-message
)
6958 (run-hooks 'message-cancel-hook
)
6960 (message "Canceling your article...")
6961 (if (let ((message-syntax-checks
6962 'dont-check-for-anything-just-trust-me
))
6963 (funcall message-send-news-function
))
6964 (message "Canceling your article...done"))
6965 (kill-buffer buf
))))))
6968 (defun message-supersede ()
6969 "Start composing a message to supersede the current message.
6970 This is done simply by taking the old article and adding a Supersedes
6971 header line with the old Message-ID."
6973 (let ((cur (current-buffer)))
6974 ;; Check whether the user owns the article that is to be superseded.
6975 (unless (message-is-yours-p)
6976 (error "This article is not yours"))
6977 ;; Get a normal message buffer.
6978 (message-pop-to-buffer (message-buffer-name "supersede"))
6979 (insert-buffer-substring cur
)
6981 (message-narrow-to-head-1)
6982 ;; Remove unwanted headers.
6983 (when message-ignored-supersedes-headers
6984 (message-remove-header message-ignored-supersedes-headers t
))
6985 (goto-char (point-min))
6986 (if (not (re-search-forward "^Message-ID: " nil t
))
6987 (error "No Message-ID in this article")
6988 (replace-match "Supersedes: " t t
))
6989 (goto-char (point-max))
6990 (insert mail-header-separator
)
6995 (defun message-recover ()
6996 "Reread contents of current buffer from its last auto-save file."
6998 (let ((file-name (make-auto-save-file-name)))
6999 (cond ((save-window-excursion
7000 (with-output-to-temp-buffer "*Directory*"
7001 (with-current-buffer standard-output
7002 (fundamental-mode)) ; for Emacs 20.4+
7003 (buffer-disable-undo standard-output
)
7004 (let ((default-directory "/"))
7006 "ls" nil standard-output nil
"-l" file-name
)))
7007 (yes-or-no-p (format "Recover auto save file %s? " file-name
)))
7008 (let ((buffer-read-only nil
))
7010 (insert-file-contents file-name nil
)))
7011 (t (error "message-recover cancelled")))))
7013 ;;; Washing Subject:
7015 (defun message-wash-subject (subject)
7016 "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
7017 Previous forwarders, replyers, etc. may add it."
7020 (goto-char (point-min))
7021 ;; strip Re/Fwd stuff off the beginning
7022 (while (re-search-forward
7023 "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t
)
7026 ;; and gnus-style forwards [foo@bar.com] subject
7027 (goto-char (point-min))
7028 (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t
)
7032 (goto-char (point-max))
7033 (while (re-search-backward "([Ff][Ww][Dd])" nil t
)
7036 ;; and finally, any whitespace that was left-over
7037 (goto-char (point-min))
7038 (while (re-search-forward "^[ \t]+" nil t
)
7040 (goto-char (point-max))
7041 (while (re-search-backward "[ \t]+$" nil t
)
7046 ;;; Forwarding messages.
7048 (defvar message-forward-decoded-p nil
7049 "Non-nil means the original message is decoded.")
7051 (defun message-forward-subject-name-subject (subject)
7052 "Generate a SUBJECT for a forwarded message.
7053 The form is: [Source] Subject, where if the original message was mail,
7054 Source is the name of the sender, and if the original message was
7055 news, Source is the list of newsgroups is was posted to."
7056 (let* ((group (message-fetch-field "newsgroups"))
7057 (from (message-fetch-field "from"))
7060 (gnus-group-decoded-name group
)
7062 (car (gnus-extract-address-components from
))
7063 (cadr (gnus-extract-address-components from
))))
7066 (if message-forward-decoded-p
7068 (mail-decode-encoded-word-string prefix
))
7071 (defun message-forward-subject-author-subject (subject)
7072 "Generate a SUBJECT for a forwarded message.
7073 The form is: [Source] Subject, where if the original message was mail,
7074 Source is the sender, and if the original message was news, Source is
7075 the list of newsgroups is was posted to."
7076 (let* ((group (message-fetch-field "newsgroups"))
7079 (gnus-group-decoded-name group
)
7080 (or (message-fetch-field "from")
7083 (if message-forward-decoded-p
7085 (mail-decode-encoded-word-string prefix
))
7088 (defun message-forward-subject-fwd (subject)
7089 "Generate a SUBJECT for a forwarded message.
7090 The form is: Fwd: Subject, where Subject is the original subject of
7092 (if (string-match "^Fwd: " subject
)
7094 (concat "Fwd: " subject
)))
7096 (defun message-make-forward-subject ()
7097 "Return a Subject header suitable for the message in the current buffer."
7100 (message-narrow-to-head-1)
7101 (let ((funcs message-make-forward-subject-function
)
7102 (subject (message-fetch-field "Subject")))
7105 (if message-forward-decoded-p
7107 (mail-decode-encoded-word-string subject
))
7109 (when message-wash-forwarded-subjects
7110 (setq subject
(message-wash-subject subject
)))
7111 ;; Make sure funcs is a list.
7114 (setq funcs
(list funcs
)))
7115 ;; Apply funcs in order, passing subject generated by previous
7116 ;; func to the next one.
7117 (dolist (func funcs
)
7118 (when (functionp func
)
7119 (setq subject
(funcall func subject
))))
7122 (defvar gnus-article-decoded-p
)
7126 (defun message-forward (&optional news digest
)
7127 "Forward the current message via mail.
7128 Optional NEWS will use news to forward instead of mail.
7129 Optional DIGEST will use digest to forward."
7131 (let* ((cur (current-buffer))
7132 (message-forward-decoded-p
7133 (if (local-variable-p 'gnus-article-decoded-p
(current-buffer))
7134 gnus-article-decoded-p
;; In an article buffer.
7135 message-forward-decoded-p
))
7136 (subject (message-make-forward-subject)))
7138 (message-news nil subject
)
7139 (message-mail nil subject
))
7140 (message-forward-make-body cur digest
)))
7142 (defun message-forward-make-body-plain (forward-buffer)
7144 "\n-------------------- Start of forwarded message --------------------\n")
7145 (let ((b (point)) e
)
7148 (mm-disable-multibyte)
7150 (with-current-buffer forward-buffer
7151 (mm-with-unibyte-current-buffer (buffer-string))))
7152 (mm-enable-multibyte)
7154 (goto-char (point-min))
7155 (when (looking-at "From ")
7156 (replace-match "X-From-Line: "))
7160 "\n-------------------- End of forwarded message --------------------\n")
7161 (message-remove-ignored-headers b e
)))
7163 (defun message-remove-ignored-headers (b e
)
7164 (when message-forward-ignored-headers
7166 (narrow-to-region b e
)
7168 (narrow-to-region (point)
7169 (or (search-forward "\n\n" nil t
) (point)))
7170 (let ((ignored (if (stringp message-forward-ignored-headers
)
7171 (list message-forward-ignored-headers
)
7172 message-forward-ignored-headers
)))
7173 (dolist (elem ignored
)
7174 (message-remove-header elem t
))))))
7176 (defun message-forward-make-body-mime (forward-buffer)
7178 (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n")
7180 (narrow-to-region (point) (point))
7181 (mml-insert-buffer forward-buffer
)
7182 (goto-char (point-min))
7183 (when (looking-at "From ")
7184 (replace-match "X-From-Line: "))
7185 (goto-char (point-max)))
7186 (insert "<#/part>\n")
7187 ;; Consider there is no illegible text.
7188 (add-text-properties
7190 `(no-illegible-text t rear-nonsticky t start-open t
))))
7192 (defun message-forward-make-body-mml (forward-buffer)
7193 (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
7194 (let ((b (point)) e
)
7195 (if (not message-forward-decoded-p
)
7198 (mm-disable-multibyte)
7200 (with-current-buffer forward-buffer
7201 (mm-with-unibyte-current-buffer (buffer-string))))
7202 (mm-enable-multibyte)
7204 (goto-char (point-min))
7205 (when (looking-at "From ")
7206 (replace-match "X-From-Line: "))
7209 (narrow-to-region (point) (point))
7210 (mml-insert-buffer forward-buffer
)
7211 (goto-char (point-min))
7212 (when (looking-at "From ")
7213 (replace-match "X-From-Line: "))
7214 (goto-char (point-max))))
7216 (insert "<#/mml>\n")
7217 (when (and (not message-forward-decoded-p
)
7218 message-forward-ignored-headers
)
7219 (message-remove-ignored-headers b e
))))
7221 (defun message-forward-make-body-digest-plain (forward-buffer)
7223 "\n-------------------- Start of forwarded message --------------------\n")
7224 (let ((b (point)) e
)
7225 (mml-insert-buffer forward-buffer
)
7228 "\n-------------------- End of forwarded message --------------------\n")))
7230 (defun message-forward-make-body-digest-mime (forward-buffer)
7231 (insert "\n<#multipart type=digest>\n")
7232 (let ((b (point)) e
)
7233 (insert-buffer-substring forward-buffer
)
7235 (insert "<#/multipart>\n")
7237 (narrow-to-region b e
)
7239 (narrow-to-region (point)
7240 (or (search-forward "\n\n" nil t
) (point)))
7241 (delete-region (point-min) (point-max)))))
7243 (defun message-forward-make-body-digest (forward-buffer)
7244 (if message-forward-as-mime
7245 (message-forward-make-body-digest-mime forward-buffer
)
7246 (message-forward-make-body-digest-plain forward-buffer
)))
7248 (autoload 'mm-uu-dissect-text-parts
"mm-uu")
7249 (autoload 'mm-uu-dissect
"mm-uu")
7251 (defun message-signed-or-encrypted-p (&optional dont-emulate-mime handles
)
7252 "Say whether the current buffer contains signed or encrypted message.
7253 If DONT-EMULATE-MIME is nil, this function does the MIME emulation on
7254 messages that don't conform to PGP/MIME described in RFC2015. HANDLES
7255 is for the internal use."
7257 (let ((mm-decrypt-option 'never
)
7258 (mm-verify-option 'never
))
7259 (if (setq handles
(mm-dissect-buffer nil t
))
7260 (unless dont-emulate-mime
7261 (mm-uu-dissect-text-parts handles
))
7262 (unless dont-emulate-mime
7263 (setq handles
(mm-uu-dissect))))))
7264 ;; Check text/plain message in which there is a signed or encrypted
7265 ;; body that has been encoded by B or Q.
7266 (unless (or handles dont-emulate-mime
)
7267 (let ((cur (current-buffer))
7268 (mm-decrypt-option 'never
)
7269 (mm-verify-option 'never
))
7271 (insert-buffer-substring cur
)
7272 (when (setq handles
(mm-dissect-buffer t t
))
7274 (bufferp (car handles
))
7275 (mm-destroy-parts handles
))
7276 (equal (mm-handle-media-type handles
) "text/plain"))
7278 (mm-decode-content-transfer-encoding
7279 (mm-handle-encoding handles
))
7280 (setq handles
(mm-uu-dissect)))
7281 (setq handles nil
))))))
7285 (dolist (handle (if (stringp (car handles
))
7286 (if (member (car handles
)
7287 '("multipart/signed"
7288 "multipart/encrypted"))
7292 (if (stringp (car handle
))
7293 (when (message-signed-or-encrypted-p dont-emulate-mime handle
)
7295 (when (and (bufferp (car handle
))
7296 (equal (mm-handle-media-type handle
)
7298 (with-current-buffer (mm-handle-buffer handle
)
7299 (when (message-signed-or-encrypted-p dont-emulate-mime
)
7300 (throw 'found t
)))))))
7301 (mm-destroy-parts handles
))))
7304 (defun message-forward-make-body (forward-buffer &optional digest
)
7305 ;; Put point where we want it before inserting the forwarded
7307 (if message-forward-before-signature
7309 (goto-char (point-max)))
7311 (message-forward-make-body-digest forward-buffer
)
7312 (if message-forward-as-mime
7313 (if (and message-forward-show-mml
7314 (not (and (eq message-forward-show-mml
'best
)
7315 ;; Use the raw form in the body if it contains
7316 ;; signed or encrypted message so as not to be
7317 ;; destroyed by re-encoding.
7318 (with-current-buffer forward-buffer
7320 (message-signed-or-encrypted-p)
7322 (message-forward-make-body-mml forward-buffer
)
7323 (message-forward-make-body-mime forward-buffer
))
7324 (message-forward-make-body-plain forward-buffer
)))
7325 (message-position-point))
7327 (declare-function rmail-toggle-header
"rmail" (&optional arg
))
7330 (defun message-forward-rmail-make-body (forward-buffer)
7331 (save-window-excursion
7332 (set-buffer forward-buffer
)
7333 (if (rmail-msg-is-pruned)
7334 (if (fboundp 'rmail-msg-restore-non-pruned-header
)
7335 (rmail-msg-restore-non-pruned-header) ; Emacs 22
7336 (rmail-toggle-header 0)))) ; Emacs 23
7337 (message-forward-make-body forward-buffer
))
7339 ;; Fixme: Should have defcustom.
7341 (defun message-insinuate-rmail ()
7342 "Let RMAIL use message to forward."
7344 (setq rmail-enable-mime-composing t
)
7345 (setq rmail-insert-mime-forwarded-message-function
7346 'message-forward-rmail-make-body
))
7349 (defun message-resend (address)
7350 "Resend the current article to ADDRESS."
7352 (list (message-read-from-minibuffer "Resend message to: ")))
7353 (message "Resending message to %s..." address
)
7355 (let ((cur (current-buffer))
7357 ;; We first set up a normal mail buffer.
7358 (unless (message-mail-user-agent)
7359 (set-buffer (get-buffer-create " *message resend*"))
7361 (let ((message-this-is-mail t
)
7362 message-generate-hashcash
7364 (message-setup `((To .
,address
))))
7365 ;; Insert our usual headers.
7366 (message-generate-headers '(From Date To Message-ID
))
7367 (message-narrow-to-headers)
7368 ;; Remove X-Draft-From header etc.
7369 (message-remove-header message-ignored-mail-headers t
)
7370 ;; Rename them all to "Resent-*".
7371 (goto-char (point-min))
7372 (while (re-search-forward "^[A-Za-z]" nil t
)
7377 (delete-region (point) (point-max))
7379 ;; Insert the message to be resent.
7380 (insert-buffer-substring cur
)
7381 (goto-char (point-min))
7382 (search-forward "\n\n")
7385 (narrow-to-region beg
(point))
7386 (message-remove-header message-ignored-resent-headers t
)
7387 (goto-char (point-max)))
7388 (insert mail-header-separator
)
7389 ;; Rename all old ("Also-")Resent headers.
7390 (while (re-search-backward "^\\(Also-\\)*Resent-" beg t
)
7393 ;; Quote any "From " lines at the beginning.
7395 (when (looking-at "From ")
7396 (replace-match "X-From-Line: "))
7398 (let ((message-inhibit-body-encoding t
)
7399 message-required-mail-headers
7400 message-generate-hashcash
7401 rfc2047-encode-encoded-words
)
7402 (message-send-mail))
7403 (kill-buffer (current-buffer)))
7404 (message "Resending message to %s...done" address
)))
7407 (defun message-bounce ()
7408 "Re-mail the current message.
7409 This only makes sense if the current message is a bounce message that
7410 contains some mail you have written which has been bounced back to
7413 (let ((handles (mm-dissect-buffer t
))
7415 (message-pop-to-buffer (message-buffer-name "bounce"))
7416 (if (stringp (car handles
))
7417 ;; This is a MIME bounce.
7418 (mm-insert-part (car (last handles
)))
7419 ;; This is a non-MIME bounce, so we try to remove things
7421 (mm-insert-part handles
)
7423 (goto-char (point-min))
7424 (re-search-forward "\n\n+" nil t
)
7425 (setq boundary
(point))
7426 ;; We remove everything before the bounced mail.
7427 (if (or (re-search-forward message-unsent-separator nil t
)
7429 (search-forward "\n\n" nil
'move
)
7430 (re-search-backward "^Return-Path:.*\n" boundary t
)))
7433 (delete-region (point-min)
7434 (if (re-search-forward "^[^ \n\t]+:" nil t
)
7437 (goto-char boundary
)
7438 (when (re-search-backward "^.?From .*\n" nil t
)
7439 (delete-region (match-beginning 0) (match-end 0)))))
7442 (message-narrow-to-head-1)
7443 (message-remove-header message-ignored-bounced-headers t
)
7444 (goto-char (point-max))
7445 (insert mail-header-separator
))
7446 (message-position-point)))
7449 ;;; Interactive entry points for new message buffers.
7453 (defun message-mail-other-window (&optional to subject
)
7454 "Like `message-mail' command, but display mail buffer in another window."
7456 (unless (message-mail-user-agent)
7457 (let ((pop-up-windows t
)
7458 (special-display-buffer-names nil
)
7459 (special-display-regexps nil
)
7460 (same-window-buffer-names nil
)
7461 (same-window-regexps nil
))
7462 (message-pop-to-buffer (message-buffer-name "mail" to
))))
7463 (let ((message-this-is-mail t
))
7464 (message-setup `((To .
,(or to
"")) (Subject .
,(or subject
"")))
7465 nil nil nil
'switch-to-buffer-other-window
)))
7468 (defun message-mail-other-frame (&optional to subject
)
7469 "Like `message-mail' command, but display mail buffer in another frame."
7471 (unless (message-mail-user-agent)
7472 (let ((pop-up-frames t
)
7473 (special-display-buffer-names nil
)
7474 (special-display-regexps nil
)
7475 (same-window-buffer-names nil
)
7476 (same-window-regexps nil
))
7477 (message-pop-to-buffer (message-buffer-name "mail" to
))))
7478 (let ((message-this-is-mail t
))
7479 (message-setup `((To .
,(or to
"")) (Subject .
,(or subject
"")))
7480 nil nil nil
'switch-to-buffer-other-frame
)))
7483 (defun message-news-other-window (&optional newsgroups subject
)
7484 "Start editing a news article to be sent."
7486 (let ((pop-up-windows t
)
7487 (special-display-buffer-names nil
)
7488 (special-display-regexps nil
)
7489 (same-window-buffer-names nil
)
7490 (same-window-regexps nil
))
7491 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
)))
7492 (let ((message-this-is-news t
))
7493 (message-setup `((Newsgroups .
,(or newsgroups
""))
7494 (Subject .
,(or subject
""))))))
7497 (defun message-news-other-frame (&optional newsgroups subject
)
7498 "Start editing a news article to be sent."
7500 (let ((pop-up-frames t
)
7501 (special-display-buffer-names nil
)
7502 (special-display-regexps nil
)
7503 (same-window-buffer-names nil
)
7504 (same-window-regexps nil
))
7505 (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups
)))
7506 (let ((message-this-is-news t
))
7507 (message-setup `((Newsgroups .
,(or newsgroups
""))
7508 (Subject .
,(or subject
""))))))
7512 ;; This code should be moved to underline.el (from which it is stolen).
7515 (defun message-bold-region (start end
)
7516 "Bold all nonblank characters in the region.
7517 Works by overstriking characters.
7518 Called from program, takes two arguments START and END
7519 which specify the range to operate on."
7522 (let ((end1 (make-marker)))
7523 (move-marker end1
(max start end
))
7524 (goto-char (min start end
))
7525 (while (< (point) end1
)
7526 (or (looking-at "[_\^@- ]")
7527 (insert (char-after) "\b"))
7528 (forward-char 1)))))
7531 (defun message-unbold-region (start end
)
7532 "Remove all boldness (overstruck characters) in the region.
7533 Called from program, takes two arguments START and END
7534 which specify the range to operate on."
7537 (let ((end1 (make-marker)))
7538 (move-marker end1
(max start end
))
7539 (goto-char (min start end
))
7540 (while (search-forward "\b" end1 t
)
7541 (if (eq (char-after) (char-after (- (point) 2)))
7542 (delete-char -
2))))))
7544 (defun message-exchange-point-and-mark ()
7545 "Exchange point and mark, but don't activate region if it was inactive."
7546 (goto-char (prog1 (mark t
)
7547 (set-marker (mark-marker) (point)))))
7549 (defalias 'message-make-overlay
'make-overlay
)
7550 (defalias 'message-delete-overlay
'delete-overlay
)
7551 (defalias 'message-overlay-put
'overlay-put
)
7552 (defun message-kill-all-overlays ()
7553 (if (featurep 'xemacs
)
7554 (map-extents (lambda (extent ignore
) (delete-extent extent
)))
7555 (mapcar #'delete-overlay
(overlays-in (point-min) (point-max)))))
7557 ;; Support for toolbar
7558 (defvar tool-bar-mode
)
7560 ;; Note: The :set function in the `message-tool-bar*' variables will only
7561 ;; affect _new_ message buffers. We might add a function that walks thru all
7562 ;; message-mode buffers and force the update.
7563 (defun message-tool-bar-update (&optional symbol value
)
7564 "Update message mode toolbar.
7565 Setter function for custom variables."
7566 (setq-default message-tool-bar-map nil
)
7568 ;; When used as ":set" function:
7569 (set-default symbol value
)))
7571 (defcustom message-tool-bar
(if (eq gmm-tool-bar-style
'gnome
)
7572 'message-tool-bar-gnome
7573 'message-tool-bar-retro
)
7574 "Specifies the message mode tool bar.
7576 It can be either a list or a symbol refering to a list. See
7577 `gmm-tool-bar-from-list' for the format of the list. The
7578 default key map is `message-mode-map'.
7580 Pre-defined symbols include `message-tool-bar-gnome' and
7581 `message-tool-bar-retro'."
7582 :type
'(repeat gmm-tool-bar-list-item
)
7583 :type
'(choice (const :tag
"GNOME style" message-tool-bar-gnome
)
7584 (const :tag
"Retro look" message-tool-bar-retro
)
7585 (repeat :tag
"User defined list" gmm-tool-bar-item
)
7587 :version
"23.1" ;; No Gnus
7588 :initialize
'custom-initialize-default
7589 :set
'message-tool-bar-update
7592 (defcustom message-tool-bar-gnome
7593 '((ispell-message "spell" nil
7594 :visible
(or (not (boundp 'flyspell-mode
))
7595 (not flyspell-mode
)))
7596 (flyspell-buffer "spell" t
7597 :visible
(and (boundp 'flyspell-mode
)
7599 :help
"Flyspell whole buffer")
7600 (gmm-ignore "separator")
7601 (message-send-and-exit "mail/send")
7602 (message-dont-send "mail/save-draft")
7603 (message-kill-buffer "close") ;; stock_cancel
7604 (mml-attach-file "attach" mml-mode-map
)
7605 (mml-preview "mail/preview" mml-mode-map
)
7606 (mml-secure-message-sign-encrypt "lock" mml-mode-map
:visible nil
)
7607 (message-insert-importance-high "important" nil
:visible nil
)
7608 (message-insert-importance-low "unimportant" nil
:visible nil
)
7609 (message-insert-disposition-notification-to "receipt" nil
:visible nil
)
7610 (gmm-customize-mode "preferences" t
:help
"Edit mode preferences")
7611 (message-info "help" t
:help
"Message manual"))
7612 "List of items for the message tool bar (GNOME style).
7614 See `gmm-tool-bar-from-list' for details on the format of the list."
7615 :type
'(repeat gmm-tool-bar-item
)
7616 :version
"23.1" ;; No Gnus
7617 :initialize
'custom-initialize-default
7618 :set
'message-tool-bar-update
7621 (defcustom message-tool-bar-retro
7622 '(;; Old Emacs 21 icon for consistency.
7623 (message-send-and-exit "gnus/mail-send")
7624 (message-kill-buffer "close")
7625 (message-dont-send "cancel")
7626 (mml-attach-file "attach" mml-mode-map
)
7627 (ispell-message "spell")
7628 (mml-preview "preview" mml-mode-map
)
7629 (message-insert-importance-high "gnus/important")
7630 (message-insert-importance-low "gnus/unimportant")
7631 (message-insert-disposition-notification-to "gnus/receipt"))
7632 "List of items for the message tool bar (retro style).
7634 See `gmm-tool-bar-from-list' for details on the format of the list."
7635 :type
'(repeat gmm-tool-bar-item
)
7636 :version
"23.1" ;; No Gnus
7637 :initialize
'custom-initialize-default
7638 :set
'message-tool-bar-update
7641 (defcustom message-tool-bar-zap-list
7642 '(new-file open-file dired kill-buffer write-file
7643 print-buffer customize help
)
7644 "List of icon items from the global tool bar.
7645 These items are not displayed on the message mode tool bar.
7647 See `gmm-tool-bar-from-list' for the format of the list."
7648 :type
'gmm-tool-bar-zap-list
7649 :version
"23.1" ;; No Gnus
7650 :initialize
'custom-initialize-default
7651 :set
'message-tool-bar-update
7654 (defvar image-load-path
)
7656 (defun message-make-tool-bar (&optional force
)
7657 "Make a message mode tool bar from `message-tool-bar-list'.
7658 When FORCE, rebuild the tool bar."
7659 (when (and (not (featurep 'xemacs
))
7660 (boundp 'tool-bar-mode
)
7662 (or (not message-tool-bar-map
) force
))
7663 (setq message-tool-bar-map
7665 (gmm-image-load-path-for-library "message"
7666 "mail/save-draft.xpm"
7668 (image-load-path (cons (car load-path
)
7669 (when (boundp 'image-load-path
)
7671 (gmm-tool-bar-from-list message-tool-bar
7672 message-tool-bar-zap-list
7673 'message-mode-map
))))
7674 message-tool-bar-map
)
7676 ;;; Group name completion.
7678 (defcustom message-newgroups-header-regexp
7679 "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
7680 "Regexp that match headers that lists groups."
7684 (defcustom message-completion-alist
7685 (list (cons message-newgroups-header-regexp
'message-expand-group
)
7686 '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name
)
7687 '("^\\(Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):"
7688 . message-expand-name
)
7689 '("^\\(Disposition-Notification-To\\|Return-Receipt-To\\):"
7690 . message-expand-name
))
7691 "Alist of (RE . FUN). Use FUN for completion on header lines matching RE."
7694 :type
'(alist :key-type regexp
:value-type function
))
7696 (defcustom message-expand-name-databases
7698 "List of databases to try for name completion (`message-expand-name').
7699 Each element is a symbol and can be `bbdb' or `eudc'."
7701 :type
'(set (const bbdb
) (const eudc
)))
7703 (defcustom message-tab-body-function nil
7704 "*Function to execute when `message-tab' (TAB) is executed in the body.
7705 If nil, the function bound in `text-mode-map' or `global-map' is executed."
7708 :link
'(custom-manual "(message)Various Commands")
7709 :type
'(choice (const nil
)
7712 (declare-function mail-abbrev-in-expansion-header-p
"mailabbrev" ())
7714 (defun message-tab ()
7715 "Complete names according to `message-completion-alist'.
7716 Execute function specified by `message-tab-body-function' when not in
7719 (let ((alist message-completion-alist
))
7721 (let ((mail-abbrev-mode-regexp (caar alist
)))
7722 (not (mail-abbrev-in-expansion-header-p))))
7723 (setq alist
(cdr alist
)))
7724 (funcall (or (cdar alist
) message-tab-body-function
7725 (lookup-key text-mode-map
"\t")
7726 (lookup-key global-map
"\t")
7727 'indent-relative
))))
7732 (let ((standard-output (current-buffer)))
7733 (eval '(display-completion-list nil
"")))
7734 (defalias 'message-display-completion-list
'display-completion-list
))
7735 (error ;; Don't use `wrong-number-of-arguments' here because of XEmacs.
7736 (defun message-display-completion-list (completions &optional ignore
)
7737 "Display the list of completions, COMPLETIONS, using `standard-output'."
7738 (display-completion-list completions
)))))
7740 (defun message-expand-group ()
7741 "Expand the group name under point."
7742 (let* ((b (save-excursion
7747 (skip-chars-forward "^:")
7750 (skip-chars-backward "^, \t\n") (point))))
7751 (completion-ignore-case t
)
7752 (e (progn (skip-chars-forward "^,\t\n ") (point)))
7753 (hashtb (and (boundp 'gnus-active-hashtb
) gnus-active-hashtb
)))
7754 (message-completion-in-region e b hashtb
)))
7756 (defalias 'message-completion-in-region
7757 (if (fboundp 'completion-in-region
)
7758 'completion-in-region
7759 (lambda (e b hashtb
)
7760 (let* ((string (buffer-substring b e
))
7761 (completions (all-completions string hashtb
))
7763 (delete-region b
(point))
7765 ((= (length completions
) 1)
7766 (if (string= (car completions
) string
)
7769 (message "Only matching group"))
7770 (insert (car completions
))))
7771 ((and (setq comp
(try-completion string hashtb
))
7772 (not (string= comp string
)))
7777 (message "No matching groups")
7778 (save-selected-window
7779 (pop-to-buffer "*Completions*")
7780 (buffer-disable-undo)
7781 (let ((buffer-read-only nil
))
7783 (let ((standard-output (current-buffer)))
7784 (message-display-completion-list (sort completions
'string
<)
7786 (setq buffer-read-only nil
)
7787 (goto-char (point-min))
7788 (delete-region (point)
7789 (progn (forward-line 3) (point))))))))))))
7791 (defun message-expand-name ()
7792 (cond ((and (memq 'eudc message-expand-name-databases
)
7793 (boundp 'eudc-protocol
)
7795 (eudc-expand-inline))
7796 ((and (memq 'bbdb message-expand-name-databases
)
7797 (fboundp 'bbdb-complete-name
))
7798 (bbdb-complete-name))
7804 (defun message-talkative-question (ask question show
&rest text
)
7805 "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
7806 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
7807 The following arguments may contain lists of values."
7809 (setq text
(message-flatten-list text
)))
7810 (save-window-excursion
7811 (with-output-to-temp-buffer " *MESSAGE information message*"
7812 (with-current-buffer " *MESSAGE information message*"
7813 (fundamental-mode) ; for Emacs 20.4+
7815 (goto-char (point-min))))
7816 (funcall ask question
))
7817 (funcall ask question
)))
7819 (defun message-flatten-list (list)
7820 "Return a new, flat list that contains all elements of LIST.
7822 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
7825 (apply 'append
(mapcar 'message-flatten-list list
)))
7829 (defun message-generate-new-buffer-clone-locals (name &optional varstr
)
7830 "Create and return a buffer with name based on NAME using `generate-new-buffer'.
7831 Then clone the local variables and values from the old buffer to the
7832 new one, cloning only the locals having a substring matching the
7834 (let ((oldbuf (current-buffer)))
7835 (with-current-buffer (generate-new-buffer name
)
7836 (message-clone-locals oldbuf varstr
)
7839 (defun message-clone-locals (buffer &optional varstr
)
7840 "Clone the local variables from BUFFER to the current buffer."
7841 (let ((locals (with-current-buffer buffer
(buffer-local-variables)))
7842 (regexp "^gnus\\|^nn\\|^message\\|^sendmail\\|^smtp\\|^user-mail-address"))
7845 (when (and (consp local
)
7847 (string-match regexp
(symbol-name (car local
)))
7849 (string-match varstr
(symbol-name (car local
)))))
7851 (set (make-local-variable (car local
))
7859 (defvar message-inhibit-body-encoding nil
)
7861 (defun message-encode-message-body ()
7862 (unless message-inhibit-body-encoding
7863 (let ((mail-parse-charset (or mail-parse-charset
7864 message-default-charset
))
7865 (case-fold-search t
)
7866 lines content-type-p
)
7869 (narrow-to-region (point) (point-max))
7870 (let ((new (mml-generate-mime)))
7872 (delete-region (point-min) (point-max))
7874 (goto-char (point-min))
7875 (if (eq (aref new
0) ?
\n)
7877 (search-forward "\n\n")
7878 (setq lines
(buffer-substring (point-min) (1- (point))))
7879 (delete-region (point-min) (point))))))
7881 (message-narrow-to-headers-or-head)
7882 (message-remove-header "Mime-Version")
7883 (goto-char (point-max))
7884 (insert "MIME-Version: 1.0\n")
7887 (setq content-type-p
7889 (re-search-backward "^Content-Type:" nil t
))))
7891 (message-narrow-to-headers-or-head)
7892 (message-remove-first-header "Content-Type")
7893 (message-remove-first-header "Content-Transfer-Encoding"))
7894 ;; We always make sure that the message has a Content-Type
7895 ;; header. This is because some broken MTAs and MUAs get
7896 ;; awfully confused when confronted with a message with a
7897 ;; MIME-Version header and without a Content-Type header. For
7898 ;; instance, Solaris' /usr/bin/mail.
7899 (unless content-type-p
7900 (goto-char (point-min))
7901 ;; For unknown reason, MIME-Version doesn't exist.
7902 (when (re-search-forward "^MIME-Version:" nil t
)
7904 (insert "Content-Type: text/plain; charset=us-ascii\n"))))))
7906 (defun message-read-from-minibuffer (prompt &optional initial-contents
)
7907 "Read from the minibuffer while providing abbrev expansion."
7908 (if (fboundp 'mail-abbrevs-setup
)
7909 (let ((mail-abbrev-mode-regexp "")
7910 (minibuffer-setup-hook 'mail-abbrevs-setup
)
7911 (minibuffer-local-map message-minibuffer-local-map
))
7912 (read-from-minibuffer prompt initial-contents
))
7913 (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook
)
7914 (minibuffer-local-map message-minibuffer-local-map
))
7915 (read-string prompt initial-contents
))))
7917 (defun message-use-alternative-email-as-from ()
7918 "Set From field of the outgoing message to the first matching
7919 address in `message-alternative-emails', looking at To, Cc and
7920 From headers in the original article."
7921 (require 'mail-utils
)
7922 (let* ((fields '("To" "Cc" "From"))
7925 (mail-strip-quoted-names
7926 (mapconcat 'message-fetch-reply-field fields
","))
7930 (if (string-match message-alternative-emails
(car emails
))
7931 (setq email
(car emails
)
7934 (unless (or (not email
) (equal email user-mail-address
))
7935 (message-remove-header "From")
7936 (goto-char (point-max))
7937 (insert "From: " (let ((user-mail-address email
)) (message-make-from))
7940 (defun message-options-get (symbol)
7941 (cdr (assq symbol message-options
)))
7943 (defun message-options-set (symbol value
)
7944 (let ((the-cons (assq symbol message-options
)))
7947 (setcdr the-cons value
)
7948 (setq message-options
(delq the-cons message-options
)))
7950 (push (cons symbol value
) message-options
))))
7953 (defun message-options-set-recipient ()
7955 (message-narrow-to-headers-or-head)
7956 (message-options-set 'message-sender
7957 (mail-strip-quoted-names
7958 (message-fetch-field "from")))
7959 (message-options-set 'message-recipients
7960 (mail-strip-quoted-names
7961 (let ((to (message-fetch-field "to"))
7962 (cc (message-fetch-field "cc"))
7963 (bcc (message-fetch-field "bcc")))
7966 (if (and to cc
) ", ")
7968 (if (and (or to cc
) bcc
) ", ")
7971 (defun message-hide-headers ()
7972 "Hide headers based on the `message-hidden-headers' variable."
7973 (let ((regexps (if (stringp message-hidden-headers
)
7974 (list message-hidden-headers
)
7975 message-hidden-headers
))
7976 (inhibit-point-motion-hooks t
)
7977 (after-change-functions nil
)
7978 (end-of-headers (point-min)))
7982 (message-narrow-to-headers)
7983 (goto-char (point-min))
7985 (if (not (message-hide-header-p regexps
))
7986 (message-next-header)
7987 (let ((begin (point))
7989 (message-next-header)
7990 (setq header
(buffer-substring begin
(point))
7991 header-len
(- (point) begin
))
7992 (delete-region begin
(point))
7993 (goto-char end-of-headers
)
7995 (setq end-of-headers
7996 (+ end-of-headers header-len
))))))))
7997 (narrow-to-region end-of-headers
(point-max))))
7999 (defun message-hide-header-p (regexps)
8002 (when (eq (car regexps
) 'not
)
8005 (dolist (regexp regexps
)
8006 (setq result
(or result
(looking-at regexp
))))
8011 (defun message-put-addresses-in-ecomplete ()
8012 (dolist (header '("to" "cc" "from" "reply-to"))
8013 (let ((value (message-field-value header
)))
8014 (dolist (string (mail-header-parse-addresses value
'raw
))
8016 (gnus-replace-in-string
8017 (gnus-replace-in-string string
"^ +\\| +$" "") "\n" ""))
8018 (ecomplete-add-item 'mail
(car (mail-header-parse-address string
))
8022 (defun message-display-abbrev (&optional choose
)
8023 "Display the next possible abbrev for the text before point."
8024 (interactive (list t
))
8025 (when (and (memq (char-after (point-at-bol)) '(?C ?T ?
\t ?
))
8026 (message-point-in-header-p)
8029 (while (and (memq (char-after) '(?
\t ?
))
8030 (zerop (forward-line -
1))))
8031 (looking-at "To:\\|Cc:")))
8032 (let* ((end (point))
8033 (start (save-excursion
8034 (and (re-search-backward "[\n\t ]" nil t
)
8036 (word (when start
(buffer-substring start end
)))
8037 (match (when (and word
8038 (not (zerop (length word
))))
8039 (ecomplete-display-matches 'mail word choose
))))
8040 (when (and choose match
)
8041 (delete-region start end
)
8044 ;; To send pre-formatted letters like the example below, you can use
8045 ;; `message-send-form-letter':
8046 ;; --8<---------------cut here---------------start------------->8---
8047 ;; To: alice@invalid.invalid
8048 ;; Subject: Verification of your contact information
8049 ;; From: Contact verification <admin@foo.invalid>
8050 ;; --text follows this line--
8052 ;; please verify that your contact information is still valid:
8053 ;; Alice A, A avenue 11, 1111 A town, Austria
8054 ;; ----------next form letter message follows this line----------
8055 ;; To: bob@invalid.invalid
8056 ;; Subject: Verification of your contact information
8057 ;; From: Contact verification <admin@foo.invalid>
8058 ;; --text follows this line--
8060 ;; please verify that your contact information is still valid:
8061 ;; Bob, B street 22, 22222 Be town, Belgium
8062 ;; ----------next form letter message follows this line----------
8063 ;; To: charlie@invalid.invalid
8064 ;; Subject: Verification of your contact information
8065 ;; From: Contact verification <admin@foo.invalid>
8066 ;; --text follows this line--
8068 ;; please verify that your contact information is still valid:
8069 ;; Charlie Chaplin, C plaza 33, 33333 C town, Chile
8070 ;; --8<---------------cut here---------------end--------------->8---
8072 ;; FIXME: What is the most common term (circular letter, form letter, serial
8073 ;; letter, standard letter) for such kind of letter? See also
8074 ;; <http://en.wikipedia.org/wiki/Form_letter>
8076 ;; FIXME: Maybe extent message-mode's font-lock support to recognize
8077 ;; `message-form-letter-separator', i.e. highlight each message like a single
8080 (defcustom message-form-letter-separator
8081 "\n----------next form letter message follows this line----------\n"
8082 "Separator for `message-send-form-letter'."
8083 ;; :group 'message-form-letter
8084 :group
'message-various
8085 :version
"23.1" ;; No Gnus
8088 (defcustom message-send-form-letter-delay
1
8089 "Delay in seconds when sending a message with `message-send-form-letter'.
8090 Only used when `message-send-form-letter' is called with non-nil
8092 ;; :group 'message-form-letter
8093 :group
'message-various
8094 :version
"23.1" ;; No Gnus
8097 (defun message-send-form-letter (&optional force
)
8098 "Sent all form letter messages from current buffer.
8099 Unless FORCE, prompt before sending.
8101 The messages are separated by `message-form-letter-separator'.
8102 Header and body are separated by `mail-header-separator'."
8104 (let ((sent 0) (skipped 0)
8108 (goto-char (point-min))
8111 end
(if (search-forward message-form-letter-separator nil t
)
8112 (- (point) (length message-form-letter-separator
) -
1)
8116 (buffer-substring-no-properties start end
))
8117 (setq buff
(generate-new-buffer "*mail - form letter*"))
8118 (with-current-buffer buff
8121 (setq to
(message-fetch-field "To"))
8122 (switch-to-buffer buff
)
8124 (sit-for message-send-form-letter-delay
))
8126 (y-or-n-p (format "Send message to `%s'? " to
)))
8128 (setq sent
(1+ sent
))
8129 (message-send-and-exit))
8130 (message (format "Message to `%s' skipped." to
))
8131 (setq skipped
(1+ skipped
)))
8132 (when (buffer-live-p buff
)
8133 (kill-buffer buff
))))
8134 (message "%s message(s) sent, %s skipped." sent skipped
)))
8136 (defun message-replace-header (header new-value
&optional after force
)
8137 "Remove HEADER and insert the NEW-VALUE.
8138 If AFTER, insert after this header. If FORCE, insert new field
8139 even if NEW-VALUE is empty."
8140 ;; Similar to `nnheader-replace-header' but for message buffers.
8143 (message-narrow-to-headers)
8144 (message-remove-header header
))
8145 (when (or force
(> (length new-value
) 0))
8147 (message-position-on-field header after
)
8148 (message-position-on-field header
))
8149 (insert new-value
))))
8151 (defcustom message-recipients-without-full-name
8152 (list "ding@gnus.org"
8154 "emacs-devel@gnu.org"
8155 "emacs-pretest-bug@gnu.org"
8156 "bug-gnu-emacs@gnu.org")
8157 "Mail addresses that have no full name.
8158 Used in `message-simplify-recipients'."
8159 ;; Maybe the addresses could be extracted from
8160 ;; `gnus-parameter-to-list-alist'?
8161 :type
'(choice (const :tag
"None" nil
)
8163 :version
"23.1" ;; No Gnus
8164 :group
'message-headers
)
8166 (defun message-simplify-recipients ()
8168 (dolist (hdr '("Cc" "To"))
8169 (message-replace-header
8173 (if (and message-recipients-without-full-name
8175 (regexp-opt message-recipients-without-full-name
)
8179 (message-make-from (car addrcomp
) (cadr addrcomp
))
8181 (when (message-fetch-field hdr
)
8182 (mail-extract-address-components
8183 (message-fetch-field hdr
) t
))
8186 (when (featurep 'xemacs
)
8187 (require 'messagexmas
)
8188 (message-xmas-redefine))
8192 (run-hooks 'message-load-hook
)
8195 ;; coding: iso-8859-1
8198 ;; arch-tag: 94b32cac-4504-4b6c-8181-030ebf380ee0
8199 ;;; message.el ends here