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