]> code.delx.au - gnu-emacs/blob - lisp/mail/sendmail.el
3ead946218f59c6771f4086d5c3a0430a2a1dd3c
[gnu-emacs] / lisp / mail / sendmail.el
1 ;;; sendmail.el --- mail sending commands for Emacs.
2
3 ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: mail
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; This mode provides mail-sending facilities from within Emacs. It is
28 ;; documented in the Emacs user's manual.
29
30 ;;; Code:
31
32 ;;;###autoload
33 (defvar mail-from-style 'angles "\
34 *Specifies how \"From:\" fields look.
35
36 If `nil', they contain just the return address like:
37 king@grassland.com
38 If `parens', they look like:
39 king@grassland.com (Elvis Parsley)
40 If `angles', they look like:
41 Elvis Parsley <king@grassland.com>")
42
43 ;;;###autoload
44 (defvar mail-self-blind nil "\
45 *Non-nil means insert BCC to self in messages to be sent.
46 This is done when the message is initialized,
47 so you can remove or alter the BCC field to override the default.")
48
49 ;;;###autoload
50 (defvar mail-interactive nil "\
51 *Non-nil means when sending a message wait for and display errors.
52 nil means let mailer mail back a message to report errors.")
53
54 ;;;###autoload
55 (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
56 *Delete these headers from old message when it's inserted in a reply.")
57
58 ;; Useful to set in site-init.el
59 ;;;###autoload
60 (defvar send-mail-function 'sendmail-send-it "\
61 Function to call to send the current buffer as mail.
62 The headers should be delimited by a line whose contents
63 match the variable `mail-header-separator'.")
64
65 ;;;###autoload
66 (defvar mail-header-separator "--text follows this line--" "\
67 *Line used to separate headers from text in messages being composed.")
68
69 ;; Set up mail-header-separator for use as a category text property.
70 (put 'mail-header-separator 'rear-nonsticky '(category))
71 ;;; This was a nice idea, for preventing accidental modification of
72 ;;; the separator. But I found it also prevented or obstructed
73 ;;; certain deliberate operations, such as copying the separator line
74 ;;; up to the top to send myself a copy of an already sent outgoing message
75 ;;; and other things. So I turned it off. --rms.
76 ;;;(put 'mail-header-separator 'read-only t)
77
78 ;;;###autoload
79 (defvar mail-archive-file-name nil "\
80 *Name of file to write all outgoing messages in, or nil for none.
81 This can be an inbox file or an Rmail file.")
82
83 ;;;###autoload
84 (defvar mail-default-reply-to nil
85 "*Address to insert as default Reply-to field of outgoing messages.
86 If nil, it will be initialized from the REPLYTO environment variable
87 when you first send mail.")
88
89 ;;;###autoload
90 (defvar mail-alias-file nil
91 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
92 This file defines aliases to be expanded by the mailer; this is a different
93 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
94 This variable has no effect unless your system uses sendmail as its mailer.")
95
96 ;;;###autoload
97 (defvar mail-personal-alias-file "~/.mailrc"
98 "*If non-nil, the name of the user's personal mail alias file.
99 This file typically should be in same format as the `.mailrc' file used by
100 the `Mail' or `mailx' program.
101 This file need not actually exist.")
102
103 (defvar mail-setup-hook nil
104 "Normal hook, run each time a new outgoing mail message is initialized.
105 The function `mail-setup' runs this hook.")
106
107 (defvar mail-aliases t
108 "Alist of mail address aliases,
109 or t meaning should be initialized from your mail aliases file.
110 \(The file's name is normally `~/.mailrc', but your MAILRC environment
111 variable can override that name.)
112 The alias definitions in the file have this form:
113 alias ALIAS MEANING")
114
115 (defvar mail-alias-modtime nil
116 "The modification time of your mail alias file when it was last examined.")
117
118 (defvar mail-yank-prefix nil
119 "*Prefix insert on lines of yanked message being replied to.
120 nil means use indentation.")
121 (defvar mail-indentation-spaces 3
122 "*Number of spaces to insert at the beginning of each cited line.
123 Used by `mail-yank-original' via `mail-indent-citation'.")
124 (defvar mail-yank-hooks nil
125 "Obsolete hook for modifying a citation just inserted in the mail buffer.
126 Each hook function can find the citation between (point) and (mark t).
127 And each hook function should leave point and mark around the citation
128 text as modified.
129
130 This is a normal hook, misnamed for historical reasons.
131 It is semi-obsolete and mail agents should no longer use it.")
132
133 (defvar mail-citation-hook nil
134 "*Hook for modifying a citation just inserted in the mail buffer.
135 Each hook function can find the citation between (point) and (mark t).
136 And each hook function should leave point and mark around the citation
137 text as modified.
138
139 If this hook is entirely empty (nil), a default action is taken
140 instead of no action.")
141
142 (defvar mail-abbrevs-loaded nil)
143 (defvar mail-mode-map nil)
144
145 (autoload 'build-mail-aliases "mailalias"
146 "Read mail aliases from user's personal aliases file and set `mail-aliases'."
147 nil)
148
149 (autoload 'expand-mail-aliases "mailalias"
150 "Expand all mail aliases in suitable header fields found between BEG and END.
151 Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants.
152 Optional second arg EXCLUDE may be a regular expression defining text to be
153 removed from alias expansions."
154 nil)
155
156 ;;;###autoload
157 (defvar mail-signature nil
158 "*Text inserted at end of mail buffer when a message is initialized.
159 If t, it means to insert the contents of the file `mail-signature-file'.")
160
161 (defvar mail-signature-file "~/.signature"
162 "*File containing the text inserted at end of mail buffer.")
163
164 (defvar mail-reply-action nil)
165 (defvar mail-send-actions nil
166 "A list of actions to be performed upon successful sending of a message.")
167 (put 'mail-reply-action 'permanent-local t)
168 (put 'mail-send-actions 'permanent-local t)
169
170 (defvar mail-default-headers nil
171 "*A string containing header lines, to be inserted in outgoing messages.
172 It is inserted before you edit the message,
173 so you can edit or delete these lines.")
174
175 (defvar mail-bury-selects-summary t
176 "*If non-nil, try to show RMAIL summary buffer after returning from mail.
177 The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
178 the RMAIL summary buffer before returning, if it exists and this variable
179 is non-nil.")
180
181 ;; I find that this happens so often, for innocent reasons,
182 ;; that it is not acceptable to bother the user about it -- rms.
183 (defvar mail-send-nonascii t
184 "*Specify whether to allow sending non-ASCII characters in mail.
185 If t, that means do allow it. nil means don't allow it.
186 `query' means ask the user each time.
187 Including non-ASCII characters in a mail message can be problematical
188 for the recipient, who may not know how to decode them properly.")
189
190 ;; Note: could use /usr/ucb/mail instead of sendmail;
191 ;; options -t, and -v if not interactive.
192 (defvar mail-mailer-swallows-blank-line
193 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" system-configuration)
194 (file-readable-p "/etc/sendmail.cf")
195 (let ((buffer (get-buffer-create " *temp*")))
196 (unwind-protect
197 (save-excursion
198 (set-buffer buffer)
199 (insert-file-contents "/etc/sendmail.cf")
200 (goto-char (point-min))
201 (let ((case-fold-search nil))
202 (re-search-forward "^OR\\>" nil t)))
203 (kill-buffer buffer))))
204 ;; According to RFC822, "The field-name must be composed of printable
205 ;; ASCII characters (i.e. characters that have decimal values between
206 ;; 33 and 126, except colon)", i.e. any chars except ctl chars,
207 ;; space, or colon.
208 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
209 "Set this non-nil if the system's mailer runs the header and body together.
210 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
211 The value should be an expression to test whether the problem will
212 actually occur.")
213
214 (defvar mail-mode-syntax-table nil
215 "Syntax table used while in mail mode.")
216
217 (if (not mail-mode-syntax-table)
218 (progn
219 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table))
220 (modify-syntax-entry ?% ". " mail-mode-syntax-table)))
221
222 (defvar mail-font-lock-keywords
223 (eval-when-compile
224 (let* ((cite-chars "[>|}]")
225 (cite-prefix "A-Za-z")
226 (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
227 (list '("^\\(To\\|Newsgroups\\):" . font-lock-function-name-face)
228 '("^\\(B?CC\\|Reply-to\\):" . font-lock-keyword-face)
229 '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
230 (1 font-lock-comment-face) (2 font-lock-type-face nil t))
231 ;; Use EVAL to delay in case `mail-header-separator' gets changed.
232 '(eval .
233 (cons (concat "^" (regexp-quote mail-header-separator) "$")
234 'font-lock-warning-face))
235 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
236 `(,cite-chars
237 (,(concat "\\=[ \t]*"
238 "\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
239 "\\(" cite-chars "[ \t]*\\)\\)+"
240 "\\(.*\\)")
241 (beginning-of-line) (end-of-line)
242 (2 font-lock-reference-face nil t)
243 (4 font-lock-comment-face nil t)))
244 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*"
245 . font-lock-string-face))))
246 "Additional expressions to highlight in Mail mode.")
247
248 (defvar mail-send-hook nil
249 "Normal hook run before sending mail, in Mail mode.")
250 \f
251 (defun sendmail-sync-aliases ()
252 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
253 (or (equal mail-alias-modtime modtime)
254 (setq mail-alias-modtime modtime
255 mail-aliases t))))
256
257 (defun mail-setup (to subject in-reply-to cc replybuffer actions)
258 (or mail-default-reply-to
259 (setq mail-default-reply-to (getenv "REPLYTO")))
260 (sendmail-sync-aliases)
261 (if (eq mail-aliases t)
262 (progn
263 (setq mail-aliases nil)
264 (if (file-exists-p mail-personal-alias-file)
265 (build-mail-aliases))))
266 ;; Don't leave this around from a previous message.
267 (kill-local-variable 'buffer-file-coding-system)
268 (kill-local-variable 'enable-multibyte-characters)
269 (if current-input-method
270 (inactivate-input-method))
271 (setq mail-send-actions actions)
272 (setq mail-reply-action replybuffer)
273 (goto-char (point-min))
274 (insert "To: ")
275 (save-excursion
276 (if to
277 ;; Here removed code to extract names from within <...>
278 ;; on the assumption that mail-strip-quoted-names
279 ;; has been called and has done so.
280 (let ((fill-prefix "\t")
281 (address-start (point)))
282 (insert to "\n")
283 (fill-region-as-paragraph address-start (point-max)))
284 (newline))
285 (if cc
286 (let ((fill-prefix "\t")
287 (address-start (progn (insert "CC: ") (point))))
288 (insert cc "\n")
289 (fill-region-as-paragraph address-start (point-max))))
290 (if in-reply-to
291 (let ((fill-prefix "\t")
292 (fill-column 78)
293 (address-start (point)))
294 (insert "In-reply-to: " in-reply-to "\n")
295 (fill-region-as-paragraph address-start (point-max))))
296 (insert "Subject: " (or subject "") "\n")
297 (if mail-default-headers
298 (insert mail-default-headers))
299 (if mail-default-reply-to
300 (insert "Reply-to: " mail-default-reply-to "\n"))
301 (if mail-self-blind
302 (insert "BCC: " user-mail-address "\n"))
303 (if mail-archive-file-name
304 (insert "FCC: " mail-archive-file-name "\n"))
305 (put-text-property (point)
306 (progn
307 (insert mail-header-separator "\n")
308 (1- (point)))
309 'category 'mail-header-separator)
310 ;; Insert the signature. But remember the beginning of the message.
311 (if to (setq to (point)))
312 (cond ((eq mail-signature t)
313 (if (file-exists-p mail-signature-file)
314 (progn
315 (insert "\n\n-- \n")
316 (insert-file-contents mail-signature-file))))
317 (mail-signature
318 (insert mail-signature)))
319 (goto-char (point-max))
320 (or (bolp) (newline)))
321 (if to (goto-char to))
322 (or to subject in-reply-to
323 (set-buffer-modified-p nil))
324 (run-hooks 'mail-setup-hook))
325 \f
326 ;;;###autoload
327 (defun mail-mode ()
328 "Major mode for editing mail to be sent.
329 Like Text Mode but with these additional commands:
330 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
331 C-c C-f move to a header field (and create it if there isn't):
332 C-c C-f C-t move to To: C-c C-f C-s move to Subject:
333 C-c C-f C-c move to CC: C-c C-f C-b move to BCC:
334 C-c C-f C-f move to FCC:
335 C-c C-t mail-text (move to beginning of message text).
336 C-c C-w mail-signature (insert `mail-signature-file' file).
337 C-c C-y mail-yank-original (insert current message, in Rmail).
338 C-c C-q mail-fill-yanked-message (fill what was yanked).
339 C-c C-v mail-sent-via (add a Sent-via field for each To or CC)."
340 (interactive)
341 (kill-all-local-variables)
342 (make-local-variable 'mail-reply-action)
343 (make-local-variable 'mail-send-actions)
344 (set-syntax-table mail-mode-syntax-table)
345 (use-local-map mail-mode-map)
346 (setq local-abbrev-table text-mode-abbrev-table)
347 (setq major-mode 'mail-mode)
348 (setq mode-name "Mail")
349 (setq buffer-offer-save t)
350 (make-local-variable 'font-lock-defaults)
351 (setq font-lock-defaults '(mail-font-lock-keywords t))
352 (make-local-variable 'paragraph-separate)
353 (make-local-variable 'paragraph-start)
354 (make-local-variable 'normal-auto-fill-function)
355 (setq normal-auto-fill-function 'mail-mode-auto-fill)
356 (make-local-variable 'fill-paragraph-function)
357 (setq fill-paragraph-function 'mail-mode-fill-paragraph)
358 (make-local-variable 'adaptive-fill-regexp)
359 (setq adaptive-fill-regexp
360 (concat "[ \t]*[a-z0-9A-Z]*>+[ \t]*\\|" adaptive-fill-regexp))
361 (make-local-variable 'adaptive-fill-first-line-regexp)
362 (setq adaptive-fill-first-line-regexp adaptive-fill-regexp)
363 ;; `-- ' precedes the signature. `-----' appears at the start of the
364 ;; lines that delimit forwarded messages.
365 ;; Lines containing just >= 3 dashes, perhaps after whitespace,
366 ;; are also sometimes used and should be separators.
367 (setq paragraph-start (concat (regexp-quote mail-header-separator)
368 "$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|"
369 page-delimiter))
370 (setq paragraph-separate paragraph-start)
371 (run-hooks 'text-mode-hook 'mail-mode-hook))
372
373 (defun mail-mode-auto-fill ()
374 "Carry out Auto Fill for Mail mode.
375 If within the headers, this makes the new lines into continuation lines."
376 (if (< (point)
377 (save-excursion
378 (goto-char (point-min))
379 (if (re-search-forward
380 (concat "^" (regexp-quote mail-header-separator) "$")
381 nil t)
382 (point)
383 0)))
384 (let ((old-line-start (save-excursion (beginning-of-line) (point))))
385 (if (do-auto-fill)
386 (save-excursion
387 (beginning-of-line)
388 (while (not (eq (point) old-line-start))
389 ;; Use insert-before-markers in case we're inserting
390 ;; before the saved value of point (which is common).
391 (insert-before-markers " ")
392 (forward-line -1))
393 t)))
394 (do-auto-fill)))
395
396 (defun mail-mode-fill-paragraph (arg)
397 ;; Do something special only if within the headers.
398 (if (< (point)
399 (save-excursion
400 (goto-char (point-min))
401 (if (re-search-forward
402 (concat "^" (regexp-quote mail-header-separator) "$")
403 nil t)
404 (point)
405 0)))
406 (let (beg end fieldname)
407 (re-search-backward "^[-a-zA-Z]+:" nil 'yes)
408 (setq beg (point))
409 (setq fieldname
410 (downcase (buffer-substring beg (1- (match-end 0)))))
411 (forward-line 1)
412 ;; Find continuation lines and get rid of their continuation markers.
413 (while (looking-at "[ \t]")
414 (delete-horizontal-space)
415 (forward-line 1))
416 (setq end (point-marker))
417 (goto-char beg)
418 ;; If this field contains addresses,
419 ;; make sure we can fill after each address.
420 (if (member fieldname
421 '("to" "cc" "bcc" "from" "reply-to"
422 "resent-to" "resent-cc" "resent-bcc"
423 "resent-from" "resent-reply-to"))
424 (while (search-forward "," end t)
425 (or (looking-at "[ \t]")
426 (insert " "))))
427 (fill-region-as-paragraph beg end)
428 ;; Mark all lines except the first as continuations.
429 (goto-char beg)
430 (forward-line 1)
431 (while (< (point) end)
432 (insert " ")
433 (forward-line 1))
434 (move-marker end nil)
435 t)))
436 \f
437 ;;; Set up keymap.
438
439 (if mail-mode-map
440 nil
441 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map))
442 (define-key mail-mode-map "\M-\t" 'mail-complete)
443 (define-key mail-mode-map "\C-c?" 'describe-mode)
444 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to)
445 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc)
446 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc)
447 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc)
448 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
449 (define-key mail-mode-map "\C-c\C-f\C-r" 'mail-reply-to)
450 (define-key mail-mode-map "\C-c\C-t" 'mail-text)
451 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original)
452 (define-key mail-mode-map "\C-c\C-r" 'mail-yank-region)
453 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message)
454 (define-key mail-mode-map "\C-c\C-w" 'mail-signature)
455 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via)
456 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit)
457 (define-key mail-mode-map "\C-c\C-s" 'mail-send)
458 (define-key mail-mode-map "\C-c\C-i" 'mail-attach-file))
459
460 (define-key mail-mode-map [menu-bar mail]
461 (cons "Mail" (make-sparse-keymap "Mail")))
462
463 (define-key mail-mode-map [menu-bar mail fill]
464 '("Fill Citation" . mail-fill-yanked-message))
465
466 (define-key mail-mode-map [menu-bar mail yank]
467 '("Cite Original" . mail-yank-original))
468
469 (define-key mail-mode-map [menu-bar mail signature]
470 '("Insert Signature" . mail-signature))
471
472 (define-key mail-mode-map [menu-bar mail mail-sep]
473 '("--"))
474
475 (define-key mail-mode-map [menu-bar mail cancel]
476 '("Cancel" . mail-dont-send))
477
478 (define-key mail-mode-map [menu-bar mail send-stay]
479 '("Send, Keep Editing" . mail-send))
480
481 (define-key mail-mode-map [menu-bar mail send]
482 '("Send Message" . mail-send-and-exit))
483
484 (define-key mail-mode-map [menu-bar headers]
485 (cons "Headers" (make-sparse-keymap "Move to Header")))
486
487 (define-key mail-mode-map [menu-bar headers text]
488 '("Text" . mail-text))
489
490 (define-key mail-mode-map [menu-bar headers expand-aliases]
491 '("Expand Aliases" . expand-mail-aliases))
492
493 (define-key mail-mode-map [menu-bar headers sent-via]
494 '("Sent Via" . mail-sent-via))
495
496 (define-key mail-mode-map [menu-bar headers reply-to]
497 '("Reply-To" . mail-reply-to))
498
499 (define-key mail-mode-map [menu-bar headers bcc]
500 '("Bcc" . mail-bcc))
501
502 (define-key mail-mode-map [menu-bar headers fcc]
503 '("Fcc" . mail-fcc))
504
505 (define-key mail-mode-map [menu-bar headers cc]
506 '("Cc" . mail-cc))
507
508 (define-key mail-mode-map [menu-bar headers subject]
509 '("Subject" . mail-subject))
510
511 (define-key mail-mode-map [menu-bar headers to]
512 '("To" . mail-to))
513 \f
514 ;; User-level commands for sending.
515
516 (defun mail-send-and-exit (arg)
517 "Send message like `mail-send', then, if no errors, exit from mail buffer.
518 Prefix arg means don't delete this window."
519 (interactive "P")
520 (mail-send)
521 (mail-bury arg))
522
523 (defun mail-dont-send (arg)
524 "Don't send the message you have been editing.
525 Prefix arg means don't delete this window."
526 (interactive "P")
527 (mail-bury arg))
528
529 (defun mail-bury (arg)
530 "Bury this mail buffer."
531 (let ((newbuf (other-buffer (current-buffer))))
532 (bury-buffer (current-buffer))
533 (if (and (or (window-dedicated-p (frame-selected-window))
534 (assq 'mail-dedicated-frame (frame-parameters)))
535 (not (null (delq (selected-frame) (visible-frame-list)))))
536 (delete-frame (selected-frame))
537 (let (rmail-flag summary-buffer)
538 (and (not arg)
539 (not (one-window-p))
540 (save-excursion
541 (set-buffer (window-buffer (next-window (selected-window) 'not)))
542 (setq rmail-flag (eq major-mode 'rmail-mode))
543 (setq summary-buffer
544 (and mail-bury-selects-summary
545 (boundp 'rmail-summary-buffer)
546 rmail-summary-buffer
547 (buffer-name rmail-summary-buffer)
548 (not (get-buffer-window rmail-summary-buffer))
549 rmail-summary-buffer))))
550 (if rmail-flag
551 ;; If the Rmail buffer has a summary, show that.
552 (if summary-buffer (switch-to-buffer summary-buffer)
553 (delete-window))
554 (switch-to-buffer newbuf))))))
555
556 (defun mail-send ()
557 "Send the message in the current buffer.
558 If `mail-interactive' is non-nil, wait for success indication
559 or error messages, and inform user.
560 Otherwise any failure is reported in a message back to
561 the user from the mailer."
562 (interactive)
563 (if (if buffer-file-name
564 (y-or-n-p "Send buffer contents as mail message? ")
565 (or (buffer-modified-p)
566 (y-or-n-p "Message already sent; resend? ")))
567 (let ((inhibit-read-only t)
568 (opoint (point)))
569 (when (and enable-multibyte-characters
570 (not (eq mail-send-nonascii t)))
571 (goto-char (point-min))
572 (skip-chars-forward "\0-\177")
573 (or (= (point) (point-max))
574 (if (eq mail-send-nonascii 'query)
575 (or (y-or-n-p "Message contains non-ASCII characters; send anyway? ")
576 (error "Aborted"))
577 (error "Message contains non-ASCII characters"))))
578 ;; Complain about any invalid line.
579 (goto-char (point-min))
580 (while (not (looking-at (regexp-quote mail-header-separator)))
581 (unless (looking-at "[ \t]\\|.*:\\|$")
582 (push-mark opoint)
583 (error "Invalid header line (maybe a continuation line lacks initial whitespace)"))
584 (forward-line 1))
585 (goto-char opoint)
586 (run-hooks 'mail-send-hook)
587 (message "Sending...")
588 (funcall send-mail-function)
589 ;; Now perform actions on successful sending.
590 (while mail-send-actions
591 (condition-case nil
592 (apply (car (car mail-send-actions))
593 (cdr (car mail-send-actions)))
594 (error))
595 (setq mail-send-actions (cdr mail-send-actions)))
596 (message "Sending...done")
597 ;; If buffer has no file, mark it as unmodified and delete autosave.
598 (if (not buffer-file-name)
599 (progn
600 (set-buffer-modified-p nil)
601 (delete-auto-save-file-if-necessary t))))))
602 \f
603 ;; This does the real work of sending a message via sendmail.
604 ;; It is called via the variable send-mail-function.
605
606 ;;;###autoload
607 (defvar sendmail-coding-system nil
608 "Coding system to which to encode the mail.")
609
610 (defun sendmail-send-it ()
611 (require 'mail-utils)
612 (let ((errbuf (if mail-interactive
613 (generate-new-buffer " sendmail errors")
614 0))
615 (tembuf (generate-new-buffer " sendmail temp"))
616 (case-fold-search nil)
617 resend-to-addresses
618 delimline
619 fcc-was-found
620 (mailbuf (current-buffer))
621 (sendmail-coding-system (or buffer-file-coding-system
622 sendmail-coding-system)))
623 (unwind-protect
624 (save-excursion
625 (set-buffer tembuf)
626 (erase-buffer)
627 (insert-buffer-substring mailbuf)
628 (goto-char (point-max))
629 ;; require one newline at the end.
630 (or (= (preceding-char) ?\n)
631 (insert ?\n))
632 ;; Change header-delimiter to be what sendmail expects.
633 (goto-char (point-min))
634 (re-search-forward
635 (concat "^" (regexp-quote mail-header-separator) "\n"))
636 (replace-match "\n")
637 (backward-char 1)
638 (setq delimline (point-marker))
639 (sendmail-sync-aliases)
640 (if mail-aliases
641 (expand-mail-aliases (point-min) delimline))
642 (goto-char (point-min))
643 ;; Ignore any blank lines in the header
644 (while (and (re-search-forward "\n\n\n*" delimline t)
645 (< (point) delimline))
646 (replace-match "\n"))
647 (goto-char (point-min))
648 (let ((case-fold-search t))
649 (goto-char (point-min))
650 (while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
651 (setq resend-to-addresses
652 (save-restriction
653 (narrow-to-region (point)
654 (save-excursion
655 (end-of-line)
656 (point)))
657 (append (mail-parse-comma-list)
658 resend-to-addresses)))
659 ;; Delete Resent-BCC ourselves
660 (if (save-excursion (beginning-of-line)
661 (looking-at "resent-bcc"))
662 (delete-region (save-excursion (beginning-of-line) (point))
663 (save-excursion (end-of-line) (1+ (point))))))
664 ;;; Apparently this causes a duplicate Sender.
665 ;;; ;; If the From is different than current user, insert Sender.
666 ;;; (goto-char (point-min))
667 ;;; (and (re-search-forward "^From:" delimline t)
668 ;;; (progn
669 ;;; (require 'mail-utils)
670 ;;; (not (string-equal
671 ;;; (mail-strip-quoted-names
672 ;;; (save-restriction
673 ;;; (narrow-to-region (point-min) delimline)
674 ;;; (mail-fetch-field "From")))
675 ;;; (user-login-name))))
676 ;;; (progn
677 ;;; (forward-line 1)
678 ;;; (insert "Sender: " (user-login-name) "\n")))
679 ;; Don't send out a blank subject line
680 (goto-char (point-min))
681 (if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t)
682 (replace-match "")
683 ;; This one matches a Subject just before the header delimiter.
684 (if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t)
685 (= (match-end 0) delimline))
686 (replace-match "")))
687 ;; Put the "From:" field in unless for some odd reason
688 ;; they put one in themselves.
689 (goto-char (point-min))
690 (if (not (re-search-forward "^From:" delimline t))
691 (let* ((login user-mail-address)
692 (fullname (user-full-name))
693 (quote-fullname nil))
694 (if (string-match "[\200-\377]" fullname)
695 (setq fullname (mail-quote-printable fullname t)
696 quote-fullname t))
697 (cond ((eq mail-from-style 'angles)
698 (insert "From: " fullname)
699 (let ((fullname-start (+ (point-min) 6))
700 (fullname-end (point-marker)))
701 (goto-char fullname-start)
702 ;; Look for a character that cannot appear unquoted
703 ;; according to RFC 822.
704 (if (or (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
705 fullname-end 1)
706 quote-fullname)
707 (progn
708 ;; Quote fullname, escaping specials.
709 (goto-char fullname-start)
710 (insert "\"")
711 (while (re-search-forward "[\"\\]"
712 fullname-end 1)
713 (replace-match "\\\\\\&" t))
714 (insert "\""))))
715 (insert " <" login ">\n"))
716 ((eq mail-from-style 'parens)
717 (insert "From: " login " (")
718 (let ((fullname-start (point)))
719 (if quote-fullname
720 (insert "\""))
721 (insert fullname)
722 (if quote-fullname
723 (insert "\""))
724 (let ((fullname-end (point-marker)))
725 (goto-char fullname-start)
726 ;; RFC 822 says \ and nonmatching parentheses
727 ;; must be escaped in comments.
728 ;; Escape every instance of ()\ ...
729 (while (re-search-forward "[()\\]" fullname-end 1)
730 (replace-match "\\\\\\&" t))
731 ;; ... then undo escaping of matching parentheses,
732 ;; including matching nested parentheses.
733 (goto-char fullname-start)
734 (while (re-search-forward
735 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
736 fullname-end 1)
737 (replace-match "\\1(\\3)" t)
738 (goto-char fullname-start))))
739 (insert ")\n"))
740 ((null mail-from-style)
741 (insert "From: " login "\n")))))
742 ;; Insert an extra newline if we need it to work around
743 ;; Sun's bug that swallows newlines.
744 (goto-char (1+ delimline))
745 (if (eval mail-mailer-swallows-blank-line)
746 (newline))
747 ;; Find and handle any FCC fields.
748 (goto-char (point-min))
749 (if (re-search-forward "^FCC:" delimline t)
750 (progn
751 (setq fcc-was-found t)
752 (mail-do-fcc delimline)))
753 (if mail-interactive
754 (save-excursion
755 (set-buffer errbuf)
756 (erase-buffer))))
757 (goto-char (point-min))
758 (if (let ((case-fold-search t))
759 (re-search-forward "^To:\\|^cc:\\|^bcc:\\|^resent-to:\
760 \\|^resent-cc:\\|^resent-bcc:"
761 delimline t))
762 (let ((default-directory "/")
763 (coding-system-for-write sendmail-coding-system))
764 (apply 'call-process-region
765 (append (list (point-min) (point-max)
766 (if (boundp 'sendmail-program)
767 sendmail-program
768 "/usr/lib/sendmail")
769 nil errbuf nil "-oi")
770 ;; Always specify who from,
771 ;; since some systems have broken sendmails.
772 (list "-f" (user-login-name))
773 ;;; ;; Don't say "from root" if running under su.
774 ;;; (and (equal (user-real-login-name) "root")
775 ;;; (list "-f" (user-login-name)))
776 (and mail-alias-file
777 (list (concat "-oA" mail-alias-file)))
778 (if mail-interactive
779 ;; These mean "report errors to terminal"
780 ;; and "deliver interactively"
781 '("-oep" "-odi")
782 ;; These mean "report errors by mail"
783 ;; and "deliver in background".
784 '("-oem" "-odb"))
785 ;; Get the addresses from the message
786 ;; unless this is a resend.
787 ;; We must not do that for a resend
788 ;; because we would find the original addresses.
789 ;; For a resend, include the specific addresses.
790 (or resend-to-addresses
791 '("-t")))))
792 (or fcc-was-found
793 (error "No recipients")))
794 (if mail-interactive
795 (save-excursion
796 (set-buffer errbuf)
797 (goto-char (point-min))
798 (while (re-search-forward "\n\n* *" nil t)
799 (replace-match "; "))
800 (if (not (zerop (buffer-size)))
801 (error "Sending...failed to %s"
802 (buffer-substring (point-min) (point-max)))))))
803 (kill-buffer tembuf)
804 (if (bufferp errbuf)
805 (kill-buffer errbuf)))))
806
807 (defun mail-do-fcc (header-end)
808 (let (fcc-list
809 (rmailbuf (current-buffer))
810 (time (current-time))
811 (tembuf (generate-new-buffer " rmail output"))
812 (case-fold-search t))
813 (save-excursion
814 (goto-char (point-min))
815 (while (re-search-forward "^FCC:[ \t]*" header-end t)
816 (setq fcc-list (cons (buffer-substring (point)
817 (progn
818 (end-of-line)
819 (skip-chars-backward " \t")
820 (point)))
821 fcc-list))
822 (delete-region (match-beginning 0)
823 (progn (forward-line 1) (point))))
824 (set-buffer tembuf)
825 (erase-buffer)
826 ;; This initial newline is written out if the fcc file already exists.
827 (insert "\nFrom " (user-login-name) " "
828 (current-time-string time) "\n")
829 ;; Insert the time zone before the year.
830 (forward-char -1)
831 (forward-word -1)
832 (require 'mail-utils)
833 (insert (mail-rfc822-time-zone time) " ")
834 (goto-char (point-max))
835 (insert-buffer-substring rmailbuf)
836 ;; Make sure messages are separated.
837 (goto-char (point-max))
838 (insert ?\n)
839 (goto-char 2)
840 ;; ``Quote'' "^From " as ">From "
841 ;; (note that this isn't really quoting, as there is no requirement
842 ;; that "^[>]+From " be quoted in the same transparent way.)
843 (let ((case-fold-search nil))
844 (while (search-forward "\nFrom " nil t)
845 (forward-char -5)
846 (insert ?>)))
847 (while fcc-list
848 (let* ((buffer (find-buffer-visiting (car fcc-list)))
849 (curbuf (current-buffer))
850 dont-write-the-file
851 buffer-matches-file
852 (beg (point-min)) (end (point-max))
853 (beg2 (save-excursion (goto-char (point-min))
854 (forward-line 2) (point))))
855 (if buffer
856 ;; File is present in a buffer => append to that buffer.
857 (save-excursion
858 (set-buffer buffer)
859 (setq buffer-matches-file
860 (and (not (buffer-modified-p))
861 (verify-visited-file-modtime buffer)))
862 ;; Keep the end of the accessible portion at the same place
863 ;; unless it is the end of the buffer.
864 (let ((max (if (/= (1+ (buffer-size)) (point-max))
865 (point-max))))
866 (unwind-protect
867 ;; Code below lifted from rmailout.el
868 ;; function rmail-output-to-rmail-file:
869 (let ((buffer-read-only nil)
870 (msg (and (boundp 'rmail-current-message)
871 rmail-current-message)))
872 ;; If MSG is non-nil, buffer is in RMAIL mode.
873 (if msg
874 (progn
875 (rmail-maybe-set-message-counters)
876 (widen)
877 (narrow-to-region (point-max) (point-max))
878 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
879 "Date: " (mail-rfc822-date) "\n")
880 (insert-buffer-substring curbuf beg2 end)
881 (insert "\n\C-_")
882 (goto-char (point-min))
883 (widen)
884 (search-backward "\n\^_")
885 (narrow-to-region (point) (point-max))
886 (rmail-count-new-messages t)
887 (rmail-show-message msg)
888 (setq max nil))
889 ;; Output file not in rmail mode
890 ;; => just insert at the end.
891 (narrow-to-region (point-min) (1+ (buffer-size)))
892 (goto-char (point-max))
893 (insert-buffer-substring curbuf beg end))
894 (or buffer-matches-file
895 (progn
896 (if (y-or-n-p (format "Save file %s? "
897 (car fcc-list)))
898 (save-buffer))
899 (setq dont-write-the-file t))))
900 (if max (narrow-to-region (point-min) max))))))
901 ;; Append to the file directly,
902 ;; unless we've already taken care of it.
903 (if (and (not dont-write-the-file)
904 (file-exists-p (car fcc-list))
905 (mail-file-babyl-p (car fcc-list)))
906 ;; If the file is a Babyl file,
907 ;; convert the message to Babyl format.
908 (save-excursion
909 (set-buffer (get-buffer-create " mail-temp"))
910 (setq buffer-read-only nil)
911 (erase-buffer)
912 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
913 "Date: " (mail-rfc822-date) "\n")
914 (insert-buffer-substring curbuf beg2 end)
915 (insert "\n\C-_")
916 (write-region (point-min) (point-max) (car fcc-list) t)
917 (erase-buffer))
918 (write-region
919 (1+ (point-min)) (point-max) (car fcc-list) t))
920 (and buffer (not dont-write-the-file)
921 (with-current-buffer buffer
922 (set-visited-file-modtime))))
923 (setq fcc-list (cdr fcc-list))))
924 (kill-buffer tembuf)))
925
926 (defun mail-sent-via ()
927 "Make a Sent-via header line from each To or CC header line."
928 (interactive)
929 (save-excursion
930 (goto-char (point-min))
931 ;; find the header-separator
932 (search-forward (concat "\n" mail-header-separator "\n"))
933 (forward-line -1)
934 ;; put a marker at the end of the header
935 (let ((end (point-marker))
936 (case-fold-search t)
937 to-line)
938 (goto-char (point-min))
939 ;; search for the To: lines and make Sent-via: lines from them
940 ;; search for the next To: line
941 (while (re-search-forward "^\\(to\\|cc\\):" end t)
942 ;; Grab this line plus all its continuations, sans the `to:'.
943 (let ((to-line
944 (buffer-substring (point)
945 (progn
946 (if (re-search-forward "^[^ \t\n]" end t)
947 (backward-char 1)
948 (goto-char end))
949 (point)))))
950 ;; Insert a copy, with altered header field name.
951 (insert-before-markers "Sent-via:" to-line))))))
952 \f
953 (defun mail-to ()
954 "Move point to end of To-field."
955 (interactive)
956 (expand-abbrev)
957 (mail-position-on-field "To"))
958
959 (defun mail-subject ()
960 "Move point to end of Subject-field."
961 (interactive)
962 (expand-abbrev)
963 (mail-position-on-field "Subject"))
964
965 (defun mail-cc ()
966 "Move point to end of CC-field. Create a CC field if none."
967 (interactive)
968 (expand-abbrev)
969 (or (mail-position-on-field "cc" t)
970 (progn (mail-position-on-field "to")
971 (insert "\nCC: "))))
972
973 (defun mail-bcc ()
974 "Move point to end of BCC-field. Create a BCC field if none."
975 (interactive)
976 (expand-abbrev)
977 (or (mail-position-on-field "bcc" t)
978 (progn (mail-position-on-field "to")
979 (insert "\nBCC: "))))
980
981 (defun mail-fcc (folder)
982 "Add a new FCC field, with file name completion."
983 (interactive "FFolder carbon copy: ")
984 (expand-abbrev)
985 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
986 (mail-position-on-field "to"))
987 (insert "\nFCC: " folder))
988
989 (defun mail-reply-to ()
990 "Move point to end of Reply-To-field."
991 (interactive)
992 (expand-abbrev)
993 (mail-position-on-field "Reply-To"))
994
995 (defun mail-position-on-field (field &optional soft)
996 (let (end
997 (case-fold-search t))
998 (goto-char (point-min))
999 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1000 (setq end (match-beginning 0))
1001 (goto-char (point-min))
1002 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
1003 (progn
1004 (re-search-forward "^[^ \t]" nil 'move)
1005 (beginning-of-line)
1006 (skip-chars-backward "\n")
1007 t)
1008 (or soft
1009 (progn (goto-char end)
1010 (insert field ": \n")
1011 (skip-chars-backward "\n")))
1012 nil)))
1013
1014 (defun mail-text ()
1015 "Move point to beginning of message text."
1016 (interactive)
1017 (expand-abbrev)
1018 (goto-char (point-min))
1019 (search-forward (concat "\n" mail-header-separator "\n")))
1020 \f
1021 (defun mail-signature (atpoint)
1022 "Sign letter with contents of the file `mail-signature-file'.
1023 Prefix arg means put contents at point."
1024 (interactive "P")
1025 (save-excursion
1026 (or atpoint
1027 (goto-char (point-max)))
1028 (skip-chars-backward " \t\n")
1029 (end-of-line)
1030 (or atpoint
1031 (delete-region (point) (point-max)))
1032 (insert "\n\n-- \n")
1033 (insert-file-contents (expand-file-name mail-signature-file))))
1034
1035 (defun mail-fill-yanked-message (&optional justifyp)
1036 "Fill the paragraphs of a message yanked into this one.
1037 Numeric argument means justify as well."
1038 (interactive "P")
1039 (save-excursion
1040 (goto-char (point-min))
1041 (search-forward (concat "\n" mail-header-separator "\n") nil t)
1042 (fill-individual-paragraphs (point)
1043 (point-max)
1044 justifyp
1045 t)))
1046
1047 (defun mail-indent-citation ()
1048 "Modify text just inserted from a message to be cited.
1049 The inserted text should be the region.
1050 When this function returns, the region is again around the modified text.
1051
1052 Normally, indent each nonblank line `mail-indentation-spaces' spaces.
1053 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
1054 (mail-yank-clear-headers (region-beginning) (region-end))
1055 (if (null mail-yank-prefix)
1056 (indent-rigidly (region-beginning) (region-end)
1057 mail-indentation-spaces)
1058 (save-excursion
1059 (let ((end (set-marker (make-marker) (region-end))))
1060 (goto-char (region-beginning))
1061 (while (< (point) end)
1062 (insert mail-yank-prefix)
1063 (forward-line 1))))))
1064
1065 (defun mail-yank-original (arg)
1066 "Insert the message being replied to, if any (in rmail).
1067 Puts point after the text and mark before.
1068 Normally, indents each nonblank line ARG spaces (default 3).
1069 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
1070
1071 Just \\[universal-argument] as argument means don't indent, insert no prefix,
1072 and don't delete any header fields."
1073 (interactive "P")
1074 (if mail-reply-action
1075 (let ((start (point))
1076 (original mail-reply-action))
1077 (and (consp original) (eq (car original) 'insert-buffer)
1078 (setq original (nth 1 original)))
1079 (if (consp original)
1080 (apply (car original) (cdr original))
1081 ;; If the original message is in another window in the same frame,
1082 ;; delete that window to save screen space.
1083 ;; t means don't alter other frames.
1084 (delete-windows-on original t)
1085 (insert-buffer original))
1086 (if (consp arg)
1087 nil
1088 (goto-char start)
1089 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
1090 mail-indentation-spaces))
1091 (mark-even-if-inactive t))
1092 (if mail-citation-hook
1093 (run-hooks 'mail-citation-hook)
1094 (if mail-yank-hooks
1095 (run-hooks 'mail-yank-hooks)
1096 (mail-indent-citation)))))
1097 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1098 ;; It is cleaner to avoid activation, even though the command
1099 ;; loop would deactivate the mark because we inserted text.
1100 (goto-char (prog1 (mark t)
1101 (set-marker (mark-marker) (point) (current-buffer))))
1102 (if (not (eolp)) (insert ?\n)))))
1103
1104 (defun mail-yank-clear-headers (start end)
1105 (if (< end start)
1106 (let (temp)
1107 (setq temp start start end end temp)))
1108 (if mail-yank-ignored-headers
1109 (save-excursion
1110 (goto-char start)
1111 (if (search-forward "\n\n" end t)
1112 (save-restriction
1113 (narrow-to-region start (point))
1114 (goto-char start)
1115 (while (let ((case-fold-search t))
1116 (re-search-forward mail-yank-ignored-headers nil t))
1117 (beginning-of-line)
1118 (delete-region (point)
1119 (progn (re-search-forward "\n[^ \t]")
1120 (forward-char -1)
1121 (point)))))))))
1122
1123 (defun mail-yank-region (arg)
1124 "Insert the selected region from the message being replied to.
1125 Puts point after the text and mark before.
1126 Normally, indents each nonblank line ARG spaces (default 3).
1127 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
1128
1129 Just \\[universal-argument] as argument means don't indent, insert no prefix,
1130 and don't delete any header fields."
1131 (interactive "P")
1132 (and (consp mail-reply-action)
1133 (eq (car mail-reply-action) 'insert-buffer)
1134 (let ((buffer (nth 1 mail-reply-action))
1135 (start (point)))
1136 ;; Insert the citation text.
1137 (insert (with-current-buffer buffer
1138 (buffer-substring (point) (mark))))
1139 (push-mark start)
1140 ;; Indent or otherwise annotate the citation text.
1141 (if (consp arg)
1142 nil
1143 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
1144 mail-indentation-spaces)))
1145 (if mail-citation-hook
1146 (run-hooks 'mail-citation-hook)
1147 (if mail-yank-hooks
1148 (run-hooks 'mail-yank-hooks)
1149 (mail-indent-citation))))))))
1150 \f
1151 (defun mail-attach-file (&optional file)
1152 "Insert a file at the end of the buffer, with separator lines around it."
1153 (interactive "fAttach file: ")
1154 (save-excursion
1155 (goto-char (point-max))
1156 (or (bolp) (newline))
1157 (newline)
1158 (let ((start (point))
1159 middle)
1160 (insert (format "===File %s===" file))
1161 (insert-char ?= (max 0 (- 60 (current-column))))
1162 (newline)
1163 (setq middle (point))
1164 (insert "============================================================\n")
1165 (push-mark)
1166 (goto-char middle)
1167 (insert-file-contents file)
1168 (or (bolp) (newline))
1169 (goto-char start))))
1170 \f
1171 ;; Put these commands last, to reduce chance of lossage from quitting
1172 ;; in middle of loading the file.
1173
1174 ;;;###autoload (add-hook 'same-window-buffer-names "*mail*")
1175
1176 ;;;###autoload
1177 (defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
1178 "Edit a message to be sent. Prefix arg means resume editing (don't erase).
1179 When this function returns, the buffer `*mail*' is selected.
1180 The value is t if the message was newly initialized; otherwise, nil.
1181
1182 Optionally, the signature file `mail-signature-file' can be inserted at the
1183 end; see the variable `mail-signature'.
1184
1185 \\<mail-mode-map>
1186 While editing message, type \\[mail-send-and-exit] to send the message and exit.
1187
1188 Various special commands starting with C-c are available in sendmail mode
1189 to move to message header fields:
1190 \\{mail-mode-map}
1191
1192 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
1193 when the message is initialized.
1194
1195 If `mail-default-reply-to' is non-nil, it should be an address (a string);
1196 a Reply-to: field with that address is inserted.
1197
1198 If `mail-archive-file-name' is non-nil, an FCC field with that file name
1199 is inserted.
1200
1201 The normal hook `mail-setup-hook' is run after the message is
1202 initialized. It can add more default fields to the message.
1203
1204 When calling from a program, the first argument if non-nil says
1205 not to erase the existing contents of the `*mail*' buffer.
1206
1207 The second through fifth arguments,
1208 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
1209 the initial contents of those header fields.
1210 These arguments should not have final newlines.
1211 The sixth argument REPLYBUFFER is a buffer which contains an
1212 original message being replied to, or else an action
1213 of the form (FUNCTION . ARGS) which says how to insert the original.
1214 Or it can be nil, if not replying to anything.
1215 The seventh argument ACTIONS is a list of actions to take
1216 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
1217 when the message is sent, we apply FUNCTION to ARGS.
1218 This is how Rmail arranges to mark messages `answered'."
1219 (interactive "P")
1220 ;;; This is commented out because I found it was confusing in practice.
1221 ;;; It is easy enough to rename *mail* by hand with rename-buffer
1222 ;;; if you want to have multiple mail buffers.
1223 ;;; And then you can control which messages to save. --rms.
1224 ;;; (let ((index 1)
1225 ;;; buffer)
1226 ;;; ;; If requested, look for a mail buffer that is modified and go to it.
1227 ;;; (if noerase
1228 ;;; (progn
1229 ;;; (while (and (setq buffer
1230 ;;; (get-buffer (if (= 1 index) "*mail*"
1231 ;;; (format "*mail*<%d>" index))))
1232 ;;; (not (buffer-modified-p buffer)))
1233 ;;; (setq index (1+ index)))
1234 ;;; (if buffer (switch-to-buffer buffer)
1235 ;;; ;; If none exists, start a new message.
1236 ;;; ;; This will never re-use an existing unmodified mail buffer
1237 ;;; ;; (since index is not 1 anymore). Perhaps it should.
1238 ;;; (setq noerase nil))))
1239 ;;; ;; Unless we found a modified message and are happy, start a new message.
1240 ;;; (if (not noerase)
1241 ;;; (progn
1242 ;;; ;; Look for existing unmodified mail buffer.
1243 ;;; (while (and (setq buffer
1244 ;;; (get-buffer (if (= 1 index) "*mail*"
1245 ;;; (format "*mail*<%d>" index))))
1246 ;;; (buffer-modified-p buffer))
1247 ;;; (setq index (1+ index)))
1248 ;;; ;; If none, make a new one.
1249 ;;; (or buffer
1250 ;;; (setq buffer (generate-new-buffer "*mail*")))
1251 ;;; ;; Go there and initialize it.
1252 ;;; (switch-to-buffer buffer)
1253 ;;; (erase-buffer)
1254 ;;; (setq default-directory (expand-file-name "~/"))
1255 ;;; (auto-save-mode auto-save-default)
1256 ;;; (mail-mode)
1257 ;;; (mail-setup to subject in-reply-to cc replybuffer actions)
1258 ;;; (if (and buffer-auto-save-file-name
1259 ;;; (file-exists-p buffer-auto-save-file-name))
1260 ;;; (message "Auto save file for draft message exists; consider M-x mail-recover"))
1261 ;;; t))
1262 (pop-to-buffer "*mail*")
1263 ;; Put the auto-save file in the home dir
1264 ;; to avoid any danger that it can't be written.
1265 (if (file-exists-p (expand-file-name "~/"))
1266 (setq default-directory (expand-file-name "~/")))
1267 (auto-save-mode auto-save-default)
1268 (mail-mode)
1269 ;; Disconnect the buffer from its visited file
1270 ;; (in case the user has actually visited a file *mail*).
1271 ; (set-visited-file-name nil)
1272 (let (initialized)
1273 (and (not noerase)
1274 (if buffer-file-name
1275 (if (buffer-modified-p)
1276 (when (y-or-n-p "Buffer has unsaved changes; reinitialize it and discard them? ")
1277 (if (y-or-n-p "Disconnect buffer from visited file? ")
1278 (set-visited-file-name nil))
1279 t)
1280 (when (y-or-n-p "Reinitialize buffer, and disconnect it from the visited file? ")
1281 (set-visited-file-name nil)
1282 t))
1283 ;; A non-file-visiting buffer.
1284 (if (buffer-modified-p)
1285 (y-or-n-p "Unsent message being composed; erase it? ")
1286 t))
1287 (let ((inhibit-read-only t))
1288 (erase-buffer)
1289 (mail-setup to subject in-reply-to cc replybuffer actions)
1290 (setq initialized t)))
1291 (if (and buffer-auto-save-file-name
1292 (file-exists-p buffer-auto-save-file-name))
1293 (message "Auto save file for draft message exists; consider M-x mail-recover"))
1294 initialized))
1295
1296 (defun mail-recover ()
1297 "Reread contents of current buffer from its last auto-save file."
1298 (interactive)
1299 (let ((file-name (make-auto-save-file-name)))
1300 (cond ((save-window-excursion
1301 (if (not (eq system-type 'vax-vms))
1302 (with-output-to-temp-buffer "*Directory*"
1303 (buffer-disable-undo standard-output)
1304 (let ((default-directory "/"))
1305 (call-process
1306 "ls" nil standard-output nil "-l" file-name))))
1307 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
1308 (let ((buffer-read-only nil))
1309 (erase-buffer)
1310 (insert-file-contents file-name nil)))
1311 (t (error "mail-recover cancelled")))))
1312
1313 ;;;###autoload
1314 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
1315 "Like `mail' command, but display mail buffer in another window."
1316 (interactive "P")
1317 (let ((pop-up-windows t)
1318 (special-display-buffer-names nil)
1319 (special-display-regexps nil)
1320 (same-window-buffer-names nil)
1321 (same-window-regexps nil))
1322 (pop-to-buffer "*mail*"))
1323 (mail noerase to subject in-reply-to cc replybuffer sendactions))
1324
1325 ;;;###autoload
1326 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
1327 "Like `mail' command, but display mail buffer in another frame."
1328 (interactive "P")
1329 (let ((pop-up-frames t)
1330 (special-display-buffer-names nil)
1331 (special-display-regexps nil)
1332 (same-window-buffer-names nil)
1333 (same-window-regexps nil))
1334 (pop-to-buffer "*mail*"))
1335 (mail noerase to subject in-reply-to cc replybuffer sendactions))
1336
1337 ;;; Do not add anything but external entries on this page.
1338
1339 (provide 'sendmail)
1340
1341 ;;; sendmail.el ends here