*** 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           elem sent)
1741       (while (setq elem (pop alist))
1742         (when (and (or (not (funcall (cadr elem)))
1743                        (and (or (not (memq (car elem)
1744                                            message-sent-message-via))
1745                                 (y-or-n-p
1746                                  (format
1747                                   "Already sent message via %s; resend? "
1748                                   (car elem))))
1749                             (funcall (caddr elem) arg))))
1750           (setq sent t)))
1751       (when sent
1752         (message-do-fcc)
1753         ;;(when (fboundp 'mail-hist-put-headers-into-history)
1754         ;; (mail-hist-put-headers-into-history))
1755         (run-hooks 'message-sent-hook)
1756         (message "Sending...done")
1757         ;; If buffer has no file, mark it as unmodified and delete autosave.
1758         (unless buffer-file-name
1759           (set-buffer-modified-p nil)
1760           (delete-auto-save-file-if-necessary t))
1761         ;; Delete other mail buffers and stuff.
1762         (message-do-send-housekeeping)
1763         (message-do-actions message-send-actions)
1764         ;; Return success.
1765         t))))
1766
1767 (defun message-send-via-mail (arg)
1768   "Send the current message via mail."  
1769   (message-send-mail arg))
1770
1771 (defun message-send-via-news (arg)
1772   "Send the current message via news."
1773   (funcall message-send-news-function arg))
1774
1775 (defun message-fix-before-sending ()
1776   "Do various things to make the message nice before sending it."
1777   ;; Make sure there's a newline at the end of the message.
1778   (goto-char (point-max))
1779   (unless (bolp)
1780     (insert "\n")))
1781
1782 (defun message-add-action (action &rest types)
1783   "Add ACTION to be performed when doing an exit of type TYPES."
1784   (let (var)
1785     (while types
1786       (set (setq var (intern (format "message-%s-actions" (pop types))))
1787            (nconc (symbol-value var) (list action))))))
1788
1789 (defun message-do-actions (actions)
1790   "Perform all actions in ACTIONS."
1791   ;; Now perform actions on successful sending.
1792   (while actions
1793     (ignore-errors
1794       (cond
1795        ;; A simple function.
1796        ((message-functionp (car actions))
1797         (funcall (car actions)))
1798        ;; Something to be evaled.
1799        (t
1800         (eval (car actions)))))
1801     (pop actions)))
1802
1803 (defun message-send-mail (&optional arg)
1804   (require 'mail-utils)
1805   (let ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
1806         (case-fold-search nil)
1807         (news (message-news-p))
1808         (mailbuf (current-buffer)))
1809     (save-restriction
1810       (message-narrow-to-headers)
1811       ;; Insert some headers.
1812       (let ((message-deletable-headers
1813              (if news nil message-deletable-headers)))
1814         (message-generate-headers message-required-mail-headers))
1815       ;; Let the user do all of the above.
1816       (run-hooks 'message-header-hook))
1817     (unwind-protect
1818         (save-excursion
1819           (set-buffer tembuf)
1820           (erase-buffer)
1821           ;; Avoid copying text props.
1822           (insert (format
1823                    "%s" (save-excursion
1824                           (set-buffer mailbuf)
1825                           (buffer-string))))
1826           ;; Remove some headers.
1827           (save-restriction
1828             (message-narrow-to-headers)
1829             ;; Remove some headers.
1830             (message-remove-header message-ignored-mail-headers t))
1831           (goto-char (point-max))
1832           ;; require one newline at the end.
1833           (or (= (preceding-char) ?\n)
1834               (insert ?\n))
1835           (when (and news
1836                      (or (message-fetch-field "cc")
1837                          (message-fetch-field "to")))
1838             (message-insert-courtesy-copy))
1839           (funcall message-send-mail-function))
1840       (kill-buffer tembuf))
1841     (set-buffer mailbuf)
1842     (push 'mail message-sent-message-via)))
1843
1844 (defun message-send-mail-with-sendmail ()
1845   "Send off the prepared buffer with sendmail."
1846   (let ((errbuf (if message-interactive
1847                     (generate-new-buffer " sendmail errors")
1848                   0))
1849         resend-to-addresses delimline)
1850     (let ((case-fold-search t))
1851       (save-restriction
1852         (message-narrow-to-headers)
1853         (setq resend-to-addresses (message-fetch-field "resent-to")))
1854       ;; Change header-delimiter to be what sendmail expects.
1855       (goto-char (point-min))
1856       (re-search-forward
1857        (concat "^" (regexp-quote mail-header-separator) "\n"))
1858       (replace-match "\n")
1859       (backward-char 1)
1860       (setq delimline (point-marker))
1861       (run-hooks 'message-send-mail-hook)
1862       ;; Insert an extra newline if we need it to work around
1863       ;; Sun's bug that swallows newlines.
1864       (goto-char (1+ delimline))
1865       (when (eval message-mailer-swallows-blank-line)
1866         (newline))
1867       (when message-interactive
1868         (save-excursion
1869           (set-buffer errbuf)
1870           (erase-buffer))))
1871     (let ((default-directory "/"))
1872       (apply 'call-process-region
1873              (append (list (point-min) (point-max)
1874                            (if (boundp 'sendmail-program)
1875                                sendmail-program
1876                              "/usr/lib/sendmail")
1877                            nil errbuf nil "-oi")
1878                      ;; Always specify who from,
1879                      ;; since some systems have broken sendmails.
1880                      ;; But some systems are more broken with -f, so
1881                      ;; we'll let users override this.
1882                      (if (null message-sendmail-f-is-evil)
1883                          (list "-f" (user-login-name)))
1884                      ;; These mean "report errors by mail"
1885                      ;; and "deliver in background".
1886                      (if (null message-interactive) '("-oem" "-odb"))
1887                      ;; Get the addresses from the message
1888                      ;; unless this is a resend.
1889                      ;; We must not do that for a resend
1890                      ;; because we would find the original addresses.
1891                      ;; For a resend, include the specific addresses.
1892                      (if resend-to-addresses
1893                          (list resend-to-addresses)
1894                        '("-t")))))
1895     (when message-interactive
1896       (save-excursion
1897         (set-buffer errbuf)
1898         (goto-char (point-min))
1899         (while (re-search-forward "\n\n* *" nil t)
1900           (replace-match "; "))
1901         (if (not (zerop (buffer-size)))
1902             (error "Sending...failed to %s"
1903                    (buffer-substring (point-min) (point-max)))))
1904       (when (bufferp errbuf)
1905         (kill-buffer errbuf)))))
1906
1907 (defun message-send-mail-with-qmail ()
1908   "Pass the prepared message buffer to qmail-inject.
1909 Refer to the documentation for the variable `message-send-mail-function'
1910 to find out how to use this."
1911   ;; replace the header delimiter with a blank line
1912   (goto-char (point-min))
1913   (re-search-forward
1914    (concat "^" (regexp-quote mail-header-separator) "\n"))
1915   (replace-match "\n")
1916   (run-hooks 'message-send-mail-hook)
1917   ;; send the message
1918   (case
1919       (apply
1920        'call-process-region 1 (point-max) message-qmail-inject-program
1921        nil nil nil
1922        ;; qmail-inject's default behaviour is to look for addresses on the
1923        ;; command line; if there're none, it scans the headers.
1924        ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
1925        ;;
1926        ;; in general, ALL of qmail-inject's defaults are perfect for simply
1927        ;; reading a formatted (i. e., at least a To: or Resent-To header)
1928        ;; message from stdin.
1929        ;;
1930        ;; qmail also has the advantage of not having been raped by
1931        ;; various vendors, so we don't have to allow for that, either --
1932        ;; compare this with message-send-mail-with-sendmail and weep
1933        ;; for sendmail's lost innocence.
1934        ;;
1935        ;; all this is way cool coz it lets us keep the arguments entirely
1936        ;; free for -inject-arguments -- a big win for the user and for us
1937        ;; since we don't have to play that double-guessing game and the user
1938        ;; gets full control (no gestapo'ish -f's, for instance).  --sj
1939        message-qmail-inject-args)
1940     ;; qmail-inject doesn't say anything on it's stdout/stderr,
1941     ;; we have to look at the retval instead
1942     (0 nil)
1943     (1   (error "qmail-inject reported permanent failure."))
1944     (111 (error "qmail-inject reported transient failure."))
1945     ;; should never happen
1946     (t   (error "qmail-inject reported unknown failure."))))
1947
1948 (defun message-send-mail-with-mh ()
1949   "Send the prepared message buffer with mh."
1950   (let ((mh-previous-window-config nil)
1951         (name (make-temp-name
1952                (concat (file-name-as-directory
1953                         (expand-file-name message-autosave-directory))
1954                        "msg."))))
1955     (setq buffer-file-name name)
1956     ;; MH wants to generate these headers itself.
1957     (when message-mh-deletable-headers
1958       (let ((headers message-mh-deletable-headers))
1959         (while headers
1960           (goto-char (point-min))
1961           (and (re-search-forward
1962                 (concat "^" (symbol-name (car headers)) ": *") nil t)
1963                (message-delete-line))
1964           (pop headers))))
1965     (run-hooks 'message-send-mail-hook)
1966     ;; Pass it on to mh.
1967     (mh-send-letter)))
1968
1969 (defun message-send-news (&optional arg)
1970   (let ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
1971         (case-fold-search nil)
1972         (method (if (message-functionp message-post-method)
1973                     (funcall message-post-method arg)
1974                   message-post-method))
1975         (messbuf (current-buffer))
1976         (message-syntax-checks
1977          (if arg
1978              (cons '(existing-newsgroups . disabled)
1979                    message-syntax-checks)
1980            message-syntax-checks))
1981         result)
1982     (save-restriction
1983       (message-narrow-to-headers)
1984       ;; Insert some headers.
1985       (message-generate-headers message-required-news-headers)
1986       ;; Let the user do all of the above.
1987       (run-hooks 'message-header-hook))
1988     (message-cleanup-headers)
1989     (if (not (message-check-news-syntax))
1990         (progn
1991           ;;(message "Posting not performed")
1992           nil)
1993       (unwind-protect
1994           (save-excursion
1995             (set-buffer tembuf)
1996             (buffer-disable-undo (current-buffer))
1997             (erase-buffer)
1998             ;; Avoid copying text props.
1999             (insert (format
2000                      "%s" (save-excursion
2001                             (set-buffer messbuf)
2002                             (buffer-string))))
2003             ;; Remove some headers.
2004             (save-restriction
2005               (message-narrow-to-headers)
2006               ;; Remove some headers.
2007               (message-remove-header message-ignored-news-headers t))
2008             (goto-char (point-max))
2009             ;; require one newline at the end.
2010             (or (= (preceding-char) ?\n)
2011                 (insert ?\n))
2012             (let ((case-fold-search t))
2013               ;; Remove the delimiter.
2014               (goto-char (point-min))
2015               (re-search-forward
2016                (concat "^" (regexp-quote mail-header-separator) "\n"))
2017               (replace-match "\n")
2018               (backward-char 1))
2019             (run-hooks 'message-send-news-hook)
2020             (require (car method))
2021             (funcall (intern (format "%s-open-server" (car method)))
2022                      (cadr method) (cddr method))
2023             (setq result
2024                   (funcall (intern (format "%s-request-post" (car method))))))
2025         (kill-buffer tembuf))
2026       (set-buffer messbuf)
2027       (if result
2028           (push 'news message-sent-message-via)
2029         (message "Couldn't send message via news: %s"
2030                  (nnheader-get-report (car method)))
2031         nil))))
2032
2033 ;;;
2034 ;;; Header generation & syntax checking.
2035 ;;;
2036
2037 (defmacro message-check (type &rest forms)
2038   "Eval FORMS if TYPE is to be checked."
2039   `(or (message-check-element ,type)
2040        (save-excursion
2041          ,@forms)))
2042
2043 (put 'message-check 'lisp-indent-function 1)
2044 (put 'message-check 'edebug-form-spec '(form body))
2045
2046 (defun message-check-element (type)
2047   "Returns non-nil if this type is not to be checked."
2048   (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
2049       t
2050     (let ((able (assq type message-syntax-checks)))
2051       (and (consp able)
2052            (eq (cdr able) 'disabled)))))
2053
2054 (defun message-check-news-syntax ()
2055   "Check the syntax of the message."
2056   (save-excursion
2057     (save-restriction
2058       (widen)
2059       (and
2060        ;; We narrow to the headers and check them first.
2061        (save-excursion
2062          (save-restriction
2063            (message-narrow-to-headers)
2064            (message-check-news-header-syntax)))
2065        ;; Check the body.
2066        (message-check-news-body-syntax)))))
2067
2068 (defun message-check-news-header-syntax ()
2069   (and
2070    ;; Check the Subject header.
2071    (message-check 'subject
2072      (let* ((case-fold-search t)
2073             (subject (message-fetch-field "subject")))
2074        (or
2075         (and subject
2076              (not (string-match "\\`[ \t]*\\'" subject)))
2077         (ignore
2078          (message
2079           "The subject field is empty or missing.  Posting is denied.")))))
2080    ;; Check for commands in Subject.
2081    (message-check 'subject-cmsg
2082      (if (string-match "^cmsg " (message-fetch-field "subject"))
2083          (y-or-n-p
2084           "The control code \"cmsg\" is in the subject.  Really post? ")
2085        t))
2086    ;; Check for multiple identical headers.
2087    (message-check 'multiple-headers
2088      (let (found)
2089        (while (and (not found)
2090                    (re-search-forward "^[^ \t:]+: " nil t))
2091          (save-excursion
2092            (or (re-search-forward
2093                 (concat "^"
2094                         (regexp-quote
2095                          (setq found
2096                                (buffer-substring
2097                                 (match-beginning 0) (- (match-end 0) 2))))
2098                         ":")
2099                 nil t)
2100                (setq found nil))))
2101        (if found
2102            (y-or-n-p (format "Multiple %s headers.  Really post? " found))
2103          t)))
2104    ;; Check for Version and Sendsys.
2105    (message-check 'sendsys
2106      (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
2107          (y-or-n-p
2108           (format "The article contains a %s command.  Really post? "
2109                   (buffer-substring (match-beginning 0)
2110                                     (1- (match-end 0)))))
2111        t))
2112    ;; See whether we can shorten Followup-To.
2113    (message-check 'shorten-followup-to
2114      (let ((newsgroups (message-fetch-field "newsgroups"))
2115            (followup-to (message-fetch-field "followup-to"))
2116            to)
2117        (when (and newsgroups
2118                   (string-match "," newsgroups)
2119                   (not followup-to)
2120                   (not
2121                    (zerop
2122                     (length
2123                      (setq to (completing-read
2124                                "Followups to: (default all groups) "
2125                                (mapcar (lambda (g) (list g))
2126                                        (cons "poster"
2127                                              (message-tokenize-header
2128                                               newsgroups)))))))))
2129          (goto-char (point-min))
2130          (insert "Followup-To: " to "\n"))
2131        t))
2132    ;; Check "Shoot me".
2133    (message-check 'shoot
2134      (if (re-search-forward
2135           "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
2136          (y-or-n-p "You appear to have a misconfigured system.  Really post? ")
2137        t))
2138    ;; Check for Approved.
2139    (message-check 'approved
2140      (if (re-search-forward "^Approved:" nil t)
2141          (y-or-n-p "The article contains an Approved header.  Really post? ")
2142        t))
2143    ;; Check the Message-ID header.
2144    (message-check 'message-id
2145      (let* ((case-fold-search t)
2146             (message-id (message-fetch-field "message-id" t)))
2147        (or (not message-id)
2148            (and (string-match "@" message-id)
2149                 (string-match "@[^\\.]*\\." message-id))
2150            (y-or-n-p
2151             (format "The Message-ID looks strange: \"%s\".  Really post? "
2152                     message-id)))))
2153    ;; Check the Newsgroups & Followup-To headers.
2154    (message-check 'existing-newsgroups
2155      (let* ((case-fold-search t)
2156             (newsgroups (message-fetch-field "newsgroups"))
2157             (followup-to (message-fetch-field "followup-to"))
2158             (groups (message-tokenize-header
2159                      (if followup-to
2160                          (concat newsgroups "," followup-to)
2161                        newsgroups)))
2162             (hashtb (and (boundp 'gnus-active-hashtb)
2163                          gnus-active-hashtb))
2164             errors)
2165        (if (or (not hashtb)
2166                (not (boundp 'gnus-read-active-file))
2167                (not gnus-read-active-file)
2168                (eq gnus-read-active-file 'some))
2169            t
2170          (while groups
2171            (when (and (not (boundp (intern (car groups) hashtb)))
2172                       (not (equal (car groups) "poster")))
2173              (push (car groups) errors))
2174            (pop groups))
2175          (if (not errors)
2176              t
2177            (y-or-n-p
2178             (format
2179              "Really post to %s unknown group%s: %s "
2180              (if (= (length errors) 1) "this" "these")
2181              (if (= (length errors) 1) "" "s")
2182              (mapconcat 'identity errors ", ")))))))
2183    ;; Check the Newsgroups & Followup-To headers for syntax errors.
2184    (message-check 'valid-newsgroups
2185      (let ((case-fold-search t)
2186            (headers '("Newsgroups" "Followup-To"))
2187            header error)
2188        (while (and headers (not error))
2189          (when (setq header (mail-fetch-field (car headers)))
2190            (if (or
2191                 (not
2192                  (string-match
2193                   "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
2194                   header))
2195                 (memq
2196                  nil (mapcar
2197                       (lambda (g)
2198                         (not (string-match "\\.\\'\\|\\.\\." g)))
2199                       (message-tokenize-header header ","))))
2200                (setq error t)))
2201          (unless error
2202            (pop headers)))
2203        (if (not error)
2204            t
2205          (y-or-n-p
2206           (format "The %s header looks odd: \"%s\".  Really post? "
2207                   (car headers) header)))))
2208    ;; Check the From header.
2209    (message-check 'from
2210      (let* ((case-fold-search t)
2211             (from (message-fetch-field "from"))
2212             (ad (nth 1 (mail-extract-address-components from))))
2213        (cond
2214         ((not from)
2215          (message "There is no From line.  Posting is denied.")
2216          nil)
2217         ((or (not (string-match "@[^\\.]*\\." ad)) ;larsi@ifi
2218              (string-match "\\.\\." ad) ;larsi@ifi..uio
2219              (string-match "@\\." ad)   ;larsi@.ifi.uio
2220              (string-match "\\.$" ad)   ;larsi@ifi.uio.
2221              (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
2222              (string-match "(.*).*(.*)" from)) ;(lars) (lars)
2223          (message
2224           "Denied posting -- the From looks strange: \"%s\"." from)
2225          nil)
2226         (t t))))))
2227
2228 (defun message-check-news-body-syntax ()
2229   (and
2230    ;; Check for long lines.
2231    (message-check 'long-lines
2232      (goto-char (point-min))
2233      (re-search-forward
2234       (concat "^" (regexp-quote mail-header-separator) "$"))
2235      (while (and
2236              (progn
2237                (end-of-line)
2238                (< (current-column) 80))
2239              (zerop (forward-line 1))))
2240      (or (bolp)
2241          (eobp)
2242          (y-or-n-p
2243           "You have lines longer than 79 characters.  Really post? ")))
2244    ;; Check whether the article is empty.
2245    (message-check 'empty
2246      (goto-char (point-min))
2247      (re-search-forward
2248       (concat "^" (regexp-quote mail-header-separator) "$"))
2249      (forward-line 1)
2250      (let ((b (point)))
2251        (goto-char (point-max))
2252        (re-search-backward message-signature-separator nil t)
2253        (beginning-of-line)
2254        (or (re-search-backward "[^ \n\t]" b t)
2255            (y-or-n-p "Empty article.  Really post? "))))
2256    ;; Check for control characters.
2257    (message-check 'control-chars
2258      (if (re-search-forward "[\000-\007\013\015-\037\200-\237]" nil t)
2259          (y-or-n-p
2260           "The article contains control characters.  Really post? ")
2261        t))
2262    ;; Check excessive size.
2263    (message-check 'size
2264      (if (> (buffer-size) 60000)
2265          (y-or-n-p
2266           (format "The article is %d octets long.  Really post? "
2267                   (buffer-size)))
2268        t))
2269    ;; Check whether any new text has been added.
2270    (message-check 'new-text
2271      (or
2272       (not message-checksum)
2273       (not (and (eq (message-checksum) (car message-checksum))
2274                 (eq (buffer-size) (cdr message-checksum))))
2275       (y-or-n-p
2276        "It looks like no new text has been added.  Really post? ")))
2277    ;; Check the length of the signature.
2278    (message-check 'signature
2279      (goto-char (point-max))
2280      (if (or (not (re-search-backward message-signature-separator nil t))
2281              (search-forward message-forward-end-separator nil t))
2282          t
2283        (if (> (count-lines (point) (point-max)) 5)
2284            (y-or-n-p
2285             (format
2286              "Your .sig is %d lines; it should be max 4.  Really post? "
2287              (1- (count-lines (point) (point-max)))))
2288          t)))))
2289
2290 (defun message-checksum ()
2291   "Return a \"checksum\" for the current buffer."
2292   (let ((sum 0))
2293     (save-excursion
2294       (goto-char (point-min))
2295       (re-search-forward
2296        (concat "^" (regexp-quote mail-header-separator) "$"))
2297       (while (not (eobp))
2298         (when (not (looking-at "[ \t\n]"))
2299           (setq sum (logxor (ash sum 1) (following-char))))
2300         (forward-char 1)))
2301     sum))
2302
2303 (defun message-do-fcc ()
2304   "Process Fcc headers in the current buffer."
2305   (let ((case-fold-search t)
2306         (buf (current-buffer))
2307         list file)
2308     (save-excursion
2309       (set-buffer (get-buffer-create " *message temp*"))
2310       (buffer-disable-undo (current-buffer))
2311       (erase-buffer)
2312       (insert-buffer-substring buf)
2313       (save-restriction
2314         (message-narrow-to-headers)
2315         (while (setq file (message-fetch-field "fcc"))
2316           (push file list)
2317           (message-remove-header "fcc" nil t)))
2318       (goto-char (point-min))
2319       (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
2320       (replace-match "" t t)
2321       ;; Process FCC operations.
2322       (while list
2323         (setq file (pop list))
2324         (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
2325             ;; Pipe the article to the program in question.
2326             (call-process-region (point-min) (point-max) shell-file-name
2327                                  nil nil nil shell-command-switch
2328                                  (match-string 1 file))
2329           ;; Save the article.
2330           (setq file (expand-file-name file))
2331           (unless (file-exists-p (file-name-directory file))
2332             (make-directory (file-name-directory file) t))
2333           (if (and message-fcc-handler-function
2334                    (not (eq message-fcc-handler-function 'rmail-output)))
2335               (funcall message-fcc-handler-function file)
2336             (if (and (file-readable-p file) (mail-file-babyl-p file))
2337                 (rmail-output file 1 nil t)
2338               (let ((mail-use-rfc822 t))
2339                 (rmail-output file 1 t t))))))
2340
2341       (kill-buffer (current-buffer)))))
2342
2343 (defun message-output (filename)
2344   "Append this article to Unix/babyl mail file.."
2345   (if (and (file-readable-p filename)
2346            (mail-file-babyl-p filename))
2347       (gnus-output-to-rmail filename t)
2348     (gnus-output-to-mail filename t)))
2349
2350 (defun message-cleanup-headers ()
2351   "Do various automatic cleanups of the headers."
2352   ;; Remove empty lines in the header.
2353   (save-restriction
2354     (message-narrow-to-headers)
2355     (while (re-search-forward "^[ \t]*\n" nil t)
2356       (replace-match "" t t)))
2357
2358   ;; Correct Newsgroups and Followup-To headers: change sequence of
2359   ;; spaces to comma and eliminate spaces around commas.  Eliminate
2360   ;; embedded line breaks.
2361   (goto-char (point-min))
2362   (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
2363     (save-restriction
2364       (narrow-to-region
2365        (point)
2366        (if (re-search-forward "^[^ \t]" nil t)
2367            (match-beginning 0)
2368          (forward-line 1)
2369          (point)))
2370       (goto-char (point-min))
2371       (while (re-search-forward "\n[ \t]+" nil t)
2372         (replace-match " " t t))        ;No line breaks (too confusing)
2373       (goto-char (point-min))
2374       (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
2375         (replace-match "," t t))
2376       (goto-char (point-min))
2377       ;; Remove trailing commas.
2378       (when (re-search-forward ",+$" nil t)
2379         (replace-match "" t t)))))
2380
2381 (defun message-make-date ()
2382   "Make a valid data header."
2383   (let ((now (current-time)))
2384     (timezone-make-date-arpa-standard
2385      (current-time-string now) (current-time-zone now))))
2386
2387 (defun message-make-message-id ()
2388   "Make a unique Message-ID."
2389   (concat "<" (message-unique-id)
2390           (let ((psubject (save-excursion (message-fetch-field "subject"))))
2391             (if (and message-reply-headers
2392                      (mail-header-references message-reply-headers)
2393                      (mail-header-subject message-reply-headers)
2394                      psubject
2395                      (mail-header-subject message-reply-headers)
2396                      (not (string=
2397                            (message-strip-subject-re
2398                             (mail-header-subject message-reply-headers))
2399                            (message-strip-subject-re psubject))))
2400                 "_-_" ""))
2401           "@" (message-make-fqdn) ">"))
2402
2403 (defvar message-unique-id-char nil)
2404
2405 ;; If you ever change this function, make sure the new version
2406 ;; cannot generate IDs that the old version could.
2407 ;; You might for example insert a "." somewhere (not next to another dot
2408 ;; or string boundary), or modify the "fsf" string.
2409 (defun message-unique-id ()
2410   ;; Don't use microseconds from (current-time), they may be unsupported.
2411   ;; Instead we use this randomly inited counter.
2412   (setq message-unique-id-char
2413         (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
2414            ;; (current-time) returns 16-bit ints,
2415            ;; and 2^16*25 just fits into 4 digits i base 36.
2416            (* 25 25)))
2417   (let ((tm (current-time)))
2418     (concat
2419      (if (memq system-type '(ms-dos emx vax-vms))
2420          (let ((user (downcase (user-login-name))))
2421            (while (string-match "[^a-z0-9_]" user)
2422              (aset user (match-beginning 0) ?_))
2423            user)
2424        (message-number-base36 (user-uid) -1))
2425      (message-number-base36 (+ (car   tm)
2426                                (lsh (% message-unique-id-char 25) 16)) 4)
2427      (message-number-base36 (+ (nth 1 tm)
2428                                (lsh (/ message-unique-id-char 25) 16)) 4)
2429      ;; Append the newsreader name, because while the generated
2430      ;; ID is unique to this newsreader, other newsreaders might
2431      ;; otherwise generate the same ID via another algorithm.
2432      ".fsf")))
2433
2434 (defun message-number-base36 (num len)
2435   (if (if (< len 0)
2436           (<= num 0)
2437         (= len 0))
2438       ""
2439     (concat (message-number-base36 (/ num 36) (1- len))
2440             (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
2441                                   (% num 36))))))
2442
2443 (defun message-make-organization ()
2444   "Make an Organization header."
2445   (let* ((organization
2446           (or (getenv "ORGANIZATION")
2447               (when message-user-organization
2448                 (if (message-functionp message-user-organization)
2449                     (funcall message-user-organization)
2450                   message-user-organization)))))
2451     (save-excursion
2452       (message-set-work-buffer)
2453       (cond ((stringp organization)
2454              (insert organization))
2455             ((and (eq t organization)
2456                   message-user-organization-file
2457                   (file-exists-p message-user-organization-file))
2458              (insert-file-contents message-user-organization-file)))
2459       (goto-char (point-min))
2460       (while (re-search-forward "[\t\n]+" nil t)
2461         (replace-match "" t t))
2462       (unless (zerop (buffer-size))
2463         (buffer-string)))))
2464
2465 (defun message-make-lines ()
2466   "Count the number of lines and return numeric string."
2467   (save-excursion
2468     (save-restriction
2469       (widen)
2470       (goto-char (point-min))
2471       (re-search-forward
2472        (concat "^" (regexp-quote mail-header-separator) "$"))
2473       (forward-line 1)
2474       (int-to-string (count-lines (point) (point-max))))))
2475
2476 (defun message-make-in-reply-to ()
2477   "Return the In-Reply-To header for this message."
2478   (when message-reply-headers
2479     (let ((from (mail-header-from message-reply-headers))
2480           (date (mail-header-date message-reply-headers)))
2481       (when from
2482         (let ((stop-pos
2483                (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
2484           (concat (if stop-pos (substring from 0 stop-pos) from)
2485                   "'s message of "
2486                   (if (or (not date) (string= date ""))
2487                       "(unknown date)" date)))))))
2488
2489 (defun message-make-distribution ()
2490   "Make a Distribution header."
2491   (let ((orig-distribution (message-fetch-reply-field "distribution")))
2492     (cond ((message-functionp message-distribution-function)
2493            (funcall message-distribution-function))
2494           (t orig-distribution))))
2495
2496 (defun message-make-expires ()
2497   "Return an Expires header based on `message-expires'."
2498   (let ((current (current-time))
2499         (future (* 1.0 message-expires 60 60 24)))
2500     ;; Add the future to current.
2501     (setcar current (+ (car current) (round (/ future (expt 2 16)))))
2502     (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
2503     ;; Return the date in the future in UT.
2504     (timezone-make-date-arpa-standard
2505      (current-time-string current) (current-time-zone current) '(0 "UT"))))
2506
2507 (defun message-make-path ()
2508   "Return uucp path."
2509   (let ((login-name (user-login-name)))
2510     (cond ((null message-user-path)
2511            (concat (system-name) "!" login-name))
2512           ((stringp message-user-path)
2513            ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
2514            (concat message-user-path "!" login-name))
2515           (t login-name))))
2516
2517 (defun message-make-from ()
2518   "Make a From header."
2519   (let* ((style message-from-style)
2520          (login (message-make-address))
2521          (fullname
2522           (or (and (boundp 'user-full-name)
2523                    user-full-name)
2524               (user-full-name))))
2525     (when (string= fullname "&")
2526       (setq fullname (user-login-name)))
2527     (save-excursion
2528       (message-set-work-buffer)
2529       (cond
2530        ((or (null style)
2531             (equal fullname ""))
2532         (insert login))
2533        ((or (eq style 'angles)
2534             (and (not (eq style 'parens))
2535                  ;; Use angles if no quoting is needed, or if parens would
2536                  ;; need quoting too.
2537                  (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
2538                      (let ((tmp (concat fullname nil)))
2539                        (while (string-match "([^()]*)" tmp)
2540                          (aset tmp (match-beginning 0) ?-)
2541                          (aset tmp (1- (match-end 0)) ?-))
2542                        (string-match "[\\()]" tmp)))))
2543         (insert fullname)
2544         (goto-char (point-min))
2545         ;; Look for a character that cannot appear unquoted
2546         ;; according to RFC 822.
2547         (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
2548           ;; Quote fullname, escaping specials.
2549           (goto-char (point-min))
2550           (insert "\"")
2551           (while (re-search-forward "[\"\\]" nil 1)
2552             (replace-match "\\\\\\&" t))
2553           (insert "\""))
2554         (insert " <" login ">"))
2555        (t                               ; 'parens or default
2556         (insert login " (")
2557         (let ((fullname-start (point)))
2558           (insert fullname)
2559           (goto-char fullname-start)
2560           ;; RFC 822 says \ and nonmatching parentheses
2561           ;; must be escaped in comments.
2562           ;; Escape every instance of ()\ ...
2563           (while (re-search-forward "[()\\]" nil 1)
2564             (replace-match "\\\\\\&" t))
2565           ;; ... then undo escaping of matching parentheses,
2566           ;; including matching nested parentheses.
2567           (goto-char fullname-start)
2568           (while (re-search-forward
2569                   "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
2570                   nil 1)
2571             (replace-match "\\1(\\3)" t)
2572             (goto-char fullname-start)))
2573         (insert ")")))
2574       (buffer-string))))
2575
2576 (defun message-make-sender ()
2577   "Return the \"real\" user address.
2578 This function tries to ignore all user modifications, and
2579 give as trustworthy answer as possible."
2580   (concat (user-login-name) "@" (system-name)))
2581
2582 (defun message-make-address ()
2583   "Make the address of the user."
2584   (or (message-user-mail-address)
2585       (concat (user-login-name) "@" (message-make-domain))))
2586
2587 (defun message-user-mail-address ()
2588   "Return the pertinent part of `user-mail-address'."
2589   (when user-mail-address
2590     (if (string-match " " user-mail-address)
2591         (nth 1 (mail-extract-address-components user-mail-address))
2592       user-mail-address)))
2593
2594 (defun message-make-fqdn ()
2595   "Return user's fully qualified domain name."
2596   (let ((system-name (system-name))
2597         (user-mail (message-user-mail-address)))
2598     (cond
2599      ((string-match "[^.]\\.[^.]" system-name)
2600       ;; `system-name' returned the right result.
2601       system-name)
2602      ;; Try `mail-host-address'.
2603      ((and (boundp 'mail-host-address)
2604            (stringp mail-host-address)
2605            (string-match "\\." mail-host-address))
2606       mail-host-address)
2607      ;; We try `user-mail-address' as a backup.
2608      ((and (string-match "\\." user-mail)
2609            (string-match "@\\(.*\\)\\'" user-mail))
2610       (match-string 1 user-mail))
2611      ;; Default to this bogus thing.
2612      (t
2613       (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me")))))
2614
2615 (defun message-make-host-name ()
2616   "Return the name of the host."
2617   (let ((fqdn (message-make-fqdn)))
2618     (string-match "^[^.]+\\." fqdn)
2619     (substring fqdn 0 (1- (match-end 0)))))
2620
2621 (defun message-make-domain ()
2622   "Return the domain name."
2623   (or mail-host-address
2624       (message-make-fqdn)))
2625
2626 (defun message-generate-headers (headers)
2627   "Prepare article HEADERS.
2628 Headers already prepared in the buffer are not modified."
2629   (save-restriction
2630     (message-narrow-to-headers)
2631     (let* ((Date (message-make-date))
2632            (Message-ID (message-make-message-id))
2633            (Organization (message-make-organization))
2634            (From (message-make-from))
2635            (Path (message-make-path))
2636            (Subject nil)
2637            (Newsgroups nil)
2638            (In-Reply-To (message-make-in-reply-to))
2639            (To nil)
2640            (Distribution (message-make-distribution))
2641            (Lines (message-make-lines))
2642            (X-Newsreader message-newsreader)
2643            (X-Mailer (and (not (message-fetch-field "X-Newsreader"))
2644                           message-mailer))
2645            (Expires (message-make-expires))
2646            (case-fold-search t)
2647            header value elem)
2648       ;; First we remove any old generated headers.
2649       (let ((headers message-deletable-headers))
2650         (while headers
2651           (goto-char (point-min))
2652           (and (re-search-forward
2653                 (concat "^" (symbol-name (car headers)) ": *") nil t)
2654                (get-text-property (1+ (match-beginning 0)) 'message-deletable)
2655                (message-delete-line))
2656           (pop headers)))
2657       ;; Go through all the required headers and see if they are in the
2658       ;; articles already.  If they are not, or are empty, they are
2659       ;; inserted automatically - except for Subject, Newsgroups and
2660       ;; Distribution.
2661       (while headers
2662         (goto-char (point-min))
2663         (setq elem (pop headers))
2664         (if (consp elem)
2665             (if (eq (car elem) 'optional)
2666                 (setq header (cdr elem))
2667               (setq header (car elem)))
2668           (setq header elem))
2669         (when (or (not (re-search-forward
2670                         (concat "^" (downcase (symbol-name header)) ":")
2671                         nil t))
2672                   (progn
2673                     ;; The header was found.  We insert a space after the
2674                     ;; colon, if there is none.
2675                     (if (/= (following-char) ? ) (insert " ") (forward-char 1))
2676                     ;; Find out whether the header is empty...
2677                     (looking-at "[ \t]*$")))
2678           ;; So we find out what value we should insert.
2679           (setq value
2680                 (cond
2681                  ((and (consp elem) (eq (car elem) 'optional))
2682                   ;; This is an optional header.  If the cdr of this
2683                   ;; is something that is nil, then we do not insert
2684                   ;; this header.
2685                   (setq header (cdr elem))
2686                   (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
2687                       (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
2688                  ((consp elem)
2689                   ;; The element is a cons.  Either the cdr is a
2690                   ;; string to be inserted verbatim, or it is a
2691                   ;; function, and we insert the value returned from
2692                   ;; this function.
2693                   (or (and (stringp (cdr elem)) (cdr elem))
2694                       (and (fboundp (cdr elem)) (funcall (cdr elem)))))
2695                  ((and (boundp header) (symbol-value header))
2696                   ;; The element is a symbol.  We insert the value
2697                   ;; of this symbol, if any.
2698                   (symbol-value header))
2699                  (t
2700                   ;; We couldn't generate a value for this header,
2701                   ;; so we just ask the user.
2702                   (read-from-minibuffer
2703                    (format "Empty header for %s; enter value: " header)))))
2704           ;; Finally insert the header.
2705           (when (and value
2706                      (not (equal value "")))
2707             (save-excursion
2708               (if (bolp)
2709                   (progn
2710                     ;; This header didn't exist, so we insert it.
2711                     (goto-char (point-max))
2712                     (insert (symbol-name header) ": " value "\n")
2713                     (forward-line -1))
2714                 ;; The value of this header was empty, so we clear
2715                 ;; totally and insert the new value.
2716                 (delete-region (point) (gnus-point-at-eol))
2717                 (insert value))
2718               ;; Add the deletable property to the headers that require it.
2719               (and (memq header message-deletable-headers)
2720                    (progn (beginning-of-line) (looking-at "[^:]+: "))
2721                    (add-text-properties
2722                     (point) (match-end 0)
2723                     '(message-deletable t face italic) (current-buffer)))))))
2724       ;; Insert new Sender if the From is strange.
2725       (let ((from (message-fetch-field "from"))
2726             (sender (message-fetch-field "sender"))
2727             (secure-sender (message-make-sender)))
2728         (when (and from
2729                    (not (message-check-element 'sender))
2730                    (not (string=
2731                          (downcase
2732                           (cadr (mail-extract-address-components from)))
2733                          (downcase secure-sender)))
2734                    (or (null sender)
2735                        (not
2736                         (string=
2737                          (downcase
2738                           (cadr (mail-extract-address-components sender)))
2739                          (downcase secure-sender)))))
2740           (goto-char (point-min))
2741           ;; Rename any old Sender headers to Original-Sender.
2742           (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
2743             (beginning-of-line)
2744             (insert "Original-")
2745             (beginning-of-line))
2746           (when (or (message-news-p)
2747                     (string-match "^[^@]@.+\\..+" secure-sender))
2748             (insert "Sender: " secure-sender "\n")))))))
2749
2750 (defun message-insert-courtesy-copy ()
2751   "Insert a courtesy message in mail copies of combined messages."
2752   (let (newsgroups)
2753     (save-excursion
2754       (save-restriction
2755         (message-narrow-to-headers)
2756         (when (setq newsgroups (message-fetch-field "newsgroups"))
2757           (goto-char (point-max))
2758           (insert "Posted-To: " newsgroups "\n")))
2759       (forward-line 1)
2760       (when message-courtesy-message
2761         (cond
2762          ((string-match "%s" message-courtesy-message)
2763           (insert (format message-courtesy-message newsgroups)))
2764          (t
2765           (insert message-courtesy-message)))))))
2766
2767 ;;;
2768 ;;; Setting up a message buffer
2769 ;;;
2770
2771 (defun message-fill-address (header value)
2772   (save-restriction
2773     (narrow-to-region (point) (point))
2774     (insert (capitalize (symbol-name header))
2775             ": "
2776             (if (consp value) (car value) value)
2777             "\n")
2778     (narrow-to-region (point-min) (1- (point-max)))
2779     (let (quoted last)
2780       (goto-char (point-min))
2781       (while (not (eobp))
2782         (skip-chars-forward "^,\"" (point-max))
2783         (if (or (= (following-char) ?,)
2784                 (eobp))
2785             (when (not quoted)
2786               (if (and (> (current-column) 78)
2787                        last)
2788                   (progn
2789                     (save-excursion
2790                       (goto-char last)
2791                       (insert "\n\t"))
2792                     (setq last (1+ (point))))
2793                 (setq last (1+ (point)))))
2794           (setq quoted (not quoted)))
2795         (unless (eobp)
2796           (forward-char 1))))
2797     (goto-char (point-max))
2798     (widen)
2799     (forward-line 1)))
2800
2801 (defun message-fill-header (header value)
2802   (let ((begin (point))
2803         (fill-column 78)
2804         (fill-prefix "\t"))
2805     (insert (capitalize (symbol-name header))
2806             ": "
2807             (if (consp value) (car value) value)
2808             "\n")
2809     (save-restriction
2810       (narrow-to-region begin (point))
2811       (fill-region-as-paragraph begin (point))
2812       ;; Tapdance around looong Message-IDs.
2813       (forward-line -1)
2814       (when (looking-at "[ \t]*$")
2815         (message-delete-line))
2816       (goto-char begin)
2817       (re-search-forward ":" nil t)
2818       (when (looking-at "\n[ \t]+")
2819         (replace-match " " t t))
2820       (goto-char (point-max)))))
2821
2822 (defun message-position-point ()
2823   "Move point to where the user probably wants to find it."
2824   (message-narrow-to-headers)
2825   (cond
2826    ((re-search-forward "^[^:]+:[ \t]*$" nil t)
2827     (search-backward ":" )
2828     (widen)
2829     (forward-char 1)
2830     (if (= (following-char) ? )
2831         (forward-char 1)
2832       (insert " ")))
2833    (t
2834     (goto-char (point-max))
2835     (widen)
2836     (forward-line 1)
2837     (unless (looking-at "$")
2838       (forward-line 2)))
2839    (sit-for 0)))
2840
2841 (defun message-buffer-name (type &optional to group)
2842   "Return a new (unique) buffer name based on TYPE and TO."
2843   (cond
2844    ;; Check whether `message-generate-new-buffers' is a function,
2845    ;; and if so, call it.
2846    ((message-functionp message-generate-new-buffers)
2847     (funcall message-generate-new-buffers type to group))
2848    ;; Generate a new buffer name The Message Way.
2849    (message-generate-new-buffers
2850     (generate-new-buffer-name
2851      (concat "*" type
2852              (if to
2853                  (concat " to "
2854                          (or (car (mail-extract-address-components to))
2855                              to) "")
2856                "")
2857              (if (and group (not (string= group ""))) (concat " on " group) "")
2858              "*")))
2859    ;; Use standard name.
2860    (t
2861     (format "*%s message*" type))))
2862
2863 (defun message-pop-to-buffer (name)
2864   "Pop to buffer NAME, and warn if it already exists and is modified."
2865   (let ((buffer (get-buffer name)))
2866     (if (and buffer
2867              (buffer-name buffer))
2868         (progn
2869           (set-buffer (pop-to-buffer buffer))
2870           (when (and (buffer-modified-p)
2871                      (not (y-or-n-p
2872                            "Message already being composed; erase? ")))
2873             (error "Message being composed")))
2874       (set-buffer (pop-to-buffer name))))
2875   (erase-buffer)
2876   (message-mode))
2877
2878 (defun message-do-send-housekeeping ()
2879   "Kill old message buffers."
2880   ;; We might have sent this buffer already.  Delete it from the
2881   ;; list of buffers.
2882   (setq message-buffer-list (delq (current-buffer) message-buffer-list))
2883   (while (and message-max-buffers
2884               message-buffer-list
2885               (>= (length message-buffer-list) message-max-buffers))
2886     ;; Kill the oldest buffer -- unless it has been changed.
2887     (let ((buffer (pop message-buffer-list)))
2888       (when (and (buffer-name buffer)
2889                  (not (buffer-modified-p buffer)))
2890         (kill-buffer buffer))))
2891   ;; Rename the buffer.
2892   (if message-send-rename-function
2893       (funcall message-send-rename-function)
2894     (when (string-match "\\`\\*" (buffer-name))
2895       (rename-buffer
2896        (concat "*sent " (substring (buffer-name) (match-end 0))) t)))
2897   ;; Push the current buffer onto the list.
2898   (when message-max-buffers
2899     (setq message-buffer-list
2900           (nconc message-buffer-list (list (current-buffer))))))
2901
2902 (defvar mc-modes-alist)
2903 (defun message-setup (headers &optional replybuffer actions)
2904   (when (and (boundp 'mc-modes-alist)
2905              (not (assq 'message-mode mc-modes-alist)))
2906     (push '(message-mode (encrypt . mc-encrypt-message)
2907                          (sign . mc-sign-message))
2908           mc-modes-alist))
2909   (when actions
2910     (setq message-send-actions actions))
2911   (setq message-reply-buffer replybuffer)
2912   (goto-char (point-min))
2913   ;; Insert all the headers.
2914   (mail-header-format
2915    (let ((h headers)
2916          (alist message-header-format-alist))
2917      (while h
2918        (unless (assq (caar h) message-header-format-alist)
2919          (push (list (caar h)) alist))
2920        (pop h))
2921      alist)
2922    headers)
2923   (delete-region (point) (progn (forward-line -1) (point)))
2924   (when message-default-headers
2925     (insert message-default-headers))
2926   (put-text-property
2927    (point)
2928    (progn
2929      (insert mail-header-separator "\n")
2930      (1- (point)))
2931    'read-only nil)
2932   (forward-line -1)
2933   (when (message-news-p)
2934     (when message-default-news-headers
2935       (insert message-default-news-headers))
2936     (when message-generate-headers-first
2937       (message-generate-headers
2938        (delq 'Lines
2939              (delq 'Subject
2940                    (copy-sequence message-required-news-headers))))))
2941   (when (message-mail-p)
2942     (when message-default-mail-headers
2943       (insert message-default-mail-headers))
2944     (when message-generate-headers-first
2945       (message-generate-headers
2946        (delq 'Lines
2947              (delq 'Subject
2948                    (copy-sequence message-required-mail-headers))))))
2949   (run-hooks 'message-signature-setup-hook)
2950   (message-insert-signature)
2951   (message-set-auto-save-file-name)
2952   (save-restriction
2953     (message-narrow-to-headers)
2954     (run-hooks 'message-header-setup-hook))
2955   (set-buffer-modified-p nil)
2956   (setq buffer-undo-list nil)
2957   (run-hooks 'message-setup-hook)
2958   (message-position-point)
2959   (undo-boundary))
2960
2961 (defun message-set-auto-save-file-name ()
2962   "Associate the message buffer with a file in the drafts directory."
2963   (when message-autosave-directory
2964     (unless (file-exists-p message-autosave-directory)
2965       (make-directory message-autosave-directory t))
2966     (let ((name (make-temp-name
2967                  (expand-file-name
2968                   (concat (file-name-as-directory message-autosave-directory)
2969                           "msg.")))))
2970       (setq buffer-auto-save-file-name
2971             (save-excursion
2972               (prog1
2973                   (progn
2974                     (set-buffer (get-buffer-create " *draft tmp*"))
2975                     (setq buffer-file-name name)
2976                     (make-auto-save-file-name))
2977                 (kill-buffer (current-buffer)))))
2978       (clear-visited-file-modtime))))
2979
2980 \f
2981
2982 ;;;
2983 ;;; Commands for interfacing with message
2984 ;;;
2985
2986 ;;;###autoload
2987 (defun message-mail (&optional to subject
2988                                other-headers continue switch-function
2989                                yank-action send-actions)
2990   "Start editing a mail message to be sent."
2991   (interactive)
2992   (let ((message-this-is-mail t))
2993     (message-pop-to-buffer (message-buffer-name "mail" to))
2994     (message-setup
2995      (nconc
2996       `((To . ,(or to "")) (Subject . ,(or subject "")))
2997       (when other-headers other-headers)))))
2998
2999 ;;;###autoload
3000 (defun message-news (&optional newsgroups subject)
3001   "Start editing a news article to be sent."
3002   (interactive)
3003   (let ((message-this-is-news t))
3004     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))
3005     (message-setup `((Newsgroups . ,(or newsgroups ""))
3006                      (Subject . ,(or subject ""))))))
3007
3008 ;;;###autoload
3009 (defun message-reply (&optional to-address wide ignore-reply-to)
3010   "Start editing a reply to the article in the current buffer."
3011   (interactive)
3012   (let ((cur (current-buffer))
3013         from subject date reply-to to cc
3014         references message-id follow-to
3015         (inhibit-point-motion-hooks t)
3016         mct never-mct gnus-warning)
3017     (save-restriction
3018       (message-narrow-to-head)
3019       ;; Allow customizations to have their say.
3020       (if (not wide)
3021           ;; This is a regular reply.
3022           (if (message-functionp message-reply-to-function)
3023               (setq follow-to (funcall message-reply-to-function)))
3024         ;; This is a followup.
3025         (if (message-functionp message-wide-reply-to-function)
3026             (save-excursion
3027               (setq follow-to
3028                     (funcall message-wide-reply-to-function)))))
3029       ;; Find all relevant headers we need.
3030       (setq from (message-fetch-field "from")
3031             date (message-fetch-field "date")
3032             subject (or (message-fetch-field "subject") "none")
3033             to (message-fetch-field "to")
3034             cc (message-fetch-field "cc")
3035             mct (message-fetch-field "mail-copies-to")
3036             reply-to (unless ignore-reply-to (message-fetch-field "reply-to"))
3037             references (message-fetch-field "references")
3038             message-id (message-fetch-field "message-id" t))
3039       ;; Remove any (buggy) Re:'s that are present and make a
3040       ;; proper one.
3041       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3042         (setq subject (substring subject (match-end 0))))
3043       (setq subject (concat "Re: " subject))
3044
3045       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3046                  (string-match "<[^>]+>" gnus-warning))
3047         (setq message-id (match-string 0 gnus-warning)))
3048
3049       ;; Handle special values of Mail-Copies-To.
3050       (when mct
3051         (cond ((equal (downcase mct) "never")
3052                (setq never-mct t)
3053                (setq mct nil))
3054               ((equal (downcase mct) "always")
3055                (setq mct (or reply-to from)))))
3056
3057       (unless follow-to
3058         (if (or (not wide)
3059                 to-address)
3060             (setq follow-to (list (cons 'To (or to-address reply-to from))))
3061           (let (ccalist)
3062             (save-excursion
3063               (message-set-work-buffer)
3064               (unless never-mct
3065                 (insert (or reply-to from "")))
3066               (insert (if to (concat (if (bolp) "" ", ") to "") ""))
3067               (insert (if mct (concat (if (bolp) "" ", ") mct) ""))
3068               (insert (if cc (concat (if (bolp) "" ", ") cc) ""))
3069               (goto-char (point-min))
3070               (while (re-search-forward "[ \t]+" nil t)
3071                 (replace-match " " t t))
3072               ;; Remove addresses that match `rmail-dont-reply-to-names'.
3073               (insert (prog1 (rmail-dont-reply-to (buffer-string))
3074                         (erase-buffer)))
3075               (goto-char (point-min))
3076               ;; Perhaps Mail-Copies-To: never removed the only address?
3077               (when (eobp)
3078                 (insert (or reply-to from "")))
3079               (setq ccalist
3080                     (mapcar
3081                      (lambda (addr)
3082                        (cons (mail-strip-quoted-names addr) addr))
3083                      (message-tokenize-header (buffer-string))))
3084               (let ((s ccalist))
3085                 (while s
3086                   (setq ccalist (delq (assoc (car (pop s)) s) ccalist)))))
3087             (setq follow-to (list (cons 'To (cdr (pop ccalist)))))
3088             (when ccalist
3089               (let ((ccs (cons 'Cc (mapconcat
3090                                     (lambda (addr) (cdr addr)) ccalist ", "))))
3091                 (when (string-match "^ +" (cdr ccs))
3092                   (setcdr ccs (substring (cdr ccs) (match-end 0))))
3093                 (push ccs follow-to))))))
3094       (widen))
3095
3096     (message-pop-to-buffer (message-buffer-name
3097                             (if wide "wide reply" "reply") from
3098                             (if wide to-address nil)))
3099
3100     (setq message-reply-headers
3101           (vector 0 subject from date message-id references 0 0 ""))
3102
3103     (message-setup
3104      `((Subject . ,subject)
3105        ,@follow-to
3106        ,@(if (or references message-id)
3107              `((References . ,(concat (or references "") (and references " ")
3108                                       (or message-id ""))))
3109            nil))
3110      cur)))
3111
3112 ;;;###autoload
3113 (defun message-wide-reply (&optional to-address ignore-reply-to)
3114   "Make a \"wide\" reply to the message in the current buffer."
3115   (interactive)
3116   (message-reply to-address t ignore-reply-to))
3117
3118 ;;;###autoload
3119 (defun message-followup (&optional to-newsgroups)
3120   "Follow up to the message in the current buffer.
3121 If TO-NEWSGROUPS, use that as the new Newsgroups line."
3122   (interactive)
3123   (let ((cur (current-buffer))
3124         from subject date reply-to mct
3125         references message-id follow-to
3126         (inhibit-point-motion-hooks t)
3127         (message-this-is-news t)
3128         followup-to distribution newsgroups gnus-warning posted-to)
3129     (save-restriction
3130       (narrow-to-region
3131        (goto-char (point-min))
3132        (if (search-forward "\n\n" nil t)
3133            (1- (point))
3134          (point-max)))
3135       (when (message-functionp message-followup-to-function)
3136         (setq follow-to
3137               (funcall message-followup-to-function)))
3138       (setq from (message-fetch-field "from")
3139             date (message-fetch-field "date")
3140             subject (or (message-fetch-field "subject") "none")
3141             references (message-fetch-field "references")
3142             message-id (message-fetch-field "message-id" t)
3143             followup-to (message-fetch-field "followup-to")
3144             newsgroups (message-fetch-field "newsgroups")
3145             posted-to (message-fetch-field "posted-to")
3146             reply-to (message-fetch-field "reply-to")
3147             distribution (message-fetch-field "distribution")
3148             mct (message-fetch-field "mail-copies-to"))
3149       (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
3150                  (string-match "<[^>]+>" gnus-warning))
3151         (setq message-id (match-string 0 gnus-warning)))
3152       ;; Remove bogus distribution.
3153       (when (and (stringp distribution)
3154                  (let ((case-fold-search t))
3155                    (string-match "world" distribution)))
3156         (setq distribution nil))
3157       ;; Remove any (buggy) Re:'s that are present and make a
3158       ;; proper one.
3159       (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
3160         (setq subject (substring subject (match-end 0))))
3161       (setq subject (concat "Re: " subject))
3162       (widen))
3163
3164     (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
3165
3166     (message-setup
3167      `((Subject . ,subject)
3168        ,@(cond
3169           (to-newsgroups
3170            (list (cons 'Newsgroups to-newsgroups)))
3171           (follow-to follow-to)
3172           ((and followup-to message-use-followup-to)
3173            (list
3174             (cond
3175              ((equal (downcase followup-to) "poster")
3176               (if (or (eq message-use-followup-to 'use)
3177                       (message-y-or-n-p "Obey Followup-To: poster? " t "\
3178 You should normally obey the Followup-To: header.
3179
3180 `Followup-To: poster' sends your response via e-mail instead of news.
3181
3182 A typical situation where `Followup-To: poster' is used is when the poster
3183 does not read the newsgroup, so he wouldn't see any replies sent to it."))
3184                   (progn
3185                     (setq message-this-is-news nil)
3186                     (cons 'To (or reply-to from "")))
3187                 (cons 'Newsgroups newsgroups)))
3188              (t
3189               (if (or (equal followup-to newsgroups)
3190                       (not (eq message-use-followup-to 'ask))
3191                       (message-y-or-n-p
3192                        (concat "Obey Followup-To: " followup-to "? ") t "\
3193 You should normally obey the Followup-To: header.
3194
3195         `Followup-To: " followup-to "'
3196 directs your response to " (if (string-match "," followup-to)
3197                                "the specified newsgroups"
3198                              "that newsgroup only") ".
3199
3200 If a message is posted to several newsgroups, Followup-To is often
3201 used to direct the following discussion to one newsgroup only,
3202 because discussions that are spread over several newsgroup tend to
3203 be fragmented and very difficult to follow.
3204
3205 Also, some source/announcement newsgroups are not indented for discussion;
3206 responses here are directed to other newsgroups."))
3207                   (cons 'Newsgroups followup-to)
3208                 (cons 'Newsgroups newsgroups))))))
3209           (posted-to
3210            `((Newsgroups . ,posted-to)))
3211           (t
3212            `((Newsgroups . ,newsgroups))))
3213        ,@(and distribution (list (cons 'Distribution distribution)))
3214        ,@(if (or references message-id)
3215              `((References . ,(concat (or references "") (and references " ")
3216                                       (or message-id "")))))
3217        ,@(when (and mct
3218                     (not (equal (downcase mct) "never")))
3219            (list (cons 'Cc (if (equal (downcase mct) "always")
3220                                (or reply-to from "")
3221                              mct)))))
3222
3223      cur)
3224
3225     (setq message-reply-headers
3226           (vector 0 subject from date message-id references 0 0 ""))))
3227
3228
3229 ;;;###autoload
3230 (defun message-cancel-news ()
3231   "Cancel an article you posted."
3232   (interactive)
3233   (unless (message-news-p)
3234     (error "This is not a news article; canceling is impossible"))
3235   (when (yes-or-no-p "Do you really want to cancel this article? ")
3236     (let (from newsgroups message-id distribution buf)
3237       (save-excursion
3238         ;; Get header info. from original article.
3239         (save-restriction
3240           (message-narrow-to-head)
3241           (setq from (message-fetch-field "from")
3242                 newsgroups (message-fetch-field "newsgroups")
3243                 message-id (message-fetch-field "message-id" t)
3244                 distribution (message-fetch-field "distribution")))
3245         ;; Make sure that this article was written by the user.
3246         (unless (string-equal
3247                  (downcase (cadr (mail-extract-address-components from)))
3248                  (downcase (message-make-address)))
3249           (error "This article is not yours"))
3250         ;; Make control message.
3251         (setq buf (set-buffer (get-buffer-create " *message cancel*")))
3252         (buffer-disable-undo (current-buffer))
3253         (erase-buffer)
3254         (insert "Newsgroups: " newsgroups "\n"
3255                 "From: " (message-make-from) "\n"
3256                 "Subject: cmsg cancel " message-id "\n"
3257                 "Control: cancel " message-id "\n"
3258                 (if distribution
3259                     (concat "Distribution: " distribution "\n")
3260                   "")
3261                 mail-header-separator "\n"
3262                 message-cancel-message)
3263         (message "Canceling your article...")
3264         (if (let ((message-syntax-checks
3265                    'dont-check-for-anything-just-trust-me))
3266               (funcall message-send-news-function))
3267             (message "Canceling your article...done"))
3268         (kill-buffer buf)))))
3269
3270 ;;;###autoload
3271 (defun message-supersede ()
3272   "Start composing a message to supersede the current message.
3273 This is done simply by taking the old article and adding a Supersedes
3274 header line with the old Message-ID."
3275   (interactive)
3276   (let ((cur (current-buffer)))
3277     ;; Check whether the user owns the article that is to be superseded.
3278     (unless (string-equal
3279              (downcase (cadr (mail-extract-address-components
3280                               (message-fetch-field "from"))))
3281              (downcase (message-make-address)))
3282       (error "This article is not yours"))
3283     ;; Get a normal message buffer.
3284     (message-pop-to-buffer (message-buffer-name "supersede"))
3285     (insert-buffer-substring cur)
3286     (message-narrow-to-head)
3287     ;; Remove unwanted headers.
3288     (when message-ignored-supersedes-headers
3289       (message-remove-header message-ignored-supersedes-headers t))
3290     (goto-char (point-min))
3291     (if (not (re-search-forward "^Message-ID: " nil t))
3292         (error "No Message-ID in this article")
3293       (replace-match "Supersedes: " t t))
3294     (goto-char (point-max))
3295     (insert mail-header-separator)
3296     (widen)
3297     (forward-line 1)))
3298
3299 ;;;###autoload
3300 (defun message-recover ()
3301   "Reread contents of current buffer from its last auto-save file."
3302   (interactive)
3303   (let ((file-name (make-auto-save-file-name)))
3304     (cond ((save-window-excursion
3305              (if (not (eq system-type 'vax-vms))
3306                  (with-output-to-temp-buffer "*Directory*"
3307                    (buffer-disable-undo standard-output)
3308                    (let ((default-directory "/"))
3309                      (call-process
3310                       "ls" nil standard-output nil "-l" file-name))))
3311              (yes-or-no-p (format "Recover auto save file %s? " file-name)))
3312            (let ((buffer-read-only nil))
3313              (erase-buffer)
3314              (insert-file-contents file-name nil)))
3315           (t (error "message-recover cancelled")))))
3316
3317 ;;; Forwarding messages.
3318
3319 (defun message-make-forward-subject ()
3320   "Return a Subject header suitable for the message in the current buffer."
3321   (save-excursion
3322     (save-restriction
3323       (current-buffer)
3324       (message-narrow-to-head)
3325       (concat "[" (or (message-fetch-field
3326                        (if (message-news-p) "newsgroups" "from"))
3327                       "(nowhere)")
3328               "] " (or (message-fetch-field "Subject") "")))))
3329
3330 ;;;###autoload
3331 (defun message-forward (&optional news)
3332   "Forward the current message via mail.
3333 Optional NEWS will use news to forward instead of mail."
3334   (interactive "P")
3335   (let ((cur (current-buffer))
3336         (subject (message-make-forward-subject))
3337         art-beg)
3338     (if news (message-news nil subject) (message-mail nil subject))
3339     ;; Put point where we want it before inserting the forwarded
3340     ;; message.
3341     (if message-signature-before-forwarded-message
3342         (goto-char (point-max))
3343       (message-goto-body))
3344     ;; Make sure we're at the start of the line.
3345     (unless (eolp)
3346       (insert "\n"))
3347     ;; Narrow to the area we are to insert.
3348     (narrow-to-region (point) (point))
3349     ;; Insert the separators and the forwarded buffer.
3350     (insert message-forward-start-separator)
3351     (setq art-beg (point))
3352     (insert-buffer-substring cur)
3353     (goto-char (point-max))
3354     (insert message-forward-end-separator)
3355     (set-text-properties (point-min) (point-max) nil)
3356     ;; Remove all unwanted headers.
3357     (goto-char art-beg)
3358     (narrow-to-region (point) (if (search-forward "\n\n" nil t)
3359                                   (1- (point))
3360                                 (point)))
3361     (goto-char (point-min))
3362     (message-remove-header message-included-forward-headers t nil t)
3363     (widen)
3364     (message-position-point)))
3365
3366 ;;;###autoload
3367 (defun message-resend (address)
3368   "Resend the current article to ADDRESS."
3369   (interactive "sResend message to: ")
3370   (message "Resending message to %s..." address)
3371   (save-excursion
3372     (let ((cur (current-buffer))
3373           beg)
3374       ;; We first set up a normal mail buffer.
3375       (set-buffer (get-buffer-create " *message resend*"))
3376       (buffer-disable-undo (current-buffer))
3377       (erase-buffer)
3378       (message-setup `((To . ,address)))
3379       ;; Insert our usual headers.
3380       (message-generate-headers '(From Date To))
3381       (message-narrow-to-headers)
3382       ;; Rename them all to "Resent-*".
3383       (while (re-search-forward "^[A-Za-z]" nil t)
3384         (forward-char -1)
3385         (insert "Resent-"))
3386       (widen)
3387       (forward-line)
3388       (delete-region (point) (point-max))
3389       (setq beg (point))
3390       ;; Insert the message to be resent.
3391       (insert-buffer-substring cur)
3392       (goto-char (point-min))
3393       (search-forward "\n\n")
3394       (forward-char -1)
3395       (save-restriction
3396         (narrow-to-region beg (point))
3397         (message-remove-header message-ignored-resent-headers t)
3398         (goto-char (point-max)))
3399       (insert mail-header-separator)
3400       ;; Rename all old ("Also-")Resent headers.
3401       (while (re-search-backward "^\\(Also-\\)?Resent-" beg t)
3402         (beginning-of-line)
3403         (insert "Also-"))
3404       ;; Quote any "From " lines at the beginning.
3405       (goto-char beg)
3406       (when (looking-at "From ")
3407         (replace-match "X-From-Line: "))
3408       ;; Send it.
3409       (message-send-mail)
3410       (kill-buffer (current-buffer)))
3411     (message "Resending message to %s...done" address)))
3412
3413 ;;;###autoload
3414 (defun message-bounce ()
3415   "Re-mail the current message.
3416 This only makes sense if the current message is a bounce message than
3417 contains some mail you have written which has been bounced back to
3418 you."
3419   (interactive)
3420   (let ((cur (current-buffer))
3421         boundary)
3422     (message-pop-to-buffer (message-buffer-name "bounce"))
3423     (insert-buffer-substring cur)
3424     (undo-boundary)
3425     (message-narrow-to-head)
3426     (if (and (message-fetch-field "Mime-Version")
3427              (setq boundary (message-fetch-field "Content-Type")))
3428         (if (string-match "boundary=\"\\([^\"]+\\)\"" boundary)
3429             (setq boundary (concat (match-string 1 boundary) " *\n"
3430                                    "Content-Type: message/rfc822"))
3431           (setq boundary nil)))
3432     (widen)
3433     (goto-char (point-min))
3434     (search-forward "\n\n" nil t)
3435     (or (and boundary
3436              (re-search-forward boundary nil t)
3437              (forward-line 2))
3438         (and (re-search-forward message-unsent-separator nil t)
3439              (forward-line 1))
3440         (re-search-forward "^Return-Path:.*\n" nil t))
3441     ;; We remove everything before the bounced mail.
3442     (delete-region
3443      (point-min)
3444      (if (re-search-forward "^[^ \n\t]+:" nil t)
3445          (match-beginning 0)
3446        (point)))
3447     (save-restriction
3448       (message-narrow-to-head)
3449       (message-remove-header message-ignored-bounced-headers t)
3450       (goto-char (point-max))
3451       (insert mail-header-separator))
3452     (message-position-point)))
3453
3454 ;;;
3455 ;;; Interactive entry points for new message buffers.
3456 ;;;
3457
3458 ;;;###autoload
3459 (defun message-mail-other-window (&optional to subject)
3460   "Like `message-mail' command, but display mail buffer in another window."
3461   (interactive)
3462   (let ((pop-up-windows t)
3463         (special-display-buffer-names nil)
3464         (special-display-regexps nil)
3465         (same-window-buffer-names nil)
3466         (same-window-regexps nil))
3467     (message-pop-to-buffer (message-buffer-name "mail" to)))
3468   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3469
3470 ;;;###autoload
3471 (defun message-mail-other-frame (&optional to subject)
3472   "Like `message-mail' command, but display mail buffer in another frame."
3473   (interactive)
3474   (let ((pop-up-frames t)
3475         (special-display-buffer-names nil)
3476         (special-display-regexps nil)
3477         (same-window-buffer-names nil)
3478         (same-window-regexps nil))
3479     (message-pop-to-buffer (message-buffer-name "mail" to)))
3480   (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
3481
3482 ;;;###autoload
3483 (defun message-news-other-window (&optional newsgroups subject)
3484   "Start editing a news article to be sent."
3485   (interactive)
3486   (let ((pop-up-windows t)
3487         (special-display-buffer-names nil)
3488         (special-display-regexps nil)
3489         (same-window-buffer-names nil)
3490         (same-window-regexps nil))
3491     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3492   (message-setup `((Newsgroups . ,(or newsgroups ""))
3493                    (Subject . ,(or subject "")))))
3494
3495 ;;;###autoload
3496 (defun message-news-other-frame (&optional newsgroups subject)
3497   "Start editing a news article to be sent."
3498   (interactive)
3499   (let ((pop-up-frames t)
3500         (special-display-buffer-names nil)
3501         (special-display-regexps nil)
3502         (same-window-buffer-names nil)
3503         (same-window-regexps nil))
3504     (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
3505   (message-setup `((Newsgroups . ,(or newsgroups ""))
3506                    (Subject . ,(or subject "")))))
3507
3508 ;;; underline.el
3509
3510 ;; This code should be moved to underline.el (from which it is stolen).
3511
3512 ;;;###autoload
3513 (defun bold-region (start end)
3514   "Bold all nonblank characters in the region.
3515 Works by overstriking characters.
3516 Called from program, takes two arguments START and END
3517 which specify the range to operate on."
3518   (interactive "r")
3519   (save-excursion
3520     (let ((end1 (make-marker)))
3521       (move-marker end1 (max start end))
3522       (goto-char (min start end))
3523       (while (< (point) end1)
3524         (or (looking-at "[_\^@- ]")
3525             (insert (following-char) "\b"))
3526         (forward-char 1)))))
3527
3528 ;;;###autoload
3529 (defun unbold-region (start end)
3530   "Remove all boldness (overstruck characters) in the region.
3531 Called from program, takes two arguments START and END
3532 which specify the range to operate on."
3533   (interactive "r")
3534   (save-excursion
3535     (let ((end1 (make-marker)))
3536       (move-marker end1 (max start end))
3537       (goto-char (min start end))
3538       (while (re-search-forward "\b" end1 t)
3539         (if (eq (following-char) (char-after (- (point) 2)))
3540             (delete-char -2))))))
3541
3542 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
3543
3544 ;; Support for toolbar
3545 (when (string-match "XEmacs\\|Lucid" emacs-version)
3546   (require 'messagexmas))
3547
3548 ;;; Group name completion.
3549
3550 (defvar message-newgroups-header-regexp
3551   "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):"
3552   "Regexp that match headers that lists groups.")
3553
3554 (defun message-tab ()
3555   "Expand group names in Newsgroups and Followup-To headers.
3556 Do a `tab-to-tab-stop' if not in those headers."
3557   (interactive)
3558   (if (let ((mail-abbrev-mode-regexp message-newgroups-header-regexp))
3559         (mail-abbrev-in-expansion-header-p))
3560       (message-expand-group)
3561     (tab-to-tab-stop)))
3562
3563 (defvar gnus-active-hashtb)
3564 (defun message-expand-group ()
3565   (let* ((b (save-excursion
3566               (save-restriction
3567                 (narrow-to-region
3568                  (save-excursion
3569                    (beginning-of-line)
3570                    (skip-chars-forward "^:")
3571                    (1+ (point)))
3572                  (point))
3573                 (skip-chars-backward "^, \t\n") (point))))
3574          (completion-ignore-case t)
3575          (string (buffer-substring b (point)))
3576          (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
3577          (completions (all-completions string hashtb))
3578          (cur (current-buffer))
3579          comp)
3580     (delete-region b (point))
3581     (cond
3582      ((= (length completions) 1)
3583       (if (string= (car completions) string)
3584           (progn
3585             (insert string)
3586             (message "Only matching group"))
3587         (insert (car completions))))
3588      ((and (setq comp (try-completion string hashtb))
3589            (not (string= comp string)))
3590       (insert comp))
3591      (t
3592       (insert string)
3593       (if (not comp)
3594           (message "No matching groups")
3595         (pop-to-buffer "*Completions*")
3596         (buffer-disable-undo (current-buffer))
3597         (let ((buffer-read-only nil))
3598           (erase-buffer)
3599           (let ((standard-output (current-buffer)))
3600             (display-completion-list (sort completions 'string<)))
3601           (goto-char (point-min))
3602           (pop-to-buffer cur)))))))
3603
3604 ;;; Help stuff.
3605
3606 (defun message-talkative-question (ask question show &rest text)
3607   "Call FUNCTION with argument QUESTION, displaying the rest of the arguments in a temporary buffer if SHOW.
3608 The following arguments may contain lists of values."
3609   (if (and show
3610            (setq text (message-flatten-list text)))
3611       (save-window-excursion
3612         (save-excursion
3613           (with-output-to-temp-buffer " *MESSAGE information message*"
3614             (set-buffer " *MESSAGE information message*")
3615             (mapcar 'princ text)
3616             (goto-char (point-min))))
3617         (funcall ask question))
3618     (funcall ask question)))
3619
3620 (defun message-flatten-list (list)
3621   "Return a new, flat list that contains all elements of LIST.
3622
3623 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
3624 => (1 2 3 4 5 6 7)"
3625   (cond ((consp list)
3626          (apply 'append (mapcar 'message-flatten-list list)))
3627         (list
3628          (list list))))
3629
3630 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
3631   "Create and return a buffer with a name based on NAME using generate-new-buffer.
3632 Then clone the local variables and values from the old buffer to the
3633 new one, cloning only the locals having a substring matching the
3634 regexp varstr."
3635   (let ((oldlocals (buffer-local-variables)))
3636     (save-excursion
3637       (set-buffer (generate-new-buffer name))
3638       (mapcar (lambda (dude)
3639                 (when (and (car dude)
3640                            (or (not varstr)
3641                                (string-match varstr (symbol-name (car dude)))))
3642                   (ignore-errors
3643                     (set (make-local-variable (car dude))
3644                          (cdr dude)))))
3645               oldlocals)
3646       (current-buffer))))
3647
3648 (run-hooks 'message-load-hook)
3649
3650 (provide 'message)
3651
3652 ;;; message.el ends here