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