(message-tool-bar-map): Add preview.
[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     (message-fetch-field header)))
1524
1525 (defun message-set-work-buffer ()
1526   (if (get-buffer " *message work*")
1527       (progn
1528         (set-buffer " *message work*")
1529         (erase-buffer))
1530     (set-buffer (get-buffer-create " *message work*"))
1531     (kill-all-local-variables)
1532     (mm-enable-multibyte)))
1533
1534 (defun message-functionp (form)
1535   "Return non-nil if FORM is funcallable."
1536   (or (and (symbolp form) (fboundp form))
1537       (and (listp form) (eq (car form) 'lambda))
1538       (byte-code-function-p form)))
1539
1540 (defun message-strip-list-identifiers (subject)
1541   "Remove list identifiers in `gnus-list-identifiers' from string SUBJECT."
1542   (require 'gnus-sum)                   ; for gnus-list-identifiers
1543   (let ((regexp (if (stringp gnus-list-identifiers)
1544                     gnus-list-identifiers
1545                   (mapconcat 'identity gnus-list-identifiers " *\\|"))))
1546     (if (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
1547                               " *\\)\\)+\\(Re: +\\)?\\)") subject)
1548         (concat (substring subject 0 (match-beginning 1))
1549                 (or (match-string 3 subject)
1550                     (match-string 5 subject))
1551                 (substring subject
1552                            (match-end 1)))
1553       subject)))
1554
1555 (defun message-strip-subject-re (subject)
1556   "Remove \"Re:\" from subject lines in string SUBJECT."
1557   (if (string-match message-subject-re-regexp subject)
1558       (substring subject (match-end 0))
1559     subject))
1560
1561 ;;; Start of functions adopted from `message-utils.el'.
1562
1563 (defun message-strip-subject-trailing-was (subject)
1564   "Remove trailing \"(Was: <old subject>)\" from SUBJECT lines.
1565 Leading \"Re: \" is not stripped by this function.  Use the function
1566 `message-strip-subject-re' for this."
1567   (let* ((query message-subject-trailing-was-query)
1568          (new) (found))
1569     (setq found
1570           (string-match
1571            (if (eq query 'ask)
1572                message-subject-trailing-was-ask-regexp
1573              message-subject-trailing-was-regexp)
1574            subject))
1575     (if found
1576         (setq new (substring subject 0 (match-beginning 0))))
1577     (if (or (not found) (eq query nil))
1578         subject
1579       (if (eq query 'ask)
1580           (if (message-y-or-n-p
1581                "Strip `(was: <old subject>)' in subject? " t
1582                (concat
1583                 "Strip `(was: <old subject>)' in subject "
1584                 "and use the new one instead?\n\n"
1585                 "Current subject is:   \""
1586                 subject "\"\n\n"
1587                 "New subject would be: \""
1588                 new "\"\n\n"
1589                 "See the variable `message-subject-trailing-was-query' "
1590                 "to get rid of this query."
1591                 ))
1592               new subject)
1593         new))))
1594
1595 ;;; Suggested by Jonas Steverud  @  www.dtek.chalmers.se/~d4jonas/
1596
1597 ;;;###autoload
1598 (defun message-change-subject (new-subject)
1599   "Ask for NEW-SUBJECT header, append (was: <Old Subject>)."
1600   (interactive
1601    (list
1602     (read-from-minibuffer "New subject: ")))
1603   (cond ((and (not (or (null new-subject) ; new subject not empty
1604                        (zerop (string-width new-subject))
1605                        (string-match "^[ \t]*$" new-subject))))
1606          (save-excursion
1607            (let ((old-subject (message-fetch-field "Subject")))
1608              (cond ((not old-subject)
1609                     (error "No current subject"))
1610                    ((not (string-match
1611                           (concat "^[ \t]*"
1612                                   (regexp-quote new-subject)
1613                                   " \t]*$")
1614                           old-subject))  ; yes, it really is a new subject
1615                     ;; delete eventual Re: prefix
1616                     (setq old-subject
1617                           (message-strip-subject-re old-subject))
1618                     (message-goto-subject)
1619                     (message-delete-line)
1620                     (insert (concat "Subject: "
1621                                     new-subject
1622                                     " (was: "
1623                                     old-subject ")\n")))))))))
1624
1625 ;;;###autoload
1626 (defun message-mark-inserted-region (beg end)
1627   "Mark some region in the current article with enclosing tags.
1628 See `message-mark-insert-begin' and `message-mark-insert-end'."
1629   (interactive "r")
1630   (save-excursion
1631     ; add to the end of the region first, otherwise end would be invalid
1632     (goto-char end)
1633     (insert message-mark-insert-end)
1634     (goto-char beg)
1635     (insert message-mark-insert-begin)))
1636
1637 ;;;###autoload
1638 (defun message-mark-insert-file (file)
1639   "Insert FILE at point, marking it with enclosing tags.
1640 See `message-mark-insert-begin' and `message-mark-insert-end'."
1641   (interactive "fFile to insert: ")
1642     ;; reverse insertion to get correct result.
1643   (let ((p (point)))
1644     (insert message-mark-insert-end)
1645     (goto-char p)
1646     (insert-file-contents file)
1647     (goto-char p)
1648     (insert message-mark-insert-begin)))
1649
1650 ;;;###autoload
1651 (defun message-add-archive-header ()
1652   "Insert \"X-No-Archive: Yes\" in the header and a note in the body.
1653 The note can be customized using `message-archive-note'.  When called with a
1654 prefix argument, ask for a text to insert.  If you don't want the note in the
1655 body, set  `message-archive-note' to nil."
1656   (interactive)
1657   (if current-prefix-arg
1658       (setq message-archive-note
1659             (read-from-minibuffer "Reason for No-Archive: "
1660                                   (cons message-archive-note 0))))
1661     (save-excursion
1662       (if (message-goto-signature)
1663           (re-search-backward message-signature-separator))
1664       (when message-archive-note
1665         (insert message-archive-note)
1666         (newline))
1667       (message-add-header message-archive-header)
1668       (message-sort-headers)))
1669
1670 ;;;###autoload
1671 (defun message-cross-post-followup-to-header (target-group)
1672   "Mangles FollowUp-To and Newsgroups header to point to TARGET-GROUP.
1673 With prefix-argument just set Follow-Up, don't cross-post."
1674   (interactive
1675    (list ; Completion based on Gnus
1676     (completing-read "Followup To: "
1677                      (if (boundp 'gnus-newsrc-alist)
1678                          gnus-newsrc-alist)
1679                      nil nil '("poster" . 0)
1680                      (if (boundp 'gnus-group-history)
1681                          'gnus-group-history))))
1682   (message-remove-header "Follow[Uu]p-[Tt]o" t)
1683   (message-goto-newsgroups)
1684   (beginning-of-line)
1685   ;; if we already did a crosspost before, kill old target
1686   (if (and message-cross-post-old-target
1687            (re-search-forward
1688             (regexp-quote (concat "," message-cross-post-old-target))
1689             nil t))
1690       (replace-match ""))
1691   ;; unless (followup is to poster or user explicitly asked not
1692   ;; to cross-post, or target-group is already in Newsgroups)
1693   ;; add target-group to Newsgroups line.
1694   (cond ((and (or
1695                ;; def: cross-post, req:no
1696                (and message-cross-post-default (not current-prefix-arg))
1697                ;; def: no-cross-post, req:yes
1698                (and (not message-cross-post-default) current-prefix-arg))
1699               (not (string-match "poster" target-group))
1700               (not (string-match (regexp-quote target-group)
1701                                  (message-fetch-field "Newsgroups"))))
1702          (end-of-line)
1703          (insert-string (concat "," target-group))))
1704   (end-of-line) ; ensure Followup: comes after Newsgroups:
1705   ;; unless new followup would be identical to Newsgroups line
1706   ;; make a new Followup-To line
1707   (if (not (string-match (concat "^[ \t]*"
1708                                  target-group
1709                                  "[ \t]*$")
1710                          (message-fetch-field "Newsgroups")))
1711       (insert (concat "\nFollowup-To: " target-group)))
1712   (setq message-cross-post-old-target target-group))
1713
1714 ;;;###autoload
1715 (defun message-cross-post-insert-note (target-group cross-post in-old
1716                                                     old-groups)
1717   "Insert a in message body note about a set Followup or Crosspost.
1718 If there have been previous notes, delete them.  TARGET-GROUP specifies the
1719 group to Followup-To.  When CROSS-POST is t, insert note about
1720 crossposting.  IN-OLD specifies whether TARGET-GROUP is a member of
1721 OLD-GROUPS.  OLD-GROUPS lists the old-groups the posting would have
1722 been made to before the user asked for a Crosspost."
1723   ;; start scanning body for previous uses
1724   (message-goto-signature)
1725   (let ((head (re-search-backward
1726                (concat "^" mail-header-separator)
1727                nil t))) ; just search in body
1728     (message-goto-signature)
1729     (while (re-search-backward
1730             (concat "^" (regexp-quote message-cross-post-note) ".*")
1731             head t)
1732       (message-delete-line))
1733     (message-goto-signature)
1734     (while (re-search-backward
1735             (concat "^" (regexp-quote message-followup-to-note) ".*")
1736             head t)
1737       (message-delete-line))
1738     ;; insert new note
1739     (if (message-goto-signature)
1740         (re-search-backward message-signature-separator))
1741     (if (or in-old
1742             (not cross-post)
1743             (string-match "^[ \t]*poster[ \t]*$" target-group))
1744         (insert (concat message-followup-to-note target-group "\n"))
1745       (insert (concat message-cross-post-note target-group "\n")))))
1746
1747 ;;;###autoload
1748 (defun message-cross-post-followup-to (target-group)
1749   "Crossposts message and set Followup-To to TARGET-GROUP.
1750 With prefix-argument just set Follow-Up, don't cross-post."
1751   (interactive
1752    (list ; Completion based on Gnus
1753     (completing-read "Followup To: "
1754                      (if (boundp 'gnus-newsrc-alist)
1755                          gnus-newsrc-alist)
1756                      nil nil '("poster" . 0)
1757                      (if (boundp 'gnus-group-history)
1758                          'gnus-group-history))))
1759   (cond ((not (or (null target-group) ; new subject not empty
1760                   (zerop (string-width target-group))
1761                   (string-match "^[ \t]*$" target-group)))
1762          (save-excursion
1763            (let* ((old-groups (message-fetch-field "Newsgroups"))
1764                   (in-old (string-match
1765                            (regexp-quote target-group)
1766                            (or old-groups ""))))
1767              ;; check whether target exactly matches old Newsgroups
1768              (cond ((not old-groups)
1769                     (error "No current newsgroup"))
1770                    ((or (not in-old)
1771                         (not (string-match
1772                               (concat "^[ \t]*"
1773                                       (regexp-quote target-group)
1774                                       "[ \t]*$")
1775                               old-groups)))
1776                     ;; yes, Newsgroups line must change
1777                     (message-cross-post-followup-to-header target-group)
1778                     ;; insert note whether we do cross-post or followup-to
1779                     (funcall message-cross-post-note-function
1780                              target-group
1781                              (if (or (and message-cross-post-default
1782                                           (not current-prefix-arg))
1783                                      (and (not message-cross-post-default)
1784                                           current-prefix-arg)) t)
1785                              in-old old-groups))))))))
1786
1787 ;;; Reduce To: to Cc: or Bcc: header
1788
1789 ;;;###autoload
1790 (defun message-reduce-to-to-cc ()
1791  "Replace contents of To: header with contents of Cc: or Bcc: header."
1792  (interactive)
1793  (let ((cc-content (message-fetch-field "cc"))
1794        (bcc nil))
1795    (if (and (not cc-content)
1796             (setq cc-content (message-fetch-field "bcc")))
1797        (setq bcc t))
1798    (cond (cc-content
1799           (save-excursion
1800             (message-goto-to)
1801             (message-delete-line)
1802             (insert (concat "To: " cc-content "\n"))
1803             (message-remove-header (if bcc
1804                                        "bcc"
1805                                      "cc")))))))
1806
1807 ;;; End of functions adopted from `message-utils.el'.
1808
1809 (defun message-remove-header (header &optional is-regexp first reverse)
1810   "Remove HEADER in the narrowed buffer.
1811 If IS-REGEXP, HEADER is a regular expression.
1812 If FIRST, only remove the first instance of the header.
1813 Return the number of headers removed."
1814   (goto-char (point-min))
1815   (let ((regexp (if is-regexp header (concat "^" (regexp-quote header) ":")))
1816         (number 0)
1817         (case-fold-search t)
1818         last)
1819     (while (and (not (eobp))
1820                 (not last))
1821       (if (if reverse
1822               (not (looking-at regexp))
1823             (looking-at regexp))
1824           (progn
1825             (incf number)
1826             (when first
1827               (setq last t))
1828             (delete-region
1829              (point)
1830              ;; There might be a continuation header, so we have to search
1831              ;; until we find a new non-continuation line.
1832              (progn
1833                (forward-line 1)
1834                (if (re-search-forward "^[^ \t]" nil t)
1835                    (goto-char (match-beginning 0))
1836                  (point-max)))))
1837         (forward-line 1)
1838         (if (re-search-forward "^[^ \t]" nil t)
1839             (goto-char (match-beginning 0))
1840           (goto-char (point-max)))))
1841     number))
1842
1843 (defun message-remove-first-header (header)
1844   "Remove the first instance of HEADER if there is more than one."
1845   (let ((count 0)
1846         (regexp (concat "^" (regexp-quote header) ":")))
1847     (save-excursion
1848       (goto-char (point-min))
1849       (while (re-search-forward regexp nil t)
1850         (incf count)))
1851     (while (> count 1)
1852       (message-remove-header header nil t)
1853       (decf count))))
1854
1855 (defun message-narrow-to-headers ()
1856   "Narrow the buffer to the head of the message."
1857   (widen)
1858   (narrow-to-region
1859    (goto-char (point-min))
1860    (if (re-search-forward
1861         (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
1862        (match-beginning 0)
1863      (point-max)))
1864   (goto-char (point-min)))
1865
1866 (defun message-narrow-to-head-1 ()
1867   "Like `message-narrow-to-head'.  Don't widen."
1868   (narrow-to-region
1869    (goto-char (point-min))
1870    (if (search-forward "\n\n" nil 1)
1871        (1- (point))
1872      (point-max)))
1873   (goto-char (point-min)))
1874
1875 (defun message-narrow-to-head ()
1876   "Narrow the buffer to the head of the message.
1877 Point is left at the beginning of the narrowed-to region."
1878   (widen)
1879   (message-narrow-to-head-1))
1880
1881 (defun message-narrow-to-headers-or-head ()
1882   "Narrow the buffer to the head of the message."
1883   (widen)
1884   (narrow-to-region
1885    (goto-char (point-min))
1886    (cond
1887     ((re-search-forward
1888       (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
1889      (match-beginning 0))
1890     ((search-forward "\n\n" nil t)
1891      (1- (point)))
1892     (t
1893      (point-max))))
1894   (goto-char (point-min)))
1895
1896 (defun message-news-p ()
1897   "Say whether the current buffer contains a news message."
1898   (and (not message-this-is-mail)
1899        (or message-this-is-news
1900            (save-excursion
1901              (save-restriction
1902                (message-narrow-to-headers)
1903                (and (message-fetch-field "newsgroups")
1904                     (not (message-fetch-field "posted-to"))))))))
1905
1906 (defun message-mail-p ()
1907   "Say whether the current buffer contains a mail message."
1908   (and (not message-this-is-news)
1909        (or message-this-is-mail
1910            (save-excursion
1911              (save-restriction
1912                (message-narrow-to-headers)
1913                (or (message-fetch-field "to")
1914                    (message-fetch-field "cc")
1915                    (message-fetch-field "bcc")))))))
1916
1917 (defun message-subscribed-p ()
1918   "Say whether we need to insert a MFT header."
1919   (or message-subscribed-regexps
1920       message-subscribed-addresses
1921       message-subscribed-address-file
1922       message-subscribed-address-functions))
1923
1924 (defun message-next-header ()
1925   "Go to the beginning of the next header."
1926   (beginning-of-line)
1927   (or (eobp) (forward-char 1))
1928   (not (if (re-search-forward "^[^ \t]" nil t)
1929            (beginning-of-line)
1930          (goto-char (point-max)))))
1931
1932 (defun message-sort-headers-1 ()
1933   "Sort the buffer as headers using `message-rank' text props."
1934   (goto-char (point-min))
1935   (require 'sort)
1936   (sort-subr
1937    nil 'message-next-header
1938    (lambda ()
1939      (message-next-header)
1940      (unless (bobp)
1941        (forward-char -1)))
1942    (lambda ()
1943      (or (get-text-property (point) 'message-rank)
1944          10000))))
1945
1946 (defun message-sort-headers ()
1947   "Sort the headers of the current message according to `message-header-format-alist'."
1948   (interactive)
1949   (save-excursion
1950     (save-restriction
1951       (let ((max (1+ (length message-header-format-alist)))
1952             rank)
1953         (message-narrow-to-headers)
1954         (while (re-search-forward "^[^ \n]+:" nil t)
1955           (put-text-property
1956            (match-beginning 0) (1+ (match-beginning 0))
1957            'message-rank
1958            (if (setq rank (length (memq (assq (intern (buffer-substring
1959                                                        (match-beginning 0)
1960                                                        (1- (match-end 0))))
1961                                               message-header-format-alist)
1962                                         message-header-format-alist)))
1963                (- max rank)
1964              (1+ max)))))
1965       (message-sort-headers-1))))
1966
1967
1968 \f
1969
1970 ;;;
1971 ;;; Message mode
1972 ;;;
1973
1974 ;;; Set up keymap.
1975
1976 (defvar message-mode-map nil)
1977
1978 (unless message-mode-map
1979   (setq message-mode-map (make-keymap))
1980   (set-keymap-parent message-mode-map text-mode-map)
1981   (define-key message-mode-map "\C-c?" 'describe-mode)
1982
1983   (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to)
1984   (define-key message-mode-map "\C-c\C-f\C-o" 'message-goto-from)
1985   (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc)
1986   (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc)
1987   (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc)
1988   (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject)
1989   (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to)
1990   (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups)
1991   (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution)
1992   (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to)
1993   (define-key message-mode-map "\C-c\C-f\C-m" 'message-goto-mail-followup-to)
1994   (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords)
1995   (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary)
1996   (define-key message-mode-map "\C-c\C-f\C-i"
1997     'message-insert-or-toggle-importance)
1998   (define-key message-mode-map "\C-c\C-f\C-a"
1999     'message-generate-unsubscribed-mail-followup-to)
2000
2001   ;; modify headers (and insert notes in body)
2002   (define-key message-mode-map "\C-c\C-fs"    'message-change-subject)
2003   ;;
2004   (define-key message-mode-map "\C-c\C-fx"    'message-cross-post-followup-to)
2005   ;; prefix+message-cross-post-followup-to = same w/o cross-post
2006   (define-key message-mode-map "\C-c\C-ft"    'message-reduce-to-to-cc)
2007   (define-key message-mode-map "\C-c\C-fa"    'message-add-archive-header)
2008   ;; mark inserted text
2009   (define-key message-mode-map "\C-c\M-m" 'message-mark-inserted-region)
2010   (define-key message-mode-map "\C-c\M-f" 'message-mark-insert-file)
2011
2012   (define-key message-mode-map "\C-c\C-b" 'message-goto-body)
2013   (define-key message-mode-map "\C-c\C-i" 'message-goto-signature)
2014
2015   (define-key message-mode-map "\C-c\C-t" 'message-insert-to)
2016   (define-key message-mode-map "\C-c\M-t" 'message-insert-wide-reply)
2017   (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups)
2018   (define-key message-mode-map "\C-c\C-l" 'message-to-list-only)
2019
2020   (define-key message-mode-map "\C-c\C-u" 'message-insert-or-toggle-importance)
2021   (define-key message-mode-map "\C-c\M-n"
2022     'message-insert-disposition-notification-to)
2023
2024   (define-key message-mode-map "\C-c\C-y" 'message-yank-original)
2025   (define-key message-mode-map "\C-c\M-\C-y" 'message-yank-buffer)
2026   (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message)
2027   (define-key message-mode-map "\C-c\C-w" 'message-insert-signature)
2028   (define-key message-mode-map "\C-c\M-h" 'message-insert-headers)
2029   (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body)
2030   (define-key message-mode-map "\C-c\C-o" 'message-sort-headers)
2031   (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer)
2032
2033   (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit)
2034   (define-key message-mode-map "\C-c\C-s" 'message-send)
2035   (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer)
2036   (define-key message-mode-map "\C-c\C-d" 'message-dont-send)
2037   (define-key message-mode-map "\C-c\n" 'gnus-delay-article)
2038
2039   (define-key message-mode-map "\C-c\C-e" 'message-elide-region)
2040   (define-key message-mode-map "\C-c\C-v" 'message-delete-not-region)
2041   (define-key message-mode-map "\C-c\C-z" 'message-kill-to-signature)
2042   (define-key message-mode-map "\M-\r" 'message-newline-and-reformat)
2043   ;;(define-key message-mode-map "\M-q" 'message-fill-paragraph)
2044
2045   (define-key message-mode-map "\C-c\C-a" 'mml-attach-file)
2046
2047   (define-key message-mode-map "\C-a" 'message-beginning-of-line)
2048   (define-key message-mode-map "\t" 'message-tab)
2049   (define-key message-mode-map "\M-;" 'comment-region))
2050
2051 (easy-menu-define
2052   message-mode-menu message-mode-map "Message Menu."
2053   `("Message"
2054     ["Yank Original" message-yank-original t]
2055     ["Fill Yanked Message" message-fill-yanked-message t]
2056     ["Insert Signature" message-insert-signature t]
2057     ["Caesar (rot13) Message" message-caesar-buffer-body t]
2058     ["Caesar (rot13) Region" message-caesar-region (mark t)]
2059     ["Elide Region" message-elide-region (mark t)]
2060     ["Delete Outside Region" message-delete-not-region (mark t)]
2061     ["Kill To Signature" message-kill-to-signature t]
2062     ["Newline and Reformat" message-newline-and-reformat t]
2063     ["Rename buffer" message-rename-buffer t]
2064     ["Spellcheck" ispell-message
2065      ,@(if (featurep 'xemacs) '(t)
2066          '(:help "Spellcheck this message"))]
2067     "----"
2068     ["Insert Region Marked" message-mark-inserted-region
2069      ,@(if (featurep 'xemacs) '(t)
2070          '(:help "Mark region with enclosing tags"))]
2071     ["Insert File Marked..." message-mark-insert-file
2072      ,@(if (featurep 'xemacs) '(t)
2073          '(:help "Insert file at point marked with enclosing tags"))]
2074     "----"
2075     ["Send Message" message-send-and-exit
2076      ,@(if (featurep 'xemacs) '(t)
2077          '(:help "Send this message"))]
2078     ["Postpone Message" message-dont-send
2079      ,@(if (featurep 'xemacs) '(t)
2080          '(:help "File this draft message and exit"))]
2081     ["Send at Specific Time..." gnus-delay-article
2082      ,@(if (featurep 'xemacs) '(t)
2083          '(:help "Ask, then arrange to send message at that time"))]
2084     ["Kill Message" message-kill-buffer
2085      ,@(if (featurep 'xemacs) '(t)
2086          '(:help "Delete this message without sending"))]))
2087
2088 (easy-menu-define
2089   message-mode-field-menu message-mode-map ""
2090   `("Field"
2091     ["Fetch To" message-insert-to t]
2092     ["Fetch Newsgroups" message-insert-newsgroups t]
2093     "----"
2094     ["To" message-goto-to t]
2095     ["From" message-goto-from t]
2096     ["Subject" message-goto-subject t]
2097     ["Change subject..." message-change-subject t]
2098     ["Cc" message-goto-cc t]
2099     ["Bcc" message-goto-bcc t]
2100     ["Fcc" message-goto-fcc t]
2101     ["Reply-To" message-goto-reply-to t]
2102     ["Flag As Important" message-insert-importance-high
2103      ,@(if (featurep 'xemacs) '(t)
2104          '(:help "Mark this message as important"))]
2105     ["Flag As Unimportant" message-insert-importance-low
2106      ,@(if (featurep 'xemacs) '(t)
2107          '(:help "Mark this message as unimportant"))]
2108     ["Request Receipt"
2109      message-insert-disposition-notification-to
2110      ,@(if (featurep 'xemacs) '(t)
2111          '(:help "Request a receipt notification"))]
2112     "----"
2113     ;; (typical) news stuff
2114     ["Summary" message-goto-summary t]
2115     ["Keywords" message-goto-keywords t]
2116     ["Newsgroups" message-goto-newsgroups t]
2117     ["Followup-To" message-goto-followup-to t]
2118     ;; ["Followup-To (with note in body)" message-cross-post-followup-to t]
2119     ["Crosspost / Followup-To..." message-cross-post-followup-to t]
2120     ["Distribution" message-goto-distribution t]
2121     ["X-No-Archive:" message-add-archive-header t ]
2122     "----"
2123     ;; (typical) mailing-lists stuff
2124     ["Send to list only" message-to-list-only t]
2125     ["Mail-Followup-To" message-goto-mail-followup-to t]
2126     ["Reduce To: to Cc:" message-reduce-to-to-cc t]
2127     "----"
2128     ["Sort Headers" message-sort-headers t]
2129     ["Goto Body" message-goto-body t]
2130     ["Goto Signature" message-goto-signature t]))
2131
2132 (defvar message-tool-bar-map nil)
2133
2134 (eval-when-compile
2135   (defvar facemenu-add-face-function)
2136   (defvar facemenu-remove-face-function))
2137
2138 ;;; Forbidden properties
2139 ;;
2140 ;; We use `after-change-functions' to keep special text properties
2141 ;; that interfer with the normal function of message mode out of the
2142 ;; buffer.
2143
2144 (defcustom message-strip-special-text-properties t
2145   "Strip special properties from the message buffer.
2146
2147 Emacs has a number of special text properties which can break message
2148 composing in various ways.  If this option is set, message will strip
2149 these properties from the message composition buffer.  However, some
2150 packages requires these properties to be present in order to work.
2151 If you use one of these packages, turn this option off, and hope the
2152 message composition doesn't break too bad."
2153   :group 'message-various
2154   :type 'boolean)
2155
2156 (defconst message-forbidden-properties
2157   ;; No reason this should be clutter up customize.  We make it a
2158   ;; property list (rather than a list of property symbols), to be
2159   ;; directly useful for `remove-text-properties'.
2160   '(field nil read-only nil intangible nil invisible nil
2161           mouse-face nil modification-hooks nil insert-in-front-hooks nil
2162           insert-behind-hooks nil point-entered nil point-left nil)
2163   ;; Other special properties:
2164   ;; category, face, display: probably doesn't do any harm.
2165   ;; fontified: is used by font-lock.
2166   ;; syntax-table, local-map: I dunno.
2167   ;; We need to add XEmacs names to the list.
2168   "Property list of with properties.forbidden in message buffers.
2169 The values of the properties are ignored, only the property names are used.")
2170
2171 (defun message-tamago-not-in-use-p (pos)
2172   "Return t when tamago version 4 is not in use at the cursor position.
2173 Tamago version 4 is a popular input method for writing Japanese text.
2174 It uses the properties `intangible', `invisible', `modification-hooks'
2175 and `read-only' when translating ascii or kana text to kanji text.
2176 These properties are essential to work, so we should never strip them."
2177   (not (and (boundp 'egg-modefull-mode)
2178             (symbol-value 'egg-modefull-mode)
2179             (or (memq (get-text-property pos 'intangible)
2180                       '(its-part-1 its-part-2))
2181                 (get-text-property pos 'egg-end)
2182                 (get-text-property pos 'egg-lang)
2183                 (get-text-property pos 'egg-start)))))
2184
2185 (defun message-strip-forbidden-properties (begin end &optional old-length)
2186   "Strip forbidden properties between BEGIN and END, ignoring the third arg.
2187 This function is intended to be called from `after-change-functions'.
2188 See also `message-forbidden-properties'."
2189   (when (and message-strip-special-text-properties
2190              (message-tamago-not-in-use-p begin))
2191     (remove-text-properties begin end message-forbidden-properties)))
2192
2193 ;;;###autoload
2194 (define-derived-mode message-mode text-mode "Message"
2195   "Major mode for editing mail and news to be sent.
2196 Like Text Mode but with these additional commands:\\<message-mode-map>
2197 C-c C-s  `message-send' (send the message)  C-c C-c  `message-send-and-exit'
2198 C-c C-d  Postpone sending the message       C-c C-k  Kill the message
2199 C-c C-f  move to a header field (and create it if there isn't):
2200          C-c C-f C-t  move to To        C-c C-f C-s  move to Subject
2201          C-c C-f C-c  move to Cc        C-c C-f C-b  move to Bcc
2202          C-c C-f C-w  move to Fcc       C-c C-f C-r  move to Reply-To
2203          C-c C-f C-u  move to Summary   C-c C-f C-n  move to Newsgroups
2204          C-c C-f C-k  move to Keywords  C-c C-f C-d  move to Distribution
2205          C-c C-f C-o  move to From (\"Originator\")
2206          C-c C-f C-f  move to Followup-To
2207          C-c C-f C-m  move to Mail-Followup-To
2208          C-c C-f C-i  cycle through Importance values
2209          C-c C-f s    change subject and append \"(was: <Old Subject>)\"
2210          C-c C-f x    crossposting with FollowUp-To header and note in body
2211          C-c C-f t    replace To: header with contents of Cc: or Bcc:
2212          C-c C-f a    Insert X-No-Archive: header and a note in the body
2213 C-c C-t  `message-insert-to' (add a To header to a news followup)
2214 C-c C-l  `message-to-list-only' (removes all but list address in to/cc)
2215 C-c C-n  `message-insert-newsgroups' (add a Newsgroup header to a news reply)
2216 C-c C-b  `message-goto-body' (move to beginning of message text).
2217 C-c C-i  `message-goto-signature' (move to the beginning of the signature).
2218 C-c C-w  `message-insert-signature' (insert `message-signature-file' file).
2219 C-c C-y  `message-yank-original' (insert current message, if any).
2220 C-c C-q  `message-fill-yanked-message' (fill what was yanked).
2221 C-c C-e  `message-elide-region' (elide the text between point and mark).
2222 C-c C-v  `message-delete-not-region' (remove the text outside the region).
2223 C-c C-z  `message-kill-to-signature' (kill the text up to the signature).
2224 C-c C-r  `message-caesar-buffer-body' (rot13 the message body).
2225 C-c C-a  `mml-attach-file' (attach a file as MIME).
2226 C-c C-u  `message-insert-or-toggle-importance'  (insert or cycle importance).
2227 C-c M-n  `message-insert-disposition-notification-to'  (request receipt).
2228 C-c M-m  `message-mark-inserted-region' (mark region with enclosing tags).
2229 C-c M-f  `message-mark-insert-file' (insert file marked with enclosing tags).
2230 M-RET    `message-newline-and-reformat' (break the line and reformat)."
2231   (setq local-abbrev-table text-mode-abbrev-table)
2232   (set (make-local-variable 'message-reply-buffer) nil)
2233   (make-local-variable 'message-send-actions)
2234   (make-local-variable 'message-exit-actions)
2235   (make-local-variable 'message-kill-actions)
2236   (make-local-variable 'message-postpone-actions)
2237   (make-local-variable 'message-draft-article)
2238   (setq buffer-offer-save t)
2239   (set (make-local-variable 'facemenu-add-face-function)
2240        (lambda (face end)
2241          (let ((face-fun (cdr (assq face message-face-alist))))
2242            (if face-fun
2243                (funcall face-fun (point) end)
2244              (error "Face %s not configured for %s mode" face mode-name)))
2245          ""))
2246   (set (make-local-variable 'facemenu-remove-face-function) t)
2247   (set (make-local-variable 'message-reply-headers) nil)
2248   (make-local-variable 'message-newsreader)
2249   (make-local-variable 'message-mailer)
2250   (make-local-variable 'message-post-method)
2251   (set (make-local-variable 'message-sent-message-via) nil)
2252   (set (make-local-variable 'message-checksum) nil)
2253   (set (make-local-variable 'message-mime-part) 0)
2254   (message-setup-fill-variables)
2255   ;; Allow using comment commands to add/remove quoting.
2256   (set (make-local-variable 'comment-start) message-yank-prefix)
2257   (if (featurep 'xemacs)
2258       (message-setup-toolbar)
2259     (set (make-local-variable 'font-lock-defaults)
2260          '(message-font-lock-keywords t))
2261     (if (boundp 'tool-bar-map)
2262         (set (make-local-variable 'tool-bar-map) (message-tool-bar-map))))
2263   (easy-menu-add message-mode-menu message-mode-map)
2264   (easy-menu-add message-mode-field-menu message-mode-map)
2265   ;; make-local-hook is harmless though obsolete in Emacs 21.
2266   ;; Emacs 20 and XEmacs need make-local-hook.
2267   (make-local-hook 'after-change-functions)
2268   ;; Mmmm... Forbidden properties...
2269   (add-hook 'after-change-functions 'message-strip-forbidden-properties
2270             nil 'local)
2271   ;; Allow mail alias things.
2272   (when (eq message-mail-alias-type 'abbrev)
2273     (if (fboundp 'mail-abbrevs-setup)
2274         (mail-abbrevs-setup)
2275       (mail-aliases-setup)))
2276   (unless buffer-file-name
2277     (message-set-auto-save-file-name))
2278   (unless (buffer-base-buffer)
2279     ;; Don't enable multibyte on an indirect buffer.  Maybe enabling
2280     ;; multibyte is not necessary at all. -- zsh
2281     (mm-enable-multibyte))
2282   (set (make-local-variable 'indent-tabs-mode) nil) ;No tabs for indentation.
2283   (mml-mode))
2284
2285 (defun message-setup-fill-variables ()
2286   "Setup message fill variables."
2287   (set (make-local-variable 'fill-paragraph-function)
2288        'message-fill-paragraph)
2289   (make-local-variable 'paragraph-separate)
2290   (make-local-variable 'paragraph-start)
2291   (make-local-variable 'adaptive-fill-regexp)
2292   (unless (boundp 'adaptive-fill-first-line-regexp)
2293     (setq adaptive-fill-first-line-regexp nil))
2294   (make-local-variable 'adaptive-fill-first-line-regexp)
2295   (let ((quote-prefix-regexp
2296          ;; User should change message-cite-prefix-regexp if
2297          ;; message-yank-prefix is set to an abnormal value.
2298          (concat "\\(" message-cite-prefix-regexp "\\)[ \t]*")))
2299     (setq paragraph-start
2300           (concat
2301            (regexp-quote mail-header-separator) "$\\|"
2302            "[ \t]*$\\|"                 ; blank lines
2303            "-- $\\|"                    ; signature delimiter
2304            "---+$\\|"              ; delimiters for forwarded messages
2305            page-delimiter "$\\|"        ; spoiler warnings
2306            ".*wrote:$\\|"               ; attribution lines
2307            quote-prefix-regexp "$"))    ; empty lines in quoted text
2308     (setq paragraph-separate paragraph-start)
2309     (setq adaptive-fill-regexp
2310           (concat quote-prefix-regexp "\\|" adaptive-fill-regexp))
2311     (setq adaptive-fill-first-line-regexp
2312           (concat quote-prefix-regexp "\\|"
2313                   adaptive-fill-first-line-regexp)))
2314   (make-local-variable 'auto-fill-inhibit-regexp)
2315   ;;(setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:")
2316   (setq auto-fill-inhibit-regexp nil)
2317   (make-local-variable 'normal-auto-fill-function)
2318   (setq normal-auto-fill-function 'message-do-auto-fill)
2319   ;; KLUDGE: auto fill might already be turned on in `text-mode-hook'.
2320   ;; In that case, ensure that it uses the right function.  The real
2321   ;; solution would be not to use `define-derived-mode', and run
2322   ;; `text-mode-hook' ourself at the end of the mode.
2323   ;; -- Per Abrahamsen <abraham@dina.kvl.dk> Date: 2001-10-19.
2324   (when auto-fill-function
2325     (setq auto-fill-function normal-auto-fill-function)))
2326
2327 \f
2328
2329 ;;;
2330 ;;; Message mode commands
2331 ;;;
2332
2333 ;;; Movement commands
2334
2335 (defun message-goto-to ()
2336   "Move point to the To header."
2337   (interactive)
2338   (message-position-on-field "To"))
2339
2340 (defun message-goto-from ()
2341   "Move point to the From header."
2342   (interactive)
2343   (message-position-on-field "From"))
2344
2345 (defun message-goto-subject ()
2346   "Move point to the Subject header."
2347   (interactive)
2348   (message-position-on-field "Subject"))
2349
2350 (defun message-goto-cc ()
2351   "Move point to the Cc header."
2352   (interactive)
2353   (message-position-on-field "Cc" "To"))
2354
2355 (defun message-goto-bcc ()
2356   "Move point to the Bcc  header."
2357   (interactive)
2358   (message-position-on-field "Bcc" "Cc" "To"))
2359
2360 (defun message-goto-fcc ()
2361   "Move point to the Fcc header."
2362   (interactive)
2363   (message-position-on-field "Fcc" "To" "Newsgroups"))
2364
2365 (defun message-goto-reply-to ()
2366   "Move point to the Reply-To header."
2367   (interactive)
2368   (message-position-on-field "Reply-To" "Subject"))
2369
2370 (defun message-goto-newsgroups ()
2371   "Move point to the Newsgroups header."
2372   (interactive)
2373   (message-position-on-field "Newsgroups"))
2374
2375 (defun message-goto-distribution ()
2376   "Move point to the Distribution header."
2377   (interactive)
2378   (message-position-on-field "Distribution"))
2379
2380 (defun message-goto-followup-to ()
2381   "Move point to the Followup-To header."
2382   (interactive)
2383   (message-position-on-field "Followup-To" "Newsgroups"))
2384
2385 (defun message-goto-mail-followup-to ()
2386   "Move point to the Mail-Followup-To header."
2387   (interactive)
2388   (message-position-on-field "Mail-Followup-To" "From"))
2389
2390 (defun message-goto-keywords ()
2391   "Move point to the Keywords header."
2392   (interactive)
2393   (message-position-on-field "Keywords" "Subject"))
2394
2395 (defun message-goto-summary ()
2396   "Move point to the Summary header."
2397   (interactive)
2398   (message-position-on-field "Summary" "Subject"))
2399
2400 (defun message-goto-body (&optional interactivep)
2401   "Move point to the beginning of the message body."
2402   (interactive (list t))
2403   (when (and interactivep
2404              (looking-at "[ \t]*\n"))
2405     (expand-abbrev))
2406   (goto-char (point-min))
2407   (or (search-forward (concat "\n" mail-header-separator "\n") nil t)
2408       (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t)))
2409
2410 (defun message-goto-eoh ()
2411   "Move point to the end of the headers."
2412   (interactive)
2413   (message-goto-body)
2414   (forward-line -1))
2415
2416 (defun message-goto-signature ()
2417   "Move point to the beginning of the message signature.
2418 If there is no signature in the article, go to the end and
2419 return nil."
2420   (interactive)
2421   (goto-char (point-min))
2422   (if (re-search-forward message-signature-separator nil t)
2423       (forward-line 1)
2424     (goto-char (point-max))
2425     nil))
2426
2427 (defun message-generate-unsubscribed-mail-followup-to (&optional include-cc)
2428   "Insert a reasonable MFT header in a post to an unsubscribed list.
2429 When making original posts to a mailing list you are not subscribed to,
2430 you have to type in a MFT header by hand.  The contents, usually, are
2431 the addresses of the list and your own address.  This function inserts
2432 such a header automatically.  It fetches the contents of the To: header
2433 in the current mail buffer, and appends the current `user-mail-address'.
2434
2435 If the optional argument INCLUDE-CC is non-nil, the addresses in the
2436 Cc: header are also put into the MFT."
2437
2438   (interactive "P")
2439   (message-remove-header "Mail-Followup-To")
2440   (let* ((cc (and include-cc (message-fetch-field "Cc")))
2441          (tos (if cc
2442                   (concat (message-fetch-field "To") "," cc)
2443                 (message-fetch-field "To"))))
2444     (message-goto-mail-followup-to)
2445     (insert (concat tos ", " user-mail-address))))
2446
2447 \f
2448
2449 (defun message-insert-to (&optional force)
2450   "Insert a To header that points to the author of the article being replied to.
2451 If the original author requested not to be sent mail, the function signals
2452 an error.
2453 With the prefix argument FORCE, insert the header anyway."
2454   (interactive "P")
2455   (let ((co (message-fetch-reply-field "mail-copies-to")))
2456     (when (and (null force)
2457                co
2458                (or (equal (downcase co) "never")
2459                    (equal (downcase co) "nobody")))
2460       (error "The user has requested not to have copies sent via mail")))
2461   (message-carefully-insert-headers
2462    (list (cons 'To
2463                (or (message-fetch-reply-field "mail-reply-to")
2464                    (message-fetch-reply-field "reply-to")
2465                    (message-fetch-reply-field "from")
2466                    "")))))
2467
2468 (defun message-insert-wide-reply ()
2469   "Insert To and Cc headers as if you were doing a wide reply."
2470   (interactive)
2471   (let ((headers (message-with-reply-buffer
2472                    (message-get-reply-headers t))))
2473     (message-carefully-insert-headers headers)))
2474
2475 (defun message-carefully-insert-headers (headers)
2476   (dolist (header headers)
2477     (let ((header-name (symbol-name (car header))))
2478       (when (and (message-position-on-field header-name)
2479                  (mail-fetch-field header-name)
2480                  (not (string-match "\\` *\\'"
2481                                     (mail-fetch-field header-name))))
2482         (insert ", "))
2483       (insert (cdr header)))))
2484
2485 (defun message-widen-reply ()
2486   "Widen the reply to include maximum recipients."
2487   (interactive)
2488   (let ((follow-to
2489          (and message-reply-buffer
2490               (buffer-name message-reply-buffer)
2491               (save-excursion
2492                 (set-buffer message-reply-buffer)
2493                 (message-get-reply-headers t)))))
2494     (save-excursion
2495       (save-restriction
2496         (message-narrow-to-headers)
2497         (dolist (elem follow-to)
2498           (message-remove-header (symbol-name (car elem)))
2499           (goto-char (point-min))
2500           (insert (symbol-name (car elem)) ": "
2501                   (cdr elem) "\n"))))))
2502
2503 (defun message-insert-newsgroups ()
2504   "Insert the Newsgroups header from the article being replied to."
2505   (interactive)
2506   (when (and (message-position-on-field "Newsgroups")
2507              (mail-fetch-field "newsgroups")
2508              (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
2509     (insert ","))
2510   (insert (or (message-fetch-reply-field "newsgroups") "")))
2511
2512 \f
2513
2514 ;;; Various commands
2515
2516 (defun message-delete-not-region (beg end)
2517   "Delete everything in the body of the current message outside of the region."
2518   (interactive "r")
2519   (let (citeprefix)
2520     (save-excursion
2521       (goto-char beg)
2522       ;; snarf citation prefix, if appropriate
2523       (unless (eq (point) (progn (beginning-of-line) (point)))
2524         (when (looking-at message-cite-prefix-regexp)
2525           (setq citeprefix (match-string 0))))
2526       (goto-char end)
2527       (delete-region (point) (if (not (message-goto-signature))
2528                                  (point)
2529                                (forward-line -2)
2530                                (point)))
2531       (insert "\n")
2532       (goto-char beg)
2533       (delete-region beg (progn (message-goto-body)
2534                                 (forward-line 2)
2535                                 (point)))
2536       (when citeprefix
2537         (insert citeprefix))))
2538   (when (message-goto-signature)
2539     (forward-line -2)))
2540
2541 (defun message-kill-to-signature ()
2542   "Deletes all text up to the signature."
2543   (interactive)
2544   (let ((point (point)))
2545     (message-goto-signature)
2546     (unless (eobp)
2547       (forward-line -2))
2548     (kill-region point (point))
2549     (unless (bolp)
2550       (insert "\n"))))
2551
2552 (defun message-newline-and-reformat (&optional arg not-break)
2553   "Insert four newlines, and then reformat if inside quoted text.
2554 Prefix arg means justify as well."
2555   (interactive (list (if current-prefix-arg 'full)))
2556   (let (quoted point beg end leading-space bolp)
2557     (setq point (point))
2558     (beginning-of-line)
2559     (setq beg (point))
2560     (setq bolp (= beg point))
2561     ;; Find first line of the paragraph.
2562     (if not-break
2563         (while (and (not (eobp))
2564                     (not (looking-at message-cite-prefix-regexp))
2565                     (looking-at paragraph-start))
2566           (forward-line 1)))
2567     ;; Find the prefix
2568     (when (looking-at message-cite-prefix-regexp)
2569       (setq quoted (match-string 0))
2570       (goto-char (match-end 0))
2571       (looking-at "[ \t]*")
2572       (setq leading-space (match-string 0)))
2573     (if (and quoted
2574              (not not-break)
2575              (not bolp)
2576              (< (- point beg) (length quoted)))
2577         ;; break inside the cite prefix.
2578         (setq quoted nil
2579               end nil))
2580     (if quoted
2581         (progn
2582           (forward-line 1)
2583           (while (and (not (eobp))
2584                       (not (looking-at paragraph-separate))
2585                       (looking-at message-cite-prefix-regexp)
2586                       (equal quoted (match-string 0)))
2587             (goto-char (match-end 0))
2588             (looking-at "[ \t]*")
2589             (if (> (length leading-space) (length (match-string 0)))
2590                 (setq leading-space (match-string 0)))
2591             (forward-line 1))
2592           (setq end (point))
2593           (goto-char beg)
2594           (while (and (if (bobp) nil (forward-line -1) t)
2595                       (not (looking-at paragraph-start))
2596                       (looking-at message-cite-prefix-regexp)
2597                       (equal quoted (match-string 0)))
2598             (setq beg (point))
2599             (goto-char (match-end 0))
2600             (looking-at "[ \t]*")
2601             (if (> (length leading-space) (length (match-string 0)))
2602                 (setq leading-space (match-string 0)))))
2603       (while (and (not (eobp))
2604                   (not (looking-at paragraph-separate))
2605                   (not (looking-at message-cite-prefix-regexp)))
2606         (forward-line 1))
2607       (setq end (point))
2608       (goto-char beg)
2609       (while (and (if (bobp) nil (forward-line -1) t)
2610                   (not (looking-at paragraph-start))
2611                   (not (looking-at message-cite-prefix-regexp)))
2612         (setq beg (point))))
2613     (goto-char point)
2614     (save-restriction
2615       (narrow-to-region beg end)
2616       (if not-break
2617           (setq point nil)
2618         (if bolp
2619             (newline)
2620           (newline)
2621           (newline))
2622         (setq point (point))
2623         ;; (newline 2) doesn't mark both newline's as hard, so call
2624         ;; newline twice. -jas
2625         (newline)
2626         (newline)
2627         (delete-region (point) (re-search-forward "[ \t]*"))
2628         (when (and quoted (not bolp))
2629           (insert quoted leading-space)))
2630       (if quoted
2631           (let* ((adaptive-fill-regexp
2632                   (regexp-quote (concat quoted leading-space)))
2633                  (adaptive-fill-first-line-regexp
2634                   adaptive-fill-regexp ))
2635             (fill-paragraph arg))
2636         (fill-paragraph arg))
2637       (if point (goto-char point)))))
2638
2639 (defun message-fill-paragraph (&optional arg)
2640   "Like `fill-paragraph'."
2641   (interactive (list (if current-prefix-arg 'full)))
2642   (if (and (boundp 'filladapt-mode) filladapt-mode)
2643       nil
2644     (message-newline-and-reformat arg t)
2645     t))
2646
2647 ;; Is it better to use `mail-header-end'?
2648 (defun message-point-in-header-p ()
2649   "Return t if point is in the header."
2650   (save-excursion
2651     (let ((p (point)))
2652       (goto-char (point-min))
2653       (not (re-search-forward
2654             (concat "^" (regexp-quote mail-header-separator) "\n")
2655             p t)))))
2656
2657 (defun message-do-auto-fill ()
2658   "Like `do-auto-fill', but don't fill in message header."
2659   (unless (message-point-in-header-p)
2660     (do-auto-fill)))
2661
2662 (defun message-insert-signature (&optional force)
2663   "Insert a signature.  See documentation for variable `message-signature'."
2664   (interactive (list 0))
2665   (let* ((signature
2666           (cond
2667            ((and (null message-signature)
2668                  (eq force 0))
2669             (save-excursion
2670               (goto-char (point-max))
2671               (not (re-search-backward message-signature-separator nil t))))
2672            ((and (null message-signature)
2673                  force)
2674             t)
2675            ((message-functionp message-signature)
2676             (funcall message-signature))
2677            ((listp message-signature)
2678             (eval message-signature))
2679            (t message-signature)))
2680          (signature
2681           (cond ((stringp signature)
2682                  signature)
2683                 ((and (eq t signature)
2684                       message-signature-file
2685                       (file-exists-p message-signature-file))
2686                  signature))))
2687     (when signature
2688       (goto-char (point-max))
2689       ;; Insert the signature.
2690       (unless (bolp)
2691         (insert "\n"))
2692       (when message-signature-insert-empty-line
2693         (insert "\n"))
2694       (insert "-- \n")
2695       (if (eq signature t)
2696           (insert-file-contents message-signature-file)
2697         (insert signature))
2698       (goto-char (point-max))
2699       (or (bolp) (insert "\n")))))
2700
2701 (defun message-insert-importance-high ()
2702   "Insert header to mark message as important."
2703   (interactive)
2704   (save-excursion
2705     (message-remove-header "Importance")
2706     (message-goto-eoh)
2707     (insert "Importance: high\n")))
2708
2709 (defun message-insert-importance-low ()
2710   "Insert header to mark message as unimportant."
2711   (interactive)
2712   (save-excursion
2713     (message-remove-header "Importance")
2714     (message-goto-eoh)
2715     (insert "Importance: low\n")))
2716
2717 (defun message-insert-or-toggle-importance ()
2718   "Insert a \"Importance: high\" header, or cycle through the header values.
2719 The three allowed values according to RFC 1327 are `high', `normal'
2720 and `low'."
2721   (interactive)
2722   (save-excursion
2723     (let ((valid '("high" "normal" "low"))
2724           (new "high")
2725           cur)
2726       (when (setq cur (message-fetch-field "Importance"))
2727         (message-remove-header "Importance")
2728         (setq new (cond ((string= cur "high")
2729                          "low")
2730                         ((string= cur "low")
2731                          "normal")
2732                         (t
2733                          "high"))))
2734       (message-goto-eoh)
2735       (insert (format "Importance: %s\n" new)))))
2736
2737 (defun message-insert-disposition-notification-to ()
2738   "Request a disposition notification (return receipt) to this message.
2739 Note that this should not be used in newsgroups."
2740   (interactive)
2741   (save-excursion
2742     (message-remove-header "Disposition-Notification-To")
2743     (message-goto-eoh)
2744     (insert (format "Disposition-Notification-To: %s\n"
2745                     (or (message-fetch-field "From") (message-make-from))))))
2746
2747 (defun message-elide-region (b e)
2748   "Elide the text in the region.
2749 An ellipsis (from `message-elide-ellipsis') will be inserted where the
2750 text was killed."
2751   (interactive "r")
2752   (kill-region b e)
2753   (insert message-elide-ellipsis))
2754
2755 (defvar message-caesar-translation-table nil)
2756
2757 (defun message-caesar-region (b e &optional n)
2758   "Caesar rotate region B to E by N, default 13, for decrypting netnews."
2759   (interactive
2760    (list
2761     (min (point) (or (mark t) (point)))
2762     (max (point) (or (mark t) (point)))
2763     (when current-prefix-arg
2764       (prefix-numeric-value current-prefix-arg))))
2765
2766   (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
2767   (unless (or (zerop n)                 ; no action needed for a rot of 0
2768               (= b e))                  ; no region to rotate
2769     ;; We build the table, if necessary.
2770     (when (or (not message-caesar-translation-table)
2771               (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
2772       (setq message-caesar-translation-table
2773             (message-make-caesar-translation-table n)))
2774     (translate-region b e message-caesar-translation-table)))
2775
2776 (defun message-make-caesar-translation-table (n)
2777   "Create a rot table with offset N."
2778   (let ((i -1)
2779         (table (make-string 256 0)))
2780     (while (< (incf i) 256)
2781       (aset table i i))
2782     (concat
2783      (substring table 0 ?A)
2784      (substring table (+ ?A n) (+ ?A n (- 26 n)))
2785      (substring table ?A (+ ?A n))
2786      (substring table (+ ?A 26) ?a)
2787      (substring table (+ ?a n) (+ ?a n (- 26 n)))
2788      (substring table ?a (+ ?a n))
2789      (substring table (+ ?a 26) 255))))
2790
2791 (defun message-caesar-buffer-body (&optional rotnum)
2792   "Caesar rotate all letters in the current buffer by 13 places.
2793 Used to encode/decode possibly offensive messages (commonly in rec.humor).
2794 With prefix arg, specifies the number of places to rotate each letter forward.
2795 Mail and USENET news headers are not rotated."
2796   (interactive (if current-prefix-arg
2797                    (list (prefix-numeric-value current-prefix-arg))
2798                  (list nil)))
2799   (save-excursion
2800     (save-restriction
2801       (when (message-goto-body)
2802         (narrow-to-region (point) (point-max)))
2803       (message-caesar-region (point-min) (point-max) rotnum))))
2804
2805 (defun message-pipe-buffer-body (program)
2806   "Pipe the message body in the current buffer through PROGRAM."
2807   (save-excursion
2808     (save-restriction
2809       (when (message-goto-body)
2810         (narrow-to-region (point) (point-max)))
2811       (shell-command-on-region
2812        (point-min) (point-max) program nil t))))
2813
2814 (defun message-rename-buffer (&optional enter-string)
2815   "Rename the *message* buffer to \"*message* RECIPIENT\".
2816 If the function is run with a prefix, it will ask for a new buffer
2817 name, rather than giving an automatic name."
2818   (interactive "Pbuffer name: ")
2819   (save-excursion
2820     (save-restriction
2821       (goto-char (point-min))
2822       (narrow-to-region (point)
2823                         (search-forward mail-header-separator nil 'end))
2824       (let* ((mail-to (or
2825                        (if (message-news-p) (message-fetch-field "Newsgroups")
2826                          (message-fetch-field "To"))
2827                        ""))
2828              (mail-trimmed-to
2829               (if (string-match "," mail-to)
2830                   (concat (substring mail-to 0 (match-beginning 0)) ", ...")
2831                 mail-to))
2832              (name-default (concat "*message* " mail-trimmed-to))
2833              (name (if enter-string
2834                        (read-string "New buffer name: " name-default)
2835                      name-default)))
2836         (rename-buffer name t)))))
2837
2838 (defun message-fill-yanked-message (&optional justifyp)
2839   "Fill the paragraphs of a message yanked into this one.
2840 Numeric argument means justify as well."
2841   (interactive "P")
2842   (save-excursion
2843     (goto-char (point-min))
2844     (search-forward (concat "\n" mail-header-separator "\n") nil t)
2845     (let ((fill-prefix message-yank-prefix))
2846       (fill-individual-paragraphs (point) (point-max) justifyp))))
2847
2848 (defun message-indent-citation ()
2849   "Modify text just inserted from a message to be cited.
2850 The inserted text should be the region.
2851 When this function returns, the region is again around the modified text.
2852
2853 Normally, indent each nonblank line `message-indentation-spaces' spaces.
2854 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
2855   (let ((start (point)))
2856     ;; Remove unwanted headers.
2857     (when message-ignored-cited-headers
2858       (let (all-removed)
2859         (save-restriction
2860           (narrow-to-region
2861            (goto-char start)
2862            (if (search-forward "\n\n" nil t)
2863                (1- (point))
2864              (point)))
2865           (message-remove-header message-ignored-cited-headers t)
2866           (when (= (point-min) (point-max))
2867             (setq all-removed t))
2868           (goto-char (point-max)))
2869         (if all-removed
2870             (goto-char start)
2871           (forward-line 1))))
2872     ;; Delete blank lines at the start of the buffer.
2873     (while (and (point-min)
2874                 (eolp)
2875                 (not (eobp)))
2876       (message-delete-line))
2877     ;; Delete blank lines at the end of the buffer.
2878     (goto-char (point-max))
2879     (unless (eolp)
2880       (insert "\n"))
2881     (while (and (zerop (forward-line -1))
2882                 (looking-at "$"))
2883       (message-delete-line))
2884     ;; Do the indentation.
2885     (if (null message-yank-prefix)
2886         (indent-rigidly start (mark t) message-indentation-spaces)
2887       (save-excursion
2888         (goto-char start)
2889         (while (< (point) (mark t))
2890           (if (or (looking-at ">") (looking-at "^$"))
2891               (insert message-yank-cited-prefix)
2892             (insert message-yank-prefix))
2893           (forward-line 1))))
2894     (goto-char start)))
2895
2896 (defun message-yank-original (&optional arg)
2897   "Insert the message being replied to, if any.
2898 Puts point before the text and mark after.
2899 Normally indents each nonblank line ARG spaces (default 3).  However,
2900 if `message-yank-prefix' is non-nil, insert that prefix on each line.
2901
2902 This function uses `message-cite-function' to do the actual citing.
2903
2904 Just \\[universal-argument] as argument means don't indent, insert no
2905 prefix, and don't delete any headers."
2906   (interactive "P")
2907   (let ((modified (buffer-modified-p)))
2908     (when (and message-reply-buffer
2909                message-cite-function)
2910       (delete-windows-on message-reply-buffer t)
2911       (insert-buffer message-reply-buffer)
2912       (unless arg
2913         (funcall message-cite-function))
2914       (message-exchange-point-and-mark)
2915       (unless (bolp)
2916         (insert ?\n))
2917       (unless modified
2918         (setq message-checksum (message-checksum))))))
2919
2920 (defun message-yank-buffer (buffer)
2921   "Insert BUFFER into the current buffer and quote it."
2922   (interactive "bYank buffer: ")
2923   (let ((message-reply-buffer buffer))
2924     (save-window-excursion
2925       (message-yank-original))))
2926
2927 (defun message-buffers ()
2928   "Return a list of active message buffers."
2929   (let (buffers)
2930     (save-excursion
2931       (dolist (buffer (buffer-list t))
2932         (set-buffer buffer)
2933         (when (and (eq major-mode 'message-mode)
2934                    (null message-sent-message-via))
2935           (push (buffer-name buffer) buffers))))
2936     (nreverse buffers)))
2937
2938 (defun message-cite-original-without-signature ()
2939   "Cite function in the standard Message manner."
2940   (let ((start (point))
2941         (end (mark t))
2942         (functions
2943          (when message-indent-citation-function
2944            (if (listp message-indent-citation-function)
2945                message-indent-citation-function
2946              (list message-indent-citation-function)))))
2947     (mml-quote-region start end)
2948     ;; Allow undoing.
2949     (undo-boundary)
2950     (goto-char end)
2951     (when (re-search-backward message-signature-separator start t)
2952       ;; Also peel off any blank lines before the signature.
2953       (forward-line -1)
2954       (while (looking-at "^[ \t]*$")
2955         (forward-line -1))
2956       (forward-line 1)
2957       (delete-region (point) end)
2958       (unless (search-backward "\n\n" start t)
2959         ;; Insert a blank line if it is peeled off.
2960         (insert "\n")))
2961     (goto-char start)
2962     (while functions
2963       (funcall (pop functions)))
2964     (when message-citation-line-function
2965       (unless (bolp)
2966         (insert "\n"))
2967       (funcall message-citation-line-function))))
2968
2969 (eval-when-compile (defvar mail-citation-hook)) ;Compiler directive
2970 (defun message-cite-original ()
2971   "Cite function in the standard Message manner."
2972   (if (and (boundp 'mail-citation-hook)
2973            mail-citation-hook)
2974       (run-hooks 'mail-citation-hook)
2975     (let ((start (point))
2976           (end (mark t))
2977           (functions
2978            (when message-indent-citation-function
2979              (if (listp message-indent-citation-function)
2980                  message-indent-citation-function
2981                (list message-indent-citation-function)))))
2982       (mml-quote-region start end)
2983       (goto-char start)
2984       (while functions
2985         (funcall (pop functions)))
2986       (when message-citation-line-function
2987         (unless (bolp)
2988           (insert "\n"))
2989         (funcall message-citation-line-function)))))
2990
2991 (defun message-insert-citation-line ()
2992   "Insert a simple citation line."
2993   (when message-reply-headers
2994     (insert (mail-header-from message-reply-headers) " writes:\n\n")))
2995
2996 (defun message-position-on-field (header &rest afters)
2997   (let ((case-fold-search t))
2998     (save-restriction
2999       (narrow-to-region
3000        (goto-char (point-min))
3001        (progn
3002          (re-search-forward
3003           (concat "^" (regexp-quote mail-header-separator) "$"))
3004          (match-beginning 0)))
3005       (goto-char (point-min))
3006       (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
3007           (progn
3008             (re-search-forward "^[^ \t]" nil 'move)
3009             (beginning-of-line)
3010             (skip-chars-backward "\n")
3011             t)
3012         (while (and afters
3013                     (not (re-search-forward
3014                           (concat "^" (regexp-quote (car afters)) ":")
3015                           nil t)))
3016           (pop afters))
3017         (when afters
3018           (re-search-forward "^[^ \t]" nil 'move)
3019           (beginning-of-line))
3020         (insert header ": \n")
3021         (forward-char -1)
3022         nil))))
3023
3024 (defun message-remove-signature ()
3025   "Remove the signature from the text between point and mark.
3026 The text will also be indented the normal way."
3027   (save-excursion
3028     (let ((start (point))
3029           mark)
3030       (if (not (re-search-forward message-signature-separator (mark t) t))
3031           ;; No signature here, so we just indent the cited text.
3032           (message-indent-citation)
3033         ;; Find the last non-empty line.
3034         (forward-line -1)
3035         (while (looking-at "[ \t]*$")
3036           (forward-line -1))
3037         (forward-line 1)
3038         (setq mark (set-marker (make-marker) (point)))
3039         (goto-char start)
3040         (message-indent-citation)
3041         ;; Enable undoing the deletion.
3042         (undo-boundary)
3043         (delete-region mark (mark t))
3044         (set-marker mark nil)))))
3045
3046 \f
3047
3048 ;;;
3049 ;;; Sending messages
3050 ;;;
3051
3052 (defun message-send-and-exit (&optional arg)
3053   "Send message like `message-send', then, if no errors, exit from mail buffer."
3054   (interactive "P")
3055   (let ((buf (current-buffer))
3056         (actions message-exit-actions))
3057     (when (and (message-send arg)
3058                (buffer-name buf))
3059       (if message-kill-buffer-on-exit
3060           (kill-buffer buf)
3061         (bury-buffer buf)
3062         (when (eq buf (current-buffer))
3063           (message-bury buf)))
3064       (message-do-actions actions)
3065       t)))
3066
3067 (defun message-dont-send ()
3068   "Don't send the message you have been editing.
3069 Instead, just auto-save the buffer and then bury it."
3070   (interactive)
3071   (set-buffer-modified-p t)
3072   (save-buffer)
3073   (let ((actions message-postpone-actions))
3074     (message-bury (current-buffer))
3075     (message-do-actions actions)))
3076
3077 (defun message-kill-buffer ()
3078   "Kill the current buffer."
3079   (interactive)
3080   (when (or (not (buffer-modified-p))
3081             (yes-or-no-p "Message modified; kill anyway? "))
3082     (let ((actions message-kill-actions)
3083           (draft-article message-draft-article)
3084           (auto-save-file-name buffer-auto-save-file-name)
3085           (file-name buffer-file-name)
3086           (modified (buffer-modified-p)))
3087       (setq buffer-file-name nil)
3088       (kill-buffer (current-buffer))
3089       (when (and (or (and auto-save-file-name
3090                           (file-exists-p auto-save-file-name))
3091                      (and file-name
3092                           (file-exists-p file-name)))
3093                (yes-or-no-p (format "Remove the backup file%s? "
3094                                     (if modified " too" ""))))
3095         (ignore-errors
3096           (delete-file auto-save-file-name))
3097         (let ((message-draft-article draft-article))
3098           (message-disassociate-draft)))
3099       (message-do-actions actions))))
3100
3101 (defun message-bury (buffer)
3102   "Bury this mail BUFFER."
3103   (let ((newbuf (other-buffer buffer)))
3104     (bury-buffer buffer)
3105     (if (and (fboundp 'frame-parameters)
3106              (cdr (assq 'dedicated (frame-parameters)))
3107              (not (null (delq (selected-frame) (visible-frame-list)))))
3108         (delete-frame (selected-frame))
3109       (switch-to-buffer newbuf))))
3110
3111 (defun message-send (&optional arg)
3112   "Send the message in the current buffer.
3113 If `message-interactive' is non-nil, wait for success indication or
3114 error messages, and inform user.
3115 Otherwise any failure is reported in a message back to the user from
3116 the mailer.
3117 The usage of ARG is defined by the instance that called Message.
3118 It should typically alter the sending method in some way or other."
3119   (interactive "P")
3120   ;; Make it possible to undo the coming changes.
3121   (undo-boundary)
3122   (let ((inhibit-read-only t))
3123     (put-text-property (point-min) (point-max) 'read-only nil))
3124   (message-fix-before-sending)
3125   (run-hooks 'message-send-hook)
3126   (message message-sending-message)
3127   (let ((alist message-send-method-alist)
3128         (success t)
3129         elem sent dont-barf-on-no-method
3130         (message-options message-options))
3131     (message-options-set-recipient)
3132     (while (and success
3133                 (setq elem (pop alist)))
3134       (when (funcall (cadr elem))
3135         (when (and (or (not (memq (car elem)
3136                                   message-sent-message-via))
3137                        (if (or (message-gnksa-enable-p 'multiple-copies)
3138                                (not (eq (car elem) 'news)))
3139                            (y-or-n-p
3140                             (format
3141                              "Already sent message via %s; resend? "
3142                              (car elem)))
3143                          (error "Denied posting -- multiple copies")))
3144                    (setq success (funcall (caddr elem) arg)))
3145           (setq sent t))))
3146     (unless (or sent
3147                 (not success)
3148                 (let ((fcc (message-fetch-field "Fcc"))
3149                       (gcc (message-fetch-field "Gcc")))
3150                   (when (or fcc gcc)
3151                     (or (eq message-allow-no-recipients 'always)
3152                         (and (not (eq message-allow-no-recipients 'never))
3153                              (setq dont-barf-on-no-method
3154                                    (gnus-y-or-n-p
3155                                     (format "No receiver, perform %s anyway? "
3156                                             (cond ((and fcc gcc) "Fcc and Gcc")
3157                                                   (fcc "Fcc")
3158                                                   (t "Gcc"))))))))))
3159       (error "No methods specified to send by"))
3160     (when (or dont-barf-on-no-method
3161               (and success sent))
3162       (message-do-fcc)
3163       (save-excursion
3164         (run-hooks 'message-sent-hook))
3165       (message "Sending...done")
3166       ;; Mark the buffer as unmodified and delete auto-save.
3167       (set-buffer-modified-p nil)
3168       (delete-auto-save-file-if-necessary t)
3169       (message-disassociate-draft)
3170       ;; Delete other mail buffers and stuff.
3171       (message-do-send-housekeeping)
3172       (message-do-actions message-send-actions)
3173       ;; Return success.
3174       t)))
3175
3176 (defun message-send-via-mail (arg)
3177   "Send the current message via mail."
3178   (message-send-mail arg))
3179
3180 (defun message-send-via-news (arg)
3181   "Send the current message via news."
3182   (funcall message-send-news-function arg))
3183
3184 (defmacro message-check (type &rest forms)
3185   "Eval FORMS if TYPE is to be checked."
3186   `(or (message-check-element ,type)
3187        (save-excursion
3188          ,@forms)))
3189
3190 (put 'message-check 'lisp-indent-function 1)
3191 (put 'message-check 'edebug-form-spec '(form body))
3192
3193 (defun message-text-with-property (prop)
3194   "Return a list of all points where the text has PROP."
3195   (let ((points nil)
3196         (point (point-min)))
3197     (save-excursion
3198       (while (< point (point-max))
3199         (when (get-text-property point prop)
3200           (push point points))
3201         (incf point)))
3202     (nreverse points)))
3203
3204 (defun message-fix-before-sending ()
3205   "Do various things to make the message nice before sending it."
3206   ;; Make sure there's a newline at the end of the message.
3207   (goto-char (point-max))
3208   (unless (bolp)
3209     (insert "\n"))
3210   ;; Delete all invisible text.
3211   (message-check 'invisible-text
3212     (let ((points (message-text-with-property 'invisible)))
3213       (when points
3214         (goto-char (car points))
3215         (dolist (point points)
3216           (add-text-properties point (1+ point)
3217                                '(invisible nil highlight t)))
3218         (unless (yes-or-no-p
3219                  "Invisible text found and made visible; continue posting? ")
3220           (error "Invisible text found and made visible")))))
3221   (message-check 'illegible-text
3222     (let (found choice)
3223       (message-goto-body)
3224       (skip-chars-forward mm-7bit-chars)
3225       (while (not (eobp))
3226         (when (let ((char (char-after)))
3227                 (or (< (mm-char-int char) 128)
3228                     (and (mm-multibyte-p)
3229                          (memq (char-charset char)
3230                                '(eight-bit-control eight-bit-graphic
3231                                                    control-1)))))
3232           (add-text-properties (point) (1+ (point)) '(highlight t))
3233           (setq found t))
3234         (forward-char)
3235         (skip-chars-forward mm-7bit-chars))
3236       (when found
3237         (setq choice
3238               (gnus-multiple-choice
3239                "Illegible text found. Continue posting? "
3240                '((?d "Remove and continue posting")
3241                  (?r "Replace with dots and continue posting")
3242                  (?i "Ignore and continue posting")
3243                  (?e "Continue editing"))))
3244         (if (eq choice ?e)
3245           (error "Illegible text found"))
3246         (message-goto-body)
3247         (skip-chars-forward mm-7bit-chars)
3248         (while (not (eobp))
3249           (when (let ((char (char-after)))
3250                   (or (< (mm-char-int char) 128)
3251                       (and (mm-multibyte-p)
3252                            (memq (char-charset char)
3253                                  '(eight-bit-control eight-bit-graphic
3254                                                      control-1)))))
3255             (if (eq choice ?i)
3256                 (remove-text-properties (point) (1+ (point)) '(highlight t))
3257               (delete-char 1)
3258               (if (eq choice ?r)
3259                   (insert "."))))
3260           (forward-char)
3261           (skip-chars-forward mm-7bit-chars))))))
3262
3263 (defun message-add-action (action &rest types)
3264   "Add ACTION to be performed when doing an exit of type TYPES."
3265   (while types
3266     (add-to-list (intern (format "message-%s-actions" (pop types)))
3267                  action)))
3268
3269 (defun message-delete-action (action &rest types)
3270   "Delete ACTION from lists of actions performed when doing an exit of type TYPES."
3271   (let (var)
3272     (while types
3273       (set (setq var (intern (format "message-%s-actions" (pop types))))
3274            (delq action (symbol-value var))))))
3275
3276 (defun message-do-actions (actions)
3277   "Perform all actions in ACTIONS."
3278   ;; Now perform actions on successful sending.
3279   (while actions
3280     (ignore-errors
3281       (cond
3282        ;; A simple function.
3283        ((message-functionp (car actions))
3284         (funcall (car actions)))
3285        ;; Something to be evaled.
3286        (t
3287         (eval (car actions)))))
3288     (pop actions)))
3289
3290 (defun message-send-mail-partially ()
3291   "Send mail as message/partial."
3292   ;; replace the header delimiter with a blank line
3293   (goto-char (point-min))
3294   (re-search-forward
3295    (concat "^" (regexp-quote mail-header-separator) "\n"))
3296   (replace-match "\n")
3297   (run-hooks 'message-send-mail-hook)
3298   (let ((p (goto-char (point-min)))
3299         (tembuf (message-generate-new-buffer-clone-locals " message temp"))
3300         (curbuf (current-buffer))
3301         (id (message-make-message-id)) (n 1)
3302         plist total  header required-mail-headers)
3303     (while (not (eobp))
3304       (if (< (point-max) (+ p message-send-mail-partially-limit))
3305           (goto-char (point-max))
3306         (goto-char (+ p message-send-mail-partially-limit))
3307         (beginning-of-line)
3308         (if (<= (point) p) (forward-line 1))) ;; In case of bad message.
3309       (push p plist)
3310       (setq p (point)))
3311     (setq total (length plist))
3312     (push (point-max) plist)
3313     (setq plist (nreverse plist))
3314     (unwind-protect
3315         (save-excursion
3316           (setq p (pop plist))
3317           (while plist
3318             (set-buffer curbuf)
3319             (copy-to-buffer tembuf p (car plist))
3320             (set-buffer tembuf)
3321             (goto-char (point-min))
3322             (if header
3323                 (progn
3324                   (goto-char (point-min))
3325                   (narrow-to-region (point) (point))
3326                   (insert header))
3327               (message-goto-eoh)
3328               (setq header (buffer-substring (point-min) (point)))
3329               (goto-char (point-min))
3330               (narrow-to-region (point) (point))
3331               (insert header)
3332               (message-remove-header "Mime-Version")
3333               (message-remove-header "Content-Type")
3334               (message-remove-header "Content-Transfer-Encoding")
3335               (message-remove-header "Message-ID")
3336               (message-remove-header "Lines")
3337               (goto-char (point-max))
3338               (insert "Mime-Version: 1.0\n")
3339               (setq header (buffer-substring (point-min) (point-max))))
3340             (goto-char (point-max))
3341             (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n\n"
3342                             id n total))
3343             (forward-char -1)
3344             (let ((mail-header-separator ""))
3345               (when (memq 'Message-ID message-required-mail-headers)
3346                 (insert "Message-ID: " (message-make-message-id) "\n"))
3347               (when (memq 'Lines message-required-mail-headers)
3348                 (insert "Lines: " (message-make-lines) "\n"))
3349               (message-goto-subject)
3350               (end-of-line)
3351               (insert (format " (%d/%d)" n total))
3352               (widen)
3353               (mm-with-unibyte-current-buffer
3354                 (funcall (or message-send-mail-real-function
3355                              message-send-mail-function))))
3356             (setq n (+ n 1))
3357             (setq p (pop plist))
3358             (erase-buffer)))
3359       (kill-buffer tembuf))))
3360
3361 (defun message-send-mail (&optional arg)
3362   (require 'mail-utils)
3363   (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
3364          (case-fold-search nil)
3365          (news (message-news-p))
3366          (mailbuf (current-buffer))
3367          (message-this-is-mail t)
3368          (message-posting-charset
3369           (if (fboundp 'gnus-setup-posting-charset)
3370               (gnus-setup-posting-charset nil)
3371             message-posting-charset))
3372          (headers message-required-mail-headers))
3373     (save-restriction
3374       (message-narrow-to-headers)
3375       ;; Generate the Mail-Followup-To header if the header is not there...
3376       (if (and (message-subscribed-p)
3377                (not (mail-fetch-field "mail-followup-to")))
3378           (setq headers
3379                 (cons
3380                  (cons "Mail-Followup-To" (message-make-mail-followup-to))
3381                  message-required-mail-headers))
3382         ;; otherwise, delete the MFT header if the field is empty
3383         (when (equal "" (mail-fetch-field "mail-followup-to"))
3384           (message-remove-header "^Mail-Followup-To:")))
3385       ;; Insert some headers.
3386       (let ((message-deletable-headers
3387              (if news nil message-deletable-headers)))
3388         (message-generate-headers headers))
3389       ;; Let the user do all of the above.
3390       (run-hooks 'message-header-hook))
3391     (unwind-protect
3392         (save-excursion
3393           (set-buffer tembuf)
3394           (erase-buffer)
3395           ;; Avoid copying text props (except hard newlines).
3396           (insert (with-current-buffer mailbuf
3397                     (mml-buffer-substring-no-properties-except-hard-newlines
3398                      (point-min) (point-max))))
3399           ;; Remove some headers.
3400           (message-encode-message-body)
3401           (save-restriction
3402             (message-narrow-to-headers)
3403             ;; We (re)generate the Lines header.
3404             (when (memq 'Lines message-required-mail-headers)
3405               (message-generate-headers '(Lines)))
3406             ;; Remove some headers.
3407             (message-remove-header message-ignored-mail-headers t)
3408             (let ((mail-parse-charset message-default-charset))
3409               (mail-encode-encoded-word-buffer)))
3410           (goto-char (point-max))
3411           ;; require one newline at the end.
3412           (or (= (preceding-char) ?\n)
3413               (insert ?\n))
3414           (message-cleanup-headers)
3415           (when
3416               (save-restriction
3417                 (message-narrow-to-headers)
3418                 (and news
3419                      (or (message-fetch-field "cc")
3420                          (message-fetch-field "to"))
3421                      (let ((content-type (message-fetch-field "content-type")))
3422                        (or
3423                         (not content-type)
3424                         (string= "text/plain"
3425                                  (car
3426                                   (mail-header-parse-content-type
3427                                    content-type)))))))
3428             (message-insert-courtesy-copy))
3429           (if (or (not message-send-mail-partially-limit)
3430                   (< (point-max) message-send-mail-partially-limit)
3431                   (not (message-y-or-n-p
3432                         "The message size is too large, split? "
3433                         t
3434                         "\
3435 The message size, "
3436                         (/ (point-max) 1000) "KB, is too large.
3437
3438 Some mail gateways (MTA's) bounce large messages.  To avoid the
3439 problem, answer `y', and the message will be split into several
3440 smaller pieces, the size of each is about "
3441                         (/ message-send-mail-partially-limit 1000)
3442                         "KB except the last
3443 one.
3444
3445 However, some mail readers (MUA's) can't read split messages, i.e.,
3446 mails in message/partially format. Answer `n', and the message will be
3447 sent in one piece.
3448
3449 The size limit is controlled by `message-send-mail-partially-limit'.
3450 If you always want Gnus to send messages in one piece, set
3451 `message-send-mail-partially-limit' to `nil'.
3452 ")))
3453               (mm-with-unibyte-current-buffer
3454                 (message "Sending via mail...")
3455                 (funcall (or message-send-mail-real-function
3456                              message-send-mail-function)))
3457             (message-send-mail-partially)))
3458       (kill-buffer tembuf))
3459     (set-buffer mailbuf)
3460     (push 'mail message-sent-message-via)))
3461
3462 (defun message-send-mail-with-sendmail ()
3463   "Send off the prepared buffer with sendmail."
3464   (let ((errbuf (if message-interactive
3465                     (message-generate-new-buffer-clone-locals
3466                      " sendmail errors")
3467                   0))
3468         resend-to-addresses delimline)
3469     (unwind-protect
3470         (progn
3471           (let ((case-fold-search t))
3472             (save-restriction
3473               (message-narrow-to-headers)
3474               (setq resend-to-addresses (message-fetch-field "resent-to")))
3475             ;; Change header-delimiter to be what sendmail expects.
3476             (goto-char (point-min))
3477             (re-search-forward
3478              (concat "^" (regexp-quote mail-header-separator) "\n"))
3479             (replace-match "\n")
3480             (backward-char 1)
3481             (setq delimline (point-marker))
3482             (run-hooks 'message-send-mail-hook)
3483             ;; Insert an extra newline if we need it to work around
3484             ;; Sun's bug that swallows newlines.
3485             (goto-char (1+ delimline))
3486             (when (eval message-mailer-swallows-blank-line)
3487               (newline))
3488             (when message-interactive
3489               (save-excursion
3490                 (set-buffer errbuf)
3491                 (erase-buffer))))
3492           (let* ((default-directory "/")
3493                  (coding-system-for-write message-send-coding-system)
3494                  (cpr (apply
3495                        'call-process-region
3496                        (append
3497                         (list (point-min) (point-max)
3498                               (if (boundp 'sendmail-program)
3499                                   sendmail-program
3500                                 "/usr/lib/sendmail")
3501                               nil errbuf nil "-oi")
3502                         ;; Always specify who from,
3503                         ;; since some systems have broken sendmails.
3504                         ;; But some systems are more broken with -f, so
3505                         ;; we'll let users override this.
3506                         (if (null message-sendmail-f-is-evil)
3507                             (list "-f" (message-make-address)))
3508                         ;; These mean "report errors by mail"
3509                         ;; and "deliver in background".
3510                         (if (null message-interactive) '("-oem" "-odb"))
3511                         ;; Get the addresses from the message
3512                         ;; unless this is a resend.
3513                         ;; We must not do that for a resend
3514                         ;; because we would find the original addresses.
3515                         ;; For a resend, include the specific addresses.
3516                         (if resend-to-addresses
3517                             (list resend-to-addresses)
3518                           '("-t"))))))
3519             (unless (or (null cpr) (zerop cpr))
3520               (error "Sending...failed with exit value %d" cpr)))
3521           (when message-interactive
3522             (save-excursion
3523               (set-buffer errbuf)
3524               (goto-char (point-min))
3525               (while (re-search-forward "\n\n* *" nil t)
3526                 (replace-match "; "))
3527               (if (not (zerop (buffer-size)))
3528                   (error "Sending...failed to %s"
3529                          (buffer-substring (point-min) (point-max)))))))
3530       (when (bufferp errbuf)
3531         (kill-buffer errbuf)))))
3532
3533 (defun message-send-mail-with-qmail ()
3534   "Pass the prepared message buffer to qmail-inject.
3535 Refer to the documentation for the variable `message-send-mail-function'
3536 to find out how to use this."
3537   ;; replace the header delimiter with a blank line
3538   (goto-char (point-min))
3539   (re-search-forward
3540    (concat "^" (regexp-quote mail-header-separator) "\n"))
3541   (replace-match "\n")
3542   (run-hooks 'message-send-mail-hook)
3543   ;; send the message
3544   (case
3545       (let ((coding-system-for-write message-send-coding-system))
3546         (apply
3547          'call-process-region 1 (point-max) message-qmail-inject-program
3548          nil nil nil
3549          ;; qmail-inject's default behaviour is to look for addresses on the
3550          ;; command line; if there're none, it scans the headers.
3551          ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
3552          ;;
3553          ;; in general, ALL of qmail-inject's defaults are perfect for simply
3554          ;; reading a formatted (i. e., at least a To: or Resent-To header)
3555          ;; message from stdin.
3556          ;;
3557          ;; qmail also has the advantage of not having been raped by
3558          ;; various vendors, so we don't have to allow for that, either --
3559          ;; compare this with message-send-mail-with-sendmail and weep
3560          ;; for sendmail's lost innocence.
3561          ;;
3562          ;; all this is way cool coz it lets us keep the arguments entirely
3563          ;; free for -inject-arguments -- a big win for the user and for us
3564          ;; since we don't have to play that double-guessing game and the user
3565          ;; gets full control (no gestapo'ish -f's, for instance).  --sj
3566          (if (message-functionp message-qmail-inject-args)
3567              (funcall message-qmail-inject-args)
3568            message-qmail-inject-args)))
3569     ;; qmail-inject doesn't say anything on it's stdout/stderr,
3570     ;; we have to look at the retval instead
3571     (0 nil)
3572     (100 (error "qmail-inject reported permanent failure"))
3573     (111 (error "qmail-inject reported transient failure"))
3574     ;; should never happen
3575     (t   (error "qmail-inject reported unknown failure"))))
3576
3577 (defun message-send-mail-with-mh ()
3578   "Send the prepared message buffer with mh."
3579   (let ((mh-previous-window-config nil)
3580         (name (mh-new-draft-name)))
3581     (setq buffer-file-name name)
3582     ;; MH wants to generate these headers itself.
3583     (when message-mh-deletable-headers
3584       (let ((headers message-mh-deletable-headers))
3585         (while headers
3586           (goto-char (point-min))
3587           (and (re-search-forward
3588                 (concat "^" (symbol-name (car headers)) ": *") nil t)
3589                (message-delete-line))
3590           (pop headers))))
3591     (run-hooks 'message-send-mail-hook)
3592     ;; Pass it on to mh.
3593     (mh-send-letter)))
3594
3595 (defun message-smtpmail-send-it ()
3596   "Send the prepared message buffer with `smtpmail-send-it'.
3597 This only differs from `smtpmail-send-it' that this command evaluates
3598 `message-send-mail-hook' just before sending a message.  It is useful
3599 if your ISP requires the POP-before-SMTP authentication.  See the
3600 documentation for the function `mail-source-touch-pop'."
3601   (run-hooks 'message-send-mail-hook)
3602   (smtpmail-send-it))
3603
3604 (defun message-canlock-generate ()
3605   "Return a string that is non-trival to guess.
3606 Do not use this for anything important, it is cryptographically weak."
3607   (let (sha1-maximum-internal-length)
3608     (sha1 (concat (message-unique-id)
3609                   (format "%x%x%x" (random) (random t) (random))
3610                   (prin1-to-string (recent-keys))
3611                   (prin1-to-string (garbage-collect))))))
3612
3613 (defun message-canlock-password ()
3614   "The password used by message for cancel locks.
3615 This is the value of `canlock-password', if that option is non-nil.
3616 Otherwise, generate and save a value for `canlock-password' first."
3617   (unless canlock-password
3618     (customize-save-variable 'canlock-password (message-canlock-generate))
3619     (setq canlock-password-for-verify canlock-password))
3620   canlock-password)
3621
3622 (defun message-insert-canlock ()
3623   (when message-insert-canlock
3624     (message-canlock-password)
3625     (canlock-insert-header)))
3626
3627 (defun message-send-news (&optional arg)
3628   (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
3629          (case-fold-search nil)
3630          (method (if (message-functionp message-post-method)
3631                      (funcall message-post-method arg)
3632                    message-post-method))
3633          (newsgroups-field (save-restriction
3634                             (message-narrow-to-headers-or-head)
3635                             (message-fetch-field "Newsgroups")))
3636          (followup-field (save-restriction
3637                            (message-narrow-to-headers-or-head)
3638                            (message-fetch-field "Followup-To")))
3639          ;; BUG: We really need to get the charset for each name in the
3640          ;; Newsgroups and Followup-To lines to allow crossposting
3641          ;; between group namess with incompatible character sets.
3642          ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
3643          (group-field-charset
3644           (gnus-group-name-charset method newsgroups-field))
3645          (followup-field-charset
3646           (gnus-group-name-charset method (or followup-field "")))
3647          (rfc2047-header-encoding-alist
3648           (append (when group-field-charset
3649                     (list (cons "Newsgroups" group-field-charset)))
3650                   (when followup-field-charset
3651                     (list (cons "Followup-To" followup-field-charset)))
3652                   rfc2047-header-encoding-alist))
3653          (messbuf (current-buffer))
3654          (message-syntax-checks
3655           (if (and arg
3656                    (listp message-syntax-checks))
3657               (cons '(existing-newsgroups . disabled)
3658                     message-syntax-checks)
3659             message-syntax-checks))
3660          (message-this-is-news t)
3661          (message-posting-charset
3662           (gnus-setup-posting-charset newsgroups-field))
3663          result)
3664     (if (not (message-check-news-body-syntax))
3665         nil
3666       (save-restriction
3667         (message-narrow-to-headers)
3668         ;; Insert some headers.
3669         (message-generate-headers message-required-news-headers)
3670         (message-insert-canlock)
3671         ;; Let the user do all of the above.
3672         (run-hooks 'message-header-hook))
3673       ;; Note: This check will be disabled by the ".*" default value for
3674       ;; gnus-group-name-charset-group-alist. -- Pa 2001-10-07.
3675       (when (and group-field-charset
3676                  (listp message-syntax-checks))
3677         (setq message-syntax-checks
3678               (cons '(valid-newsgroups . disabled)
3679                     message-syntax-checks)))
3680       (message-cleanup-headers)
3681       (if (not (let ((message-post-method method))
3682                  (message-check-news-syntax)))
3683           nil
3684         (unwind-protect
3685             (save-excursion
3686               (set-buffer tembuf)
3687               (buffer-disable-undo)
3688               (erase-buffer)
3689               ;; Avoid copying text props (except hard newlines).
3690               (insert
3691                (with-current-buffer messbuf
3692                  (mml-buffer-substring-no-properties-except-hard-newlines
3693                   (point-min) (point-max))))
3694               (message-encode-message-body)
3695               ;; Remove some headers.
3696               (save-restriction
3697                 (message-narrow-to-headers)
3698                 ;; We (re)generate the Lines header.
3699                 (when (memq 'Lines message-required-mail-headers)
3700                   (message-generate-headers '(Lines)))
3701                 ;; Remove some headers.
3702                 (message-remove-header message-ignored-news-headers t)
3703                 (let ((mail-parse-charset message-default-charset))
3704                   (mail-encode-encoded-word-buffer)))
3705               (goto-char (point-max))
3706               ;; require one newline at the end.
3707               (or (= (preceding-char) ?\n)
3708                   (insert ?\n))
3709               (let ((case-fold-search t))
3710                 ;; Remove the delimiter.
3711                 (goto-char (point-min))
3712                 (re-search-forward
3713                  (concat "^" (regexp-quote mail-header-separator) "\n"))
3714                 (replace-match "\n")
3715                 (backward-char 1))
3716               (run-hooks 'message-send-news-hook)
3717               (gnus-open-server method)
3718               (message "Sending news via %s..." (gnus-server-string method))
3719               (setq result (let ((mail-header-separator ""))
3720                              (gnus-request-post method))))
3721           (kill-buffer tembuf))
3722         (set-buffer messbuf)
3723         (if result
3724             (push 'news message-sent-message-via)
3725           (message "Couldn't send message via news: %s"
3726                    (nnheader-get-report (car method)))
3727           nil)))))
3728
3729 ;;;
3730 ;;; Header generation & syntax checking.
3731 ;;;
3732
3733 (defun message-check-element (type)
3734   "Return non-nil if this TYPE is not to be checked."
3735   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
3736       t
3737     (let ((able (assq type message-syntax-checks)))
3738       (and (consp able)
3739            (eq (cdr able) 'disabled)))))
3740
3741 (defun message-check-news-syntax ()
3742   "Check the syntax of the message."
3743   (save-excursion
3744     (save-restriction
3745       (widen)
3746       ;; We narrow to the headers and check them first.
3747       (save-excursion
3748         (save-restriction
3749           (message-narrow-to-headers)
3750           (message-check-news-header-syntax))))))
3751
3752 (defun message-check-news-header-syntax ()
3753   (and
3754    ;; Check Newsgroups header.
3755    (message-check 'newsgroups
3756      (let ((group (message-fetch-field "newsgroups")))
3757        (or
3758         (and group
3759              (not (string-match "\\`[ \t]*\\'" group)))
3760         (ignore
3761          (message
3762           "The newsgroups field is empty or missing.  Posting is denied.")))))
3763    ;; Check the Subject header.
3764    (message-check 'subject
3765      (let* ((case-fold-search t)
3766             (subject (message-fetch-field "subject")))
3767        (or
3768         (and subject
3769              (not (string-match "\\`[ \t]*\\'" subject)))
3770         (ignore
3771          (message
3772           "The subject field is empty or missing.  Posting is denied.")))))
3773    ;; Check for commands in Subject.
3774    (message-check 'subject-cmsg
3775      (if (string-match "^cmsg " (message-fetch-field "subject"))
3776          (y-or-n-p
3777           "The control code \"cmsg\" is in the subject.  Really post? ")
3778        t))
3779    ;; Check long header lines.
3780    (message-check 'long-header-lines
3781      (let ((start (point))
3782            found)
3783        (while (and (not found)
3784                    (re-search-forward "^\\([^ \t:]+\\): " nil t))
3785          (when (> (- (point) start) 998)
3786            (setq found t))
3787          (setq start (match-beginning 0))
3788          (forward-line 1))
3789        (if found
3790            (y-or-n-p (format "Your %s header is too long.  Really post? "
3791                              (match-string 1)))
3792          t)))
3793    ;; Check for multiple identical headers.
3794    (message-check 'multiple-headers
3795      (let (found)
3796        (while (and (not found)
3797                    (re-search-forward "^[^ \t:]+: " nil t))
3798          (save-excursion
3799            (or (re-search-forward
3800                 (concat "^"
3801                         (regexp-quote
3802                          (setq found
3803                                (buffer-substring
3804                                 (match-beginning 0) (- (match-end 0) 2))))
3805                         ":")
3806                 nil t)
3807                (setq found nil))))
3808        (if found
3809            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
3810          t)))
3811    ;; Check for Version and Sendsys.
3812    (message-check 'sendsys
3813      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
3814          (y-or-n-p
3815           (format "The article contains a %s command.  Really post? "
3816                   (buffer-substring (match-beginning 0)
3817                                     (1- (match-end 0)))))
3818        t))
3819    ;; See whether we can shorten Followup-To.
3820    (message-check 'shorten-followup-to
3821      (let ((newsgroups (message-fetch-field "newsgroups"))
3822            (followup-to (message-fetch-field "followup-to"))
3823            to)
3824        (when (and newsgroups
3825                   (string-match "," newsgroups)
3826                   (not followup-to)
3827                   (not
3828                    (zerop
3829                     (length
3830                      (setq to (completing-read
3831                                "Followups to (default: no Followup-To header) "
3832                                (mapcar (lambda (g) (list g))
3833                                        (cons "poster"
3834                                              (message-tokenize-header
3835                                               newsgroups)))))))))
3836          (goto-char (point-min))
3837          (insert "Followup-To: " to "\n"))
3838        t))
3839    ;; Check "Shoot me".
3840    (message-check 'shoot
3841      (if (re-search-forward
3842           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
3843          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
3844        t))
3845    ;; Check for Approved.
3846    (message-check 'approved
3847      (if (re-search-forward "^Approved:" nil t)
3848          (y-or-n-p "The article contains an Approved header.  Really post? ")
3849        t))
3850    ;; Check the Message-ID header.
3851    (message-check 'message-id
3852      (let* ((case-fold-search t)
3853             (message-id (message-fetch-field "message-id" t)))
3854        (or (not message-id)
3855            ;; Is there an @ in the ID?
3856            (and (string-match "@" message-id)
3857                 ;; Is there a dot in the ID?
3858                 (string-match "@[^.]*\\." message-id)
3859                 ;; Does the ID end with a dot?
3860                 (not (string-match "\\.>" message-id)))
3861            (y-or-n-p
3862             (format "The Message-ID looks strange: \"%s\".  Really post? "
3863                     message-id)))))
3864    ;; Check the Newsgroups & Followup-To headers.
3865    (message-check 'existing-newsgroups
3866      (let* ((case-fold-search t)
3867             (newsgroups (message-fetch-field "newsgroups"))
3868             (followup-to (message-fetch-field "followup-to"))
3869             (groups (message-tokenize-header
3870                      (if followup-to
3871                          (concat newsgroups "," followup-to)
3872                        newsgroups)))
3873             (post-method (if (message-functionp message-post-method)
3874                              (funcall message-post-method)
3875                            message-post-method))
3876             ;; KLUDGE to handle nnvirtual groups.  Doing this right
3877             ;; would probably involve a new nnoo function.
3878             ;; -- Per Abrahamsen <abraham@dina.kvl.dk>, 2001-10-17.
3879             (method (if (and (consp post-method)
3880                              (eq (car post-method) 'nnvirtual)
3881                              gnus-message-group-art)
3882                         (let ((group (car (nnvirtual-find-group-art
3883                                            (car gnus-message-group-art)
3884                                            (cdr gnus-message-group-art)))))
3885                           (gnus-find-method-for-group group))
3886                       post-method))
3887             (known-groups
3888              (mapcar (lambda (n)
3889                        (gnus-group-name-decode
3890                         (gnus-group-real-name n)
3891                         (gnus-group-name-charset method n)))
3892                      (gnus-groups-from-server method)))
3893             errors)
3894        (while groups
3895          (unless (or (equal (car groups) "poster")
3896                      (member (car groups) known-groups))
3897            (push (car groups) errors))
3898          (pop groups))
3899        (cond
3900         ;; Gnus is not running.
3901         ((or (not (and (boundp 'gnus-active-hashtb)
3902                        gnus-active-hashtb))
3903              (not (boundp 'gnus-read-active-file)))
3904          t)
3905         ;; We don't have all the group names.
3906         ((and (or (not gnus-read-active-file)
3907                   (eq gnus-read-active-file 'some))
3908               errors)
3909          (y-or-n-p
3910           (format
3911            "Really post to %s possibly unknown group%s: %s? "
3912            (if (= (length errors) 1) "this" "these")
3913            (if (= (length errors) 1) "" "s")
3914            (mapconcat 'identity errors ", "))))
3915         ;; There were no errors.
3916         ((not errors)
3917          t)
3918         ;; There are unknown groups.
3919         (t
3920          (y-or-n-p
3921           (format
3922            "Really post to %s unknown group%s: %s? "
3923            (if (= (length errors) 1) "this" "these")
3924            (if (= (length errors) 1) "" "s")
3925            (mapconcat 'identity errors ", ")))))))
3926    ;; Check continuation headers.
3927    (message-check 'continuation-headers
3928      (goto-char (point-min))
3929      (let ((do-posting t))
3930        (while (re-search-forward "^[^ \t\n][^:\n]*$" nil t)
3931          (if (y-or-n-p "Fix continuation lines? ")
3932              (progn
3933                (goto-char (match-beginning 0))
3934                (insert " "))
3935            (unless (y-or-n-p "Send anyway? ")
3936              (setq do-posting nil))))
3937        do-posting))
3938    ;; Check the Newsgroups & Followup-To headers for syntax errors.
3939    (message-check 'valid-newsgroups
3940      (let ((case-fold-search t)
3941            (headers '("Newsgroups" "Followup-To"))
3942            header error)
3943        (while (and headers (not error))
3944          (when (setq header (mail-fetch-field (car headers)))
3945            (if (or
3946                 (not
3947                  (string-match
3948                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
3949                   header))
3950                 (memq
3951                  nil (mapcar
3952                       (lambda (g)
3953                         (not (string-match "\\.\\'\\|\\.\\." g)))
3954                       (message-tokenize-header header ","))))
3955                (setq error t)))
3956          (unless error
3957            (pop headers)))
3958        (if (not error)
3959            t
3960          (y-or-n-p
3961           (format "The %s header looks odd: \"%s\".  Really post? "
3962                   (car headers) header)))))
3963    (message-check 'repeated-newsgroups
3964      (let ((case-fold-search t)
3965            (headers '("Newsgroups" "Followup-To"))
3966            header error groups group)
3967        (while (and headers
3968                    (not error))
3969          (when (setq header (mail-fetch-field (pop headers)))
3970            (setq groups (message-tokenize-header header ","))
3971            (while (setq group (pop groups))
3972              (when (member group groups)
3973                (setq error group
3974                      groups nil)))))
3975        (if (not error)
3976            t
3977          (y-or-n-p
3978           (format "Group %s is repeated in headers.  Really post? " error)))))
3979    ;; Check the From header.
3980    (message-check 'from
3981      (let* ((case-fold-search t)
3982             (from (message-fetch-field "from"))
3983             ad)
3984        (cond
3985         ((not from)
3986          (message "There is no From line.  Posting is denied.")
3987          nil)
3988         ((or (not (string-match
3989                    "@[^\\.]*\\."
3990                    (setq ad (nth 1 (mail-extract-address-components
3991                                     from))))) ;larsi@ifi
3992              (string-match "\\.\\." ad) ;larsi@ifi..uio
3993              (string-match "@\\." ad)   ;larsi@.ifi.uio
3994              (string-match "\\.$" ad)   ;larsi@ifi.uio.
3995              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
3996              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
3997          (message
3998           "Denied posting -- the From looks strange: \"%s\"." from)
3999          nil)
4000         ((let ((addresses (rfc822-addresses from)))
4001            (while (and addresses
4002                        (not (eq (string-to-char (car addresses)) ?\()))
4003              (setq addresses (cdr addresses)))
4004            addresses)
4005          (message
4006           "Denied posting -- bad From address: \"%s\"." from)
4007          nil)
4008         (t t))))
4009    ;; Check the Reply-To header.
4010    (message-check 'reply-to
4011      (let* ((case-fold-search t)
4012             (reply-to (message-fetch-field "reply-to"))
4013             ad)
4014        (cond
4015         ((not reply-to)
4016          t)
4017         ((string-match "," reply-to)
4018          (y-or-n-p
4019           (format "Multiple Reply-To addresses: \"%s\". Really post? "
4020                   reply-to)))
4021         ((or (not (string-match
4022                    "@[^\\.]*\\."
4023                    (setq ad (nth 1 (mail-extract-address-components
4024                                     reply-to))))) ;larsi@ifi
4025              (string-match "\\.\\." ad) ;larsi@ifi..uio
4026              (string-match "@\\." ad)   ;larsi@.ifi.uio
4027              (string-match "\\.$" ad)   ;larsi@ifi.uio.
4028              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
4029              (string-match "(.*).*(.*)" reply-to)) ;(lars) (lars)
4030          (y-or-n-p
4031           (format
4032            "The Reply-To looks strange: \"%s\". Really post? "
4033            reply-to)))
4034         (t t))))))
4035
4036 (defun message-check-news-body-syntax ()
4037   (and
4038    ;; Check for long lines.
4039    (message-check 'long-lines
4040      (goto-char (point-min))
4041      (re-search-forward
4042       (concat "^" (regexp-quote mail-header-separator) "$"))
4043      (forward-line 1)
4044      (while (and
4045              (or (looking-at
4046                   "<#\\(/\\)?\\(multipart\\|part\\|external\\|mml\\)")
4047                  (let ((p (point)))
4048                    (end-of-line)
4049                    (< (- (point) p) 80)))
4050              (zerop (forward-line 1))))
4051      (or (bolp)
4052          (eobp)
4053          (y-or-n-p
4054           "You have lines longer than 79 characters.  Really post? ")))
4055    ;; Check whether the article is empty.
4056    (message-check 'empty
4057      (goto-char (point-min))
4058      (re-search-forward
4059       (concat "^" (regexp-quote mail-header-separator) "$"))
4060      (forward-line 1)
4061      (let ((b (point)))
4062        (goto-char (point-max))
4063        (re-search-backward message-signature-separator nil t)
4064        (beginning-of-line)
4065        (or (re-search-backward "[^ \n\t]" b t)
4066            (if (message-gnksa-enable-p 'empty-article)
4067                (y-or-n-p "Empty article.  Really post? ")
4068              (message "Denied posting -- Empty article.")
4069              nil))))
4070    ;; Check for control characters.
4071    (message-check 'control-chars
4072      (if (re-search-forward "[\000-\007\013\015-\032\034-\037\200-\237]" nil t)
4073          (y-or-n-p
4074           "The article contains control characters.  Really post? ")
4075        t))
4076    ;; Check excessive size.
4077    (message-check 'size
4078      (if (> (buffer-size) 60000)
4079          (y-or-n-p
4080           (format "The article is %d octets long.  Really post? "
4081                   (buffer-size)))
4082        t))
4083    ;; Check whether any new text has been added.
4084    (message-check 'new-text
4085      (or
4086       (not message-checksum)
4087       (not (eq (message-checksum) message-checksum))
4088       (if (message-gnksa-enable-p 'quoted-text-only)
4089           (y-or-n-p
4090            "It looks like no new text has been added.  Really post? ")
4091         (message "Denied posting -- no new text has been added.")
4092         nil)))
4093    ;; Check the length of the signature.
4094    (message-check 'signature
4095      (goto-char (point-max))
4096      (if (> (count-lines (point) (point-max)) 5)
4097          (y-or-n-p
4098           (format
4099            "Your .sig is %d lines; it should be max 4.  Really post? "
4100            (1- (count-lines (point) (point-max)))))
4101        t))
4102    ;; Ensure that text follows last quoted portion.
4103    (message-check 'quoting-style
4104      (goto-char (point-max))
4105      (let ((no-problem t))
4106        (when (search-backward-regexp "^>[^\n]*\n" nil t)
4107          (setq no-problem (search-forward-regexp "^[ \t]*[^>\n]" nil t)))
4108        (if no-problem
4109            t
4110          (if (message-gnksa-enable-p 'quoted-text-only)
4111              (y-or-n-p "Your text should follow quoted text.  Really post? ")
4112            ;; Ensure that
4113            (goto-char (point-min))
4114            (re-search-forward
4115             (concat "^" (regexp-quote mail-header-separator) "$"))
4116            (if (search-forward-regexp "^[ \t]*[^>\n]" nil t)
4117                (y-or-n-p "Your text should follow quoted text.  Really post? ")
4118              (message "Denied posting -- only quoted text.")
4119              nil)))))))
4120
4121 (defun message-checksum ()
4122   "Return a \"checksum\" for the current buffer."
4123   (let ((sum 0))
4124     (save-excursion
4125       (goto-char (point-min))
4126       (re-search-forward
4127        (concat "^" (regexp-quote mail-header-separator) "$"))
4128       (while (not (eobp))
4129         (when (not (looking-at "[ \t\n]"))
4130           (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1)
4131                             (char-after))))
4132         (forward-char 1)))
4133     sum))
4134
4135 (defun message-do-fcc ()
4136   "Process Fcc headers in the current buffer."
4137   (let ((case-fold-search t)
4138         (buf (current-buffer))
4139         list file
4140         (mml-externalize-attachments message-fcc-externalize-attachments))
4141     (save-excursion
4142       (save-restriction
4143         (message-narrow-to-headers)
4144         (setq file (message-fetch-field "fcc" t)))
4145       (when file
4146         (set-buffer (get-buffer-create " *message temp*"))
4147         (erase-buffer)
4148         (insert-buffer-substring buf)
4149         (message-encode-message-body)
4150         (save-restriction
4151           (message-narrow-to-headers)
4152           (while (setq file (message-fetch-field "fcc" t))
4153             (push file list)
4154             (message-remove-header "fcc" nil t))
4155           (let ((mail-parse-charset message-default-charset)
4156                 (rfc2047-header-encoding-alist
4157                  (cons '("Newsgroups" . default)
4158                        rfc2047-header-encoding-alist)))
4159             (mail-encode-encoded-word-buffer)))
4160         (goto-char (point-min))
4161         (when (re-search-forward
4162                (concat "^" (regexp-quote mail-header-separator) "$")
4163                nil t)
4164           (replace-match "" t t ))
4165         ;; Process FCC operations.
4166         (while list
4167           (setq file (pop list))
4168           (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
4169               ;; Pipe the article to the program in question.
4170               (call-process-region (point-min) (point-max) shell-file-name
4171                                    nil nil nil shell-command-switch
4172                                    (match-string 1 file))
4173             ;; Save the article.
4174             (setq file (expand-file-name file))
4175             (unless (file-exists-p (file-name-directory file))
4176               (make-directory (file-name-directory file) t))
4177             (if (and message-fcc-handler-function
4178                      (not (eq message-fcc-handler-function 'rmail-output)))
4179                 (funcall message-fcc-handler-function file)
4180               (if (and (file-readable-p file) (mail-file-babyl-p file))
4181                   (rmail-output file 1 nil t)
4182                 (let ((mail-use-rfc822 t))
4183                   (rmail-output file 1 t t))))))
4184         (kill-buffer (current-buffer))))))
4185
4186 (defun message-output (filename)
4187   "Append this article to Unix/babyl mail file FILENAME."
4188   (if (and (file-readable-p filename)
4189            (mail-file-babyl-p filename))
4190       (gnus-output-to-rmail filename t)
4191     (gnus-output-to-mail filename t)))
4192
4193 (defun message-cleanup-headers ()
4194   "Do various automatic cleanups of the headers."
4195   ;; Remove empty lines in the header.
4196   (save-restriction
4197     (message-narrow-to-headers)
4198     ;; Remove blank lines.
4199     (while (re-search-forward "^[ \t]*\n" nil t)
4200       (replace-match "" t t))
4201
4202     ;; Correct Newsgroups and Followup-To headers:  Change sequence of
4203     ;; spaces to comma and eliminate spaces around commas.  Eliminate
4204     ;; embedded line breaks.
4205     (goto-char (point-min))
4206     (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
4207       (save-restriction
4208         (narrow-to-region
4209          (point)
4210          (if (re-search-forward "^[^ \t]" nil t)
4211              (match-beginning 0)
4212            (forward-line 1)
4213            (point)))
4214         (goto-char (point-min))
4215         (while (re-search-forward "\n[ \t]+" nil t)
4216           (replace-match " " t t))     ;No line breaks (too confusing)
4217         (goto-char (point-min))
4218         (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
4219           (replace-match "," t t))
4220         (goto-char (point-min))
4221         ;; Remove trailing commas.
4222         (when (re-search-forward ",+$" nil t)
4223           (replace-match "" t t))))))
4224
4225 (defun message-make-date (&optional now)
4226   "Make a valid data header.
4227 If NOW, use that time instead."
4228   (let* ((now (or now (current-time)))
4229          (zone (nth 8 (decode-time now)))
4230          (sign "+"))
4231     (when (< zone 0)
4232       (setq sign "-")
4233       (setq zone (- zone)))
4234     (concat
4235      ;; The day name of the %a spec is locale-specific.  Pfff.
4236      (format "%s, " (capitalize (car (rassoc (nth 6 (decode-time now))
4237                                              parse-time-weekdays))))
4238      (format-time-string "%d" now)
4239      ;; The month name of the %b spec is locale-specific.  Pfff.
4240      (format " %s "
4241              (capitalize (car (rassoc (nth 4 (decode-time now))
4242                                       parse-time-months))))
4243      (format-time-string "%Y %H:%M:%S " now)
4244      ;; We do all of this because XEmacs doesn't have the %z spec.
4245      (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60)))))
4246
4247 (defun message-make-message-id ()
4248   "Make a unique Message-ID."
4249   (concat "<" (message-unique-id)
4250           (let ((psubject (save-excursion (message-fetch-field "subject")))
4251                 (psupersedes
4252                  (save-excursion (message-fetch-field "supersedes"))))
4253             (if (or
4254                  (and message-reply-headers
4255                       (mail-header-references message-reply-headers)
4256                       (mail-header-subject message-reply-headers)
4257                       psubject
4258                       (not (string=
4259                             (message-strip-subject-re
4260                              (mail-header-subject message-reply-headers))
4261                             (message-strip-subject-re psubject))))
4262                  (and psupersedes
4263                       (string-match "_-_@" psupersedes)))
4264                 "_-_" ""))
4265           "@" (message-make-fqdn) ">"))
4266
4267 (defvar message-unique-id-char nil)
4268
4269 ;; If you ever change this function, make sure the new version
4270 ;; cannot generate IDs that the old version could.
4271 ;; You might for example insert a "." somewhere (not next to another dot
4272 ;; or string boundary), or modify the "fsf" string.
4273 (defun message-unique-id ()
4274   ;; Don't use microseconds from (current-time), they may be unsupported.
4275   ;; Instead we use this randomly inited counter.
4276   (setq message-unique-id-char
4277         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
4278            ;; (current-time) returns 16-bit ints,
4279            ;; and 2^16*25 just fits into 4 digits i base 36.
4280            (* 25 25)))
4281   (let ((tm (current-time)))
4282     (concat
4283      (if (memq system-type '(ms-dos emx vax-vms))
4284          (let ((user (downcase (user-login-name))))
4285            (while (string-match "[^a-z0-9_]" user)
4286              (aset user (match-beginning 0) ?_))
4287            user)
4288        (message-number-base36 (user-uid) -1))
4289      (message-number-base36 (+ (car tm)
4290                                (lsh (% message-unique-id-char 25) 16)) 4)
4291      (message-number-base36 (+ (nth 1 tm)
4292                                (lsh (/ message-unique-id-char 25) 16)) 4)
4293      ;; Append the newsreader name, because while the generated
4294      ;; ID is unique to this newsreader, other newsreaders might
4295      ;; otherwise generate the same ID via another algorithm.
4296      ".fsf")))
4297
4298 (defun message-number-base36 (num len)
4299   (if (if (< len 0)
4300           (<= num 0)
4301         (= len 0))
4302       ""
4303     (concat (message-number-base36 (/ num 36) (1- len))
4304             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
4305                                   (% num 36))))))
4306
4307 (defun message-make-organization ()
4308   "Make an Organization header."
4309   (let* ((organization
4310           (when message-user-organization
4311             (if (message-functionp message-user-organization)
4312                 (funcall message-user-organization)
4313               message-user-organization))))
4314     (save-excursion
4315       (message-set-work-buffer)
4316       (cond ((stringp organization)
4317              (insert organization))
4318             ((and (eq t organization)
4319                   message-user-organization-file
4320                   (file-exists-p message-user-organization-file))
4321              (insert-file-contents message-user-organization-file)))
4322       (goto-char (point-min))
4323       (while (re-search-forward "[\t\n]+" nil t)
4324         (replace-match "" t t))
4325       (unless (zerop (buffer-size))
4326         (buffer-string)))))
4327
4328 (defun message-make-lines ()
4329   "Count the number of lines and return numeric string."
4330   (save-excursion
4331     (save-restriction
4332       (widen)
4333       (message-goto-body)
4334       (int-to-string (count-lines (point) (point-max))))))
4335
4336 (defun message-make-references ()
4337   "Return the References header for this message."
4338   (when message-reply-headers
4339     (let ((message-id (mail-header-message-id message-reply-headers))
4340           (references (mail-header-references message-reply-headers))
4341           new-references)
4342       (if (or references message-id)
4343           (concat (or references "") (and references " ")
4344                   (or message-id ""))
4345         nil))))
4346
4347 (defun message-make-in-reply-to ()
4348   "Return the In-Reply-To header for this message."
4349   (when message-reply-headers
4350     (let ((from (mail-header-from message-reply-headers))
4351           (date (mail-header-date message-reply-headers))
4352           (msg-id (mail-header-message-id message-reply-headers)))
4353       (when from
4354         (let ((stop-pos
4355                (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
4356           (concat msg-id (if msg-id " (")
4357                   (if (and stop-pos
4358                            (not (zerop stop-pos)))
4359                       (substring from 0 stop-pos) from)
4360                   "'s message of \""
4361                   (if (or (not date) (string= date ""))
4362                       "(unknown date)" date)
4363                   "\"" (if msg-id ")")))))))
4364
4365 (defun message-make-distribution ()
4366   "Make a Distribution header."
4367   (let ((orig-distribution (message-fetch-reply-field "distribution")))
4368     (cond ((message-functionp message-distribution-function)
4369            (funcall message-distribution-function))
4370           (t orig-distribution))))
4371
4372 (defun message-make-expires ()
4373   "Return an Expires header based on `message-expires'."
4374   (let ((current (current-time))
4375         (future (* 1.0 message-expires 60 60 24)))
4376     ;; Add the future to current.
4377     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
4378     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
4379     (message-make-date current)))
4380
4381 (defun message-make-path ()
4382   "Return uucp path."
4383   (let ((login-name (user-login-name)))
4384     (cond ((null message-user-path)
4385            (concat (system-name) "!" login-name))
4386           ((stringp message-user-path)
4387            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
4388            (concat message-user-path "!" login-name))
4389           (t login-name))))
4390
4391 (defun message-make-from ()
4392   "Make a From header."
4393   (let* ((style message-from-style)
4394          (login (message-make-address))
4395          (fullname
4396           (or (and (boundp 'user-full-name)
4397                    user-full-name)
4398               (user-full-name))))
4399     (when (string= fullname "&")
4400       (setq fullname (user-login-name)))
4401     (save-excursion
4402       (message-set-work-buffer)
4403       (cond
4404        ((or (null style)
4405             (equal fullname ""))
4406         (insert login))
4407        ((or (eq style 'angles)
4408             (and (not (eq style 'parens))
4409                  ;; Use angles if no quoting is needed, or if parens would
4410                  ;; need quoting too.
4411                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
4412                      (let ((tmp (concat fullname nil)))
4413                        (while (string-match "([^()]*)" tmp)
4414                          (aset tmp (match-beginning 0) ?-)
4415                          (aset tmp (1- (match-end 0)) ?-))
4416                        (string-match "[\\()]" tmp)))))
4417         (insert fullname)
4418         (insert " <" login ">"))
4419        (t                               ; 'parens or default
4420         (insert login " (")
4421         (let ((fullname-start (point)))
4422           (insert fullname)
4423           (goto-char fullname-start)
4424           ;; RFC 822 says \ and nonmatching parentheses
4425           ;; must be escaped in comments.
4426           ;; Escape every instance of ()\ ...
4427           (while (re-search-forward "[()\\]" nil 1)
4428             (replace-match "\\\\\\&" t))
4429           ;; ... then undo escaping of matching parentheses,
4430           ;; including matching nested parentheses.
4431           (goto-char fullname-start)
4432           (while (re-search-forward
4433                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
4434                   nil 1)
4435             (replace-match "\\1(\\3)" t)
4436             (goto-char fullname-start)))
4437         (insert ")")))
4438       (buffer-string))))
4439
4440 (defun message-make-sender ()
4441   "Return the \"real\" user address.
4442 This function tries to ignore all user modifications, and
4443 give as trustworthy answer as possible."
4444   (concat (user-login-name) "@" (system-name)))
4445
4446 (defun message-make-address ()
4447   "Make the address of the user."
4448   (or (message-user-mail-address)
4449       (concat (user-login-name) "@" (message-make-domain))))
4450
4451 (defun message-user-mail-address ()
4452   "Return the pertinent part of `user-mail-address'."
4453   (when user-mail-address
4454     (if (string-match " " user-mail-address)
4455         (nth 1 (mail-extract-address-components user-mail-address))
4456       user-mail-address)))
4457
4458 (defun message-make-fqdn ()
4459   "Return user's fully qualified domain name."
4460   (let ((system-name (system-name))
4461         (user-mail (message-user-mail-address)))
4462     (cond
4463      ((and (string-match "[^.]\\.[^.]" system-name)
4464            (not (string-match message-bogus-system-names system-name)))
4465       ;; `system-name' returned the right result.
4466       system-name)
4467      ;; Try `mail-host-address'.
4468      ((and (boundp 'mail-host-address)
4469            (stringp mail-host-address)
4470            (string-match "\\." mail-host-address))
4471       mail-host-address)
4472      ;; We try `user-mail-address' as a backup.
4473      ((and user-mail
4474            (string-match "\\." user-mail)
4475            (string-match "@\\(.*\\)\\'" user-mail))
4476       (match-string 1 user-mail))
4477      ;; Default to this bogus thing.
4478      (t
4479       (concat system-name ".i-did-not-set--mail-host-address--so-tickle-me")))))
4480
4481 (defun message-make-host-name ()
4482   "Return the name of the host."
4483   (let ((fqdn (message-make-fqdn)))
4484     (string-match "^[^.]+\\." fqdn)
4485     (substring fqdn 0 (1- (match-end 0)))))
4486
4487 (defun message-make-domain ()
4488   "Return the domain name."
4489   (or mail-host-address
4490       (message-make-fqdn)))
4491
4492 (defun message-to-list-only ()
4493   "Send a message to the list only.
4494 Remove all addresses but the list address from To and Cc headers."
4495   (interactive)
4496   (let ((listaddr (message-make-mail-followup-to t)))
4497     (when listaddr
4498       (save-excursion
4499         (message-remove-header "to")
4500         (message-remove-header "cc")
4501         (message-position-on-field "To" "X-Draft-From")
4502         (insert listaddr)))))
4503
4504 (defun message-make-mail-followup-to (&optional only-show-subscribed)
4505   "Return the Mail-Followup-To header.
4506 If passed the optional argument ONLY-SHOW-SUBSCRIBED only return the
4507 subscribed address (and not the additional To and Cc header contents)."
4508   (let* ((case-fold-search t)
4509          (to (message-fetch-field "To"))
4510          (cc (message-fetch-field "cc"))
4511          (msg-recipients (concat to (and to cc ", ") cc))
4512          (recipients
4513           (mapcar 'mail-strip-quoted-names
4514                   (message-tokenize-header msg-recipients)))
4515          (file-regexps
4516           (if message-subscribed-address-file
4517               (let (begin end item re)
4518                 (save-excursion
4519                   (with-temp-buffer
4520                     (insert-file-contents message-subscribed-address-file)
4521                     (while (not (eobp))
4522                       (setq begin (point))
4523                       (forward-line 1)
4524                       (setq end (point))
4525                       (if (bolp) (setq end (1- end)))
4526                       (setq item (regexp-quote (buffer-substring begin end)))
4527                       (if re (setq re (concat re "\\|" item))
4528                         (setq re (concat "\\`\\(" item))))
4529                     (and re (list (concat re "\\)\\'"))))))))
4530          (mft-regexps (apply 'append message-subscribed-regexps
4531                              (mapcar 'regexp-quote
4532                                      message-subscribed-addresses)
4533                              file-regexps
4534                              (mapcar 'funcall
4535                                      message-subscribed-address-functions))))
4536     (save-match-data
4537       (let ((subscribed-lists nil)
4538             (list
4539              (loop for recipient in recipients
4540                when (loop for regexp in mft-regexps
4541                       when (string-match regexp recipient) return t)
4542                return recipient)))
4543         (when list
4544           (if only-show-subscribed
4545               list
4546             msg-recipients))))))
4547
4548 (defun message-generate-headers (headers)
4549   "Prepare article HEADERS.
4550 Headers already prepared in the buffer are not modified."
4551   (setq headers (append headers message-required-headers))
4552   (save-restriction
4553     (message-narrow-to-headers)
4554     (let* ((Date (message-make-date))
4555            (Message-ID (message-make-message-id))
4556            (Organization (message-make-organization))
4557            (From (message-make-from))
4558            (Path (message-make-path))
4559            (Subject nil)
4560            (Newsgroups nil)
4561            (In-Reply-To (message-make-in-reply-to))
4562            (References (message-make-references))
4563            (To nil)
4564            (Distribution (message-make-distribution))
4565            (Lines (message-make-lines))
4566            (User-Agent message-newsreader)
4567            (Expires (message-make-expires))
4568            (case-fold-search t)
4569            (optionalp nil)
4570            header value elem)
4571       ;; First we remove any old generated headers.
4572       (let ((headers message-deletable-headers))
4573         (unless (buffer-modified-p)
4574           (setq headers (delq 'Message-ID (copy-sequence headers))))
4575         (while headers
4576           (goto-char (point-min))
4577           (and (re-search-forward
4578                 (concat "^" (symbol-name (car headers)) ": *") nil t)
4579                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
4580                (message-delete-line))
4581           (pop headers)))
4582       ;; Go through all the required headers and see if they are in the
4583       ;; articles already.  If they are not, or are empty, they are
4584       ;; inserted automatically - except for Subject, Newsgroups and
4585       ;; Distribution.
4586       (while headers
4587         (goto-char (point-min))
4588         (setq elem (pop headers))
4589         (if (consp elem)
4590             (if (eq (car elem) 'optional)
4591                 (setq header (cdr elem)
4592                       optionalp t)
4593               (setq header (car elem)))
4594           (setq header elem))
4595         (when (or (not (re-search-forward
4596                         (concat "^"
4597                                 (regexp-quote
4598                                  (downcase
4599                                   (if (stringp header)
4600                                       header
4601                                     (symbol-name header))))
4602                                 ":")
4603                         nil t))
4604                   (progn
4605                     ;; The header was found.  We insert a space after the
4606                     ;; colon, if there is none.
4607                     (if (/= (char-after) ? ) (insert " ") (forward-char 1))
4608                     ;; Find out whether the header is empty.
4609                     (looking-at "[ \t]*\n[^ \t]")))
4610           ;; So we find out what value we should insert.
4611           (setq value
4612                 (cond
4613                  ((and (consp elem)
4614                        (eq (car elem) 'optional))
4615                   ;; This is an optional header.  If the cdr of this
4616                   ;; is something that is nil, then we do not insert
4617                   ;; this header.
4618                   (setq header (cdr elem))
4619                   (or (and (message-functionp (cdr elem))
4620                            (funcall (cdr elem)))
4621                       (and (boundp (cdr elem))
4622                            (symbol-value (cdr elem)))))
4623                  ((consp elem)
4624                   ;; The element is a cons.  Either the cdr is a
4625                   ;; string to be inserted verbatim, or it is a
4626                   ;; function, and we insert the value returned from
4627                   ;; this function.
4628                   (or (and (stringp (cdr elem))
4629                            (cdr elem))
4630                       (and (message-functionp (cdr elem))
4631                            (funcall (cdr elem)))))
4632                  ((and (boundp header)
4633                        (symbol-value header))
4634                   ;; The element is a symbol.  We insert the value
4635                   ;; of this symbol, if any.
4636                   (symbol-value header))
4637                  ((not (message-check-element header))
4638                   ;; We couldn't generate a value for this header,
4639                   ;; so we just ask the user.
4640                   (read-from-minibuffer
4641                    (format "Empty header for %s; enter value: " header)))))
4642           ;; Finally insert the header.
4643           (when (and value
4644                      (not (equal value "")))
4645             (save-excursion
4646               (if (bolp)
4647                   (progn
4648                     ;; This header didn't exist, so we insert it.
4649                     (goto-char (point-max))
4650                     (let ((formatter
4651                            (cdr (assq header message-header-format-alist))))
4652                       (if formatter
4653                           (funcall formatter header value)
4654                         (insert (if (stringp header)
4655                                     header (symbol-name header))
4656                                 ": " value))
4657                       ;; We check whether the value was ended by a
4658                       ;; newline.  If now, we insert one.
4659                       (unless (bolp)
4660                         (insert "\n"))
4661                       (forward-line -1)))
4662                 ;; The value of this header was empty, so we clear
4663                 ;; totally and insert the new value.
4664                 (delete-region (point) (gnus-point-at-eol))
4665                 ;; If the header is optional, and the header was
4666                 ;; empty, we con't insert it anyway.
4667                 (unless optionalp
4668                   (insert value)))
4669               ;; Add the deletable property to the headers that require it.
4670               (and (memq header message-deletable-headers)
4671                    (progn (beginning-of-line) (looking-at "[^:]+: "))
4672                    (add-text-properties
4673                     (point) (match-end 0)
4674                     '(message-deletable t face italic) (current-buffer)))))))
4675       ;; Insert new Sender if the From is strange.
4676       (let ((from (message-fetch-field "from"))
4677             (sender (message-fetch-field "sender"))
4678             (secure-sender (message-make-sender)))
4679         (when (and from
4680                    (not (message-check-element 'sender))
4681                    (not (string=
4682                          (downcase
4683                           (cadr (mail-extract-address-components from)))
4684                          (downcase secure-sender)))
4685                    (or (null sender)
4686                        (not
4687                         (string=
4688                          (downcase
4689                           (cadr (mail-extract-address-components sender)))
4690                          (downcase secure-sender)))))
4691           (goto-char (point-min))
4692           ;; Rename any old Sender headers to Original-Sender.
4693           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
4694             (beginning-of-line)
4695             (insert "Original-")
4696             (beginning-of-line))
4697           (when (or (message-news-p)
4698                     (string-match "@.+\\.." secure-sender))
4699             (insert "Sender: " secure-sender "\n")))))))
4700
4701 (defun message-insert-courtesy-copy ()
4702   "Insert a courtesy message in mail copies of combined messages."
4703   (let (newsgroups)
4704     (save-excursion
4705       (save-restriction
4706         (message-narrow-to-headers)
4707         (when (setq newsgroups (message-fetch-field "newsgroups"))
4708           (goto-char (point-max))
4709           (insert "Posted-To: " newsgroups "\n")))
4710       (forward-line 1)
4711       (when message-courtesy-message
4712         (cond
4713          ((string-match "%s" message-courtesy-message)
4714           (insert (format message-courtesy-message newsgroups)))
4715          (t
4716           (insert message-courtesy-message)))))))
4717
4718 ;;;
4719 ;;; Setting up a message buffer
4720 ;;;
4721
4722 (defun message-fill-address (header value)
4723   (save-restriction
4724     (narrow-to-region (point) (point))
4725     (insert (capitalize (symbol-name header))
4726             ": "
4727             (if (consp value) (car value) value)
4728             "\n")
4729     (narrow-to-region (point-min) (1- (point-max)))
4730     (let (quoted last)
4731       (goto-char (point-min))
4732       (while (not (eobp))
4733         (skip-chars-forward "^,\"" (point-max))
4734         (if (or (eq (char-after) ?,)
4735                 (eobp))
4736             (when (not quoted)
4737               (if (and (> (current-column) 78)
4738                        last)
4739                   (progn
4740                     (save-excursion
4741                       (goto-char last)
4742                       (insert "\n\t"))
4743                     (setq last (1+ (point))))
4744                 (setq last (1+ (point)))))
4745           (setq quoted (not quoted)))
4746         (unless (eobp)
4747           (forward-char 1))))
4748     (goto-char (point-max))
4749     (widen)
4750     (forward-line 1)))
4751
4752 (defun message-fill-header (header value)
4753   (let ((begin (point))
4754         (fill-column 78)
4755         (fill-prefix "\t"))
4756     (insert (capitalize (symbol-name header))
4757             ": "
4758             (if (consp value) (car value) value)
4759             "\n")
4760     (save-restriction
4761       (narrow-to-region begin (point))
4762       (fill-region-as-paragraph begin (point))
4763       ;; Tapdance around looong Message-IDs.
4764       (forward-line -1)
4765       (when (looking-at "[ \t]*$")
4766         (message-delete-line))
4767       (goto-char begin)
4768       (re-search-forward ":" nil t)
4769       (when (looking-at "\n[ \t]+")
4770         (replace-match " " t t))
4771       (goto-char (point-max)))))
4772
4773 (defun message-shorten-1 (list cut surplus)
4774   "Cut SURPLUS elements out of LIST, beginning with CUTth one."
4775   (setcdr (nthcdr (- cut 2) list)
4776           (nthcdr (+ (- cut 2) surplus 1) list)))
4777
4778 (defun message-shorten-references (header references)
4779   "Trim REFERENCES to be 21 Message-ID long or less, and fold them.
4780 If folding is disallowed, also check that the REFERENCES are less
4781 than 988 characters long, and if they are not, trim them until they are."
4782   (let ((maxcount 21)
4783         (count 0)
4784         (cut 2)
4785         refs)
4786     (with-temp-buffer
4787       (insert references)
4788       (goto-char (point-min))
4789       ;; Cons a list of valid references.
4790       (while (re-search-forward "<[^>]+>" nil t)
4791         (push (match-string 0) refs))
4792       (setq refs (nreverse refs)
4793             count (length refs)))
4794
4795     ;; If the list has more than MAXCOUNT elements, trim it by
4796     ;; removing the CUTth element and the required number of
4797     ;; elements that follow.
4798     (when (> count maxcount)
4799       (let ((surplus (- count maxcount)))
4800         (message-shorten-1 refs cut surplus)
4801         (decf count surplus)))
4802
4803     ;; If folding is disallowed, make sure the total length (including
4804     ;; the spaces between) will be less than MAXSIZE characters.
4805     ;;
4806     ;; Only disallow folding for News messages. At this point the headers
4807     ;; have not been generated, thus we use message-this-is-news directly.
4808     (when (and message-this-is-news message-cater-to-broken-inn)
4809       (let ((maxsize 988)
4810             (totalsize (+ (apply #'+ (mapcar #'length refs))
4811                           (1- count)))
4812             (surplus 0)
4813             (ptr (nthcdr (1- cut) refs)))
4814         ;; Decide how many elements to cut off...
4815         (while (> totalsize maxsize)
4816           (decf totalsize (1+ (length (car ptr))))
4817           (incf surplus)
4818           (setq ptr (cdr ptr)))
4819         ;; ...and do it.
4820         (when (> surplus 0)
4821           (message-shorten-1 refs cut surplus))))
4822
4823     ;; Finally, collect the references back into a string and insert
4824     ;; it into the buffer.
4825     (let ((refstring (mapconcat #'identity refs " ")))
4826       (if (and message-this-is-news message-cater-to-broken-inn)
4827           (insert (capitalize (symbol-name header)) ": "
4828                   refstring "\n")
4829         (message-fill-header header refstring)))))
4830
4831 (defun message-position-point ()
4832   "Move point to where the user probably wants to find it."
4833   (message-narrow-to-headers)
4834   (cond
4835    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
4836     (search-backward ":" )
4837     (widen)
4838     (forward-char 1)
4839     (if (eq (char-after) ? )
4840         (forward-char 1)
4841       (insert " ")))
4842    (t
4843     (goto-char (point-max))
4844     (widen)
4845     (forward-line 1)
4846     (unless (looking-at "$")
4847       (forward-line 2)))
4848    (sit-for 0)))
4849
4850 (defcustom message-beginning-of-line t
4851   "Whether C-a goes to beginning of header values."
4852   :group 'message-buffers
4853   :type 'boolean)
4854
4855 (defun message-beginning-of-line (&optional n)
4856   "Move point to beginning of header value or to beginning of line."
4857   (interactive "p")
4858   (let ((zrs 'zmacs-region-stays))
4859     (when (and (interactive-p) (boundp zrs))
4860       (set zrs t)))
4861   (if (and message-beginning-of-line
4862            (message-point-in-header-p))
4863       (let* ((here (point))
4864              (bol (progn (beginning-of-line n) (point)))
4865              (eol (gnus-point-at-eol))
4866              (eoh (re-search-forward ": *" eol t)))
4867         (if (or (not eoh) (equal here eoh))
4868             (goto-char bol)
4869           (goto-char eoh)))
4870     (beginning-of-line n)))
4871
4872 (defun message-buffer-name (type &optional to group)
4873   "Return a new (unique) buffer name based on TYPE and TO."
4874   (cond
4875    ;; Generate a new buffer name The Message Way.
4876    ((eq message-generate-new-buffers 'unique)
4877     (generate-new-buffer-name
4878      (concat "*" type
4879              (if to
4880                  (concat " to "
4881                          (or (car (mail-extract-address-components to))
4882                              to) "")
4883                "")
4884              (if (and group (not (string= group ""))) (concat " on " group) "")
4885              "*")))
4886    ;; Check whether `message-generate-new-buffers' is a function,
4887    ;; and if so, call it.
4888    ((message-functionp message-generate-new-buffers)
4889     (funcall message-generate-new-buffers type to group))
4890    ((eq message-generate-new-buffers 'unsent)
4891     (generate-new-buffer-name
4892      (concat "*unsent " type
4893              (if to
4894                  (concat " to "
4895                          (or (car (mail-extract-address-components to))
4896                              to) "")
4897                "")
4898              (if (and group (not (string= group ""))) (concat " on " group) "")
4899              "*")))
4900    ;; Use standard name.
4901    (t
4902     (format "*%s message*" type))))
4903
4904 (defun message-pop-to-buffer (name)
4905   "Pop to buffer NAME, and warn if it already exists and is modified."
4906   (let ((buffer (get-buffer name)))
4907     (if (and buffer
4908              (buffer-name buffer))
4909         (progn
4910           (set-buffer (pop-to-buffer buffer))
4911           (when (and (buffer-modified-p)
4912                      (not (y-or-n-p
4913                            "Message already being composed; erase? ")))
4914             (error "Message being composed")))
4915       (set-buffer (pop-to-buffer name)))
4916     (erase-buffer)
4917     (message-mode)))
4918
4919 (defun message-do-send-housekeeping ()
4920   "Kill old message buffers."
4921   ;; We might have sent this buffer already.  Delete it from the
4922   ;; list of buffers.
4923   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
4924   (while (and message-max-buffers
4925               message-buffer-list
4926               (>= (length message-buffer-list) message-max-buffers))
4927     ;; Kill the oldest buffer -- unless it has been changed.
4928     (let ((buffer (pop message-buffer-list)))
4929       (when (and (buffer-name buffer)
4930                  (not (buffer-modified-p buffer)))
4931         (kill-buffer buffer))))
4932   ;; Rename the buffer.
4933   (if message-send-rename-function
4934       (funcall message-send-rename-function)
4935     ;; Note: mail-abbrevs of XEmacs renames buffer name behind Gnus.
4936     (when (string-match
4937            "\\`\\*\\(sent \\|unsent \\)?\\(.+\\)\\*[^\\*]*\\|\\`mail to "
4938            (buffer-name))
4939       (let ((name (match-string 2 (buffer-name)))
4940             to group)
4941         (if (not (or (null name)
4942                      (string-equal name "mail")
4943                      (string-equal name "posting")))
4944             (setq name (concat "*sent " name "*"))
4945           (message-narrow-to-headers)
4946           (setq to (message-fetch-field "to"))
4947           (setq group (message-fetch-field "newsgroups"))
4948           (widen)
4949           (setq name
4950                 (cond
4951                  (to (concat "*sent mail to "
4952                              (or (car (mail-extract-address-components to))
4953                                  to) "*"))
4954                  ((and group (not (string= group "")))
4955                   (concat "*sent posting on " group "*"))
4956                  (t "*sent mail*"))))
4957         (unless (string-equal name (buffer-name))
4958           (rename-buffer name t)))))
4959   ;; Push the current buffer onto the list.
4960   (when message-max-buffers
4961     (setq message-buffer-list
4962           (nconc message-buffer-list (list (current-buffer))))))
4963
4964 (defun message-mail-user-agent ()
4965   (let ((mua (cond
4966               ((not message-mail-user-agent) nil)
4967               ((eq message-mail-user-agent t) mail-user-agent)
4968               (t message-mail-user-agent))))
4969     (if (memq mua '(message-user-agent gnus-user-agent))
4970         nil
4971       mua)))
4972
4973 (defun message-setup (headers &optional replybuffer actions switch-function)
4974   (let ((mua (message-mail-user-agent))
4975         subject to field yank-action)
4976     (if (not (and message-this-is-mail mua))
4977         (message-setup-1 headers replybuffer actions)
4978       (if replybuffer
4979           (setq yank-action (list 'insert-buffer replybuffer)))
4980       (setq headers (copy-sequence headers))
4981       (setq field (assq 'Subject headers))
4982       (when field
4983         (setq subject (cdr field))
4984         (setq headers (delq field headers)))
4985       (setq field (assq 'To headers))
4986       (when field
4987         (setq to (cdr field))
4988         (setq headers (delq field headers)))
4989       (let ((mail-user-agent mua))
4990         (compose-mail to subject
4991                       (mapcar (lambda (item)
4992                                 (cons
4993                                  (format "%s" (car item))
4994                                  (cdr item)))
4995                               headers)
4996                       nil switch-function yank-action actions)))))
4997
4998 (defun message-headers-to-generate (headers included-headers excluded-headers)
4999   "Return a list that includes all headers from HEADERS.
5000 If INCLUDED-HEADERS is a list, just include those headers.  If if is
5001 t, include all headers.  In any case, headers from EXCLUDED-HEADERS
5002 are not included."
5003   (let ((result nil)
5004         header-name)
5005     (dolist (header headers)
5006       (setq header-name (cond
5007                          ((and (consp header)
5008                                (eq (car header) 'optional))
5009                           ;; On the form (optional . Header)
5010                           (cdr header))
5011                          ((consp header)
5012                           ;; On the form (Header . function)
5013                           (car header))
5014                          (t
5015                           ;; Just a Header.
5016                           header)))
5017       (when (and (not (memq header-name excluded-headers))
5018                  (or (eq included-headers t)
5019                      (memq header-name included-headers)))
5020         (push header result)))
5021     (nreverse result)))
5022
5023 (defun message-setup-1 (headers &optional replybuffer actions)
5024   (dolist (action actions)
5025     (condition-case nil
5026         (add-to-list 'message-send-actions
5027                      `(apply ',(car action) ',(cdr action)))))
5028   (setq message-reply-buffer replybuffer)
5029   (goto-char (point-min))
5030   ;; Insert all the headers.
5031   (mail-header-format
5032    (let ((h headers)
5033          (alist message-header-format-alist))
5034      (while h
5035        (unless (assq (caar h) message-header-format-alist)
5036          (push (list (caar h)) alist))
5037        (pop h))
5038      alist)
5039    headers)
5040   (delete-region (point) (progn (forward-line -1) (point)))
5041   (when message-default-headers
5042     (insert message-default-headers)
5043     (or (bolp) (insert ?\n)))
5044   (put-text-property
5045    (point)
5046    (progn
5047      (insert mail-header-separator "\n")
5048      (1- (point)))
5049    'read-only nil)
5050   (forward-line -1)
5051   (when (message-news-p)
5052     (when message-default-news-headers
5053       (insert message-default-news-headers)
5054       (or (bolp) (insert ?\n)))
5055     (when message-generate-headers-first
5056       (message-generate-headers
5057        (message-headers-to-generate
5058         (append message-required-news-headers
5059                 message-required-headers)
5060         message-generate-headers-first
5061         '(Lines Subject)))))
5062   (when (message-mail-p)
5063     (when message-default-mail-headers
5064       (insert message-default-mail-headers)
5065       (or (bolp) (insert ?\n)))
5066     (when message-generate-headers-first
5067       (message-generate-headers
5068        (message-headers-to-generate
5069         (append message-required-mail-headers
5070                 message-required-headers)
5071         message-generate-headers-first
5072         '(Lines Subject)))))
5073   (run-hooks 'message-signature-setup-hook)
5074   (message-insert-signature)
5075   (save-restriction
5076     (message-narrow-to-headers)
5077     (if message-alternative-emails
5078         (message-use-alternative-email-as-from))
5079     (run-hooks 'message-header-setup-hook))
5080   (set-buffer-modified-p nil)
5081   (setq buffer-undo-list nil)
5082   (run-hooks 'message-setup-hook)
5083   (message-position-point)
5084   (undo-boundary))
5085
5086 (defun message-set-auto-save-file-name ()
5087   "Associate the message buffer with a file in the drafts directory."
5088   (when message-auto-save-directory
5089     (unless (file-directory-p
5090              (directory-file-name message-auto-save-directory))
5091       (make-directory message-auto-save-directory t))
5092     (if (gnus-alive-p)
5093         (setq message-draft-article
5094               (nndraft-request-associate-buffer "drafts"))
5095       (setq buffer-file-name (expand-file-name
5096                               (if (memq system-type
5097                                         '(ms-dos ms-windows windows-nt
5098                                                  cygwin cygwin32 win32 w32
5099                                                  mswindows))
5100                                   "message"
5101                                 "*message*")
5102                               message-auto-save-directory))
5103       (setq buffer-auto-save-file-name (make-auto-save-file-name)))
5104     (clear-visited-file-modtime)
5105     (setq buffer-file-coding-system message-draft-coding-system)))
5106
5107 (defun message-disassociate-draft ()
5108   "Disassociate the message buffer from the drafts directory."
5109   (when message-draft-article
5110     (nndraft-request-expire-articles
5111      (list message-draft-article) "drafts" nil t)))
5112
5113 (defun message-insert-headers ()
5114   "Generate the headers for the article."
5115   (interactive)
5116   (save-excursion
5117     (save-restriction
5118       (message-narrow-to-headers)
5119       (when (message-news-p)
5120         (message-generate-headers
5121          (delq 'Lines
5122                (delq 'Subject
5123                      (copy-sequence message-required-news-headers)))))
5124       (when (message-mail-p)
5125         (message-generate-headers
5126          (delq 'Lines
5127                (delq 'Subject
5128                      (copy-sequence message-required-mail-headers))))))))
5129
5130 \f
5131
5132 ;;;
5133 ;;; Commands for interfacing with message
5134 ;;;
5135
5136 ;;;###autoload
5137 (defun message-mail (&optional to subject
5138                                other-headers continue switch-function
5139                                yank-action send-actions)
5140   "Start editing a mail message to be sent.
5141 OTHER-HEADERS is an alist of header/value pairs."
5142   (interactive)
5143   (let ((message-this-is-mail t) replybuffer)
5144     (unless (message-mail-user-agent)
5145       (message-pop-to-buffer (message-buffer-name "mail" to)))
5146     ;; FIXME: message-mail should do something if YANK-ACTION is not
5147     ;; insert-buffer.
5148     (and (consp yank-action) (eq (car yank-action) 'insert-buffer)
5149          (setq replybuffer (nth 1 yank-action)))
5150     (message-setup
5151      (nconc
5152       `((To . ,(or to "")) (Subject . ,(or subject "")))
5153       (when other-headers other-headers))
5154      replybuffer send-actions)
5155     ;; FIXME: Should return nil if failure.
5156     t))
5157
5158 ;;;###autoload
5159 (defun message-news (&optional newsgroups subject)
5160   "Start editing a news article to be sent."
5161   (interactive)
5162   (let ((message-this-is-news t))
5163     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups))
5164     (message-setup `((Newsgroups . ,(or newsgroups ""))
5165                      (Subject . ,(or subject ""))))))
5166
5167 (defun message-get-reply-headers (wide &optional to-address address-headers)
5168   (let (follow-to mct never-mct to cc author mft recipients)
5169     ;; Find all relevant headers we need.
5170     (setq to (message-fetch-field "to")
5171           cc (message-fetch-field "cc")
5172           mct (message-fetch-field "mail-copies-to")
5173           author (or (message-fetch-field "mail-reply-to")
5174                      (message-fetch-field "reply-to")
5175                      (message-fetch-field "from")
5176                      "")
5177           mft (and message-use-mail-followup-to
5178                    (message-fetch-field "mail-followup-to")))
5179
5180     ;; Handle special values of Mail-Copies-To.
5181     (when mct
5182       (cond ((or (equal (downcase mct) "never")
5183                  (equal (downcase mct) "nobody"))
5184              (setq never-mct t)
5185              (setq mct nil))
5186             ((or (equal (downcase mct) "always")
5187                  (equal (downcase mct) "poster"))
5188              (setq mct author))))
5189
5190     (save-match-data
5191       ;; Build (textual) list of new recipient addresses.
5192       (cond
5193        ((not wide)
5194         (setq recipients (concat ", " author)))
5195        (address-headers
5196         (dolist (header address-headers)
5197           (let ((value (message-fetch-field header)))
5198             (when value
5199               (setq recipients (concat recipients ", " value))))))
5200        ((and mft
5201              (string-match "[^ \t,]" mft)
5202              (or (not (eq message-use-mail-followup-to 'ask))
5203                  (message-y-or-n-p "Obey Mail-Followup-To? " t "\
5204 You should normally obey the Mail-Followup-To: header.  In this
5205 article, it has the value of
5206
5207 " mft "
5208
5209 which directs your response to " (if (string-match "," mft)
5210                                      "the specified addresses"
5211                                    "that address only") ".
5212
5213 Most commonly, Mail-Followup-To is used by a mailing list poster to
5214 express that responses should be sent to just the list, and not the
5215 poster as well.
5216
5217 If a message is posted to several mailing lists, Mail-Followup-To may
5218 also be used to direct the following discussion to one list only,
5219 because discussions that are spread over several lists tend to be
5220 fragmented and very difficult to follow.
5221
5222 Also, some source/announcement lists are not intended for discussion;
5223 responses here are directed to other addresses.")))
5224         (setq recipients (concat ", " mft)))
5225        (to-address
5226         (setq recipients (concat ", " to-address))
5227         ;; If the author explicitly asked for a copy, we don't deny it to them.
5228         (if mct (setq recipients (concat recipients ", " mct))))
5229        (t
5230         (setq recipients (if never-mct "" (concat ", " author)))
5231         (if to  (setq recipients (concat recipients ", " to)))
5232         (if cc  (setq recipients (concat recipients ", " cc)))
5233         (if mct (setq recipients (concat recipients ", " mct)))))
5234       (if (>= (length recipients) 2)
5235           ;; Strip the leading ", ".
5236           (setq recipients (substring recipients 2)))
5237       ;; Squeeze whitespace.
5238       (while (string-match "[ \t][ \t]+" recipients)
5239         (setq recipients (replace-match " " t t recipients)))
5240       ;; Remove addresses that match `rmail-dont-reply-to-names'.
5241       (let ((rmail-dont-reply-to-names message-dont-reply-to-names))
5242         (setq recipients (rmail-dont-reply-to recipients)))
5243       ;; Perhaps "Mail-Copies-To: never" removed the only address?
5244       (if (string-equal recipients "")
5245           (setq recipients author))
5246       ;; Convert string to a list of (("foo@bar" . "Name <Foo@BAR>") ...).
5247       (setq recipients
5248             (mapcar
5249              (lambda (addr)
5250                (cons (downcase (mail-strip-quoted-names addr)) addr))
5251              (message-tokenize-header recipients)))
5252       ;; Remove first duplicates.  (Why not all duplicates?  Is this a bug?)
5253       (let ((s recipients))
5254         (while s
5255           (setq recipients (delq (assoc (car (pop s)) s) recipients))))
5256
5257       ;; Remove hierarchical lists that are contained within each other,
5258       ;; if message-hierarchical-addresses is defined.
5259       (when message-hierarchical-addresses
5260         (let ((plain-addrs (mapcar 'car recipients))
5261               subaddrs recip)
5262           (while plain-addrs
5263             (setq subaddrs (assoc (car plain-addrs)
5264                                   message-hierarchical-addresses)
5265                   plain-addrs (cdr plain-addrs))
5266             (when subaddrs
5267               (setq subaddrs (cdr subaddrs))
5268               (while subaddrs
5269                 (setq recip (assoc (car subaddrs) recipients)
5270                       subaddrs (cdr subaddrs))
5271                 (if recip
5272                     (setq recipients (delq recip recipients))))))))
5273
5274       ;; Build the header alist.  Allow the user to be asked whether
5275       ;; or not to reply to all recipients in a wide reply.
5276       (setq follow-to (list (cons 'To (cdr (pop recipients)))))
5277       (when (and recipients
5278                  (or (not message-wide-reply-confirm-recipients)
5279                      (y-or-n-p "Reply to all recipients? ")))
5280         (setq recipients (mapconcat
5281                           (lambda (addr) (cdr addr)) recipients ", "))
5282         (if (string-match "^ +" recipients)
5283             (setq recipients (substring recipients (match-end 0))))
5284         (push (cons 'Cc recipients) follow-to)))
5285     follow-to))
5286
5287 ;;;###autoload
5288 (defun message-reply (&optional to-address wide)
5289   "Start editing a reply to the article in the current buffer."
5290   (interactive)
5291   (require 'gnus-sum)                   ; for gnus-list-identifiers
5292   (let ((cur (current-buffer))
5293         from subject date reply-to to cc
5294         references message-id follow-to
5295         (inhibit-point-motion-hooks t)
5296         (message-this-is-mail t)
5297         gnus-warning)
5298     (save-restriction
5299       (message-narrow-to-head-1)
5300       ;; Allow customizations to have their say.
5301       (if (not wide)
5302           ;; This is a regular reply.
5303           (when (message-functionp message-reply-to-function)
5304             (save-excursion
5305               (setq follow-to (funcall message-reply-to-function))))
5306         ;; This is a followup.
5307         (when (message-functionp message-wide-reply-to-function)
5308           (save-excursion
5309             (setq follow-to
5310                   (funcall message-wide-reply-to-function)))))
5311       (setq message-id (message-fetch-field "message-id" t)
5312             references (message-fetch-field "references")
5313             date (message-fetch-field "date")
5314             from (message-fetch-field "from")
5315             subject (or (message-fetch-field "subject") "none"))
5316       (when gnus-list-identifiers
5317         (setq subject (message-strip-list-identifiers subject)))
5318       (setq subject (concat "Re: " (message-strip-subject-re subject)))
5319       (when message-subject-trailing-was-query
5320         (setq subject (message-strip-subject-trailing-was subject)))
5321
5322       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
5323                  (string-match "<[^>]+>" gnus-warning))
5324         (setq message-id (match-string 0 gnus-warning)))
5325
5326       (unless follow-to
5327         (setq follow-to (message-get-reply-headers wide to-address))))
5328
5329     (unless (message-mail-user-agent)
5330       (message-pop-to-buffer
5331        (message-buffer-name
5332         (if wide "wide reply" "reply") from
5333         (if wide to-address nil))))
5334
5335     (setq message-reply-headers
5336           (vector 0 subject from date message-id references 0 0 ""))
5337
5338     (message-setup
5339      `((Subject . ,subject)
5340        ,@follow-to)
5341      cur)))
5342
5343 ;;;###autoload
5344 (defun message-wide-reply (&optional to-address)
5345   "Make a \"wide\" reply to the message in the current buffer."
5346   (interactive)
5347   (message-reply to-address t))
5348
5349 ;;;###autoload
5350 (defun message-followup (&optional to-newsgroups)
5351   "Follow up to the message in the current buffer.
5352 If TO-NEWSGROUPS, use that as the new Newsgroups line."
5353   (interactive)
5354   (require 'gnus-sum)                   ; for gnus-list-identifiers
5355   (let ((cur (current-buffer))
5356         from subject date reply-to mrt mct
5357         references message-id follow-to
5358         (inhibit-point-motion-hooks t)
5359         (message-this-is-news t)
5360         followup-to distribution newsgroups gnus-warning posted-to)
5361     (save-restriction
5362       (narrow-to-region
5363        (goto-char (point-min))
5364        (if (search-forward "\n\n" nil t)
5365            (1- (point))
5366          (point-max)))
5367       (when (message-functionp message-followup-to-function)
5368         (setq follow-to
5369               (funcall message-followup-to-function)))
5370       (setq from (message-fetch-field "from")
5371             date (message-fetch-field "date")
5372             subject (or (message-fetch-field "subject") "none")
5373             references (message-fetch-field "references")
5374             message-id (message-fetch-field "message-id" t)
5375             followup-to (message-fetch-field "followup-to")
5376             newsgroups (message-fetch-field "newsgroups")
5377             posted-to (message-fetch-field "posted-to")
5378             reply-to (message-fetch-field "reply-to")
5379             mrt (message-fetch-field "mail-reply-to")
5380             distribution (message-fetch-field "distribution")
5381             mct (message-fetch-field "mail-copies-to"))
5382       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
5383                  (string-match "<[^>]+>" gnus-warning))
5384         (setq message-id (match-string 0 gnus-warning)))
5385       ;; Remove bogus distribution.
5386       (when (and (stringp distribution)
5387                  (let ((case-fold-search t))
5388                    (string-match "world" distribution)))
5389         (setq distribution nil))
5390       (if gnus-list-identifiers
5391           (setq subject (message-strip-list-identifiers subject)))
5392       (setq subject (concat "Re: " (message-strip-subject-re subject)))
5393       (when message-subject-trailing-was-query
5394         (setq subject (message-strip-subject-trailing-was subject)))
5395       (widen))
5396
5397     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
5398
5399     (setq message-reply-headers
5400           (vector 0 subject from date message-id references 0 0 ""))
5401
5402     (message-setup
5403      `((Subject . ,subject)
5404        ,@(cond
5405           (to-newsgroups
5406            (list (cons 'Newsgroups to-newsgroups)))
5407           (follow-to follow-to)
5408           ((and followup-to message-use-followup-to)
5409            (list
5410             (cond
5411              ((equal (downcase followup-to) "poster")
5412               (if (or (eq message-use-followup-to 'use)
5413                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
5414 You should normally obey the Followup-To: header.
5415
5416 `Followup-To: poster' sends your response via e-mail instead of news.
5417
5418 A typical situation where `Followup-To: poster' is used is when the poster
5419 does not read the newsgroup, so he wouldn't see any replies sent to it."))
5420                   (progn
5421                     (setq message-this-is-news nil)
5422                     (cons 'To (or mrt reply-to from "")))
5423                 (cons 'Newsgroups newsgroups)))
5424              (t
5425               (if (or (equal followup-to newsgroups)
5426                       (not (eq message-use-followup-to 'ask))
5427                       (message-y-or-n-p
5428                        (concat "Obey Followup-To: " followup-to "? ") t "\
5429 You should normally obey the Followup-To: header.
5430
5431         `Followup-To: " followup-to "'
5432 directs your response to " (if (string-match "," followup-to)
5433                                "the specified newsgroups"
5434                              "that newsgroup only") ".
5435
5436 If a message is posted to several newsgroups, Followup-To is often
5437 used to direct the following discussion to one newsgroup only,
5438 because discussions that are spread over several newsgroup tend to
5439 be fragmented and very difficult to follow.
5440
5441 Also, some source/announcement newsgroups are not intended for discussion;
5442 responses here are directed to other newsgroups."))
5443                   (cons 'Newsgroups followup-to)
5444                 (cons 'Newsgroups newsgroups))))))
5445           (posted-to
5446            `((Newsgroups . ,posted-to)))
5447           (t
5448            `((Newsgroups . ,newsgroups))))
5449        ,@(and distribution (list (cons 'Distribution distribution)))
5450        ,@(when (and mct
5451                     (not (or (equal (downcase mct) "never")
5452                              (equal (downcase mct) "nobody"))))
5453            (list (cons 'Cc (if (or (equal (downcase mct) "always")
5454                                    (equal (downcase mct) "poster"))
5455                                (or mrt reply-to from "")
5456                              mct)))))
5457
5458      cur)))
5459
5460
5461 ;;;###autoload
5462 (defun message-cancel-news (&optional arg)
5463   "Cancel an article you posted.
5464 If ARG, allow editing of the cancellation message."
5465   (interactive "P")
5466   (unless (message-news-p)
5467     (error "This is not a news article; canceling is impossible"))
5468   (let (from newsgroups message-id distribution buf sender)
5469     (save-excursion
5470       ;; Get header info from original article.
5471       (save-restriction
5472         (message-narrow-to-head-1)
5473         (setq from (message-fetch-field "from")
5474               sender (message-fetch-field "sender")
5475               newsgroups (message-fetch-field "newsgroups")
5476               message-id (message-fetch-field "message-id" t)
5477               distribution (message-fetch-field "distribution")))
5478       ;; Make sure that this article was written by the user.
5479       (unless (or
5480                ;; Canlock-logic as suggested by Per Abrahamsen
5481                ;; <abraham@dina.kvl.dk>
5482                ;;
5483                ;; IF article has cancel-lock THEN
5484                ;;   IF we can verify it THEN
5485                ;;     issue cancel
5486                ;;   ELSE
5487                ;;     error: cancellock: article is not yours
5488                ;; ELSE
5489                ;;   Use old rules, comparing sender...
5490                (if (message-fetch-field "Cancel-Lock")
5491                    (if (null (canlock-verify))
5492                        t
5493                      (error "Failed to verify Cancel-lock: This article is not yours"))
5494                  nil)
5495                (message-gnksa-enable-p 'cancel-messages)
5496                (and sender
5497                     (string-equal
5498                      (downcase sender)
5499                      (downcase (message-make-sender))))
5500                (string-equal
5501                 (downcase (cadr (mail-extract-address-components from)))
5502                 (downcase (cadr (mail-extract-address-components
5503                                  (message-make-from))))))
5504         (error "This article is not yours"))
5505       (when (yes-or-no-p "Do you really want to cancel this article? ")
5506         ;; Make control message.
5507         (if arg
5508             (message-news)
5509           (setq buf (set-buffer (get-buffer-create " *message cancel*"))))
5510         (erase-buffer)
5511         (insert "Newsgroups: " newsgroups "\n"
5512                 "From: " from "\n"
5513                 "Subject: cmsg cancel " message-id "\n"
5514                 "Control: cancel " message-id "\n"
5515                 (if distribution
5516                     (concat "Distribution: " distribution "\n")
5517                   "")
5518                 mail-header-separator "\n"
5519                 message-cancel-message)
5520         (run-hooks 'message-cancel-hook)
5521         (unless arg
5522           (message "Canceling your article...")
5523           (if (let ((message-syntax-checks
5524                      'dont-check-for-anything-just-trust-me))
5525                 (funcall message-send-news-function))
5526               (message "Canceling your article...done"))
5527           (kill-buffer buf))))))
5528
5529 ;;;###autoload
5530 (defun message-supersede ()
5531   "Start composing a message to supersede the current message.
5532 This is done simply by taking the old article and adding a Supersedes
5533 header line with the old Message-ID."
5534   (interactive)
5535   (let ((cur (current-buffer))
5536         (sender (message-fetch-field "sender"))
5537         (from (message-fetch-field "from")))
5538     ;; Check whether the user owns the article that is to be superseded.
5539     (unless (or
5540              ;; Canlock-logic as suggested by Per Abrahamsen
5541              ;; <abraham@dina.kvl.dk>
5542              ;;
5543              ;; IF article has cancel-lock THEN
5544              ;;   IF we can verify it THEN
5545              ;;     issue cancel
5546              ;;   ELSE
5547              ;;     error: cancellock: article is not yours
5548              ;; ELSE
5549              ;;   Use old rules, comparing sender...
5550              (if (message-fetch-field "Cancel-Lock")
5551                  (if (null (canlock-verify))
5552                      t
5553                    (error "Failed to verify Cancel-lock: This article is not yours"))
5554                nil)
5555              (message-gnksa-enable-p 'cancel-messages)
5556                 (and sender
5557                      (string-equal
5558                       (downcase sender)
5559                       (downcase (message-make-sender))))
5560                 (string-equal
5561                  (downcase (cadr (mail-extract-address-components from)))
5562                  (downcase (cadr (mail-extract-address-components
5563                                   (message-make-from))))))
5564       (error "This article is not yours"))
5565     ;; Get a normal message buffer.
5566     (message-pop-to-buffer (message-buffer-name "supersede"))
5567     (insert-buffer-substring cur)
5568     (mime-to-mml)
5569     (message-narrow-to-head-1)
5570     ;; Remove unwanted headers.
5571     (when message-ignored-supersedes-headers
5572       (message-remove-header message-ignored-supersedes-headers t))
5573     (goto-char (point-min))
5574     (if (not (re-search-forward "^Message-ID: " nil t))
5575         (error "No Message-ID in this article")
5576       (replace-match "Supersedes: " t t))
5577     (goto-char (point-max))
5578     (insert mail-header-separator)
5579     (widen)
5580     (forward-line 1)))
5581
5582 ;;;###autoload
5583 (defun message-recover ()
5584   "Reread contents of current buffer from its last auto-save file."
5585   (interactive)
5586   (let ((file-name (make-auto-save-file-name)))
5587     (cond ((save-window-excursion
5588              (if (not (eq system-type 'vax-vms))
5589                  (with-output-to-temp-buffer "*Directory*"
5590                    (with-current-buffer standard-output
5591                      (fundamental-mode)) ; for Emacs 20.4+
5592                    (buffer-disable-undo standard-output)
5593                    (let ((default-directory "/"))
5594                      (call-process
5595                       "ls" nil standard-output nil "-l" file-name))))
5596              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
5597            (let ((buffer-read-only nil))
5598              (erase-buffer)
5599              (insert-file-contents file-name nil)))
5600           (t (error "message-recover cancelled")))))
5601
5602 ;;; Washing Subject:
5603
5604 (defun message-wash-subject (subject)
5605   "Remove junk like \"Re:\", \"(fwd)\", etc. added to subject string SUBJECT.
5606 Previous forwarders, replyers, etc. may add it."
5607   (with-temp-buffer
5608     (insert subject)
5609     (goto-char (point-min))
5610     ;; strip Re/Fwd stuff off the beginning
5611     (while (re-search-forward
5612             "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t)
5613       (replace-match ""))
5614
5615     ;; and gnus-style forwards [foo@bar.com] subject
5616     (goto-char (point-min))
5617     (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t)
5618       (replace-match ""))
5619
5620     ;; and off the end
5621     (goto-char (point-max))
5622     (while (re-search-backward "([Ff][Ww][Dd])" nil t)
5623       (replace-match ""))
5624
5625     ;; and finally, any whitespace that was left-over
5626     (goto-char (point-min))
5627     (while (re-search-forward "^[ \t]+" nil t)
5628       (replace-match ""))
5629     (goto-char (point-max))
5630     (while (re-search-backward "[ \t]+$" nil t)
5631       (replace-match ""))
5632
5633     (buffer-string)))
5634
5635 ;;; Forwarding messages.
5636
5637 (defvar message-forward-decoded-p nil
5638   "Non-nil means the original message is decoded.")
5639
5640 (defun message-forward-subject-author-subject (subject)
5641   "Generate a SUBJECT for a forwarded message.
5642 The form is: [Source] Subject, where if the original message was mail,
5643 Source is the sender, and if the original message was news, Source is
5644 the list of newsgroups is was posted to."
5645   (concat "["
5646           (let ((prefix
5647                  (or (message-fetch-field "newsgroups")
5648                      (message-fetch-field "from")
5649                      "(nowhere)")))
5650             (if message-forward-decoded-p
5651                 prefix
5652               (mail-decode-encoded-word-string prefix)))
5653           "] " subject))
5654
5655 (defun message-forward-subject-fwd (subject)
5656   "Generate a SUBJECT for a forwarded message.
5657 The form is: Fwd: Subject, where Subject is the original subject of
5658 the message."
5659   (concat "Fwd: " subject))
5660
5661 (defun message-make-forward-subject ()
5662   "Return a Subject header suitable for the message in the current buffer."
5663   (save-excursion
5664     (save-restriction
5665       (message-narrow-to-head-1)
5666       (let ((funcs message-make-forward-subject-function)
5667             (subject (message-fetch-field "Subject")))
5668         (setq subject
5669               (if subject
5670                   (if message-forward-decoded-p
5671                       subject
5672                     (mail-decode-encoded-word-string subject))
5673                 ""))
5674         (if message-wash-forwarded-subjects
5675             (setq subject (message-wash-subject subject)))
5676         ;; Make sure funcs is a list.
5677         (and funcs
5678              (not (listp funcs))
5679              (setq funcs (list funcs)))
5680         ;; Apply funcs in order, passing subject generated by previous
5681         ;; func to the next one.
5682         (while funcs
5683           (when (message-functionp (car funcs))
5684             (setq subject (funcall (car funcs) subject)))
5685           (setq funcs (cdr funcs)))
5686         subject))))
5687
5688 (eval-when-compile
5689   (defvar gnus-article-decoded-p))
5690
5691
5692 ;;;###autoload
5693 (defun message-forward (&optional news digest)
5694   "Forward the current message via mail.
5695 Optional NEWS will use news to forward instead of mail.
5696 Optional DIGEST will use digest to forward."
5697   (interactive "P")
5698   (let* ((cur (current-buffer))
5699          (message-forward-decoded-p
5700           (if (local-variable-p 'gnus-article-decoded-p (current-buffer))
5701               gnus-article-decoded-p ;; In an article buffer.
5702             message-forward-decoded-p))
5703          (subject (message-make-forward-subject)))
5704     (if news
5705         (message-news nil subject)
5706       (message-mail nil subject))
5707     (message-forward-make-body cur digest)))
5708
5709 ;;;###autoload
5710 (defun message-forward-make-body (forward-buffer &optional digest)
5711   ;; Put point where we want it before inserting the forwarded
5712   ;; message.
5713   (if message-forward-before-signature
5714       (message-goto-body)
5715     (goto-char (point-max)))
5716   (if message-forward-as-mime
5717       (if digest
5718           (insert "\n<#multipart type=digest>\n")
5719         (if message-forward-show-mml
5720             (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
5721           (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n")))
5722     (insert "\n-------------------- Start of forwarded message --------------------\n"))
5723   (let ((b (point)) e)
5724     (if digest
5725         (if message-forward-as-mime
5726             (insert-buffer-substring forward-buffer)
5727           (mml-insert-buffer forward-buffer))
5728       (if (and message-forward-show-mml
5729                (not message-forward-decoded-p))
5730           (insert
5731            (with-temp-buffer
5732              (mm-disable-multibyte-mule4)
5733              (insert
5734               (with-current-buffer forward-buffer
5735                 (mm-string-as-unibyte (buffer-string))))
5736              (mm-enable-multibyte-mule4)
5737              (mime-to-mml)
5738              (goto-char (point-min))
5739              (when (looking-at "From ")
5740                (replace-match "X-From-Line: "))
5741              (buffer-string)))
5742         (save-restriction
5743           (narrow-to-region (point) (point))
5744           (mml-insert-buffer forward-buffer)
5745           (goto-char (point-min))
5746           (when (looking-at "From ")
5747             (replace-match "X-From-Line: "))
5748           (goto-char (point-max)))))
5749     (setq e (point))
5750     (if message-forward-as-mime
5751         (if digest
5752             (insert "<#/multipart>\n")
5753           (if message-forward-show-mml
5754               (insert "<#/mml>\n")
5755             (insert "<#/part>\n")))
5756       (insert "\n-------------------- End of forwarded message --------------------\n"))
5757     (if (and digest message-forward-as-mime)
5758         (save-restriction
5759           (narrow-to-region b e)
5760           (goto-char b)
5761           (narrow-to-region (point)
5762                             (or (search-forward "\n\n" nil t) (point)))
5763           (delete-region (point-min) (point-max)))
5764       (when (and (not current-prefix-arg)
5765                  message-forward-ignored-headers
5766                  ;; don't remove CTE, X-Gnus etc when doing "raw" forward:
5767                  message-forward-show-mml)
5768         (save-restriction
5769           (narrow-to-region b e)
5770           (goto-char b)
5771           (narrow-to-region (point)
5772                             (or (search-forward "\n\n" nil t) (point)))
5773           (message-remove-header message-forward-ignored-headers t)))))
5774   (message-position-point))
5775
5776 ;;;###autoload
5777 (defun message-forward-rmail-make-body (forward-buffer)
5778   (save-window-excursion
5779     (set-buffer forward-buffer)
5780     ;; Rmail doesn't have rmail-msg-restore-non-pruned-header in Emacs
5781     ;; 20.  FIXIT, or we drop support for rmail in Emacs 20.
5782     (if (rmail-msg-is-pruned)
5783         (rmail-msg-restore-non-pruned-header)))
5784   (message-forward-make-body forward-buffer))
5785
5786 ;;;###autoload
5787 (defun message-insinuate-rmail ()
5788   "Let RMAIL uses message to forward."
5789   (interactive)
5790   (setq rmail-enable-mime-composing t)
5791   (setq rmail-insert-mime-forwarded-message-function
5792         'message-forward-rmail-make-body))
5793
5794 ;;;###autoload
5795 (defun message-resend (address)
5796   "Resend the current article to ADDRESS."
5797   (interactive
5798    (list (message-read-from-minibuffer "Resend message to: ")))
5799   (message "Resending message to %s..." address)
5800   (save-excursion
5801     (let ((cur (current-buffer))
5802           beg)
5803       ;; We first set up a normal mail buffer.
5804       (unless (message-mail-user-agent)
5805         (set-buffer (get-buffer-create " *message resend*"))
5806         (erase-buffer))
5807       (let ((message-this-is-mail t))
5808         (message-setup `((To . ,address))))
5809       ;; Insert our usual headers.
5810       (message-generate-headers '(From Date To))
5811       (message-narrow-to-headers)
5812       ;; Rename them all to "Resent-*".
5813       (while (re-search-forward "^[A-Za-z]" nil t)
5814         (forward-char -1)
5815         (insert "Resent-"))
5816       (widen)
5817       (forward-line)
5818       (delete-region (point) (point-max))
5819       (setq beg (point))
5820       ;; Insert the message to be resent.
5821       (insert-buffer-substring cur)
5822       (goto-char (point-min))
5823       (search-forward "\n\n")
5824       (forward-char -1)
5825       (save-restriction
5826         (narrow-to-region beg (point))
5827         (message-remove-header message-ignored-resent-headers t)
5828         (goto-char (point-max)))
5829       (insert mail-header-separator)
5830       ;; Rename all old ("Also-")Resent headers.
5831       (while (re-search-backward "^\\(Also-\\)*Resent-" beg t)
5832         (beginning-of-line)
5833         (insert "Also-"))
5834       ;; Quote any "From " lines at the beginning.
5835       (goto-char beg)
5836       (when (looking-at "From ")
5837         (replace-match "X-From-Line: "))
5838       ;; Send it.
5839       (let ((message-inhibit-body-encoding t)
5840             message-required-mail-headers)
5841         (message-send-mail))
5842       (kill-buffer (current-buffer)))
5843     (message "Resending message to %s...done" address)))
5844
5845 ;;;###autoload
5846 (defun message-bounce ()
5847   "Re-mail the current message.
5848 This only makes sense if the current message is a bounce message that
5849 contains some mail you have written which has been bounced back to
5850 you."
5851   (interactive)
5852   (let ((handles (mm-dissect-buffer t))
5853         boundary)
5854     (message-pop-to-buffer (message-buffer-name "bounce"))
5855     (if (stringp (car handles))
5856         ;; This is a MIME bounce.
5857         (mm-insert-part (car (last handles)))
5858       ;; This is a non-MIME bounce, so we try to remove things
5859       ;; manually.
5860       (mm-insert-part handles)
5861       (undo-boundary)
5862       (goto-char (point-min))
5863       (search-forward "\n\n" nil t)
5864       (if (or (and (re-search-forward message-unsent-separator nil t)
5865                    (forward-line 1))
5866               (re-search-forward "^Return-Path:.*\n" nil t))
5867           ;; We remove everything before the bounced mail.
5868           (delete-region
5869            (point-min)
5870            (if (re-search-forward "^[^ \n\t]+:" nil t)
5871                (match-beginning 0)
5872              (point)))
5873         (when (re-search-backward "^.?From .*\n" nil t)
5874           (delete-region (match-beginning 0) (match-end 0)))))
5875     (mm-enable-multibyte)
5876     (mime-to-mml)
5877     (save-restriction
5878       (message-narrow-to-head-1)
5879       (message-remove-header message-ignored-bounced-headers t)
5880       (goto-char (point-max))
5881       (insert mail-header-separator))
5882     (message-position-point)))
5883
5884 ;;;
5885 ;;; Interactive entry points for new message buffers.
5886 ;;;
5887
5888 ;;;###autoload
5889 (defun message-mail-other-window (&optional to subject)
5890   "Like `message-mail' command, but display mail buffer in another window."
5891   (interactive)
5892   (unless (message-mail-user-agent)
5893     (let ((pop-up-windows t)
5894           (special-display-buffer-names nil)
5895           (special-display-regexps nil)
5896           (same-window-buffer-names nil)
5897           (same-window-regexps nil))
5898       (message-pop-to-buffer (message-buffer-name "mail" to))))
5899   (let ((message-this-is-mail t))
5900     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5901                    nil nil 'switch-to-buffer-other-window)))
5902
5903 ;;;###autoload
5904 (defun message-mail-other-frame (&optional to subject)
5905   "Like `message-mail' command, but display mail buffer in another frame."
5906   (interactive)
5907   (unless (message-mail-user-agent)
5908     (let ((pop-up-frames t)
5909           (special-display-buffer-names nil)
5910           (special-display-regexps nil)
5911           (same-window-buffer-names nil)
5912           (same-window-regexps nil))
5913       (message-pop-to-buffer (message-buffer-name "mail" to))))
5914   (let ((message-this-is-mail t))
5915     (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
5916                    nil nil 'switch-to-buffer-other-frame)))
5917
5918 ;;;###autoload
5919 (defun message-news-other-window (&optional newsgroups subject)
5920   "Start editing a news article to be sent."
5921   (interactive)
5922   (let ((pop-up-windows t)
5923         (special-display-buffer-names nil)
5924         (special-display-regexps nil)
5925         (same-window-buffer-names nil)
5926         (same-window-regexps nil))
5927     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
5928   (let ((message-this-is-news t))
5929     (message-setup `((Newsgroups . ,(or newsgroups ""))
5930                      (Subject . ,(or subject ""))))))
5931
5932 ;;;###autoload
5933 (defun message-news-other-frame (&optional newsgroups subject)
5934   "Start editing a news article to be sent."
5935   (interactive)
5936   (let ((pop-up-frames t)
5937         (special-display-buffer-names nil)
5938         (special-display-regexps nil)
5939         (same-window-buffer-names nil)
5940         (same-window-regexps nil))
5941     (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)))
5942   (let ((message-this-is-news t))
5943     (message-setup `((Newsgroups . ,(or newsgroups ""))
5944                      (Subject . ,(or subject ""))))))
5945
5946 ;;; underline.el
5947
5948 ;; This code should be moved to underline.el (from which it is stolen).
5949
5950 ;;;###autoload
5951 (defun bold-region (start end)
5952   "Bold all nonblank characters in the region.
5953 Works by overstriking characters.
5954 Called from program, takes two arguments START and END
5955 which specify the range to operate on."
5956   (interactive "r")
5957   (save-excursion
5958     (let ((end1 (make-marker)))
5959       (move-marker end1 (max start end))
5960       (goto-char (min start end))
5961       (while (< (point) end1)
5962         (or (looking-at "[_\^@- ]")
5963             (insert (char-after) "\b"))
5964         (forward-char 1)))))
5965
5966 ;;;###autoload
5967 (defun unbold-region (start end)
5968   "Remove all boldness (overstruck characters) in the region.
5969 Called from program, takes two arguments START and END
5970 which specify the range to operate on."
5971   (interactive "r")
5972   (save-excursion
5973     (let ((end1 (make-marker)))
5974       (move-marker end1 (max start end))
5975       (goto-char (min start end))
5976       (while (re-search-forward "\b" end1 t)
5977         (if (eq (char-after) (char-after (- (point) 2)))
5978             (delete-char -2))))))
5979
5980 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
5981
5982 ;; Support for toolbar
5983 (eval-when-compile
5984   (defvar tool-bar-map)
5985   (defvar tool-bar-mode))
5986
5987 (defun message-tool-bar-local-item-from-menu (command icon in-map &optional from-map &rest props)
5988   ;; We need to make tool bar entries in local keymaps with
5989   ;; `tool-bar-local-item-from-menu' in Emacs > 21.3
5990   (if (fboundp 'tool-bar-local-item-from-menu)
5991       ;; This is for Emacs 21.3
5992       (tool-bar-local-item-from-menu command icon in-map from-map props)
5993     (tool-bar-add-item-from-menu command icon from-map props)))
5994
5995 (defun message-tool-bar-map ()
5996   (or message-tool-bar-map
5997       (setq message-tool-bar-map
5998             (and
5999              (condition-case nil (require 'tool-bar) (error nil))
6000              (fboundp 'tool-bar-add-item-from-menu)
6001              tool-bar-mode
6002              (let ((tool-bar-map (copy-keymap tool-bar-map))
6003                    (load-path (mm-image-load-path)))
6004                ;; Zap some items which aren't so relevant and take
6005                ;; up space.
6006                (dolist (key '(print-buffer kill-buffer save-buffer
6007                                            write-file dired open-file))
6008                  (define-key tool-bar-map (vector key) nil))
6009                (message-tool-bar-local-item-from-menu
6010                 'message-send-and-exit "mail_send" tool-bar-map message-mode-map)
6011                (message-tool-bar-local-item-from-menu
6012                 'message-kill-buffer "close" tool-bar-map message-mode-map)
6013                (message-tool-bar-local-item-from-menu
6014                     'message-dont-send "cancel" tool-bar-map message-mode-map)
6015                (message-tool-bar-local-item-from-menu
6016                 'mml-attach-file "attach" tool-bar-map mml-mode-map)
6017                (message-tool-bar-local-item-from-menu
6018                 'ispell-message "spell" tool-bar-map message-mode-map)
6019                (message-tool-bar-local-item-from-menu
6020                 'mml-preview "preview"
6021                 tool-bar-map mml-mode-map)
6022                (message-tool-bar-local-item-from-menu
6023                 'message-insert-importance-high "important"
6024                 tool-bar-map message-mode-map)
6025                (message-tool-bar-local-item-from-menu
6026                 'message-insert-importance-low "unimportant"
6027                 tool-bar-map message-mode-map)
6028                (message-tool-bar-local-item-from-menu
6029                 'message-insert-disposition-notification-to "receipt"
6030                 tool-bar-map message-mode-map)
6031                tool-bar-map)))))
6032
6033 ;;; Group name completion.
6034
6035 (defcustom message-newgroups-header-regexp
6036   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
6037   "Regexp that match headers that lists groups."
6038   :group 'message
6039   :type 'regexp)
6040
6041 (defcustom message-completion-alist
6042   (list (cons message-newgroups-header-regexp 'message-expand-group)
6043         '("^\\(Resent-\\)?\\(To\\|B?Cc\\):" . message-expand-name)
6044         '("^\\(Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):"
6045           . message-expand-name)
6046         '("^\\(Disposition-Notification-To\\|Return-Receipt-To\\):"
6047           . message-expand-name))
6048   "Alist of (RE . FUN).  Use FUN for completion on header lines matching RE."
6049   :group 'message
6050   :type '(alist :key-type regexp :value-type function))
6051
6052 (defcustom message-tab-body-function nil
6053   "*Function to execute when `message-tab' (TAB) is executed in the body.
6054 If nil, the function bound in `text-mode-map' or `global-map' is executed."
6055   :group 'message
6056   :type 'function)
6057
6058 (defun message-tab ()
6059   "Complete names according to `message-completion-alist'.
6060 Execute function specified by `message-tab-body-function' when not in
6061 those headers."
6062   (interactive)
6063   (let ((alist message-completion-alist))
6064     (while (and alist
6065                 (let ((mail-abbrev-mode-regexp (caar alist)))
6066                   (not (mail-abbrev-in-expansion-header-p))))
6067       (setq alist (cdr alist)))
6068     (funcall (or (cdar alist) message-tab-body-function
6069                  (lookup-key text-mode-map "\t")
6070                  (lookup-key global-map "\t")
6071                  'indent-relative))))
6072
6073 (defun message-expand-group ()
6074   "Expand the group name under point."
6075   (let* ((b (save-excursion
6076               (save-restriction
6077                 (narrow-to-region
6078                  (save-excursion
6079                    (beginning-of-line)
6080                    (skip-chars-forward "^:")
6081                    (1+ (point)))
6082                  (point))
6083                 (skip-chars-backward "^, \t\n") (point))))
6084          (completion-ignore-case t)
6085          (string (buffer-substring b (progn (skip-chars-forward "^,\t\n ")
6086                                             (point))))
6087          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
6088          (completions (all-completions string hashtb))
6089          comp)
6090     (delete-region b (point))
6091     (cond
6092      ((= (length completions) 1)
6093       (if (string= (car completions) string)
6094           (progn
6095             (insert string)
6096             (message "Only matching group"))
6097         (insert (car completions))))
6098      ((and (setq comp (try-completion string hashtb))
6099            (not (string= comp string)))
6100       (insert comp))
6101      (t
6102       (insert string)
6103       (if (not comp)
6104           (message "No matching groups")
6105         (save-selected-window
6106           (pop-to-buffer "*Completions*")
6107           (buffer-disable-undo)
6108           (let ((buffer-read-only nil))
6109             (erase-buffer)
6110             (let ((standard-output (current-buffer)))
6111               (display-completion-list (sort completions 'string<)))
6112             (goto-char (point-min))
6113             (delete-region (point) (progn (forward-line 3) (point))))))))))
6114
6115 (defun message-expand-name ()
6116   (if (fboundp 'bbdb-complete-name)
6117       (bbdb-complete-name)
6118     (expand-abbrev)))
6119
6120 ;;; Help stuff.
6121
6122 (defun message-talkative-question (ask question show &rest text)
6123   "Call FUNCTION with argument QUESTION; optionally display TEXT... args.
6124 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer.
6125 The following arguments may contain lists of values."
6126   (if (and show
6127            (setq text (message-flatten-list text)))
6128       (save-window-excursion
6129         (save-excursion
6130           (with-output-to-temp-buffer " *MESSAGE information message*"
6131             (set-buffer " *MESSAGE information message*")
6132             (fundamental-mode)          ; for Emacs 20.4+
6133             (mapcar 'princ text)
6134             (goto-char (point-min))))
6135         (funcall ask question))
6136     (funcall ask question)))
6137
6138 (defun message-flatten-list (list)
6139   "Return a new, flat list that contains all elements of LIST.
6140
6141 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
6142 => (1 2 3 4 5 6 7)"
6143   (cond ((consp list)
6144          (apply 'append (mapcar 'message-flatten-list list)))
6145         (list
6146          (list list))))
6147
6148 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
6149   "Create and return a buffer with name based on NAME using `generate-new-buffer.'
6150 Then clone the local variables and values from the old buffer to the
6151 new one, cloning only the locals having a substring matching the
6152 regexp varstr."
6153   (let ((oldbuf (current-buffer)))
6154     (save-excursion
6155       (set-buffer (generate-new-buffer name))
6156       (message-clone-locals oldbuf varstr)
6157       (current-buffer))))
6158
6159 (defun message-clone-locals (buffer &optional varstr)
6160   "Clone the local variables from BUFFER to the current buffer."
6161   (let ((locals (save-excursion
6162                   (set-buffer buffer)
6163                   (buffer-local-variables)))
6164         (regexp "^gnus\\|^nn\\|^message\\|^user-mail-address"))
6165     (mapcar
6166      (lambda (local)
6167        (when (and (consp local)
6168                   (car local)
6169                   (string-match regexp (symbol-name (car local)))
6170                   (or (null varstr)
6171                       (string-match varstr (symbol-name (car local)))))
6172          (ignore-errors
6173            (set (make-local-variable (car local))
6174                 (cdr local)))))
6175      locals)))
6176
6177 ;;; Miscellaneous functions
6178
6179 (defsubst message-replace-chars-in-string (string from to)
6180   (mm-subst-char-in-string from to string))
6181
6182 ;;;
6183 ;;; MIME functions
6184 ;;;
6185
6186 (defvar message-inhibit-body-encoding nil)
6187
6188 (defun message-encode-message-body ()
6189   (unless message-inhibit-body-encoding
6190     (let ((mail-parse-charset (or mail-parse-charset
6191                                   message-default-charset))
6192           (case-fold-search t)
6193           lines content-type-p)
6194       (message-goto-body)
6195       (save-restriction
6196         (narrow-to-region (point) (point-max))
6197         (let ((new (mml-generate-mime)))
6198           (when new
6199             (delete-region (point-min) (point-max))
6200             (insert new)
6201             (goto-char (point-min))
6202             (if (eq (aref new 0) ?\n)
6203                 (delete-char 1)
6204               (search-forward "\n\n")
6205               (setq lines (buffer-substring (point-min) (1- (point))))
6206               (delete-region (point-min) (point))))))
6207       (save-restriction
6208         (message-narrow-to-headers-or-head)
6209         (message-remove-header "Mime-Version")
6210         (goto-char (point-max))
6211         (insert "MIME-Version: 1.0\n")
6212         (when lines
6213           (insert lines))
6214         (setq content-type-p
6215               (or mml-boundary
6216                   (re-search-backward "^Content-Type:" nil t))))
6217       (save-restriction
6218         (message-narrow-to-headers-or-head)
6219         (message-remove-first-header "Content-Type")
6220         (message-remove-first-header "Content-Transfer-Encoding"))
6221       ;; We always make sure that the message has a Content-Type
6222       ;; header.  This is because some broken MTAs and MUAs get
6223       ;; awfully confused when confronted with a message with a
6224       ;; MIME-Version header and without a Content-Type header.  For
6225       ;; instance, Solaris' /usr/bin/mail.
6226       (unless content-type-p
6227         (goto-char (point-min))
6228         ;; For unknown reason, MIME-Version doesn't exist.
6229         (when (re-search-forward "^MIME-Version:" nil t)
6230           (forward-line 1)
6231           (insert "Content-Type: text/plain; charset=us-ascii\n"))))))
6232
6233 (defun message-read-from-minibuffer (prompt &optional initial-contents)
6234   "Read from the minibuffer while providing abbrev expansion."
6235   (if (fboundp 'mail-abbrevs-setup)
6236       (let ((mail-abbrev-mode-regexp "")
6237             (minibuffer-setup-hook 'mail-abbrevs-setup)
6238             (minibuffer-local-map message-minibuffer-local-map))
6239         (read-from-minibuffer prompt initial-contents))
6240     (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)
6241           (minibuffer-local-map message-minibuffer-local-map))
6242       (read-string prompt initial-contents))))
6243
6244 (defun message-use-alternative-email-as-from ()
6245   (require 'mail-utils)
6246   (let* ((fields '("To" "Cc"))
6247          (emails
6248           (split-string
6249            (mail-strip-quoted-names
6250             (mapconcat 'message-fetch-reply-field fields ","))
6251            "[ \f\t\n\r\v,]+"))
6252          email)
6253     (while emails
6254       (if (string-match message-alternative-emails (car emails))
6255           (setq email (car emails)
6256                 emails nil))
6257       (pop emails))
6258     (unless (or (not email) (equal email user-mail-address))
6259       (goto-char (point-max))
6260       (insert "From: " email "\n"))))
6261
6262 (defun message-options-get (symbol)
6263   (cdr (assq symbol message-options)))
6264
6265 (defun message-options-set (symbol value)
6266   (let ((the-cons (assq symbol message-options)))
6267     (if the-cons
6268         (if value
6269             (setcdr the-cons value)
6270           (setq message-options (delq the-cons message-options)))
6271       (and value
6272            (push (cons symbol value) message-options))))
6273   value)
6274
6275 (defun message-options-set-recipient ()
6276   (save-restriction
6277     (message-narrow-to-headers-or-head)
6278     (message-options-set 'message-sender
6279                          (mail-strip-quoted-names
6280                           (message-fetch-field "from")))
6281     (message-options-set 'message-recipients
6282                          (mail-strip-quoted-names
6283                           (let ((to (message-fetch-field "to"))
6284                                 (cc (message-fetch-field "cc"))
6285                                 (bcc (message-fetch-field "bcc")))
6286                             (concat
6287                              (or to "")
6288                              (if (and to cc) ", ")
6289                              (or cc "")
6290                              (if (and (or to cc) bcc) ", ")
6291                              (or bcc "")))))))
6292
6293 (when (featurep 'xemacs)
6294   (require 'messagexmas)
6295   (message-xmas-redefine))
6296
6297 (provide 'message)
6298
6299 (run-hooks 'message-load-hook)
6300
6301 ;; Local Variables:
6302 ;; coding: iso-8859-1
6303 ;; End:
6304
6305 ;;; message.el ends here