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