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