*** empty log message ***
[gnus] / lisp / message.el
1 ;;; message.el --- composing mail and news messages
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Keywords: mail, news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This mode provides mail-sending facilities from within Emacs.  It
27 ;; consists mainly of large chunks of code from the sendmail.el,
28 ;; gnus-msg.el and rnewspost.el files.
29
30 ;;; Code:
31
32 (require 'cl)
33 (require 'mailheader)
34 (require 'rmail)
35 (require 'nnheader)
36 (require 'timezone)
37 (require 'easymenu)
38 (require 'custom)
39 (if (string-match "XEmacs\\|Lucid" emacs-version)
40     (require 'mail-abbrevs)
41   (require 'mailabbrev))
42
43 (defgroup message '((user-mail-address custom-variable)
44                     (user-full-name custom-variable))
45   "Mail and news message composing."
46   :link '(custom-manual "(message)Top")
47   :group 'mail
48   :group 'news)
49
50 (put 'user-mail-address 'custom-type 'string)
51 (put 'user-full-name 'custom-type 'string)
52
53 (defgroup message-various nil
54   "Various Message Variables"
55   :link '(custom-manual "(message)Various Message Variables")
56   :group 'message)
57
58 (defgroup message-buffers nil
59   "Message Buffers"
60   :link '(custom-manual "(message)Message Buffers")
61   :group 'message)
62
63 (defgroup message-sending nil
64   "Message Sending"
65   :link '(custom-manual "(message)Sending Variables")
66   :group 'message)
67
68 (defgroup message-interface nil
69   "Message Interface"
70   :link '(custom-manual "(message)Interface")
71   :group 'message)
72
73 (defgroup message-forwarding nil
74   "Message Forwarding"
75   :link '(custom-manual "(message)Forwarding")
76   :group 'message-interface)
77
78 (defgroup message-insertion nil
79   "Message Insertion"
80   :link '(custom-manual "(message)Insertion")
81   :group 'message)
82
83 (defgroup message-headers nil
84   "Message Headers"
85   :link '(custom-manual "(message)Message Headers")
86   :group 'message)
87
88 (defgroup message-news nil
89   "Composing News Messages"
90   :group 'message)
91
92 (defgroup message-mail nil
93   "Composing Mail Messages"
94   :group 'message)
95
96 (defgroup message-faces nil
97   "Faces used for message composing."
98   :group 'message
99   :group 'faces)
100
101 (defcustom message-directory "~/Mail/"
102   "*Directory from which all other mail file variables are derived."
103   :group 'message-various
104   :type 'directory)
105
106 (defcustom message-max-buffers 10
107   "*How many buffers to keep before starting to kill them off."
108   :group 'message-buffers
109   :type 'integer)
110
111 (defcustom message-send-rename-function nil
112   "Function called to rename the buffer after sending it."
113   :group 'message-buffers
114   :type 'function)
115
116 (defcustom message-fcc-handler-function 'message-output
117   "*A function called to save outgoing articles.
118 This function will be called with the name of the file to store the
119 article in.  The default function is `message-output' which saves in Unix
120 mailbox format."
121   :type '(radio (function-item message-output)
122                 (function :tag "Other"))
123   :group 'message-sending)
124
125 (defcustom message-courtesy-message
126   "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
127   "*This is inserted at the start of a mailed copy of a posted message.
128 If the string contains the format spec \"%s\", the Newsgroups
129 the article has been posted to will be inserted there.
130 If this variable is nil, no such courtesy message will be added."
131   :group 'message-sending
132   :type 'string)
133
134 (defcustom message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):"
135   "*Regexp that matches headers to be removed in resent bounced mail."
136   :group 'message-interface
137   :type 'regexp)
138
139 ;;;###autoload
140 (defcustom message-from-style 'default
141   "*Specifies how \"From\" headers look.
142
143 If `nil', they contain just the return address like:
144         king@grassland.com
145 If `parens', they look like:
146         king@grassland.com (Elvis Parsley)
147 If `angles', they look like:
148         Elvis Parsley <king@grassland.com>
149
150 Otherwise, most addresses look like `angles', but they look like
151 `parens' if `angles' would need quoting and `parens' would not."
152   :type '(choice (const :tag "simple" nil)
153                  (const parens)
154                  (const angles)
155                  (const default))
156   :group 'message-headers)
157
158 (defcustom message-syntax-checks nil
159   ;; Guess this one shouldn't be easy to customize...
160   "Controls what syntax checks should not be performed on outgoing posts.
161 To disable checking of long signatures, for instance, add
162  `(signature . disabled)' to this list.
163
164 Don't touch this variable unless you really know what you're doing.
165
166 Checks include subject-cmsg multiple-headers sendsys message-id from
167 long-lines control-chars size new-text redirected-followup signature
168 approved sender empty empty-headers message-id from subject
169 shorten-followup-to existing-newsgroups."
170   :group 'message-news)
171
172 (defcustom message-required-news-headers
173   '(From Newsgroups Subject Date Message-ID
174          (optional . Organization) Lines
175          (optional . X-Newsreader))
176   "Headers to be generated or prompted for when posting an article.
177 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
178 Message-ID.  Organization, Lines, In-Reply-To, Expires, and
179 X-Newsreader are optional.  If don't you want message to insert some
180 header, remove it from this list."
181   :group 'message-news
182   :group 'message-headers
183   :type '(repeat sexp))
184
185 (defcustom message-required-mail-headers
186   '(From Subject Date (optional . In-Reply-To) Message-ID Lines
187          (optional . X-Mailer))
188   "Headers to be generated or prompted for when mailing a message.
189 RFC822 required that From, Date, To, Subject and Message-ID be
190 included.  Organization, Lines and X-Mailer are optional."
191   :group 'message-mail
192   :group 'message-headers
193   :type '(repeat sexp))
194
195 (defcustom message-deletable-headers '(Message-ID Date Lines)
196   "Headers to be deleted if they already exist and were generated by message previously."
197   :group 'message-headers
198   :type 'sexp)
199
200 (defcustom message-ignored-news-headers
201   "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
202   "*Regexp of headers to be removed unconditionally before posting."
203   :group 'message-news
204   :group 'message-headers
205   :type 'regexp)
206
207 (defcustom message-ignored-mail-headers "^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
208   "*Regexp of headers to be removed unconditionally before mailing."
209   :group 'message-mail
210   :group 'message-headers
211   :type 'regexp)
212
213 (defcustom message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:"
214   "*Header lines matching this regexp will be deleted before posting.
215 It's best to delete old Path and Date headers before posting to avoid
216 any confusion."
217   :group 'message-interface
218   :type 'regexp)
219
220 ;;;###autoload
221 (defcustom message-signature-separator "^-- *$"
222   "Regexp matching the signature separator."
223   :type 'regexp
224   :group 'message-various)
225
226 (defcustom message-elide-elipsis "\n[...]\n\n"
227   "*The string which is inserted for elided text.")
228
229 (defcustom message-interactive nil
230   "Non-nil means when sending a message wait for and display errors.
231 nil means let mailer mail back a message to report errors."
232   :group 'message-sending
233   :group 'message-mail
234   :type 'boolean)
235
236 (defcustom message-generate-new-buffers t
237   "*Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
238 If this is a function, call that function with three parameters:  The type,
239 the to address and the group name.  (Any of these may be nil.)  The function
240 should return the new buffer name."
241   :group 'message-buffers
242   :type '(choice (const :tag "off" nil)
243                  (const :tag "on" t)
244                  (function fun)))
245
246 (defcustom message-kill-buffer-on-exit nil
247   "*Non-nil means that the message buffer will be killed after sending a message."
248   :group 'message-buffers
249   :type 'boolean)
250
251 (defvar gnus-local-organization)
252 (defcustom message-user-organization
253   (or (and (boundp 'gnus-local-organization)
254            (stringp gnus-local-organization)
255            gnus-local-organization)
256       (getenv "ORGANIZATION")
257       t)
258   "*String to be used as an Organization header.
259 If t, use `message-user-organization-file'."
260   :group 'message-headers
261   :type '(choice string
262                  (const :tag "consult file" t)))
263
264 ;;;###autoload
265 (defcustom message-user-organization-file "/usr/lib/news/organization"
266   "*Local news organization file."
267   :type 'file
268   :group 'message-headers)
269
270 (defcustom message-autosave-directory "~/"
271   ; (concat (file-name-as-directory message-directory) "drafts/")
272   "*Directory where message autosaves buffers.
273 If nil, message won't autosave."
274   :group 'message-buffers
275   :type 'directory)
276
277 (defcustom message-forward-start-separator
278   "------- Start of forwarded message -------\n"
279   "*Delimiter inserted before forwarded messages."
280   :group 'message-forwarding
281   :type 'string)
282
283 (defcustom message-forward-end-separator
284   "------- End of forwarded message -------\n"
285   "*Delimiter inserted after forwarded messages."
286   :group 'message-forwarding
287   :type 'string)
288
289 (defcustom message-signature-before-forwarded-message t
290   "*If non-nil, put the signature before any included forwarded message."
291   :group 'message-forwarding
292   :type 'boolean)
293
294 (defcustom message-included-forward-headers
295   "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:"
296   "*Regexp matching headers to be included in forwarded messages."
297   :group 'message-forwarding
298   :type 'regexp)
299
300 (defcustom message-ignored-resent-headers "^Return-receipt"
301   "*All headers that match this regexp will be deleted when resending a message."
302   :group 'message-interface
303   :type 'regexp)
304
305 (defcustom message-ignored-cited-headers "."
306   "*Delete these headers from the messages you yank."
307   :group 'message-insertion
308   :type 'regexp)
309
310 (defcustom message-cancel-message "I am canceling my own article."
311   "Message to be inserted in the cancel message."
312   :group 'message-interface
313   :type 'string)
314
315 ;; Useful to set in site-init.el
316 ;;;###autoload
317 (defcustom message-send-mail-function 'message-send-mail-with-sendmail
318   "Function to call to send the current buffer as mail.
319 The headers should be delimited by a line whose contents match the
320 variable `mail-header-separator'.
321
322 Legal values include `message-send-mail-with-sendmail' (the default),
323 `message-send-mail-with-mh' and `message-send-mail-with-qmail'."
324   :type '(radio (function-item message-send-mail-with-sendmail)
325                 (function-item message-send-mail-with-mh)
326                 (function-item message-send-mail-with-qmail)
327                 (function :tag "Other"))
328   :group 'message-sending
329   :group 'message-mail)
330
331 (defcustom message-send-news-function 'message-send-news
332   "Function to call to send the current buffer as news.
333 The headers should be delimited by a line whose contents match the
334 variable `mail-header-separator'."
335   :group 'message-sending
336   :group 'message-news
337   :type 'function)
338
339 (defcustom message-reply-to-function nil
340   "Function that should return a list of headers.
341 This function should pick out addresses from the To, Cc, and From headers
342 and respond with new To and Cc headers."
343   :group 'message-interface
344   :type 'function)
345
346 (defcustom message-wide-reply-to-function nil
347   "Function that should return a list of headers.
348 This function should pick out addresses from the To, Cc, and From headers
349 and respond with new To and Cc headers."
350   :group 'message-interface
351   :type 'function)
352
353 (defcustom message-followup-to-function nil
354   "Function that should return a list of headers.
355 This function should pick out addresses from the To, Cc, and From headers
356 and respond with new To and Cc headers."
357   :group 'message-interface
358   :type 'function)
359
360 (defcustom message-use-followup-to 'ask
361   "*Specifies what to do with Followup-To header.
362 If nil, always ignore the header.  If it is t, use its value, but
363 query before using the \"poster\" value.  If it is the symbol `ask',
364 always query the user whether to use the value.  If it is the symbol
365 `use', always use the value."
366   :group 'message-interface
367   :type '(choice (const :tag "ignore" nil)
368                  (const use)
369                  (const ask)))
370
371 ;; stuff relating to broken sendmail in MMDF
372 (defcustom message-sendmail-f-is-evil nil
373   "*Non-nil means that \"-f username\" should not be added to the sendmail
374 command line, because it is even more evil than leaving it out."
375   :group 'message-sending
376   :type 'boolean)
377
378 ;; qmail-related stuff
379 (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject"
380   "Location of the qmail-inject program."
381   :group 'message-sending
382   :type 'file)
383
384 (defcustom message-qmail-inject-args nil
385   "Arguments passed to qmail-inject programs.
386 This should be a list of strings, one string for each argument.
387
388 For e.g., if you wish to set the envelope sender address so that bounces
389 go to the right place or to deal with listserv's usage of that address, you
390 might set this variable to '(\"-f\" \"you@some.where\")."
391   :group 'message-sending
392   :type '(repeat string))
393
394 (defvar gnus-post-method)
395 (defvar gnus-select-method)
396 (defcustom message-post-method
397   (cond ((and (boundp 'gnus-post-method)
398               gnus-post-method)
399          gnus-post-method)
400         ((boundp 'gnus-select-method)
401          gnus-select-method)
402         (t '(nnspool "")))
403   "Method used to post news."
404   :group 'message-news
405   :group 'message-sending
406   ;; This should be the `gnus-select-method' widget, but that might
407   ;; create a dependence to `gnus.el'.
408   :type 'sexp)
409
410 (defcustom message-generate-headers-first nil
411   "*If non-nil, generate all possible headers before composing."
412   :group 'message-headers
413   :type 'boolean)
414
415 (defcustom message-setup-hook nil
416   "Normal hook, run each time a new outgoing message is initialized.
417 The function `message-setup' runs this hook."
418   :group 'message-various
419   :type 'hook)
420
421 (defcustom message-signature-setup-hook nil
422   "Normal hook, run each time a new outgoing message is initialized.
423 It is run after the headers have been inserted and before
424 the signature is inserted."
425   :group 'message-various
426   :type 'hook)
427
428 (defcustom message-mode-hook nil
429   "Hook run in message mode buffers."
430   :group 'message-various
431   :type 'hook)
432
433 (defcustom message-header-hook nil
434   "Hook run in a message mode buffer narrowed to the headers."
435   :group 'message-various
436   :type 'hook)
437
438 (defcustom message-header-setup-hook nil
439   "Hook called narrowed to the headers when setting up a message
440 buffer."
441   :group 'message-various
442   :type 'hook)
443
444 ;;;###autoload
445 (defcustom message-citation-line-function 'message-insert-citation-line
446   "*Function called to insert the \"Whomever writes:\" line."
447   :type 'function
448   :group 'message-insertion)
449
450 ;;;###autoload
451 (defcustom message-yank-prefix "> "
452   "*Prefix inserted on the lines of yanked messages.
453 nil means use indentation."
454   :type 'string
455   :group 'message-insertion)
456
457 (defcustom message-indentation-spaces 3
458   "*Number of spaces to insert at the beginning of each cited line.
459 Used by `message-yank-original' via `message-yank-cite'."
460   :group 'message-insertion
461   :type 'integer)
462
463 ;;;###autoload
464 (defcustom message-cite-function
465   (if (and (boundp 'mail-citation-hook)
466            mail-citation-hook)
467       mail-citation-hook
468     'message-cite-original)
469   "*Function for citing an original message."
470   :type '(radio (function-item message-cite-original)
471                 (function-item sc-cite-original)
472                 (function :tag "Other"))
473   :group 'message-insertion)
474
475 ;;;###autoload
476 (defcustom message-indent-citation-function 'message-indent-citation
477   "*Function for modifying a citation just inserted in the mail buffer.
478 This can also be a list of functions.  Each function can find the
479 citation between (point) and (mark t).  And each function should leave
480 point and mark around the citation text as modified."
481   :type 'function
482   :group 'message-insertion)
483
484 (defvar message-abbrevs-loaded nil)
485
486 ;;;###autoload
487 (defcustom message-signature t
488   "*String to be inserted at the end of the message buffer.
489 If t, the `message-signature-file' file will be inserted instead.
490 If a function, the result from the function will be used instead.
491 If a form, the result from the form will be used instead."
492   :type 'sexp
493   :group 'message-insertion)
494
495 ;;;###autoload
496 (defcustom message-signature-file "~/.signature"
497   "*File containing the text inserted at end of message buffer."
498   :type 'file
499   :group 'message-insertion)
500
501 (defcustom message-distribution-function nil
502   "*Function called to return a Distribution header."
503   :group 'message-news
504   :group 'message-headers
505   :type 'function)
506
507 (defcustom message-expires 14
508   "Number of days before your article expires."
509   :group 'message-news
510   :group 'message-headers
511   :link '(custom-manual "(message)News Headers")
512   :type 'integer)
513
514 (defcustom message-user-path nil
515   "If nil, use the NNTP server name in the Path header.
516 If stringp, use this; if non-nil, use no host name (user name only)."
517   :group 'message-news
518   :group 'message-headers
519   :link '(custom-manual "(message)News Headers")
520   :type '(choice (const :tag "nntp" nil)
521                  (string :tag "name")
522                  (sexp :tag "none" :format "%t" t)))
523
524 (defvar message-reply-buffer nil)
525 (defvar message-reply-headers nil)
526 (defvar message-newsreader nil)
527 (defvar message-mailer nil)
528 (defvar message-sent-message-via nil)
529 (defvar message-checksum nil)
530 (defvar message-send-actions nil
531   "A list of actions to be performed upon successful sending of a message.")
532 (defvar message-exit-actions nil
533   "A list of actions to be performed upon exiting after sending a message.")
534 (defvar message-kill-actions nil
535   "A list of actions to be performed before killing a message buffer.")
536 (defvar message-postpone-actions nil
537   "A list of actions to be performed after postponing a message.")
538
539 (defcustom message-default-headers ""
540   "*A string containing header lines to be inserted in outgoing messages.
541 It is inserted before you edit the message, so you can edit or delete
542 these lines."
543   :group 'message-headers
544   :type 'string)
545
546 (defcustom message-default-mail-headers ""
547   "*A string of header lines to be inserted in outgoing mails."
548   :group 'message-headers
549   :group 'message-mail
550   :type 'string)
551
552 (defcustom message-default-news-headers ""
553   "*A string of header lines to be inserted in outgoing news
554 articles."
555   :group 'message-headers
556   :group 'message-news
557   :type 'string)
558
559 ;; Note: could use /usr/ucb/mail instead of sendmail;
560 ;; options -t, and -v if not interactive.
561 (defcustom message-mailer-swallows-blank-line
562   (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
563                          system-configuration)
564            (file-readable-p "/etc/sendmail.cf")
565            (let ((buffer (get-buffer-create " *temp*")))
566              (unwind-protect
567                  (save-excursion
568                    (set-buffer buffer)
569                    (insert-file-contents "/etc/sendmail.cf")
570                    (goto-char (point-min))
571                    (let ((case-fold-search nil))
572                      (re-search-forward "^OR\\>" nil t)))
573                (kill-buffer buffer))))
574       ;; According to RFC822, "The field-name must be composed of printable
575       ;; ASCII characters (i. e., characters that have decimal values between
576       ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
577       ;; space, or colon.
578       '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
579   "Set this non-nil if the system's mailer runs the header and body together.
580 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
581 The value should be an expression to test whether the problem will
582 actually occur."
583   :group 'message-sending
584   :type 'sexp)
585
586 (ignore-errors
587   (define-mail-user-agent 'message-user-agent
588     'message-mail 'message-send-and-exit
589     'message-kill-buffer 'message-send-hook))
590
591 (defvar message-mh-deletable-headers '(Message-ID Date Lines Sender)
592   "If non-nil, delete the deletable headers before feeding to mh.")
593
594 (defvar message-send-method-alist
595   '((news message-news-p message-send-via-news)
596     (mail message-mail-p message-send-via-mail))
597   "Alist of ways to send outgoing messages.
598 Each element has the form
599
600   \(TYPE PREDICATE FUNCTION)
601
602 where TYPE is a symbol that names the method; PREDICATE is a function
603 called without any parameters to determine whether the message is
604 a message of type TYPE; and FUNCTION is a function to be called if
605 PREDICATE returns non-nil.  FUNCTION is called with one parameter --
606 the prefix.")
607
608 (defvar message-mail-alias-type 'abbrev
609   "*What alias expansion type to use in Message buffers.
610 The default is `abbrev', which uses mailabbrev.  nil switches
611 mail aliases off.")
612
613 ;;; Internal variables.
614 ;;; Well, not really internal.
615
616 (defvar message-mode-syntax-table
617   (let ((table (copy-syntax-table text-mode-syntax-table)))
618     (modify-syntax-entry ?% ". " table)
619     table)
620   "Syntax table used while in Message mode.")
621
622 (defvar message-mode-abbrev-table text-mode-abbrev-table
623   "Abbrev table used in Message mode buffers.
624 Defaults to `text-mode-abbrev-table'.")
625 (defgroup message-headers nil
626   "Message headers."
627   :link '(custom-manual "(message)Variables")
628   :group 'message)
629
630 (defface message-header-to-face
631   '((((class color)
632       (background dark))
633      (:foreground "green2" :bold t))
634     (((class color)
635       (background light))
636      (:foreground "MidnightBlue" :bold t))
637     (t
638      (:bold t :italic t)))
639   "Face used for displaying From headers."
640   :group 'message-faces)
641
642 (defface message-header-cc-face
643   '((((class color)
644       (background dark))
645      (:foreground "green4" :bold t))
646     (((class color)
647       (background light))
648      (:foreground "MidnightBlue"))
649     (t
650      (:bold t)))
651   "Face used for displaying Cc headers."
652   :group 'message-faces)
653
654 (defface message-header-subject-face
655   '((((class color)
656       (background dark))
657      (:foreground "green3"))
658     (((class color)
659       (background light))
660      (:foreground "navy blue" :bold t))
661     (t
662      (:bold t)))
663   "Face used for displaying subject headers."
664   :group 'message-faces)
665
666 (defface message-header-newsgroups-face
667   '((((class color)
668       (background dark))
669      (:foreground "yellow" :bold t :italic t))
670     (((class color)
671       (background light))
672      (:foreground "blue4" :bold t :italic t))
673     (t
674      (:bold t :italic t)))
675   "Face used for displaying newsgroups headers."
676   :group 'message-faces)
677
678 (defface message-header-other-face
679   '((((class color)
680       (background dark))
681      (:foreground "red4"))
682     (((class color)
683       (background light))
684      (:foreground "steel blue"))
685     (t
686      (:bold t :italic t)))
687   "Face used for displaying newsgroups headers."
688   :group 'message-faces)
689
690 (defface message-header-name-face
691   '((((class color)
692       (background dark))
693      (:foreground "DarkGreen"))
694     (((class color)
695       (background light))
696      (:foreground "cornflower blue"))
697     (t
698      (:bold t)))
699   "Face used for displaying header names."
700   :group 'message-faces)
701
702 (defface message-header-xheader-face
703   '((((class color)
704       (background dark))
705      (:foreground "blue"))
706     (((class color)
707       (background light))
708      (:foreground "blue"))
709     (t
710      (:bold t)))
711   "Face used for displaying X-Header headers."
712   :group 'message-faces)
713
714 (defface message-separator-face
715   '((((class color)
716       (background dark))
717      (:foreground "blue4"))
718     (((class color)
719       (background light))
720      (:foreground "brown"))
721     (t
722      (:bold t)))
723   "Face used for displaying the separator."
724   :group 'message-faces)
725
726 (defface message-cited-text-face
727   '((((class color)
728       (background dark))
729      (:foreground "red"))
730     (((class color)
731       (background light))
732      (:foreground "red"))
733     (t
734      (:bold t)))
735   "Face used for displaying cited text names."
736   :group 'message-faces)
737
738 (defvar message-font-lock-keywords
739   (let* ((cite-prefix "A-Za-z")
740          (cite-suffix (concat cite-prefix "0-9_.@-"))
741          (content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)"))
742     `((,(concat "^\\([Tt]o:\\)" content)
743        (1 'message-header-name-face)
744        (2 'message-header-to-face nil t))
745       (,(concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content)
746        (1 'message-header-name-face)
747        (2 'message-header-cc-face nil t))
748       (,(concat "^\\([Ss]ubject:\\)" content)
749        (1 'message-header-name-face)
750        (2 'message-header-subject-face nil t))
751       (,(concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content)
752        (1 'message-header-name-face)
753        (2 'message-header-newsgroups-face nil t))
754       (,(concat "^\\([A-Z][^: \n\t]+:\\)" content)
755        (1 'message-header-name-face)
756        (2 'message-header-other-face nil t))
757       (,(concat "^\\(X-[A-Za-z0-9-]+\\|In-Reply-To\\):" content)
758        (1 'message-header-name-face)
759        (2 'message-header-name-face))
760       (,(concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
761        1 'message-separator-face)
762       (,(concat "^[ \t]*"
763                 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
764                 "[>|}].*")
765        (0 'message-cited-text-face))))
766   "Additional expressions to highlight in Message mode.")
767
768 (defvar message-face-alist
769   '((bold . bold-region)
770     (underline . underline-region)
771     (default . (lambda (b e)
772                  (unbold-region b e)
773                  (ununderline-region b e))))
774   "Alist of mail and news faces for facemenu.
775 The cdr of ech entry is a function for applying the face to a region.")
776
777 (defcustom message-send-hook nil
778   "Hook run before sending messages."
779   :group 'message-various
780   :options '(ispell-message)
781   :type 'hook)
782
783 (defcustom message-send-mail-hook nil
784   "Hook run before sending mail messages."
785   :group 'message-various
786   :type 'hook)
787
788 (defcustom message-send-news-hook nil
789   "Hook run before sending news messages."
790   :group 'message-various
791   :type 'hook)
792
793 (defcustom message-sent-hook nil
794   "Hook run after sending messages."
795   :group 'message-various
796   :type 'hook)
797
798 ;;; Internal variables.
799
800 (defvar message-buffer-list nil)
801 (defvar message-this-is-news nil)
802 (defvar message-this-is-mail nil)
803
804 ;; Byte-compiler warning
805 (defvar gnus-active-hashtb)
806 (defvar gnus-read-active-file)
807
808 ;;; Regexp matching the delimiter of messages in UNIX mail format
809 ;;; (UNIX From lines), minus the initial ^.
810 (defvar message-unix-mail-delimiter
811   (let ((time-zone-regexp
812          (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
813                  "\\|[-+]?[0-9][0-9][0-9][0-9]"
814                  "\\|"
815                  "\\) *")))
816     (concat
817      "From "
818
819      ;; Username, perhaps with a quoted section that can contain spaces.
820      "\\("
821      "[^ \n]*"
822      "\\(\\|\".*\"[^ \n]*\\)"
823      "\\|<[^<>\n]+>"
824      "\\)  ?"
825
826      ;; The time the message was sent.
827      "\\([^ \n]*\\) *"                  ; day of the week
828      "\\([^ ]*\\) *"                    ; month
829      "\\([0-9]*\\) *"                   ; day of month
830      "\\([0-9:]*\\) *"                  ; time of day
831
832      ;; Perhaps a time zone, specified by an abbreviation, or by a
833      ;; numeric offset.
834      time-zone-regexp
835
836      ;; The year.
837      " [0-9][0-9]\\([0-9]*\\) *"
838
839      ;; On some systems the time zone can appear after the year, too.
840      time-zone-regexp
841
842      ;; Old uucp cruft.
843      "\\(remote from .*\\)?"
844
845      "\n")))
846
847 (defvar message-unsent-separator
848   (concat "^ *---+ +Unsent message follows +---+ *$\\|"
849           "^ *---+ +Returned message +---+ *$\\|"
850           "^Start of returned message$\\|"
851           "^ *---+ +Original message +---+ *$\\|"
852           "^ *--+ +begin message +--+ *$\\|"
853           "^ *---+ +Original message follows +---+ *$\\|"
854           "^|? *---+ +Message text follows: +---+ *|?$")
855   "A regexp that matches the separator before the text of a failed message.")
856
857 (defvar message-header-format-alist
858   `((Newsgroups)
859     (To . message-fill-address)
860     (Cc . message-fill-address)
861     (Subject)
862     (In-Reply-To)
863     (Fcc)
864     (Bcc)
865     (Date)
866     (Organization)
867     (Distribution)
868     (Lines)
869     (Expires)
870     (Message-ID)
871     (References)
872     (X-Mailer)
873     (X-Newsreader))
874   "Alist used for formatting headers.")
875
876 (eval-and-compile
877   (autoload 'message-setup-toolbar "messagexmas")
878   (autoload 'mh-send-letter "mh-comp")
879   (autoload 'gnus-point-at-eol "gnus-util")
880   (autoload 'gnus-point-at-bol "gnus-util")
881   (autoload 'gnus-output-to-mail "gnus-util")
882   (autoload 'gnus-output-to-rmail "gnus-util")
883   (autoload 'mail-abbrev-in-expansion-header-p "mailabbrev"))
884
885 \f
886
887 ;;;
888 ;;; Utility functions.
889 ;;;
890
891 (defmacro message-y-or-n-p (question show &rest text)
892   "Ask QUESTION, displaying the rest of the arguments in a temp. buffer if SHOW"
893   `(message-talkative-question 'y-or-n-p ,question ,show ,@text))
894
895 ;; Delete the current line (and the next N lines.);
896 (defmacro message-delete-line (&optional n)
897   `(delete-region (progn (beginning-of-line) (point))
898                   (progn (forward-line ,(or n 1)) (point))))
899
900 (defun message-tokenize-header (header &optional separator)
901   "Split HEADER into a list of header elements.
902 \",\" is used as the separator."
903   (if (not header)
904       nil
905     (let ((regexp (format "[%s]+" (or separator ",")))
906           (beg 1)
907           (first t)
908           quoted elems paren)
909       (save-excursion
910         (message-set-work-buffer)
911         (insert header)
912         (goto-char (point-min))
913         (while (not (eobp))
914           (if first
915               (setq first nil)
916             (forward-char 1))
917           (cond ((and (> (point) beg)
918                       (or (eobp)
919                           (and (looking-at regexp)
920                                (not quoted)
921                                (not paren))))
922                  (push (buffer-substring beg (point)) elems)
923                  (setq beg (match-end 0)))
924                 ((= (following-char) ?\")
925                  (setq quoted (not quoted)))
926                 ((and (= (following-char) ?\()
927                       (not quoted))
928                  (setq paren t))
929                 ((and (= (following-char) ?\))
930                       (not quoted))
931                  (setq paren nil))))
932         (nreverse elems)))))
933
934 (defun message-mail-file-mbox-p (file)
935   "Say whether FILE looks like a Unix mbox file."
936   (when (and (file-exists-p file)
937              (file-readable-p file)
938              (file-regular-p file))
939     (nnheader-temp-write nil
940       (nnheader-insert-file-contents file)
941       (goto-char (point-min))
942       (looking-at message-unix-mail-delimiter))))
943
944 (defun message-fetch-field (header &optional not-all)
945   "The same as `mail-fetch-field', only remove all newlines."
946   (let ((value (mail-fetch-field header nil (not not-all))))
947     (when value
948       (nnheader-replace-chars-in-string value ?\n ? ))))
949
950 (defun message-add-header (&rest headers)
951   "Add the HEADERS to the message header, skipping those already present."
952   (while headers
953     (let (hclean)
954       (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers))
955         (error "Invalid header `%s'" (car headers)))
956       (setq hclean (match-string 1 (car headers)))
957     (save-restriction
958       (message-narrow-to-headers)
959       (unless (re-search-forward (concat "^" (regexp-quote hclean) ":") nil t)
960         (insert (car headers) ?\n))))
961     (setq headers (cdr headers))))
962
963 (defun message-fetch-reply-field (header)
964   "Fetch FIELD from the message we're replying to."
965   (when (and message-reply-buffer
966              (buffer-name message-reply-buffer))
967     (save-excursion
968       (set-buffer message-reply-buffer)
969       (message-fetch-field header))))
970
971 (defun message-set-work-buffer ()
972   (if (get-buffer " *message work*")
973       (progn
974         (set-buffer " *message work*")
975         (erase-buffer))
976     (set-buffer (get-buffer-create " *message work*"))
977     (kill-all-local-variables)
978     (buffer-disable-undo (current-buffer))))
979
980 (defun message-functionp (form)
981   "Return non-nil if FORM is funcallable."
982   (or (and (symbolp form) (fboundp form))
983       (and (listp form) (eq (car form) 'lambda))
984       (compiled-function-p form)))
985
986 (defun message-strip-subject-re (subject)
987   "Remove \"Re:\" from subject lines."
988   (if (string-match "^[Rr][Ee]: *" subject)
989       (substring subject (match-end 0))
990     subject))
991
992 (defun message-remove-header (header &optional is-regexp first reverse)
993   "Remove HEADER in the narrowed buffer.
994 If REGEXP, HEADER is a regular expression.
995 If FIRST, only remove the first instance of the header.
996 Return the number of headers removed."
997   (goto-char (point-min))
998   (let ((regexp (if is-regexp header (concat "^" header ":")))
999         (number 0)
1000         (case-fold-search t)
1001         last)
1002     (while (and (not (eobp))
1003                 (not last))
1004       (if (if reverse
1005               (not (looking-at regexp))
1006             (looking-at regexp))
1007           (progn
1008             (incf number)
1009             (when first
1010               (setq last t))
1011             (delete-region
1012              (point)
1013              ;; There might be a continuation header, so we have to search
1014              ;; until we find a new non-continuation line.
1015              (progn
1016                (forward-line 1)
1017                (if (re-search-forward "^[^ \t]" nil t)
1018                    (goto-char (match-beginning 0))
1019                  (point-max)))))
1020         (forward-line 1)
1021         (if (re-search-forward "^[^ \t]" nil t)
1022             (goto-char (match-beginning 0))
1023           (point-max))))
1024     number))
1025
1026 (defun message-narrow-to-headers ()
1027   "Narrow the buffer to the head of the message."
1028   (widen)
1029   (narrow-to-region
1030    (goto-char (point-min))
1031    (if (re-search-forward
1032         (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
1033        (match-beginning 0)
1034      (point-max)))
1035   (goto-char (point-min)))
1036
1037 (defun message-narrow-to-head ()
1038   "Narrow the buffer to the head of the message."
1039   (widen)
1040   (narrow-to-region
1041    (goto-char (point-min))
1042    (if (search-forward "\n\n" nil 1)
1043        (1- (point))
1044      (point-max)))
1045   (goto-char (point-min)))
1046
1047 (defun message-news-p ()
1048   "Say whether the current buffer contains a news message."
1049   (or message-this-is-news
1050       (save-excursion
1051         (save-restriction
1052           (message-narrow-to-headers)
1053           (message-fetch-field "newsgroups")))))
1054
1055 (defun message-mail-p ()
1056   "Say whether the current buffer contains a mail message."
1057   (or message-this-is-mail
1058       (save-excursion
1059         (save-restriction
1060           (message-narrow-to-headers)
1061           (or (message-fetch-field "to")
1062               (message-fetch-field "cc")
1063               (message-fetch-field "bcc"))))))
1064
1065 (defun message-next-header ()
1066   "Go to the beginning of the next header."
1067   (beginning-of-line)
1068   (or (eobp) (forward-char 1))
1069   (not (if (re-search-forward "^[^ \t]" nil t)
1070            (beginning-of-line)
1071          (goto-char (point-max)))))
1072
1073 (defun message-sort-headers-1 ()
1074   "Sort the buffer as headers using `message-rank' text props."
1075   (goto-char (point-min))
1076   (sort-subr
1077    nil 'message-next-header
1078    (lambda ()
1079      (message-next-header)
1080      (unless (bobp)
1081        (forward-char -1)))
1082    (lambda ()
1083      (or (get-text-property (point) 'message-rank)
1084          10000))))
1085
1086 (defun message-sort-headers ()
1087   "Sort the headers of the current message according to `message-header-format-alist'."
1088   (interactive)
1089   (save-excursion
1090     (save-restriction
1091       (let ((max (1+ (length message-header-format-alist)))
1092             rank)
1093         (message-narrow-to-headers)
1094         (while (re-search-forward "^[^ \n]+:" nil t)
1095           (put-text-property
1096            (match-beginning 0) (1+ (match-beginning 0))
1097            'message-rank
1098            (if (setq rank (length (memq (assq (intern (buffer-substring
1099                                                        (match-beginning 0)
1100                                                        (1- (match-end 0))))
1101                                               message-header-format-alist)
1102                                         message-header-format-alist)))
1103                (- max rank)
1104              (1+ max)))))
1105       (message-sort-headers-1))))
1106
1107 \f
1108
1109 ;;;
1110 ;;; Message mode
1111 ;;;
1112
1113 ;;; Set up keymap.
1114
1115 (defvar message-mode-map nil)
1116
1117 (unless message-mode-map
1118   (setq message-mode-map (copy-keymap text-mode-map))
1119   (define-key message-mode-map "\C-c?" 'describe-mode)
1120
1121   (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to)
1122   (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc)
1123   (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc)
1124   (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc)
1125   (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject)
1126   (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to)
1127   (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups)
1128   (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution)
1129   (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to)
1130   (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords)
1131   (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary)
1132   (define-key message-mode-map "\C-c\C-b" 'message-goto-body)
1133   (define-key message-mode-map "\C-c\C-i" 'message-goto-signature)
1134
1135   (define-key message-mode-map "\C-c\C-t" 'message-insert-to)
1136   (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups)
1137
1138   (define-key message-mode-map "\C-c\C-y" 'message-yank-original)
1139   (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message)
1140   (define-key message-mode-map "\C-c\C-w" 'message-insert-signature)
1141   (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body)
1142   (define-key message-mode-map "\C-c\C-o" 'message-sort-headers)
1143   (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer)
1144
1145   (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit)
1146   (define-key message-mode-map "\C-c\C-s" 'message-send)
1147   (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer)
1148   (define-key message-mode-map "\C-c\C-d" 'message-dont-send)
1149
1150   (define-key message-mode-map "\C-c\C-e" 'message-elide-region)
1151
1152   (define-key message-mode-map "\t" 'message-tab))
1153
1154 (easy-menu-define
1155  message-mode-menu message-mode-map "Message Menu."
1156  '("Message"
1157    ["Sort Headers" message-sort-headers t]
1158    ["Yank Original" message-yank-original t]
1159    ["Fill Yanked Message" message-fill-yanked-message t]
1160    ["Insert Signature" message-insert-signature t]
1161    ["Caesar (rot13) Message" message-caesar-buffer-body t]
1162    ["Caesar (rot13) Region" message-caesar-region (mark t)]
1163    ["Elide Region" message-elide-region (mark t)]
1164    ["Rename buffer" message-rename-buffer t]
1165    ["Spellcheck" ispell-message t]
1166    "----"
1167    ["Send Message" message-send-and-exit t]
1168    ["Abort Message" message-dont-send t]))
1169
1170 (easy-menu-define
1171  message-mode-field-menu message-mode-map ""
1172  '("Field"
1173    ["Fetch To" message-insert-to t]
1174    ["Fetch Newsgroups" message-insert-newsgroups t]
1175    "----"
1176    ["To" message-goto-to t]
1177    ["Subject" message-goto-subject t]
1178    ["Cc" message-goto-cc t]
1179    ["Reply-To" message-goto-reply-to t]
1180    ["Summary" message-goto-summary t]
1181    ["Keywords" message-goto-keywords t]
1182    ["Newsgroups" message-goto-newsgroups t]
1183    ["Followup-To" message-goto-followup-to t]
1184    ["Distribution" message-goto-distribution t]
1185    ["Body" message-goto-body t]
1186    ["Signature" message-goto-signature t]))
1187
1188 (defvar facemenu-add-face-function)
1189 (defvar facemenu-remove-face-function)
1190
1191 ;;;###autoload
1192 (defun message-mode ()
1193   "Major mode for editing mail and news to be sent.
1194 Like Text Mode but with these additional commands:
1195 C-c C-s  message-send (send the message)    C-c C-c  message-send-and-exit
1196 C-c C-f  move to a header field (and create it if there isn't):
1197          C-c C-f C-t  move to To        C-c C-f C-s  move to Subject
1198          C-c C-f C-c  move to Cc        C-c C-f C-b  move to Bcc
1199          C-c C-f C-w  move to Fcc       C-c C-f C-r  move to Reply-To
1200          C-c C-f C-u  move to Summary   C-c C-f C-n  move to Newsgroups
1201          C-c C-f C-k  move to Keywords  C-c C-f C-d  move to Distribution
1202          C-c C-f C-f  move to Followup-To
1203 C-c C-t  message-insert-to (add a To header to a news followup)
1204 C-c C-n  message-insert-newsgroups (add a Newsgroup header to a news reply)
1205 C-c C-b  message-goto-body (move to beginning of message text).
1206 C-c C-i  message-goto-signature (move to the beginning of the signature).
1207 C-c C-w  message-insert-signature (insert `message-signature-file' file).
1208 C-c C-y  message-yank-original (insert current message, if any).
1209 C-c C-q  message-fill-yanked-message (fill what was yanked).
1210 C-c C-e  message-elide-region (elide the text between point and mark).
1211 C-c C-r  message-caesar-buffer-body (rot13 the message body)."
1212   (interactive)
1213   (kill-all-local-variables)
1214   (make-local-variable 'message-reply-buffer)
1215   (setq message-reply-buffer nil)
1216   (make-local-variable 'message-send-actions) 
1217   (make-local-variable 'message-exit-actions) 
1218   (make-local-variable 'message-kill-actions)
1219   (make-local-variable 'message-postpone-actions)
1220   (set-syntax-table message-mode-syntax-table)
1221   (use-local-map message-mode-map)
1222   (setq local-abbrev-table message-mode-abbrev-table)
1223   (setq major-mode 'message-mode)
1224   (setq mode-name "Message")
1225   (setq buffer-offer-save t)
1226   (make-local-variable 'font-lock-defaults)
1227   (setq font-lock-defaults '(message-font-lock-keywords t))
1228   (make-local-variable 'facemenu-add-face-function)
1229   (make-local-variable 'facemenu-remove-face-function)
1230   (setq facemenu-add-face-function
1231         (lambda (face end)
1232           (let ((face-fun (cdr (assq face message-face-alist))))
1233             (if face-fun
1234                 (funcall face-fun (point) end)
1235               (error "Face %s not configured for %s mode" face mode-name)))
1236           "")
1237         facemenu-remove-face-function t)
1238   (make-local-variable 'paragraph-separate)
1239   (make-local-variable 'paragraph-start)
1240   (setq paragraph-start (concat (regexp-quote mail-header-separator)
1241                                 "$\\|[ \t]*[-_][-_][-_]+$\\|"
1242                                 "-- $\\|"
1243                                 paragraph-start))
1244   (setq paragraph-separate (concat (regexp-quote mail-header-separator)
1245                                    "$\\|[ \t]*[-_][-_][-_]+$\\|"
1246                                    "-- $\\|"
1247                                    paragraph-separate))
1248   (make-local-variable 'message-reply-headers)
1249   (setq message-reply-headers nil)
1250   (make-local-variable 'message-newsreader)
1251   (make-local-variable 'message-mailer)
1252   (make-local-variable 'message-post-method)
1253   (make-local-variable 'message-sent-message-via)
1254   (setq message-sent-message-via nil)
1255   (make-local-variable 'message-checksum)
1256   (setq message-checksum nil)
1257   ;;(when (fboundp 'mail-hist-define-keys)
1258   ;;  (mail-hist-define-keys))
1259   (when (string-match "XEmacs\\|Lucid" emacs-version)
1260     (message-setup-toolbar))
1261   (easy-menu-add message-mode-menu message-mode-map)
1262   (easy-menu-add message-mode-field-menu message-mode-map)
1263   ;; Allow mail alias things.
1264   (when (eq message-mail-alias-type 'abbrev)
1265     (if (fboundp 'mail-abbrevs-setup)
1266         (mail-abbrevs-setup)
1267       (funcall (intern "mail-aliases-setup"))))
1268   (run-hooks 'text-mode-hook 'message-mode-hook))
1269
1270 \f
1271
1272 ;;;
1273 ;;; Message mode commands
1274 ;;;
1275
1276 ;;; Movement commands
1277
1278 (defun message-goto-to ()
1279   "Move point to the To header."
1280   (interactive)
1281   (message-position-on-field "To"))
1282
1283 (defun message-goto-subject ()
1284   "Move point to the Subject header."
1285   (interactive)
1286   (message-position-on-field "Subject"))
1287
1288 (defun message-goto-cc ()
1289   "Move point to the Cc header."
1290   (interactive)
1291   (message-position-on-field "Cc" "To"))
1292
1293 (defun message-goto-bcc ()
1294   "Move point to the Bcc  header."
1295   (interactive)
1296   (message-position-on-field "Bcc" "Cc" "To"))
1297
1298 (defun message-goto-fcc ()
1299   "Move point to the Fcc header."
1300   (interactive)
1301   (message-position-on-field "Fcc" "To" "Newsgroups"))
1302
1303 (defun message-goto-reply-to ()
1304   "Move point to the Reply-To header."
1305   (interactive)
1306   (message-position-on-field "Reply-To" "Subject"))
1307
1308 (defun message-goto-newsgroups ()
1309   "Move point to the Newsgroups header."
1310   (interactive)
1311   (message-position-on-field "Newsgroups"))
1312
1313 (defun message-goto-distribution ()
1314   "Move point to the Distribution header."
1315   (interactive)
1316   (message-position-on-field "Distribution"))
1317
1318 (defun message-goto-followup-to ()
1319   "Move point to the Followup-To header."
1320   (interactive)
1321   (message-position-on-field "Followup-To" "Newsgroups"))
1322
1323 (defun message-goto-keywords ()
1324   "Move point to the Keywords header."
1325   (interactive)
1326   (message-position-on-field "Keywords" "Subject"))
1327
1328 (defun message-goto-summary ()
1329   "Move point to the Summary header."
1330   (interactive)
1331   (message-position-on-field "Summary" "Subject"))
1332
1333 (defun message-goto-body ()
1334   "Move point to the beginning of the message body."
1335   (interactive)
1336   (if (looking-at "[ \t]*\n") (expand-abbrev))
1337   (goto-char (point-min))
1338   (search-forward (concat "\n" mail-header-separator "\n") nil t))
1339
1340 (defun message-goto-signature ()
1341   "Move point to the beginning of the message signature."
1342   (interactive)
1343   (goto-char (point-min))
1344   (if (re-search-forward message-signature-separator nil t)
1345       (forward-line 1)
1346     (goto-char (point-max))))
1347
1348 \f
1349
1350 (defun message-insert-to (&optional force)
1351   "Insert a To header that points to the author of the article being replied to.
1352 If the original author requested not to be sent mail, the function signals
1353 an error.
1354 With the prefix argument FORCE, insert the header anyway."
1355   (interactive "P")
1356   (let ((co (message-fetch-reply-field "mail-copies-to")))
1357     (when (and (null force)
1358                co
1359                (equal (downcase co) "never"))
1360       (error "The user has requested not to have copies sent via mail")))
1361   (when (and (message-position-on-field "To")
1362              (mail-fetch-field "to")
1363              (not (string-match "\\` *\\'" (mail-fetch-field "to"))))
1364     (insert ", "))
1365   (insert (or (message-fetch-reply-field "reply-to")
1366               (message-fetch-reply-field "from") "")))
1367
1368 (defun message-insert-newsgroups ()
1369   "Insert the Newsgroups header from the article being replied to."
1370   (interactive)
1371   (when (and (message-position-on-field "Newsgroups")
1372              (mail-fetch-field "newsgroups")
1373              (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
1374     (insert ","))
1375   (insert (or (message-fetch-reply-field "newsgroups") "")))
1376
1377 \f
1378
1379 ;;; Various commands
1380
1381 (defun message-insert-signature (&optional force)
1382   "Insert a signature.  See documentation for the `message-signature' variable."
1383   (interactive (list 0))
1384   (let* ((signature
1385           (cond
1386            ((and (null message-signature)
1387                  (eq force 0))
1388             (save-excursion
1389               (goto-char (point-max))
1390               (not (re-search-backward
1391                     message-signature-separator nil t))))
1392            ((and (null message-signature)
1393                  force)
1394             t)
1395            ((message-functionp message-signature)
1396             (funcall message-signature))
1397            ((listp message-signature)
1398             (eval message-signature))
1399            (t message-signature)))
1400          (signature
1401           (cond ((stringp signature)
1402                  signature)
1403                 ((and (eq t signature)
1404                       message-signature-file
1405                       (file-exists-p message-signature-file))
1406                  signature))))
1407     (when signature
1408       (goto-char (point-max))
1409       ;; Insert the signature.
1410       (unless (bolp)
1411         (insert "\n"))
1412       (insert "\n-- \n")
1413       (if (eq signature t)
1414           (insert-file-contents message-signature-file)
1415         (insert signature))
1416       (goto-char (point-max))
1417       (or (bolp) (insert "\n")))))
1418
1419 (defun message-elide-region (b e)
1420   "Elide the text between point and mark.  An ellipsis (from
1421 message-elide-elipsis) will be inserted where the text was killed."
1422   (interactive "r")
1423   (kill-region b e)
1424   (unless (bolp)
1425     (insert "\n"))
1426   (insert message-elide-elipsis))
1427
1428 (defvar message-caesar-translation-table nil)
1429
1430 (defun message-caesar-region (b e &optional n)
1431   "Caesar rotation of region by N, default 13, for decrypting netnews."
1432   (interactive
1433    (list
1434     (min (point) (or (mark t) (point)))
1435     (max (point) (or (mark t) (point)))
1436     (when current-prefix-arg
1437       (prefix-numeric-value current-prefix-arg))))
1438
1439   (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
1440   (unless (or (zerop n)                 ; no action needed for a rot of 0
1441               (= b e))                  ; no region to rotate
1442     ;; We build the table, if necessary.
1443     (when (or (not message-caesar-translation-table)
1444               (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
1445         (setq message-caesar-translation-table
1446               (message-make-caesar-translation-table n)))
1447     ;; Then we translate the region.  Do it this way to retain
1448     ;; text properties.
1449     (while (< b e)
1450       (subst-char-in-region
1451        b (1+ b) (char-after b)
1452        (aref message-caesar-translation-table (char-after b)))
1453       (incf b))))
1454
1455 (defun message-make-caesar-translation-table (n)
1456   "Create a rot table with offset N."
1457   (let ((i -1)
1458         (table (make-string 256 0)))
1459     (while (< (incf i) 256)
1460       (aset table i i))
1461     (concat
1462      (substring table 0 ?A)
1463      (substring table (+ ?A n) (+ ?A n (- 26 n)))
1464      (substring table ?A (+ ?A n))
1465      (substring table (+ ?A 26) ?a)
1466      (substring table (+ ?a n) (+ ?a n (- 26 n)))
1467      (substring table ?a (+ ?a n))
1468      (substring table (+ ?a 26) 255))))
1469
1470 (defun message-caesar-buffer-body (&optional rotnum)
1471   "Caesar rotates all letters in the current buffer by 13 places.
1472 Used to encode/decode possibly offensive messages (commonly in net.jokes).
1473 With prefix arg, specifies the number of places to rotate each letter forward.
1474 Mail and USENET news headers are not rotated."
1475   (interactive (if current-prefix-arg
1476                    (list (prefix-numeric-value current-prefix-arg))
1477                  (list nil)))
1478   (save-excursion
1479     (save-restriction
1480       (when (message-goto-body)
1481         (narrow-to-region (point) (point-max)))
1482       (message-caesar-region (point-min) (point-max) rotnum))))
1483
1484 (defun message-pipe-buffer-body (program)
1485   "Pipe the message body in the current buffer through PROGRAM."
1486   (save-excursion
1487     (save-restriction
1488       (when (message-goto-body)
1489         (narrow-to-region (point) (point-max)))
1490       (let ((body (buffer-substring (point-min) (point-max))))
1491         (unless (equal 0 (call-process-region
1492                            (point-min) (point-max) program t t))
1493             (insert body)
1494             (message "%s failed." program))))))
1495
1496 (defun message-rename-buffer (&optional enter-string)
1497   "Rename the *message* buffer to \"*message* RECIPIENT\".
1498 If the function is run with a prefix, it will ask for a new buffer
1499 name, rather than giving an automatic name."
1500   (interactive "Pbuffer name: ")
1501   (save-excursion
1502     (save-restriction
1503       (goto-char (point-min))
1504       (narrow-to-region (point)
1505                         (search-forward mail-header-separator nil 'end))
1506       (let* ((mail-to (or
1507                        (if (message-news-p) (message-fetch-field "Newsgroups")
1508                          (message-fetch-field "To"))
1509                        ""))
1510              (mail-trimmed-to
1511               (if (string-match "," mail-to)
1512                   (concat (substring mail-to 0 (match-beginning 0)) ", ...")
1513                 mail-to))
1514              (name-default (concat "*message* " mail-trimmed-to))
1515              (name (if enter-string
1516                        (read-string "New buffer name: " name-default)
1517                      name-default))
1518              (default-directory
1519                (file-name-as-directory message-autosave-directory)))
1520         (rename-buffer name t)))))
1521
1522 (defun message-fill-yanked-message (&optional justifyp)
1523   "Fill the paragraphs of a message yanked into this one.
1524 Numeric argument means justify as well."
1525   (interactive "P")
1526   (save-excursion
1527     (goto-char (point-min))
1528     (search-forward (concat "\n" mail-header-separator "\n") nil t)
1529     (let ((fill-prefix message-yank-prefix))
1530       (fill-individual-paragraphs (point) (point-max) justifyp t))))
1531
1532 (defun message-indent-citation ()
1533   "Modify text just inserted from a message to be cited.
1534 The inserted text should be the region.
1535 When this function returns, the region is again around the modified text.
1536
1537 Normally, indent each nonblank line `message-indentation-spaces' spaces.
1538 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
1539   (let ((start (point)))
1540     ;; Remove unwanted headers.
1541     (when message-ignored-cited-headers
1542       (let (all-removed)
1543         (save-restriction
1544           (narrow-to-region
1545            (goto-char start)
1546            (if (search-forward "\n\n" nil t)
1547                (1- (point))
1548              (point)))
1549           (message-remove-header message-ignored-cited-headers t)
1550           (when (= (point-min) (point-max))
1551             (setq all-removed t))
1552           (goto-char (point-max)))
1553         (if all-removed
1554             (goto-char start)
1555           (forward-line 1))))
1556     ;; Delete blank lines at the start of the buffer.
1557     (while (and (point-min)
1558                 (eolp)
1559                 (not (eobp)))
1560       (message-delete-line))
1561     ;; Delete blank lines at the end of the buffer.
1562     (goto-char (point-max))
1563     (unless (eolp)
1564       (insert "\n"))
1565     (while (and (zerop (forward-line -1))
1566                 (looking-at "$"))
1567       (message-delete-line))
1568     ;; Do the indentation.
1569     (if (null message-yank-prefix)
1570         (indent-rigidly start (mark t) message-indentation-spaces)
1571       (save-excursion
1572         (goto-char start)
1573         (while (< (point) (mark t))
1574           (insert message-yank-prefix)
1575           (forward-line 1))))
1576     (goto-char start)))
1577
1578 (defun message-yank-original (&optional arg)
1579   "Insert the message being replied to, if any.
1580 Puts point before the text and mark after.
1581 Normally indents each nonblank line ARG spaces (default 3).  However,
1582 if `message-yank-prefix' is non-nil, insert that prefix on each line.
1583
1584 This function uses `message-cite-function' to do the actual citing.
1585
1586 Just \\[universal-argument] as argument means don't indent, insert no
1587 prefix, and don't delete any headers."
1588   (interactive "P")
1589   (let ((modified (buffer-modified-p)))
1590     (when (and message-reply-buffer
1591                message-cite-function)
1592       (delete-windows-on message-reply-buffer t)
1593       (insert-buffer message-reply-buffer)
1594       (funcall message-cite-function)
1595       (message-exchange-point-and-mark)
1596       (unless (bolp)
1597         (insert ?\n))
1598       (unless modified
1599         (setq message-checksum (cons (message-checksum) (buffer-size)))))))
1600
1601 (defun message-cite-original ()
1602   "Cite function in the standard Message manner."
1603   (let ((start (point))
1604         (functions
1605          (when message-indent-citation-function
1606            (if (listp message-indent-citation-function)
1607                message-indent-citation-function
1608              (list message-indent-citation-function)))))
1609     (goto-char start)
1610     (while functions
1611       (funcall (pop functions)))
1612     (when message-citation-line-function
1613       (unless (bolp)
1614         (insert "\n"))
1615       (funcall message-citation-line-function))))
1616
1617 (defun message-insert-citation-line ()
1618   "Function that inserts a simple citation line."
1619   (when message-reply-headers
1620     (insert (mail-header-from message-reply-headers) " writes:\n\n")))
1621
1622 (defun message-position-on-field (header &rest afters)
1623   (let ((case-fold-search t))
1624     (save-restriction
1625       (narrow-to-region
1626        (goto-char (point-min))
1627        (progn
1628          (re-search-forward
1629           (concat "^" (regexp-quote mail-header-separator) "$"))
1630          (match-beginning 0)))
1631       (goto-char (point-min))
1632       (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
1633           (progn
1634             (re-search-forward "^[^ \t]" nil 'move)
1635             (beginning-of-line)
1636             (skip-chars-backward "\n")
1637             t)
1638         (while (and afters
1639                     (not (re-search-forward
1640                           (concat "^" (regexp-quote (car afters)) ":")
1641                           nil t)))
1642           (pop afters))
1643         (when afters
1644           (re-search-forward "^[^ \t]" nil 'move)
1645           (beginning-of-line))
1646         (insert header ": \n")
1647         (forward-char -1)
1648         nil))))
1649
1650 (defun message-remove-signature ()
1651   "Remove the signature from the text between point and mark.
1652 The text will also be indented the normal way."
1653   (save-excursion
1654     (let ((start (point))
1655           mark)
1656       (if (not (re-search-forward message-signature-separator (mark t) t))
1657           ;; No signature here, so we just indent the cited text.
1658           (message-indent-citation)
1659         ;; Find the last non-empty line.
1660         (forward-line -1)
1661         (while (looking-at "[ \t]*$")
1662           (forward-line -1))
1663         (forward-line 1)
1664         (setq mark (set-marker (make-marker) (point)))
1665         (goto-char start)
1666         (message-indent-citation)
1667         ;; Enable undoing the deletion.
1668         (undo-boundary)
1669         (delete-region mark (mark t))
1670         (set-marker mark nil)))))
1671
1672 \f
1673
1674 ;;;
1675 ;;; Sending messages
1676 ;;;
1677
1678 (defun message-send-and-exit (&optional arg)
1679   "Send message like `message-send', then, if no errors, exit from mail buffer."
1680   (interactive "P")
1681   (let ((buf (current-buffer))
1682         (actions message-exit-actions))
1683     (when (and (message-send arg)
1684                (buffer-name buf))
1685       (if message-kill-buffer-on-exit
1686           (kill-buffer buf)
1687         (bury-buffer buf)
1688         (when (eq buf (current-buffer))
1689           (message-bury buf)))
1690       (message-do-actions actions))))
1691
1692 (defun message-dont-send ()
1693   "Don't send the message you have been editing."
1694   (interactive)
1695   (let ((actions message-postpone-actions))
1696     (message-bury (current-buffer))
1697     (message-do-actions actions)))
1698
1699 (defun message-kill-buffer ()
1700   "Kill the current buffer."
1701   (interactive)
1702   (when (or (not (buffer-modified-p))
1703             (yes-or-no-p "Message modified; kill anyway? "))
1704     (let ((actions message-kill-actions))
1705       (kill-buffer (current-buffer))
1706       (message-do-actions actions))))
1707
1708 (defun message-bury (buffer)
1709   "Bury this mail buffer."
1710   (let ((newbuf (other-buffer buffer)))
1711     (bury-buffer buffer)
1712     (if (and (fboundp 'frame-parameters)
1713              (cdr (assq 'dedicated (frame-parameters)))
1714              (not (null (delq (selected-frame) (visible-frame-list)))))
1715         (delete-frame (selected-frame))
1716       (switch-to-buffer newbuf))))
1717
1718 (defun message-send (&optional arg)
1719   "Send the message in the current buffer.
1720 If `message-interactive' is non-nil, wait for success indication
1721 or error messages, and inform user.
1722 Otherwise any failure is reported in a message back to
1723 the user from the mailer."
1724   (interactive "P")
1725   (when (if buffer-file-name
1726             (y-or-n-p (format "Send buffer contents as %s message? "
1727                               (if (message-mail-p)
1728                                   (if (message-news-p) "mail and news" "mail")
1729                                 "news")))
1730           (or (buffer-modified-p)
1731               (y-or-n-p "No changes in the buffer; really send? ")))
1732     ;; Make it possible to undo the coming changes.
1733     (undo-boundary)
1734     (let ((inhibit-read-only t))
1735       (put-text-property (point-min) (point-max) 'read-only nil))
1736     (message-fix-before-sending)
1737     (run-hooks 'message-send-hook)
1738     (message "Sending...")
1739     (let ((alist message-send-method-alist)
1740           (success t)
1741           elem sent)
1742       (while (and success
1743                   (setq elem (pop alist)))
1744         (when (and (or (not (funcall (cadr elem)))
1745                        (and (or (not (memq (car elem)
1746                                            message-sent-message-via))
1747                                 (y-or-n-p
1748                                  (format
1749                                   "Already sent message via %s; resend? "
1750                                   (car elem))))
1751                             (setq success (funcall (caddr elem) arg)))))
1752           (setq sent t)))
1753       (when (and success sent)
1754         (message-do-fcc)
1755         ;;(when (fboundp 'mail-hist-put-headers-into-history)
1756         ;; (mail-hist-put-headers-into-history))
1757         (run-hooks 'message-sent-hook)
1758         (message "Sending...done")
1759         ;; If buffer has no file, mark it as unmodified and delete autosave.
1760         (unless buffer-file-name
1761           (set-buffer-modified-p nil)
1762           (delete-auto-save-file-if-necessary t))
1763         ;; Delete other mail buffers and stuff.
1764         (message-do-send-housekeeping)
1765         (message-do-actions message-send-actions)
1766         ;; Return success.
1767         t))))
1768
1769 (defun message-send-via-mail (arg)
1770   "Send the current message via mail."  
1771   (message-send-mail arg))
1772
1773 (defun message-send-via-news (arg)
1774   "Send the current message via news."
1775   (funcall message-send-news-function arg))
1776
1777 (defun message-fix-before-sending ()
1778   "Do various things to make the message nice before sending it."
1779   ;; Make sure there's a newline at the end of the message.
1780   (goto-char (point-max))
1781   (unless (bolp)
1782     (insert "\n")))
1783
1784 (defun message-add-action (action &rest types)
1785   "Add ACTION to be performed when doing an exit of type TYPES."
1786   (let (var)
1787     (while types
1788       (set (setq var (intern (format "message-%s-actions" (pop types))))
1789            (nconc (symbol-value var) (list action))))))
1790
1791 (defun message-do-actions (actions)
1792   "Perform all actions in ACTIONS."
1793   ;; Now perform actions on successful sending.
1794   (while actions
1795     (ignore-errors
1796       (cond
1797        ;; A simple function.
1798        ((message-functionp (car actions))
1799         (funcall (car actions)))
1800        ;; Something to be evaled.
1801        (t
1802         (eval (car actions)))))
1803     (pop actions)))
1804
1805 (defun message-send-mail (&optional arg)
1806   (require 'mail-utils)
1807   (let ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
1808         (case-fold-search nil)
1809         (news (message-news-p))
1810         (mailbuf (current-buffer)))
1811     (save-restriction
1812       (message-narrow-to-headers)
1813       ;; Insert some headers.
1814       (let ((message-deletable-headers
1815              (if news nil message-deletable-headers)))
1816         (message-generate-headers message-required-mail-headers))
1817       ;; Let the user do all of the above.
1818       (run-hooks 'message-header-hook))
1819     (unwind-protect
1820         (save-excursion
1821           (set-buffer tembuf)
1822           (erase-buffer)
1823           ;; Avoid copying text props.
1824           (insert (format
1825                    "%s" (save-excursion
1826                           (set-buffer mailbuf)
1827                           (buffer-string))))
1828           ;; Remove some headers.
1829           (save-restriction
1830             (message-narrow-to-headers)
1831             ;; Remove some headers.
1832             (message-remove-header message-ignored-mail-headers t))
1833           (goto-char (point-max))
1834           ;; require one newline at the end.
1835           (or (= (preceding-char) ?\n)
1836               (insert ?\n))
1837           (when (and news
1838                      (or (message-fetch-field "cc")
1839                          (message-fetch-field "to")))
1840             (message-insert-courtesy-copy))
1841           (funcall message-send-mail-function))
1842       (kill-buffer tembuf))
1843     (set-buffer mailbuf)
1844     (push 'mail message-sent-message-via)))
1845
1846 (defun message-send-mail-with-sendmail ()
1847   "Send off the prepared buffer with sendmail."
1848   (let ((errbuf (if message-interactive
1849                     (generate-new-buffer " sendmail errors")
1850                   0))
1851         resend-to-addresses delimline)
1852     (let ((case-fold-search t))
1853       (save-restriction
1854         (message-narrow-to-headers)
1855         (setq resend-to-addresses (message-fetch-field "resent-to")))
1856       ;; Change header-delimiter to be what sendmail expects.
1857       (goto-char (point-min))
1858       (re-search-forward
1859        (concat "^" (regexp-quote mail-header-separator) "\n"))
1860       (replace-match "\n")
1861       (backward-char 1)
1862       (setq delimline (point-marker))
1863       (run-hooks 'message-send-mail-hook)
1864       ;; Insert an extra newline if we need it to work around
1865       ;; Sun's bug that swallows newlines.
1866       (goto-char (1+ delimline))
1867       (when (eval message-mailer-swallows-blank-line)
1868         (newline))
1869       (when message-interactive
1870         (save-excursion
1871           (set-buffer errbuf)
1872           (erase-buffer))))
1873     (let ((default-directory "/"))
1874       (apply 'call-process-region
1875              (append (list (point-min) (point-max)
1876                            (if (boundp 'sendmail-program)
1877                                sendmail-program
1878                              "/usr/lib/sendmail")
1879                            nil errbuf nil "-oi")
1880                      ;; Always specify who from,
1881                      ;; since some systems have broken sendmails.
1882                      ;; But some systems are more broken with -f, so
1883                      ;; we'll let users override this.
1884                      (if (null message-sendmail-f-is-evil)
1885                          (list "-f" (user-login-name)))
1886                      ;; These mean "report errors by mail"
1887                      ;; and "deliver in background".
1888                      (if (null message-interactive) '("-oem" "-odb"))
1889                      ;; Get the addresses from the message
1890                      ;; unless this is a resend.
1891                      ;; We must not do that for a resend
1892                      ;; because we would find the original addresses.
1893                      ;; For a resend, include the specific addresses.
1894                      (if resend-to-addresses
1895                          (list resend-to-addresses)
1896                        '("-t")))))
1897     (when message-interactive
1898       (save-excursion
1899         (set-buffer errbuf)
1900         (goto-char (point-min))
1901         (while (re-search-forward "\n\n* *" nil t)
1902           (replace-match "; "))
1903         (if (not (zerop (buffer-size)))
1904             (error "Sending...failed to %s"
1905                    (buffer-substring (point-min) (point-max)))))
1906       (when (bufferp errbuf)
1907         (kill-buffer errbuf)))))
1908
1909 (defun message-send-mail-with-qmail ()
1910   "Pass the prepared message buffer to qmail-inject.
1911 Refer to the documentation for the variable `message-send-mail-function'
1912 to find out how to use this."
1913   ;; replace the header delimiter with a blank line
1914   (goto-char (point-min))
1915   (re-search-forward
1916    (concat "^" (regexp-quote mail-header-separator) "\n"))
1917   (replace-match "\n")
1918   (run-hooks 'message-send-mail-hook)
1919   ;; send the message
1920   (case
1921       (apply
1922        'call-process-region 1 (point-max) message-qmail-inject-program
1923        nil nil nil
1924        ;; qmail-inject's default behaviour is to look for addresses on the
1925        ;; command line; if there're none, it scans the headers.
1926        ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
1927        ;;
1928        ;; in general, ALL of qmail-inject's defaults are perfect for simply
1929        ;; reading a formatted (i. e., at least a To: or Resent-To header)
1930        ;; message from stdin.
1931        ;;
1932        ;; qmail also has the advantage of not having been raped by
1933        ;; various vendors, so we don't have to allow for that, either --
1934        ;; compare this with message-send-mail-with-sendmail and weep
1935        ;; for sendmail's lost innocence.
1936        ;;
1937        ;; all this is way cool coz it lets us keep the arguments entirely
1938        ;; free for -inject-arguments -- a big win for the user and for us
1939        ;; since we don't have to play that double-guessing game and the user
1940        ;; gets full control (no gestapo'ish -f's, for instance).  --sj
1941        message-qmail-inject-args)
1942     ;; qmail-inject doesn't say anything on it's stdout/stderr,
1943     ;; we have to look at the retval instead
1944     (0 nil)
1945     (1   (error "qmail-inject reported permanent failure."))
1946     (111 (error "qmail-inject reported transient failure."))
1947     ;; should never happen
1948     (t   (error "qmail-inject reported unknown failure."))))
1949
1950 (defun message-send-mail-with-mh ()
1951   "Send the prepared message buffer with mh."
1952   (let ((mh-previous-window-config nil)
1953         (name (make-temp-name
1954                (concat (file-name-as-directory
1955                         (expand-file-name message-autosave-directory))
1956                        "msg."))))
1957     (setq buffer-file-name name)
1958     ;; MH wants to generate these headers itself.
1959     (when message-mh-deletable-headers
1960       (let ((headers message-mh-deletable-headers))
1961         (while headers
1962           (goto-char (point-min))
1963           (and (re-search-forward
1964                 (concat "^" (symbol-name (car headers)) ": *") nil t)
1965                (message-delete-line))
1966           (pop headers))))
1967     (run-hooks 'message-send-mail-hook)
1968     ;; Pass it on to mh.
1969     (mh-send-letter)))
1970
1971 (defun message-send-news (&optional arg)
1972   (let ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
1973         (case-fold-search nil)
1974         (method (if (message-functionp message-post-method)
1975                     (funcall message-post-method arg)
1976                   message-post-method))
1977         (messbuf (current-buffer))
1978         (message-syntax-checks
1979          (if arg
1980              (cons '(existing-newsgroups . disabled)
1981                    message-syntax-checks)
1982            message-syntax-checks))
1983         result)
1984     (save-restriction
1985       (message-narrow-to-headers)
1986       ;; Insert some headers.
1987       (message-generate-headers message-required-news-headers)
1988       ;; Let the user do all of the above.
1989       (run-hooks 'message-header-hook))
1990     (message-cleanup-headers)
1991     (if (not (message-check-news-syntax))
1992         (progn
1993           ;;(message "Posting not performed")
1994           nil)
1995       (unwind-protect
1996           (save-excursion
1997             (set-buffer tembuf)
1998             (buffer-disable-undo (current-buffer))
1999             (erase-buffer)
2000             ;; Avoid copying text props.
2001             (insert (format
2002                      "%s" (save-excursion
2003                             (set-buffer messbuf)
2004                             (buffer-string))))
2005             ;; Remove some headers.
2006             (save-restriction
2007               (message-narrow-to-headers)
2008               ;; Remove some headers.
2009               (message-remove-header message-ignored-news-headers t))
2010             (goto-char (point-max))
2011             ;; require one newline at the end.
2012             (or (= (preceding-char) ?\n)
2013                 (insert ?\n))
2014             (let ((case-fold-search t))
2015               ;; Remove the delimiter.
2016               (goto-char (point-min))
2017               (re-search-forward
2018                (concat "^" (regexp-quote mail-header-separator) "\n"))
2019               (replace-match "\n")
2020               (backward-char 1))
2021             (run-hooks 'message-send-news-hook)
2022             (require (car method))
2023             (funcall (intern (format "%s-open-server" (car method)))
2024                      (cadr method) (cddr method))
2025             (setq result
2026                   (funcall (intern (format "%s-request-post" (car method))))))
2027         (kill-buffer tembuf))
2028       (set-buffer messbuf)
2029       (if result
2030           (push 'news message-sent-message-via)
2031         (message "Couldn't send message via news: %s"
2032                  (nnheader-get-report (car method)))
2033         nil))))
2034
2035 ;;;
2036 ;;; Header generation & syntax checking.
2037 ;;;
2038
2039 (defmacro message-check (type &rest forms)
2040   "Eval FORMS if TYPE is to be checked."
2041   `(or (message-check-element ,type)
2042        (save-excursion
2043          ,@forms)))
2044
2045 (put 'message-check 'lisp-indent-function 1)
2046 (put 'message-check 'edebug-form-spec '(form body))
2047
2048 (defun message-check-element (type)
2049   "Returns non-nil if this type is not to be checked."
2050   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
2051       t
2052     (let ((able (assq type message-syntax-checks)))
2053       (and (consp able)
2054            (eq (cdr able) 'disabled)))))
2055
2056 (defun message-check-news-syntax ()
2057   "Check the syntax of the message."
2058   (save-excursion
2059     (save-restriction
2060       (widen)
2061       (and
2062        ;; We narrow to the headers and check them first.
2063        (save-excursion
2064          (save-restriction
2065            (message-narrow-to-headers)
2066            (message-check-news-header-syntax)))
2067        ;; Check the body.
2068        (message-check-news-body-syntax)))))
2069
2070 (defun message-check-news-header-syntax ()
2071   (and
2072    ;; Check the Subject header.
2073    (message-check 'subject
2074      (let* ((case-fold-search t)
2075             (subject (message-fetch-field "subject")))
2076        (or
2077         (and subject
2078              (not (string-match "\\`[ \t]*\\'" subject)))
2079         (ignore
2080          (message
2081           "The subject field is empty or missing.  Posting is denied.")))))
2082    ;; Check for commands in Subject.
2083    (message-check 'subject-cmsg
2084      (if (string-match "^cmsg " (message-fetch-field "subject"))
2085          (y-or-n-p
2086           "The control code \"cmsg\" is in the subject.  Really post? ")
2087        t))
2088    ;; Check for multiple identical headers.
2089    (message-check 'multiple-headers
2090      (let (found)
2091        (while (and (not found)
2092                    (re-search-forward "^[^ \t:]+: " nil t))
2093          (save-excursion
2094            (or (re-search-forward
2095                 (concat "^"
2096                         (regexp-quote
2097                          (setq found
2098                                (buffer-substring
2099                                 (match-beginning 0) (- (match-end 0) 2))))
2100                         ":")
2101                 nil t)
2102                (setq found nil))))
2103        (if found
2104            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
2105          t)))
2106    ;; Check for Version and Sendsys.
2107    (message-check 'sendsys
2108      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
2109          (y-or-n-p
2110           (format "The article contains a %s command.  Really post? "
2111                   (buffer-substring (match-beginning 0)
2112                                     (1- (match-end 0)))))
2113        t))
2114    ;; See whether we can shorten Followup-To.
2115    (message-check 'shorten-followup-to
2116      (let ((newsgroups (message-fetch-field "newsgroups"))
2117            (followup-to (message-fetch-field "followup-to"))
2118            to)
2119        (when (and newsgroups
2120                   (string-match "," newsgroups)
2121                   (not followup-to)
2122                   (not
2123                    (zerop
2124                     (length
2125                      (setq to (completing-read
2126                                "Followups to: (default all groups) "
2127                                (mapcar (lambda (g) (list g))
2128                                        (cons "poster"
2129                                              (message-tokenize-header
2130                                               newsgroups)))))))))
2131          (goto-char (point-min))
2132          (insert "Followup-To: " to "\n"))
2133        t))
2134    ;; Check "Shoot me".
2135    (message-check 'shoot
2136      (if (re-search-forward
2137           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
2138          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
2139        t))
2140    ;; Check for Approved.
2141    (message-check 'approved
2142      (if (re-search-forward "^Approved:" nil t)
2143          (y-or-n-p "The article contains an Approved header.  Really post? ")
2144        t))
2145    ;; Check the Message-ID header.
2146    (message-check 'message-id
2147      (let* ((case-fold-search t)
2148             (message-id (message-fetch-field "message-id" t)))
2149        (or (not message-id)
2150            (and (string-match "@" message-id)
2151                 (string-match "@[^\\.]*\\." message-id))
2152            (y-or-n-p
2153             (format "The Message-ID looks strange: \"%s\".  Really post? "
2154                     message-id)))))
2155    ;; Check the Newsgroups & Followup-To headers.
2156    (message-check 'existing-newsgroups
2157      (let* ((case-fold-search t)
2158             (newsgroups (message-fetch-field "newsgroups"))
2159             (followup-to (message-fetch-field "followup-to"))
2160             (groups (message-tokenize-header
2161                      (if followup-to
2162                          (concat newsgroups "," followup-to)
2163                        newsgroups)))
2164             (hashtb (and (boundp 'gnus-active-hashtb)
2165                          gnus-active-hashtb))
2166             errors)
2167        (if (or (not hashtb)
2168                (not (boundp 'gnus-read-active-file))
2169                (not gnus-read-active-file)
2170                (eq gnus-read-active-file 'some))
2171            t
2172          (while groups
2173            (when (and (not (boundp (intern (car groups) hashtb)))
2174                       (not (equal (car groups) "poster")))
2175              (push (car groups) errors))
2176            (pop groups))
2177          (if (not errors)
2178              t
2179            (y-or-n-p
2180             (format
2181              "Really post to %s unknown group%s: %s "
2182              (if (= (length errors) 1) "this" "these")
2183              (if (= (length errors) 1) "" "s")
2184              (mapconcat 'identity errors ", ")))))))
2185    ;; Check the Newsgroups & Followup-To headers for syntax errors.
2186    (message-check 'valid-newsgroups
2187      (let ((case-fold-search t)
2188            (headers '("Newsgroups" "Followup-To"))
2189            header error)
2190        (while (and headers (not error))
2191          (when (setq header (mail-fetch-field (car headers)))
2192            (if (or
2193                 (not
2194                  (string-match
2195                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
2196                   header))
2197                 (memq
2198                  nil (mapcar
2199                       (lambda (g)
2200                         (not (string-match "\\.\\'\\|\\.\\." g)))
2201                       (message-tokenize-header header ","))))
2202                (setq error t)))
2203          (unless error
2204            (pop headers)))
2205        (if (not error)
2206            t
2207          (y-or-n-p
2208           (format "The %s header looks odd: \"%s\".  Really post? "
2209                   (car headers) header)))))
2210    ;; Check the From header.
2211    (message-check 'from
2212      (let* ((case-fold-search t)
2213             (from (message-fetch-field "from"))
2214             (ad (nth 1 (mail-extract-address-components from))))
2215        (cond
2216         ((not from)
2217          (message "There is no From line.  Posting is denied.")
2218          nil)
2219         ((or (not (string-match "@[^\\.]*\\." ad)) ;larsi@ifi
2220              (string-match "\\.\\." ad) ;larsi@ifi..uio
2221              (string-match "@\\." ad)   ;larsi@.ifi.uio
2222              (string-match "\\.$" ad)   ;larsi@ifi.uio.
2223              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
2224              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
2225          (message
2226           "Denied posting -- the From looks strange: \"%s\"." from)
2227          nil)
2228         (t t))))))
2229
2230 (defun message-check-news-body-syntax ()
2231   (and
2232    ;; Check for long lines.
2233    (message-check 'long-lines
2234      (goto-char (point-min))
2235      (re-search-forward
2236       (concat "^" (regexp-quote mail-header-separator) "$"))
2237      (while (and
2238              (progn
2239                (end-of-line)
2240                (< (current-column) 80))
2241              (zerop (forward-line 1))))
2242      (or (bolp)
2243          (eobp)
2244          (y-or-n-p
2245           "You have lines longer than 79 characters.  Really post? ")))
2246    ;; Check whether the article is empty.
2247    (message-check 'empty
2248      (goto-char (point-min))
2249      (re-search-forward
2250       (concat "^" (regexp-quote mail-header-separator) "$"))
2251      (forward-line 1)
2252      (let ((b (point)))
2253        (goto-char (point-max))
2254        (re-search-backward message-signature-separator nil t)
2255        (beginning-of-line)
2256        (or (re-search-backward "[^ \n\t]" b t)
2257            (y-or-n-p "Empty article.  Really post? "))))
2258    ;; Check for control characters.
2259    (message-check 'control-chars
2260      (if (re-search-forward "[\000-\007\013\015-\037\200-\237]" nil t)
2261          (y-or-n-p
2262           "The article contains control characters.  Really post? ")
2263        t))
2264    ;; Check excessive size.
2265    (message-check 'size
2266      (if (> (buffer-size) 60000)
2267          (y-or-n-p
2268           (format "The article is %d octets long.  Really post? "
2269                   (buffer-size)))
2270        t))
2271    ;; Check whether any new text has been added.
2272    (message-check 'new-text
2273      (or
2274       (not message-checksum)
2275       (not (and (eq (message-checksum) (car message-checksum))
2276                 (eq (buffer-size) (cdr message-checksum))))
2277       (y-or-n-p
2278        "It looks like no new text has been added.  Really post? ")))
2279    ;; Check the length of the signature.
2280    (message-check 'signature
2281      (goto-char (point-max))
2282      (if (or (not (re-search-backward message-signature-separator nil t))
2283              (search-forward message-forward-end-separator nil t))
2284          t
2285        (if (> (count-lines (point) (point-max)) 5)
2286            (y-or-n-p
2287             (format
2288              "Your .sig is %d lines; it should be max 4.  Really post? "
2289              (1- (count-lines (point) (point-max)))))
2290          t)))))
2291
2292 (defun message-checksum ()
2293   "Return a \"checksum\" for the current buffer."
2294   (let ((sum 0))
2295     (save-excursion
2296       (goto-char (point-min))
2297       (re-search-forward
2298        (concat "^" (regexp-quote mail-header-separator) "$"))
2299       (while (not (eobp))
2300         (when (not (looking-at "[ \t\n]"))
2301           (setq sum (logxor (ash sum 1) (following-char))))
2302         (forward-char 1)))
2303     sum))
2304
2305 (defun message-do-fcc ()
2306   "Process Fcc headers in the current buffer."
2307   (let ((case-fold-search t)
2308         (buf (current-buffer))
2309         list file)
2310     (save-excursion
2311       (set-buffer (get-buffer-create " *message temp*"))
2312       (buffer-disable-undo (current-buffer))
2313       (erase-buffer)
2314       (insert-buffer-substring buf)
2315       (save-restriction
2316         (message-narrow-to-headers)
2317         (while (setq file (message-fetch-field "fcc"))
2318           (push file list)
2319           (message-remove-header "fcc" nil t)))
2320       (goto-char (point-min))
2321       (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
2322       (replace-match "" t t)
2323       ;; Process FCC operations.
2324       (while list
2325         (setq file (pop list))
2326         (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
2327             ;; Pipe the article to the program in question.
2328             (call-process-region (point-min) (point-max) shell-file-name
2329                                  nil nil nil shell-command-switch
2330                                  (match-string 1 file))
2331           ;; Save the article.
2332           (setq file (expand-file-name file))
2333           (unless (file-exists-p (file-name-directory file))
2334             (make-directory (file-name-directory file) t))
2335           (if (and message-fcc-handler-function
2336                    (not (eq message-fcc-handler-function 'rmail-output)))
2337               (funcall message-fcc-handler-function file)
2338             (if (and (file-readable-p file) (mail-file-babyl-p file))
2339                 (rmail-output file 1 nil t)
2340               (let ((mail-use-rfc822 t))
2341                 (rmail-output file 1 t t))))))
2342
2343       (kill-buffer (current-buffer)))))
2344
2345 (defun message-output (filename)
2346   "Append this article to Unix/babyl mail file.."
2347   (if (and (file-readable-p filename)
2348            (mail-file-babyl-p filename))
2349       (gnus-output-to-rmail filename t)
2350     (gnus-output-to-mail filename t)))
2351
2352 (defun message-cleanup-headers ()
2353   "Do various automatic cleanups of the headers."
2354   ;; Remove empty lines in the header.
2355   (save-restriction
2356     (message-narrow-to-headers)
2357     (while (re-search-forward "^[ \t]*\n" nil t)
2358       (replace-match "" t t)))
2359
2360   ;; Correct Newsgroups and Followup-To headers: change sequence of
2361   ;; spaces to comma and eliminate spaces around commas.  Eliminate
2362   ;; embedded line breaks.
2363   (goto-char (point-min))
2364   (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
2365     (save-restriction
2366       (narrow-to-region
2367        (point)
2368        (if (re-search-forward "^[^ \t]" nil t)
2369            (match-beginning 0)
2370          (forward-line 1)
2371          (point)))
2372       (goto-char (point-min))
2373       (while (re-search-forward "\n[ \t]+" nil t)
2374         (replace-match " " t t))        ;No line breaks (too confusing)
2375       (goto-char (point-min))
2376       (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
2377         (replace-match "," t t))
2378       (goto-char (point-min))
2379       ;; Remove trailing commas.
2380       (when (re-search-forward ",+$" nil t)
2381         (replace-match "" t t)))))
2382
2383 (defun message-make-date ()
2384   "Make a valid data header."
2385   (let ((now (current-time)))
2386     (timezone-make-date-arpa-standard
2387      (current-time-string now) (current-time-zone now))))
2388
2389 (defun message-make-message-id ()
2390   "Make a unique Message-ID."
2391   (concat "<" (message-unique-id)
2392           (let ((psubject (save-excursion (message-fetch-field "subject"))))
2393             (if (and message-reply-headers
2394                      (mail-header-references message-reply-headers)
2395                      (mail-header-subject message-reply-headers)
2396                      psubject
2397                      (mail-header-subject message-reply-headers)
2398                      (not (string=
2399                            (message-strip-subject-re
2400                             (mail-header-subject message-reply-headers))
2401                            (message-strip-subject-re psubject))))
2402                 "_-_" ""))
2403           "@" (message-make-fqdn) ">"))
2404
2405 (defvar message-unique-id-char nil)
2406
2407 ;; If you ever change this function, make sure the new version
2408 ;; cannot generate IDs that the old version could.
2409 ;; You might for example insert a "." somewhere (not next to another dot
2410 ;; or string boundary), or modify the "fsf" string.
2411 (defun message-unique-id ()
2412   ;; Don't use microseconds from (current-time), they may be unsupported.
2413   ;; Instead we use this randomly inited counter.
2414   (setq message-unique-id-char
2415         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
2416            ;; (current-time) returns 16-bit ints,
2417            ;; and 2^16*25 just fits into 4 digits i base 36.
2418            (* 25 25)))
2419   (let ((tm (current-time)))
2420     (concat
2421      (if (memq system-type '(ms-dos emx vax-vms))
2422          (let ((user (downcase (user-login-name))))
2423            (while (string-match "[^a-z0-9_]" user)
2424              (aset user (match-beginning 0) ?_))
2425            user)
2426        (message-number-base36 (user-uid) -1))
2427      (message-number-base36 (+ (car   tm)
2428                                (lsh (% message-unique-id-char 25) 16)) 4)
2429      (message-number-base36 (+ (nth 1 tm)
2430                                (lsh (/ message-unique-id-char 25) 16)) 4)
2431      ;; Append the newsreader name, because while the generated
2432      ;; ID is unique to this newsreader, other newsreaders might
2433      ;; otherwise generate the same ID via another algorithm.
2434      ".fsf")))
2435
2436 (defun message-number-base36 (num len)
2437   (if (if (< len 0)
2438           (<= num 0)
2439         (= len 0))
2440       ""
2441     (concat (message-number-base36 (/ num 36) (1- len))
2442             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
2443                                   (% num 36))))))
2444
2445 (defun message-make-organization ()
2446   "Make an Organization header."
2447   (let* ((organization
2448           (or (getenv "ORGANIZATION")
2449               (when message-user-organization
2450                 (if (message-functionp message-user-organization)
2451                     (funcall message-user-organization)
2452                   message-user-organization)))))
2453     (save-excursion
2454       (message-set-work-buffer)
2455       (cond ((stringp organization)
2456              (insert organization))
2457             ((and (eq t organization)
2458                   message-user-organization-file
2459                   (file-exists-p message-user-organization-file))
2460              (insert-file-contents message-user-organization-file)))
2461       (goto-char (point-min))
2462       (while (re-search-forward "[\t\n]+" nil t)
2463         (replace-match "" t t))
2464       (unless (zerop (buffer-size))
2465         (buffer-string)))))
2466
2467 (defun message-make-lines ()
2468   "Count the number of lines and return numeric string."
2469   (save-excursion
2470     (save-restriction
2471       (widen)
2472       (goto-char (point-min))
2473       (re-search-forward
2474        (concat "^" (regexp-quote mail-header-separator) "$"))
2475       (forward-line 1)
2476       (int-to-string (count-lines (point) (point-max))))))
2477
2478 (defun message-make-in-reply-to ()
2479   "Return the In-Reply-To header for this message."
2480   (when message-reply-headers
2481     (let ((from (mail-header-from message-reply-headers))
2482           (date (mail-header-date message-reply-headers)))
2483       (when from
2484         (let ((stop-pos
2485                (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
2486           (concat (if stop-pos (substring from 0 stop-pos) from)
2487                   "'s message of \""
2488                   (if (or (not date) (string= date ""))
2489                       "(unknown date)" date)
2490                   "\""))))))
2491
2492 (defun message-make-distribution ()
2493   "Make a Distribution header."
2494   (let ((orig-distribution (message-fetch-reply-field "distribution")))
2495     (cond ((message-functionp message-distribution-function)
2496            (funcall message-distribution-function))
2497           (t orig-distribution))))
2498
2499 (defun message-make-expires ()
2500   "Return an Expires header based on `message-expires'."
2501   (let ((current (current-time))
2502         (future (* 1.0 message-expires 60 60 24)))
2503     ;; Add the future to current.
2504     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
2505     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
2506     ;; Return the date in the future in UT.
2507     (timezone-make-date-arpa-standard
2508      (current-time-string current) (current-time-zone current) '(0 "UT"))))
2509
2510 (defun message-make-path ()
2511   "Return uucp path."
2512   (let ((login-name (user-login-name)))
2513     (cond ((null message-user-path)
2514            (concat (system-name) "!" login-name))
2515           ((stringp message-user-path)
2516            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
2517            (concat message-user-path "!" login-name))
2518           (t login-name))))
2519
2520 (defun message-make-from ()
2521   "Make a From header."
2522   (let* ((style message-from-style)
2523          (login (message-make-address))
2524          (fullname
2525           (or (and (boundp 'user-full-name)
2526                    user-full-name)
2527               (user-full-name))))
2528     (when (string= fullname "&")
2529       (setq fullname (user-login-name)))
2530     (save-excursion
2531       (message-set-work-buffer)
2532       (cond
2533        ((or (null style)
2534             (equal fullname ""))
2535         (insert login))
2536        ((or (eq style 'angles)
2537             (and (not (eq style 'parens))
2538                  ;; Use angles if no quoting is needed, or if parens would
2539                  ;; need quoting too.
2540                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
2541                      (let ((tmp (concat fullname nil)))
2542                        (while (string-match "([^()]*)" tmp)
2543                          (aset tmp (match-beginning 0) ?-)
2544                          (aset tmp (1- (match-end 0)) ?-))
2545                        (string-match "[\\()]" tmp)))))
2546         (insert fullname)
2547         (goto-char (point-min))
2548         ;; Look for a character that cannot appear unquoted
2549         ;; according to RFC 822.
2550         (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
2551           ;; Quote fullname, escaping specials.
2552           (goto-char (point-min))
2553           (insert "\"")
2554           (while (re-search-forward "[\"\\]" nil 1)
2555             (replace-match "\\\\\\&" t))
2556           (insert "\""))
2557         (insert " <" login ">"))
2558        (t                               ; 'parens or default
2559         (insert login " (")
2560         (let ((fullname-start (point)))
2561           (insert fullname)
2562           (goto-char fullname-start)
2563           ;; RFC 822 says \ and nonmatching parentheses
2564           ;; must be escaped in comments.
2565           ;; Escape every instance of ()\ ...
2566           (while (re-search-forward "[()\\]" nil 1)
2567             (replace-match "\\\\\\&" t))
2568           ;; ... then undo escaping of matching parentheses,
2569           ;; including matching nested parentheses.
2570           (goto-char fullname-start)
2571           (while (re-search-forward
2572                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
2573                   nil 1)
2574             (replace-match "\\1(\\3)" t)
2575             (goto-char fullname-start)))
2576         (insert ")")))
2577       (buffer-string))))
2578
2579 (defun message-make-sender ()
2580   "Return the \"real\" user address.
2581 This function tries to ignore all user modifications, and
2582 give as trustworthy answer as possible."
2583   (concat (user-login-name) "@" (system-name)))
2584
2585 (defun message-make-address ()
2586   "Make the address of the user."
2587   (or (message-user-mail-address)
2588       (concat (user-login-name) "@" (message-make-domain))))
2589
2590 (defun message-user-mail-address ()
2591   "Return the pertinent part of `user-mail-address'."
2592   (when user-mail-address
2593     (if (string-match " " user-mail-address)
2594         (nth 1 (mail-extract-address-components user-mail-address))
2595       user-mail-address)))
2596
2597 (defun message-make-fqdn ()
2598   "Return user's fully qualified domain name."
2599   (let ((system-name (system-name))
2600         (user-mail (message-user-mail-address)))
2601     (cond
2602      ((string-match "[^.]\\.[^.]" system-name)
2603       ;; `system-name' returned the right result.
2604       system-name)
2605      ;; Try `mail-host-address'.
2606      ((and (boundp 'mail-host-address)
2607            (stringp mail-host-address)
2608            (string-match "\\." mail-host-address))
2609       mail-host-address)
2610      ;; We try `user-mail-address' as a backup.
2611      ((and (string-match "\\." user-mail)
2612            (string-match "@\\(.*\\)\\'" user-mail))
2613       (match-string 1 user-mail))
2614      ;; Default to this bogus thing.
2615      (t
2616       (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me")))))
2617
2618 (defun message-make-host-name ()
2619   "Return the name of the host."
2620   (let ((fqdn (message-make-fqdn)))
2621     (string-match "^[^.]+\\." fqdn)
2622     (substring fqdn 0 (1- (match-end 0)))))
2623
2624 (defun message-make-domain ()
2625   "Return the domain name."
2626   (or mail-host-address
2627       (message-make-fqdn)))
2628
2629 (defun message-generate-headers (headers)
2630   "Prepare article HEADERS.
2631 Headers already prepared in the buffer are not modified."
2632   (save-restriction
2633     (message-narrow-to-headers)
2634     (let* ((Date (message-make-date))
2635            (Message-ID (message-make-message-id))
2636            (Organization (message-make-organization))
2637            (From (message-make-from))
2638            (Path (message-make-path))
2639            (Subject nil)
2640            (Newsgroups nil)
2641            (In-Reply-To (message-make-in-reply-to))
2642            (To nil)
2643            (Distribution (message-make-distribution))
2644            (Lines (message-make-lines))
2645            (X-Newsreader message-newsreader)
2646            (X-Mailer (and (not (message-fetch-field "X-Newsreader"))
2647                           message-mailer))
2648            (Expires (message-make-expires))
2649            (case-fold-search t)
2650            header value elem)
2651       ;; First we remove any old generated headers.
2652       (let ((headers message-deletable-headers))
2653         (while headers
2654           (goto-char (point-min))
2655           (and (re-search-forward
2656                 (concat "^" (symbol-name (car headers)) ": *") nil t)
2657                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
2658                (message-delete-line))
2659           (pop headers)))
2660       ;; Go through all the required headers and see if they are in the
2661       ;; articles already.  If they are not, or are empty, they are
2662       ;; inserted automatically - except for Subject, Newsgroups and
2663       ;; Distribution.
2664       (while headers
2665         (goto-char (point-min))
2666         (setq elem (pop headers))
2667         (if (consp elem)
2668             (if (eq (car elem) 'optional)
2669                 (setq header (cdr elem))
2670               (setq header (car elem)))
2671           (setq header elem))
2672         (when (or (not (re-search-forward
2673                         (concat "^" (downcase (symbol-name header)) ":")
2674                         nil t))
2675                   (progn
2676                     ;; The header was found.  We insert a space after the
2677                     ;; colon, if there is none.
2678                     (if (/= (following-char) ? ) (insert " ") (forward-char 1))
2679                     ;; Find out whether the header is empty...
2680                     (looking-at "[ \t]*$")))
2681           ;; So we find out what value we should insert.
2682           (setq value
2683                 (cond
2684                  ((and (consp elem) (eq (car elem) 'optional))
2685                   ;; This is an optional header.  If the cdr of this
2686                   ;; is something that is nil, then we do not insert
2687                   ;; this header.
2688                   (setq header (cdr elem))
2689                   (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
2690                       (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
2691                  ((consp elem)
2692                   ;; The element is a cons.  Either the cdr is a
2693                   ;; string to be inserted verbatim, or it is a
2694                   ;; function, and we insert the value returned from
2695                   ;; this function.
2696                   (or (and (stringp (cdr elem)) (cdr elem))
2697                       (and (fboundp (cdr elem)) (funcall (cdr elem)))))
2698                  ((and (boundp header) (symbol-value header))
2699                   ;; The element is a symbol.  We insert the value
2700                   ;; of this symbol, if any.
2701                   (symbol-value header))
2702                  (t
2703                   ;; We couldn't generate a value for this header,
2704                   ;; so we just ask the user.
2705                   (read-from-minibuffer
2706                    (format "Empty header for %s; enter value: " header)))))
2707           ;; Finally insert the header.
2708           (when (and value
2709                      (not (equal value "")))
2710             (save-excursion
2711               (if (bolp)
2712                   (progn
2713                     ;; This header didn't exist, so we insert it.
2714                     (goto-char (point-max))
2715                     (insert (symbol-name header) ": " value "\n")
2716                     (forward-line -1))
2717                 ;; The value of this header was empty, so we clear
2718                 ;; totally and insert the new value.
2719                 (delete-region (point) (gnus-point-at-eol))
2720                 (insert value))
2721               ;; Add the deletable property to the headers that require it.
2722               (and (memq header message-deletable-headers)
2723                    (progn (beginning-of-line) (looking-at "[^:]+: "))
2724                    (add-text-properties
2725                     (point) (match-end 0)
2726                     '(message-deletable t face italic) (current-buffer)))))))
2727       ;; Insert new Sender if the From is strange.
2728       (let ((from (message-fetch-field "from"))
2729             (sender (message-fetch-field "sender"))
2730             (secure-sender (message-make-sender)))
2731         (when (and from
2732                    (not (message-check-element 'sender))
2733                    (not (string=
2734                          (downcase
2735                           (cadr (mail-extract-address-components from)))
2736                          (downcase secure-sender)))
2737                    (or (null sender)
2738                        (not
2739                         (string=
2740                          (downcase
2741                           (cadr (mail-extract-address-components sender)))
2742                          (downcase secure-sender)))))
2743           (goto-char (point-min))
2744           ;; Rename any old Sender headers to Original-Sender.
2745           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
2746             (beginning-of-line)
2747             (insert "Original-")
2748             (beginning-of-line))
2749           (when (or (message-news-p)
2750                     (string-match "^[^@]@.+\\..+" secure-sender))
2751             (insert "Sender: " secure-sender "\n")))))))
2752
2753 (defun message-insert-courtesy-copy ()
2754   "Insert a courtesy message in mail copies of combined messages."
2755   (let (newsgroups)
2756     (save-excursion
2757       (save-restriction
2758         (message-narrow-to-headers)
2759         (when (setq newsgroups (message-fetch-field "newsgroups"))
2760           (goto-char (point-max))
2761           (insert "Posted-To: " newsgroups "\n")))
2762       (forward-line 1)
2763       (when message-courtesy-message
2764         (cond
2765          ((string-match "%s" message-courtesy-message)
2766           (insert (format message-courtesy-message newsgroups)))
2767          (t
2768           (insert message-courtesy-message)))))))
2769
2770 ;;;
2771 ;;; Setting up a message buffer
2772 ;;;
2773
2774 (defun message-fill-address (header value)
2775   (save-restriction
2776     (narrow-to-region (point) (point))
2777     (insert (capitalize (symbol-name header))
2778             ": "
2779             (if (consp value) (car value) value)
2780             "\n")
2781     (narrow-to-region (point-min) (1- (point-max)))
2782     (let (quoted last)
2783       (goto-char (point-min))
2784       (while (not (eobp))
2785         (skip-chars-forward "^,\"" (point-max))
2786         (if (or (= (following-char) ?,)
2787                 (eobp))
2788             (when (not quoted)
2789               (if (and (> (current-column) 78)
2790                        last)
2791                   (progn
2792                     (save-excursion
2793                       (goto-char last)
2794                       (insert "\n\t"))
2795                     (setq last (1+ (point))))
2796                 (setq last (1+ (point)))))
2797           (setq quoted (not quoted)))
2798         (unless (eobp)
2799           (forward-char 1))))
2800     (goto-char (point-max))
2801     (widen)
2802     (forward-line 1)))
2803
2804 (defun message-fill-header (header value)
2805   (let ((begin (point))
2806         (fill-column 78)
2807         (fill-prefix "\t"))
2808     (insert (capitalize (symbol-name header))
2809             ": "
2810             (if (consp value) (car value) value)
2811             "\n")
2812     (save-restriction
2813       (narrow-to-region begin (point))
2814       (fill-region-as-paragraph begin (point))
2815       ;; Tapdance around looong Message-IDs.
2816       (forward-line -1)
2817       (when (looking-at "[ \t]*$")
2818         (message-delete-line))
2819       (goto-char begin)
2820       (re-search-forward ":" nil t)
2821       (when (looking-at "\n[ \t]+")
2822         (replace-match " " t t))
2823       (goto-char (point-max)))))
2824
2825 (defun message-position-point ()
2826   "Move point to where the user probably wants to find it."
2827   (message-narrow-to-headers)
2828   (cond
2829    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
2830     (search-backward ":" )
2831     (widen)
2832     (forward-char 1)
2833     (if (= (following-char) ? )
2834         (forward-char 1)
2835       (insert " ")))
2836    (t
2837     (goto-char (point-max))
2838     (widen)
2839     (forward-line 1)
2840     (unless (looking-at "$")
2841       (forward-line 2)))
2842    (sit-for 0)))
2843
2844 (defun message-buffer-name (type &optional to group)
2845   "Return a new (unique) buffer name based on TYPE and TO."
2846   (cond
2847    ;; Check whether `message-generate-new-buffers' is a function,
2848    ;; and if so, call it.
2849    ((message-functionp message-generate-new-buffers)
2850     (funcall message-generate-new-buffers type to group))
2851    ;; Generate a new buffer name The Message Way.
2852    (message-generate-new-buffers
2853     (generate-new-buffer-name
2854      (concat "*" type
2855              (if to
2856                  (concat " to "
2857                          (or (car (mail-extract-address-components to))
2858                              to) "")
2859                "")
2860              (if (and group (not (string= group ""))) (concat " on " group) "")
2861              "*")))
2862    ;; Use standard name.
2863    (t
2864     (format "*%s message*" type))))
2865
2866 (defun message-pop-to-buffer (name)
2867   "Pop to buffer NAME, and warn if it already exists and is modified."
2868   (let ((buffer (get-buffer name)))
2869     (if (and buffer
2870              (buffer-name buffer))
2871         (progn
2872           (set-buffer (pop-to-buffer buffer))
2873           (when (and (buffer-modified-p)
2874                      (not (y-or-n-p
2875                            "Message already being composed; erase? ")))
2876             (error "Message being composed")))
2877       (set-buffer (pop-to-buffer name))))
2878   (erase-buffer)
2879   (message-mode))
2880
2881 (defun message-do-send-housekeeping ()
2882   "Kill old message buffers."
2883   ;; We might have sent this buffer already.  Delete it from the
2884   ;; list of buffers.
2885   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
2886   (while (and message-max-buffers
2887               message-buffer-list
2888               (>= (length message-buffer-list) message-max-buffers))
2889     ;; Kill the oldest buffer -- unless it has been changed.
2890     (let ((buffer (pop message-buffer-list)))
2891       (when (and (buffer-name buffer)
2892                  (not (buffer-modified-p buffer)))
2893         (kill-buffer buffer))))
2894   ;; Rename the buffer.
2895   (if message-send-rename-function
2896       (funcall message-send-rename-function)
2897     (when (string-match "\\`\\*" (buffer-name))
2898       (rename-buffer
2899        (concat "*sent " (substring (buffer-name) (match-end 0))) t)))
2900   ;; Push the current buffer onto the list.
2901   (when message-max-buffers
2902     (setq message-buffer-list
2903           (nconc message-buffer-list (list (current-buffer))))))
2904
2905 (defvar mc-modes-alist)
2906 (defun message-setup (headers &optional replybuffer actions)
2907   (when (and (boundp 'mc-modes-alist)
2908              (not (assq 'message-mode mc-modes-alist)))
2909     (push '(message-mode (encrypt . mc-encrypt-message)
2910                          (sign . mc-sign-message))
2911           mc-modes-alist))
2912   (when actions
2913     (setq message-send-actions actions))
2914   (setq message-reply-buffer replybuffer)
2915   (goto-char (point-min))
2916   ;; Insert all the headers.
2917   (mail-header-format
2918    (let ((h headers)
2919          (alist message-header-format-alist))
2920      (while h
2921        (unless (assq (caar h) message-header-format-alist)
2922          (push (list (caar h)) alist))
2923        (pop h))
2924      alist)
2925    headers)
2926   (delete-region (point) (progn (forward-line -1) (point)))
2927   (when message-default-headers
2928     (insert message-default-headers))
2929   (put-text-property
2930    (point)
2931    (progn
2932      (insert mail-header-separator "\n")
2933      (1- (point)))
2934    'read-only nil)
2935   (forward-line -1)
2936   (when (message-news-p)
2937     (when message-default-news-headers
2938       (insert message-default-news-headers))
2939     (when message-generate-headers-first
2940       (message-generate-headers
2941        (delq 'Lines
2942              (delq 'Subject
2943                    (copy-sequence message-required-news-headers))))))
2944   (when (message-mail-p)
2945     (when message-default-mail-headers
2946       (insert message-default-mail-headers))
2947     (when message-generate-headers-first
2948       (message-generate-headers
2949        (delq 'Lines
2950              (delq 'Subject
2951                    (copy-sequence message-required-mail-headers))))))
2952   (run-hooks 'message-signature-setup-hook)
2953   (message-insert-signature)
2954   (message-set-auto-save-file-name)
2955   (save-restriction
2956     (message-narrow-to-headers)
2957     (run-hooks 'message-header-setup-hook))
2958   (set-buffer-modified-p nil)
2959   (setq buffer-undo-list nil)
2960   (run-hooks 'message-setup-hook)
2961   (message-position-point)
2962   (undo-boundary))
2963
2964 (defun message-set-auto-save-file-name ()
2965   "Associate the message buffer with a file in the drafts directory."
2966   (when message-autosave-directory
2967     (unless (file-exists-p message-autosave-directory)
2968       (make-directory message-autosave-directory t))
2969     (let ((name (make-temp-name
2970                  (expand-file-name
2971                   (concat (file-name-as-directory message-autosave-directory)
2972                           "msg."
2973                           (nnheader-replace-chars-in-string
2974                            (buffer-name) ?* ?.))))))
2975       (setq buffer-auto-save-file-name
2976             (save-excursion
2977               (prog1
2978                   (progn
2979                     (set-buffer (get-buffer-create " *draft tmp*"))
2980                     (setq buffer-file-name name)
2981                     (make-auto-save-file-name))
2982                 (kill-buffer (current-buffer)))))
2983       (clear-visited-file-modtime))))
2984
2985 \f
2986
2987 ;;;
2988 ;;; Commands for interfacing with message
2989 ;;;
2990
2991 ;;;###autoload
2992 (defun message-mail (&optional to subject
2993                                other-headers continue switch-function
2994                                yank-action send-actions)
2995   "Start editing a mail message to be sent."
2996   (interactive)
2997   (let ((message-this-is-mail t))
2998     (message-pop-to-buffer (message-buffer-name "mail" to))
2999     (message-setup
3000      (nconc
3001       `((To . ,(or to "")) (Subject . ,(or subject "")))
3002       (when other-headers other-headers)))))
3003
3004 ;;;###autoload
3005 (defun message-news (&optional newsgroups subject)
3006   "Start editing a news article to be sent."
3007   (interactive)
3008   (let ((message-this-is-news t))
3009     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))
3010     (message-setup `((Newsgroups . ,(or newsgroups ""))
3011                      (Subject . ,(or subject ""))))))
3012
3013 ;;;###autoload
3014 (defun message-reply (&optional to-address wide ignore-reply-to)
3015   "Start editing a reply to the article in the current buffer."
3016   (interactive)
3017   (let ((cur (current-buffer))
3018         from subject date reply-to to cc
3019         references message-id follow-to
3020         (inhibit-point-motion-hooks t)
3021         mct never-mct gnus-warning)
3022     (save-restriction
3023       (message-narrow-to-head)
3024       ;; Allow customizations to have their say.
3025       (if (not wide)
3026           ;; This is a regular reply.
3027           (if (message-functionp message-reply-to-function)
3028               (setq follow-to (funcall message-reply-to-function)))
3029         ;; This is a followup.
3030         (if (message-functionp message-wide-reply-to-function)
3031             (save-excursion
3032               (setq follow-to
3033                     (funcall message-wide-reply-to-function)))))
3034       ;; Find all relevant headers we need.
3035       (setq from (message-fetch-field "from")
3036             date (message-fetch-field "date")
3037             subject (or (message-fetch-field "subject") "none")
3038             to (message-fetch-field "to")
3039             cc (message-fetch-field "cc")
3040             mct (message-fetch-field "mail-copies-to")
3041             reply-to (unless ignore-reply-to (message-fetch-field "reply-to"))
3042             references (message-fetch-field "references")
3043             message-id (message-fetch-field "message-id" t))
3044       ;; Remove any (buggy) Re:'s that are present and make a
3045       ;; proper one.
3046       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3047         (setq subject (substring subject (match-end 0))))
3048       (setq subject (concat "Re: " subject))
3049
3050       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3051                  (string-match "<[^>]+>" gnus-warning))
3052         (setq message-id (match-string 0 gnus-warning)))
3053
3054       ;; Handle special values of Mail-Copies-To.
3055       (when mct
3056         (cond ((equal (downcase mct) "never")
3057                (setq never-mct t)
3058                (setq mct nil))
3059               ((equal (downcase mct) "always")
3060                (setq mct (or reply-to from)))))
3061
3062       (unless follow-to
3063         (if (or (not wide)
3064                 to-address)
3065             (setq follow-to (list (cons 'To (or to-address reply-to from))))
3066           (let (ccalist)
3067             (save-excursion
3068               (message-set-work-buffer)
3069               (unless never-mct
3070                 (insert (or reply-to from "")))
3071               (insert (if to (concat (if (bolp) "" ", ") to "") ""))
3072               (insert (if mct (concat (if (bolp) "" ", ") mct) ""))
3073               (insert (if cc (concat (if (bolp) "" ", ") cc) ""))
3074               (goto-char (point-min))
3075               (while (re-search-forward "[ \t]+" nil t)
3076                 (replace-match " " t t))
3077               ;; Remove addresses that match `rmail-dont-reply-to-names'.
3078               (insert (prog1 (rmail-dont-reply-to (buffer-string))
3079                         (erase-buffer)))
3080               (goto-char (point-min))
3081               ;; Perhaps Mail-Copies-To: never removed the only address?
3082               (when (eobp)
3083                 (insert (or reply-to from "")))
3084               (setq ccalist
3085                     (mapcar
3086                      (lambda (addr)
3087                        (cons (mail-strip-quoted-names addr) addr))
3088                      (message-tokenize-header (buffer-string))))
3089               (let ((s ccalist))
3090                 (while s
3091                   (setq ccalist (delq (assoc (car (pop s)) s) ccalist)))))
3092             (setq follow-to (list (cons 'To (cdr (pop ccalist)))))
3093             (when ccalist
3094               (let ((ccs (cons 'Cc (mapconcat
3095                                     (lambda (addr) (cdr addr)) ccalist ", "))))
3096                 (when (string-match "^ +" (cdr ccs))
3097                   (setcdr ccs (substring (cdr ccs) (match-end 0))))
3098                 (push ccs follow-to))))))
3099       (widen))
3100
3101     (message-pop-to-buffer (message-buffer-name
3102                             (if wide "wide reply" "reply") from
3103                             (if wide to-address nil)))
3104
3105     (setq message-reply-headers
3106           (vector 0 subject from date message-id references 0 0 ""))
3107
3108     (message-setup
3109      `((Subject . ,subject)
3110        ,@follow-to
3111        ,@(if (or references message-id)
3112              `((References . ,(concat (or references "") (and references " ")
3113                                       (or message-id ""))))
3114            nil))
3115      cur)))
3116
3117 ;;;###autoload
3118 (defun message-wide-reply (&optional to-address ignore-reply-to)
3119   "Make a \"wide\" reply to the message in the current buffer."
3120   (interactive)
3121   (message-reply to-address t ignore-reply-to))
3122
3123 ;;;###autoload
3124 (defun message-followup (&optional to-newsgroups)
3125   "Follow up to the message in the current buffer.
3126 If TO-NEWSGROUPS, use that as the new Newsgroups line."
3127   (interactive)
3128   (let ((cur (current-buffer))
3129         from subject date reply-to mct
3130         references message-id follow-to
3131         (inhibit-point-motion-hooks t)
3132         (message-this-is-news t)
3133         followup-to distribution newsgroups gnus-warning posted-to)
3134     (save-restriction
3135       (narrow-to-region
3136        (goto-char (point-min))
3137        (if (search-forward "\n\n" nil t)
3138            (1- (point))
3139          (point-max)))
3140       (when (message-functionp message-followup-to-function)
3141         (setq follow-to
3142               (funcall message-followup-to-function)))
3143       (setq from (message-fetch-field "from")
3144             date (message-fetch-field "date")
3145             subject (or (message-fetch-field "subject") "none")
3146             references (message-fetch-field "references")
3147             message-id (message-fetch-field "message-id" t)
3148             followup-to (message-fetch-field "followup-to")
3149             newsgroups (message-fetch-field "newsgroups")
3150             posted-to (message-fetch-field "posted-to")
3151             reply-to (message-fetch-field "reply-to")
3152             distribution (message-fetch-field "distribution")
3153             mct (message-fetch-field "mail-copies-to"))
3154       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3155                  (string-match "<[^>]+>" gnus-warning))
3156         (setq message-id (match-string 0 gnus-warning)))
3157       ;; Remove bogus distribution.
3158       (when (and (stringp distribution)
3159                  (let ((case-fold-search t))
3160                    (string-match "world" distribution)))
3161         (setq distribution nil))
3162       ;; Remove any (buggy) Re:'s that are present and make a
3163       ;; proper one.
3164       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3165         (setq subject (substring subject (match-end 0))))
3166       (setq subject (concat "Re: " subject))
3167       (widen))
3168
3169     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
3170
3171     (message-setup
3172      `((Subject . ,subject)
3173        ,@(cond
3174           (to-newsgroups
3175            (list (cons 'Newsgroups to-newsgroups)))
3176           (follow-to follow-to)
3177           ((and followup-to message-use-followup-to)
3178            (list
3179             (cond
3180              ((equal (downcase followup-to) "poster")
3181               (if (or (eq message-use-followup-to 'use)
3182                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
3183 You should normally obey the Followup-To: header.
3184
3185 `Followup-To: poster' sends your response via e-mail instead of news.
3186
3187 A typical situation where `Followup-To: poster' is used is when the poster
3188 does not read the newsgroup, so he wouldn't see any replies sent to it."))
3189                   (progn
3190                     (setq message-this-is-news nil)
3191                     (cons 'To (or reply-to from "")))
3192                 (cons 'Newsgroups newsgroups)))
3193              (t
3194               (if (or (equal followup-to newsgroups)
3195                       (not (eq message-use-followup-to 'ask))
3196                       (message-y-or-n-p
3197                        (concat "Obey Followup-To: " followup-to "? ") t "\
3198 You should normally obey the Followup-To: header.
3199
3200         `Followup-To: " followup-to "'
3201 directs your response to " (if (string-match "," followup-to)
3202                                "the specified newsgroups"
3203                              "that newsgroup only") ".
3204
3205 If a message is posted to several newsgroups, Followup-To is often
3206 used to direct the following discussion to one newsgroup only,
3207 because discussions that are spread over several newsgroup tend to
3208 be fragmented and very difficult to follow.
3209
3210 Also, some source/announcement newsgroups are not indented for discussion;
3211 responses here are directed to other newsgroups."))
3212                   (cons 'Newsgroups followup-to)
3213                 (cons 'Newsgroups newsgroups))))))
3214           (posted-to
3215            `((Newsgroups . ,posted-to)))
3216           (t
3217            `((Newsgroups . ,newsgroups))))
3218        ,@(and distribution (list (cons 'Distribution distribution)))
3219        ,@(if (or references message-id)
3220              `((References . ,(concat (or references "") (and references " ")
3221                                       (or message-id "")))))
3222        ,@(when (and mct
3223                     (not (equal (downcase mct) "never")))
3224            (list (cons 'Cc (if (equal (downcase mct) "always")
3225                                (or reply-to from "")
3226                              mct)))))
3227
3228      cur)
3229
3230     (setq message-reply-headers
3231           (vector 0 subject from date message-id references 0 0 ""))))
3232
3233
3234 ;;;###autoload
3235 (defun message-cancel-news ()
3236   "Cancel an article you posted."
3237   (interactive)
3238   (unless (message-news-p)
3239     (error "This is not a news article; canceling is impossible"))
3240   (when (yes-or-no-p "Do you really want to cancel this article? ")
3241     (let (from newsgroups message-id distribution buf)
3242       (save-excursion
3243         ;; Get header info. from original article.
3244         (save-restriction
3245           (message-narrow-to-head)
3246           (setq from (message-fetch-field "from")
3247                 newsgroups (message-fetch-field "newsgroups")
3248                 message-id (message-fetch-field "message-id" t)
3249                 distribution (message-fetch-field "distribution")))
3250         ;; Make sure that this article was written by the user.
3251         (unless (string-equal
3252                  (downcase (cadr (mail-extract-address-components from)))
3253                  (downcase (message-make-address)))
3254           (error "This article is not yours"))
3255         ;; Make control message.
3256         (setq buf (set-buffer (get-buffer-create " *message cancel*")))
3257         (buffer-disable-undo (current-buffer))
3258         (erase-buffer)
3259         (insert "Newsgroups: " newsgroups "\n"
3260                 "From: " (message-make-from) "\n"
3261                 "Subject: cmsg cancel " message-id "\n"
3262                 "Control: cancel " message-id "\n"
3263                 (if distribution
3264                     (concat "Distribution: " distribution "\n")
3265                   "")
3266                 mail-header-separator "\n"
3267                 message-cancel-message)
3268         (message "Canceling your article...")
3269         (if (let ((message-syntax-checks
3270                    'dont-check-for-anything-just-trust-me))
3271               (funcall message-send-news-function))
3272             (message "Canceling your article...done"))
3273         (kill-buffer buf)))))
3274
3275 ;;;###autoload
3276 (defun message-supersede ()
3277   "Start composing a message to supersede the current message.
3278 This is done simply by taking the old article and adding a Supersedes
3279 header line with the old Message-ID."
3280   (interactive)
3281   (let ((cur (current-buffer)))
3282     ;; Check whether the user owns the article that is to be superseded.
3283     (unless (string-equal
3284              (downcase (cadr (mail-extract-address-components
3285                               (message-fetch-field "from"))))
3286              (downcase (message-make-address)))
3287       (error "This article is not yours"))
3288     ;; Get a normal message buffer.
3289     (message-pop-to-buffer (message-buffer-name "supersede"))
3290     (insert-buffer-substring cur)
3291     (message-narrow-to-head)
3292     ;; Remove unwanted headers.
3293     (when message-ignored-supersedes-headers
3294       (message-remove-header message-ignored-supersedes-headers t))
3295     (goto-char (point-min))
3296     (if (not (re-search-forward "^Message-ID: " nil t))
3297         (error "No Message-ID in this article")
3298       (replace-match "Supersedes: " t t))
3299     (goto-char (point-max))
3300     (insert mail-header-separator)
3301     (widen)
3302     (forward-line 1)))
3303
3304 ;;;###autoload
3305 (defun message-recover ()
3306   "Reread contents of current buffer from its last auto-save file."
3307   (interactive)
3308   (let ((file-name (make-auto-save-file-name)))
3309     (cond ((save-window-excursion
3310              (if (not (eq system-type 'vax-vms))
3311                  (with-output-to-temp-buffer "*Directory*"
3312                    (buffer-disable-undo standard-output)
3313                    (let ((default-directory "/"))
3314                      (call-process
3315                       "ls" nil standard-output nil "-l" file-name))))
3316              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
3317            (let ((buffer-read-only nil))
3318              (erase-buffer)
3319              (insert-file-contents file-name nil)))
3320           (t (error "message-recover cancelled")))))
3321
3322 ;;; Forwarding messages.
3323
3324 (defun message-make-forward-subject ()
3325   "Return a Subject header suitable for the message in the current buffer."
3326   (save-excursion
3327     (save-restriction
3328       (current-buffer)
3329       (message-narrow-to-head)
3330       (concat "[" (or (message-fetch-field
3331                        (if (message-news-p) "newsgroups" "from"))
3332                       "(nowhere)")
3333               "] " (or (message-fetch-field "Subject") "")))))
3334
3335 ;;;###autoload
3336 (defun message-forward (&optional news)
3337   "Forward the current message via mail.
3338 Optional NEWS will use news to forward instead of mail."
3339   (interactive "P")
3340   (let ((cur (current-buffer))
3341         (subject (message-make-forward-subject))
3342         art-beg)
3343     (if news (message-news nil subject) (message-mail nil subject))
3344     ;; Put point where we want it before inserting the forwarded
3345     ;; message.
3346     (if message-signature-before-forwarded-message
3347         (goto-char (point-max))
3348       (message-goto-body))
3349     ;; Make sure we're at the start of the line.
3350     (unless (eolp)
3351       (insert "\n"))
3352     ;; Narrow to the area we are to insert.
3353     (narrow-to-region (point) (point))
3354     ;; Insert the separators and the forwarded buffer.
3355     (insert message-forward-start-separator)
3356     (setq art-beg (point))
3357     (insert-buffer-substring cur)
3358     (goto-char (point-max))
3359     (insert message-forward-end-separator)
3360     (set-text-properties (point-min) (point-max) nil)
3361     ;; Remove all unwanted headers.
3362     (goto-char art-beg)
3363     (narrow-to-region (point) (if (search-forward "\n\n" nil t)
3364                                   (1- (point))
3365                                 (point)))
3366     (goto-char (point-min))
3367     (message-remove-header message-included-forward-headers t nil t)
3368     (widen)
3369     (message-position-point)))
3370
3371 ;;;###autoload
3372 (defun message-resend (address)
3373   "Resend the current article to ADDRESS."
3374   (interactive "sResend message to: ")
3375   (message "Resending message to %s..." address)
3376   (save-excursion
3377     (let ((cur (current-buffer))
3378           beg)
3379       ;; We first set up a normal mail buffer.
3380       (set-buffer (get-buffer-create " *message resend*"))
3381       (buffer-disable-undo (current-buffer))
3382       (erase-buffer)
3383       (message-setup `((To . ,address)))
3384       ;; Insert our usual headers.
3385       (message-generate-headers '(From Date To))
3386       (message-narrow-to-headers)
3387       ;; Rename them all to "Resent-*".
3388       (while (re-search-forward "^[A-Za-z]" nil t)
3389         (forward-char -1)
3390         (insert "Resent-"))
3391       (widen)
3392       (forward-line)
3393       (delete-region (point) (point-max))
3394       (setq beg (point))
3395       ;; Insert the message to be resent.
3396       (insert-buffer-substring cur)
3397       (goto-char (point-min))
3398       (search-forward "\n\n")
3399       (forward-char -1)
3400       (save-restriction
3401         (narrow-to-region beg (point))
3402         (message-remove-header message-ignored-resent-headers t)
3403         (goto-char (point-max)))
3404       (insert mail-header-separator)
3405       ;; Rename all old ("Also-")Resent headers.
3406       (while (re-search-backward "^\\(Also-\\)?Resent-" beg t)
3407         (beginning-of-line)
3408         (insert "Also-"))
3409       ;; Quote any "From " lines at the beginning.
3410       (goto-char beg)
3411       (when (looking-at "From ")
3412         (replace-match "X-From-Line: "))
3413       ;; Send it.
3414       (message-send-mail)
3415       (kill-buffer (current-buffer)))
3416     (message "Resending message to %s...done" address)))
3417
3418 ;;;###autoload
3419 (defun message-bounce ()
3420   "Re-mail the current message.
3421 This only makes sense if the current message is a bounce message than
3422 contains some mail you have written which has been bounced back to
3423 you."
3424   (interactive)
3425   (let ((cur (current-buffer))
3426         boundary)
3427     (message-pop-to-buffer (message-buffer-name "bounce"))
3428     (insert-buffer-substring cur)
3429     (undo-boundary)
3430     (message-narrow-to-head)
3431     (if (and (message-fetch-field "Mime-Version")
3432              (setq boundary (message-fetch-field "Content-Type")))
3433         (if (string-match "boundary=\"\\([^\"]+\\)\"" boundary)
3434             (setq boundary (concat (match-string 1 boundary) " *\n"
3435                                    "Content-Type: message/rfc822"))
3436           (setq boundary nil)))
3437     (widen)
3438     (goto-char (point-min))
3439     (search-forward "\n\n" nil t)
3440     (or (and boundary
3441              (re-search-forward boundary nil t)
3442              (forward-line 2))
3443         (and (re-search-forward message-unsent-separator nil t)
3444              (forward-line 1))
3445         (re-search-forward "^Return-Path:.*\n" nil t))
3446     ;; We remove everything before the bounced mail.
3447     (delete-region
3448      (point-min)
3449      (if (re-search-forward "^[^ \n\t]+:" nil t)
3450          (match-beginning 0)
3451        (point)))
3452     (save-restriction
3453       (message-narrow-to-head)
3454       (message-remove-header message-ignored-bounced-headers t)
3455       (goto-char (point-max))
3456       (insert mail-header-separator))
3457     (message-position-point)))
3458
3459 ;;;
3460 ;;; Interactive entry points for new message buffers.
3461 ;;;
3462
3463 ;;;###autoload
3464 (defun message-mail-other-window (&optional to subject)
3465   "Like `message-mail' command, but display mail buffer in another window."
3466   (interactive)
3467   (let ((pop-up-windows t)
3468         (special-display-buffer-names nil)
3469         (special-display-regexps nil)
3470         (same-window-buffer-names nil)
3471         (same-window-regexps nil))
3472     (message-pop-to-buffer (message-buffer-name "mail" to)))
3473   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3474
3475 ;;;###autoload
3476 (defun message-mail-other-frame (&optional to subject)
3477   "Like `message-mail' command, but display mail buffer in another frame."
3478   (interactive)
3479   (let ((pop-up-frames t)
3480         (special-display-buffer-names nil)
3481         (special-display-regexps nil)
3482         (same-window-buffer-names nil)
3483         (same-window-regexps nil))
3484     (message-pop-to-buffer (message-buffer-name "mail" to)))
3485   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3486
3487 ;;;###autoload
3488 (defun message-news-other-window (&optional newsgroups subject)
3489   "Start editing a news article to be sent."
3490   (interactive)
3491   (let ((pop-up-windows t)
3492         (special-display-buffer-names nil)
3493         (special-display-regexps nil)
3494         (same-window-buffer-names nil)
3495         (same-window-regexps nil))
3496     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3497   (message-setup `((Newsgroups . ,(or newsgroups ""))
3498                    (Subject . ,(or subject "")))))
3499
3500 ;;;###autoload
3501 (defun message-news-other-frame (&optional newsgroups subject)
3502   "Start editing a news article to be sent."
3503   (interactive)
3504   (let ((pop-up-frames t)
3505         (special-display-buffer-names nil)
3506         (special-display-regexps nil)
3507         (same-window-buffer-names nil)
3508         (same-window-regexps nil))
3509     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3510   (message-setup `((Newsgroups . ,(or newsgroups ""))
3511                    (Subject . ,(or subject "")))))
3512
3513 ;;; underline.el
3514
3515 ;; This code should be moved to underline.el (from which it is stolen).
3516
3517 ;;;###autoload
3518 (defun bold-region (start end)
3519   "Bold all nonblank characters in the region.
3520 Works by overstriking characters.
3521 Called from program, takes two arguments START and END
3522 which specify the range to operate on."
3523   (interactive "r")
3524   (save-excursion
3525     (let ((end1 (make-marker)))
3526       (move-marker end1 (max start end))
3527       (goto-char (min start end))
3528       (while (< (point) end1)
3529         (or (looking-at "[_\^@- ]")
3530             (insert (following-char) "\b"))
3531         (forward-char 1)))))
3532
3533 ;;;###autoload
3534 (defun unbold-region (start end)
3535   "Remove all boldness (overstruck characters) in the region.
3536 Called from program, takes two arguments START and END
3537 which specify the range to operate on."
3538   (interactive "r")
3539   (save-excursion
3540     (let ((end1 (make-marker)))
3541       (move-marker end1 (max start end))
3542       (goto-char (min start end))
3543       (while (re-search-forward "\b" end1 t)
3544         (if (eq (following-char) (char-after (- (point) 2)))
3545             (delete-char -2))))))
3546
3547 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
3548
3549 ;; Support for toolbar
3550 (when (string-match "XEmacs\\|Lucid" emacs-version)
3551   (require 'messagexmas))
3552
3553 ;;; Group name completion.
3554
3555 (defvar message-newgroups-header-regexp
3556   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
3557   "Regexp that match headers that lists groups.")
3558
3559 (defun message-tab ()
3560   "Expand group names in Newsgroups and Followup-To headers.
3561 Do a `tab-to-tab-stop' if not in those headers."
3562   (interactive)
3563   (if (let ((mail-abbrev-mode-regexp message-newgroups-header-regexp))
3564         (mail-abbrev-in-expansion-header-p))
3565       (message-expand-group)
3566     (tab-to-tab-stop)))
3567
3568 (defvar gnus-active-hashtb)
3569 (defun message-expand-group ()
3570   (let* ((b (save-excursion
3571               (save-restriction
3572                 (narrow-to-region
3573                  (save-excursion
3574                    (beginning-of-line)
3575                    (skip-chars-forward "^:")
3576                    (1+ (point)))
3577                  (point))
3578                 (skip-chars-backward "^, \t\n") (point))))
3579          (completion-ignore-case t)
3580          (string (buffer-substring b (point)))
3581          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
3582          (completions (all-completions string hashtb))
3583          (cur (current-buffer))
3584          comp)
3585     (delete-region b (point))
3586     (cond
3587      ((= (length completions) 1)
3588       (if (string= (car completions) string)
3589           (progn
3590             (insert string)
3591             (message "Only matching group"))
3592         (insert (car completions))))
3593      ((and (setq comp (try-completion string hashtb))
3594            (not (string= comp string)))
3595       (insert comp))
3596      (t
3597       (insert string)
3598       (if (not comp)
3599           (message "No matching groups")
3600         (save-selected-window
3601           (pop-to-buffer "*Completions*")
3602           (buffer-disable-undo (current-buffer))
3603           (let ((buffer-read-only nil))
3604             (erase-buffer)
3605             (let ((standard-output (current-buffer)))
3606               (display-completion-list (sort completions 'string<)))
3607             (goto-char (point-min))
3608             (delete-region (point) (progn (forward-line 3) (point))))))))))
3609
3610 ;;; Help stuff.
3611
3612 (defun message-talkative-question (ask question show &rest text)
3613   "Call FUNCTION with argument QUESTION, displaying the rest of the arguments in a temporary buffer if SHOW.
3614 The following arguments may contain lists of values."
3615   (if (and show
3616            (setq text (message-flatten-list text)))
3617       (save-window-excursion
3618         (save-excursion
3619           (with-output-to-temp-buffer " *MESSAGE information message*"
3620             (set-buffer " *MESSAGE information message*")
3621             (mapcar 'princ text)
3622             (goto-char (point-min))))
3623         (funcall ask question))
3624     (funcall ask question)))
3625
3626 (defun message-flatten-list (list)
3627   "Return a new, flat list that contains all elements of LIST.
3628
3629 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
3630 => (1 2 3 4 5 6 7)"
3631   (cond ((consp list)
3632          (apply 'append (mapcar 'message-flatten-list list)))
3633         (list
3634          (list list))))
3635
3636 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
3637   "Create and return a buffer with a name based on NAME using generate-new-buffer.
3638 Then clone the local variables and values from the old buffer to the
3639 new one, cloning only the locals having a substring matching the
3640 regexp varstr."
3641   (let ((oldlocals (buffer-local-variables)))
3642     (save-excursion
3643       (set-buffer (generate-new-buffer name))
3644       (mapcar (lambda (dude)
3645                 (when (and (car dude)
3646                            (or (not varstr)
3647                                (string-match varstr (symbol-name (car dude)))))
3648                   (ignore-errors
3649                     (set (make-local-variable (car dude))
3650                          (cdr dude)))))
3651               oldlocals)
3652       (current-buffer))))
3653
3654 (run-hooks 'message-load-hook)
3655
3656 (provide 'message)
3657
3658 ;;; message.el ends here