*** empty log message ***
[emacs.git] / lisp / mail / sendmail.el
blob3373886703d3af6db593b49d053569b2ef70cbd4
1 ;;; sendmail.el --- mail sending commands for Emacs.
3 ;; Maintainer: FSF
4 ;; Last-Modified: 24 Jun 1992
6 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
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.
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.
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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 ;;; Code:
26 ;;;###autoload
27 (defconst mail-self-blind nil "\
28 Non-nil means insert BCC to self in messages to be sent.
29 This is done when the message is initialized,
30 so you can remove or alter the BCC field to override the default.")
32 ;;;###autoload
33 (defconst mail-interactive nil "\
34 Non-nil means when sending a message wait for and display errors.
35 nil means let mailer mail back a message to report errors.")
37 ;;;###autoload
38 (defconst mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
39 Delete these headers from old message when it's inserted in a reply.")
41 ;; Useful to set in site-init.el
42 ;;;###autoload
43 (defconst send-mail-function 'sendmail-send-it "\
44 Function to call to send the current buffer as mail.
45 The headers are be delimited by a line which is mail-header-separator.")
47 ;;;###autoload
48 (defvar mail-header-separator "--text follows this line--" "\
49 *Line used to separate headers from text in messages being composed.")
51 ;;;###autoload
52 (defvar mail-archive-file-name nil "\
53 *Name of file to write all outgoing messages in, or nil for none.
54 Do not use an rmail file here! Instead, use its inbox file.")
56 (defvar mail-default-reply-to nil
57 "*Address to insert as default Reply-to field of outgoing messages.")
59 (defvar mail-alias-file nil
60 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
61 This file defines aliases to be expanded by the mailer; this is a different
62 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
63 This variable has no effect unless your system uses sendmail as its mailer.")
65 (defvar mail-yank-prefix nil
66 "*Prefix insert on lines of yanked message being replied to.
67 nil means use indentation.")
69 (defvar mail-abbrevs-loaded nil)
70 (defvar mail-mode-map nil)
72 (defvar mail-signature nil
73 "*Text inserted at end of mail buffer when a message is initialized.
74 If t, it means to insert the contents of the file `~/.signature'.")
76 (defvar mail-reply-buffer nil)
77 (defvar mail-send-actions nil
78 "A list of actions to be performed upon successful sending of a message.")
80 (defvar mail-default-headers nil
81 "*A string containing header lines, to be inserted in outgoing messages.
82 It is inserted before you edit the message,
83 so you can edit or delete these lines.")
85 (defvar mail-mode-syntax-table nil
86 "Syntax table used while in mail mode.")
88 (if (null mail-mode-syntax-table)
89 (progn
90 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table))
91 (modify-syntax-entry ?% ". " mail-mode-syntax-table)))
93 (defun mail-setup (to subject in-reply-to cc replybuffer actions)
94 (setq mail-send-actions actions)
95 (mail-aliases-setup)
96 (setq mail-reply-buffer replybuffer)
97 (goto-char (point-min))
98 (insert "To: ")
99 (save-excursion
100 (if to
101 (progn
102 (insert to "\n")
103 ;;; Here removed code to extract names from within <...>
104 ;;; on the assumption that mail-strip-quoted-names
105 ;;; has been called and has done so.
106 (let ((fill-prefix "\t"))
107 (fill-region (point-min) (point-max))))
108 (newline))
109 (if cc
110 (let ((opos (point))
111 (fill-prefix "\t"))
112 (insert "CC: " cc "\n")
113 (fill-region-as-paragraph opos (point-max))))
114 (if in-reply-to
115 (insert "In-reply-to: " in-reply-to "\n"))
116 (insert "Subject: " (or subject "") "\n")
117 (if mail-default-headers
118 (insert mail-default-headers))
119 (if mail-default-reply-to
120 (insert "Reply-to: " mail-default-reply-to "\n"))
121 (if mail-self-blind
122 (insert "BCC: " (user-login-name) "\n"))
123 (if mail-archive-file-name
124 (insert "FCC: " mail-archive-file-name "\n"))
125 (insert mail-header-separator "\n")
126 ;; Read the .signature file if we haven't already done so
127 ;; (and if the user has not overridden it).
128 (cond ((eq mail-signature t)
129 (insert "--\n")
130 (insert-file-contents "~/.signature"))
131 (mail-signature
132 (insert mail-signature)))
133 (goto-char (point-max))
134 (or (bolp) (newline)))
135 (if to (goto-char (point-max)))
136 (or to subject in-reply-to
137 (set-buffer-modified-p nil))
138 (run-hooks 'mail-setup-hook))
140 ;;;###autoload
141 (defun mail-mode ()
142 "Major mode for editing mail to be sent.
143 Like Text Mode but with these additional commands:
144 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
145 C-c C-f move to a header field (and create it if there isn't):
146 C-c C-f C-t move to To: C-c C-f C-s move to Subj:
147 C-c C-f C-b move to BCC: C-c C-f C-c move to CC:
148 C-c C-t move to message text.
149 C-c C-y mail-yank-original (insert current message, in Rmail).
150 C-c C-q mail-fill-yanked-message (fill what was yanked).
151 C-c C-v mail-sent-via (add a sent-via field for each To or CC)."
152 (interactive)
153 (kill-all-local-variables)
154 (make-local-variable 'mail-reply-buffer)
155 (setq mail-reply-buffer nil)
156 (make-local-variable 'mail-send-actions)
157 (set-syntax-table mail-mode-syntax-table)
158 (use-local-map mail-mode-map)
159 (setq local-abbrev-table text-mode-abbrev-table)
160 (setq major-mode 'mail-mode)
161 (setq mode-name "Mail")
162 (setq buffer-offer-save t)
163 (make-local-variable 'paragraph-separate)
164 (make-local-variable 'paragraph-start)
165 (setq paragraph-start (concat "^" mail-header-separator
166 "$\\|^[ \t]*[-_][-_][-_]+$\\|"
167 paragraph-start))
168 (setq paragraph-separate (concat "^" mail-header-separator
169 "$\\|^[ \t]*[-_][-_][-_]+$\\|"
170 paragraph-separate))
171 (run-hooks 'text-mode-hook 'mail-mode-hook))
173 (if mail-mode-map
175 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map))
176 (define-key mail-mode-map "\C-c?" 'describe-mode)
177 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to)
178 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc)
179 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc)
180 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc)
181 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
182 (define-key mail-mode-map "\C-c\C-t" 'mail-text)
183 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original)
184 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message)
185 (define-key mail-mode-map "\C-c\C-w" 'mail-signature)
186 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via)
187 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit)
188 (define-key mail-mode-map "\C-c\C-s" 'mail-send))
190 (defun mail-send-and-exit (arg)
191 "Send message like mail-send, then, if no errors, exit from mail buffer.
192 Prefix arg means don't delete this window."
193 (interactive "P")
194 (mail-send)
195 (bury-buffer (current-buffer))
196 (if (or (one-window-p) arg)
197 (switch-to-buffer (other-buffer (current-buffer)))
198 (delete-window)))
200 (defun mail-send ()
201 "Send the message in the current buffer.
202 If `mail-interactive' is non-nil, wait for success indication
203 or error messages, and inform user.
204 Otherwise any failure is reported in a message back to
205 the user from the mailer."
206 (interactive)
207 (if (or (buffer-modified-p)
208 (y-or-n-p "Message already sent; resend? "))
209 (progn
210 (message "Sending...")
211 (run-hooks 'mail-send-hook)
212 (funcall send-mail-function)
213 ;; Now perform actions on successful sending.
214 (while mail-send-actions
215 (condition-case nil
216 (apply (car (car mail-send-actions)) (cdr (car mail-send-actions)))
217 (error))
218 (setq mail-send-actions (cdr mail-send-actions)))
219 (set-buffer-modified-p nil)
220 (delete-auto-save-file-if-necessary t)
221 (message "Sending...done"))))
223 (defun sendmail-send-it ()
224 (let ((errbuf (if mail-interactive
225 (generate-new-buffer " sendmail errors")
227 (tembuf (generate-new-buffer " sendmail temp"))
228 (case-fold-search nil)
229 delimline
230 (mailbuf (current-buffer)))
231 (unwind-protect
232 (save-excursion
233 (set-buffer tembuf)
234 (erase-buffer)
235 (insert-buffer-substring mailbuf)
236 (goto-char (point-max))
237 ;; require one newline at the end.
238 (or (= (preceding-char) ?\n)
239 (insert ?\n))
240 ;; Change header-delimiter to be what sendmail expects.
241 (goto-char (point-min))
242 (re-search-forward
243 (concat "^" (regexp-quote mail-header-separator) "\n"))
244 (replace-match "\n")
245 (backward-char 1)
246 (setq delimline (point-marker))
247 (goto-char (point-min))
248 ;; ignore any blank lines in the header
249 (while (and (re-search-forward "\n\n\n*" delimline t)
250 (< (point) delimline))
251 (replace-match "\n"))
252 (let ((case-fold-search t))
253 (goto-char (point-min))
254 (if (re-search-forward "^Sender:" delimline t)
255 (error "Sender may not be specified."))
256 ;; Find and handle any FCC fields.
257 (goto-char (point-min))
258 (if (re-search-forward "^FCC:" delimline t)
259 (mail-do-fcc delimline))
260 ;; If the From is different than current user, insert Sender.
261 (goto-char (point-min))
262 (and (re-search-forward "^From:" delimline t)
263 (progn
264 (require 'mail-utils)
265 (not (string-equal
266 (mail-strip-quoted-names
267 (save-restriction
268 (narrow-to-region (point-min) delimline)
269 (mail-fetch-field "From")))
270 (user-login-name))))
271 (progn
272 (forward-line 1)
273 (insert "Sender: " (user-login-name) "\n")))
274 ;; "S:" is an abbreviation for "Subject:".
275 (goto-char (point-min))
276 (if (re-search-forward "^S:" delimline t)
277 (replace-match "Subject:"))
278 ;; Don't send out a blank subject line
279 (goto-char (point-min))
280 (if (re-search-forward "^Subject:[ \t]*\n" delimline t)
281 (replace-match ""))
282 (if mail-interactive
283 (save-excursion
284 (set-buffer errbuf)
285 (erase-buffer))))
286 (apply 'call-process-region
287 (append (list (point-min) (point-max)
288 (if (boundp 'sendmail-program)
289 sendmail-program
290 "/usr/lib/sendmail")
291 nil errbuf nil
292 "-oi" "-t")
293 ;; Always specify who from,
294 ;; since some systems have broken sendmails.
295 (list "-f" (user-login-name))
296 ;;; ;; Don't say "from root" if running under su.
297 ;;; (and (equal (user-real-login-name) "root")
298 ;;; (list "-f" (user-login-name)))
299 (and mail-alias-file
300 (list (concat "-oA" mail-alias-file)))
301 ;; These mean "report errors by mail"
302 ;; and "deliver in background".
303 (if (null mail-interactive) '("-oem" "-odb"))))
304 (if mail-interactive
305 (save-excursion
306 (set-buffer errbuf)
307 (goto-char (point-min))
308 (while (re-search-forward "\n\n* *" nil t)
309 (replace-match "; "))
310 (if (not (zerop (buffer-size)))
311 (error "Sending...failed to %s"
312 (buffer-substring (point-min) (point-max)))))))
313 (kill-buffer tembuf)
314 (if (bufferp errbuf)
315 (kill-buffer errbuf)))))
317 (defun mail-do-fcc (header-end)
318 (let (fcc-list
319 (rmailbuf (current-buffer))
320 (tembuf (generate-new-buffer " rmail output"))
321 (case-fold-search t))
322 (save-excursion
323 (goto-char (point-min))
324 (while (re-search-forward "^FCC:[ \t]*" header-end t)
325 (setq fcc-list (cons (buffer-substring (point)
326 (progn
327 (end-of-line)
328 (skip-chars-backward " \t")
329 (point)))
330 fcc-list))
331 (delete-region (match-beginning 0)
332 (progn (forward-line 1) (point))))
333 (set-buffer tembuf)
334 (erase-buffer)
335 (insert "\nFrom " (user-login-name) " "
336 (current-time-string) "\n")
337 (insert-buffer-substring rmailbuf)
338 ;; Make sure messages are separated.
339 (goto-char (point-max))
340 (insert ?\n)
341 (goto-char 2)
342 ;; ``Quote'' "^From " as ">From "
343 ;; (note that this isn't really quoting, as there is no requirement
344 ;; that "^[>]+From " be quoted in the same transparent way.)
345 (let ((case-fold-search nil))
346 (while (search-forward "\nFrom " nil t)
347 (forward-char -5)
348 (insert ?>)))
349 (while fcc-list
350 (let ((buffer (get-file-buffer (car fcc-list))))
351 (if buffer
352 ;; File is present in a buffer => append to that buffer.
353 (let ((curbuf (current-buffer))
354 (beg (point-min)) (end (point-max)))
355 (save-excursion
356 (set-buffer buffer)
357 ;; Keep the end of the accessible portion at the same place
358 ;; unless it is the end of the buffer.
359 (let ((max (if (/= (1+ (buffer-size)) (point-max))
360 (point-max))))
361 (unwind-protect
362 (progn
363 (narrow-to-region (point-min) (1+ (buffer-size)))
364 (goto-char (point-max))
365 (if (eq major-mode 'rmail-mode)
366 ;; Append as a message to an RMAIL file
367 (let ((buffer-read-only nil))
368 ;; This forces RMAIL's message counters to be
369 ;; recomputed when the next RMAIL operation is
370 ;; done on the buffer.
371 ;; See rmail-maybe-set-message-counters.
372 (setq rmail-total-messages nil)
373 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
374 "From: " (user-login-name) "\n"
375 "Date: " (current-time-string) "\n")
376 (insert-buffer-substring curbuf beg end)
377 (insert "\n\C-_")
378 (rmail-set-message-counters))
379 (insert-buffer-substring curbuf beg end)))
380 (if max (narrow-to-region (point-min) max))))))
381 ;; Else append to the file directly.
382 (write-region
383 ;; Include a blank line before if file already exists.
384 (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min)))
385 (point-max) (car fcc-list) t)))
386 (setq fcc-list (cdr fcc-list))))
387 (kill-buffer tembuf)))
389 (defun mail-sent-via ()
390 "Make a Sent-via header line from each To or CC header line."
391 (interactive)
392 (save-excursion
393 (goto-char (point-min))
394 ;; find the header-separator
395 (search-forward (concat "\n" mail-header-separator "\n"))
396 (forward-line -1)
397 ;; put a marker at the end of the header
398 (let ((end (point-marker))
399 (case-fold-search t)
400 to-line)
401 (goto-char (point-min))
402 ;; search for the To: lines and make Sent-via: lines from them
403 ;; search for the next To: line
404 (while (re-search-forward "^\\(to\\|cc\\):" end t)
405 ;; Grab this line plus all its continuations, sans the `to:'.
406 (let ((to-line
407 (buffer-substring (point)
408 (progn
409 (if (re-search-forward "^[^ \t\n]" end t)
410 (backward-char 1)
411 (goto-char end))
412 (point)))))
413 ;; Insert a copy, with altered header field name.
414 (insert-before-markers "Sent-via:" to-line))))))
416 (defun mail-to ()
417 "Move point to end of To-field."
418 (interactive)
419 (expand-abbrev)
420 (mail-position-on-field "To"))
422 (defun mail-subject ()
423 "Move point to end of Subject-field."
424 (interactive)
425 (expand-abbrev)
426 (mail-position-on-field "Subject"))
428 (defun mail-cc ()
429 "Move point to end of CC-field. Create a CC field if none."
430 (interactive)
431 (expand-abbrev)
432 (or (mail-position-on-field "cc" t)
433 (progn (mail-position-on-field "to")
434 (insert "\nCC: "))))
436 (defun mail-bcc ()
437 "Move point to end of BCC-field. Create a BCC field if none."
438 (interactive)
439 (expand-abbrev)
440 (or (mail-position-on-field "bcc" t)
441 (progn (mail-position-on-field "to")
442 (insert "\nBCC: "))))
444 (defun mail-fcc ()
445 "Add a new FCC field, with file name completion."
446 (interactive)
447 (expand-abbrev)
448 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
449 (mail-position-on-field "to"))
450 (insert "\nFCC: " (read-file-name "Folder carbon copy: ")))
452 (defun mail-position-on-field (field &optional soft)
453 (let (end
454 (case-fold-search t))
455 (goto-char (point-min))
456 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
457 (setq end (match-beginning 0))
458 (goto-char (point-min))
459 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
460 (progn
461 (re-search-forward "^[^ \t]" nil 'move)
462 (beginning-of-line)
463 (skip-chars-backward "\n")
465 (or soft
466 (progn (goto-char end)
467 (skip-chars-backward "\n")
468 (insert field ": \n")
469 (skip-chars-backward "\n")))
470 nil)))
472 (defun mail-text ()
473 "Move point to beginning of text field."
474 (interactive)
475 (goto-char (point-min))
476 (search-forward (concat "\n" mail-header-separator "\n")))
478 (defun mail-signature (atpoint)
479 "Sign letter with contents of ~/.signature file."
480 (interactive "P")
481 (save-excursion
482 (or atpoint
483 (goto-char (point-max)))
484 (skip-chars-backward " \t\n")
485 (end-of-line)
486 (or atpoint
487 (delete-region (point) (point-max)))
488 (insert "\n\n--\n")
489 (insert-file-contents (expand-file-name "~/.signature"))))
491 (defun mail-fill-yanked-message (&optional justifyp)
492 "Fill the paragraphs of a message yanked into this one.
493 Numeric argument means justify as well."
494 (interactive "P")
495 (save-excursion
496 (goto-char (point-min))
497 (search-forward (concat "\n" mail-header-separator "\n") nil t)
498 (fill-individual-paragraphs (point)
499 (point-max)
500 justifyp
501 t)))
503 (defun mail-yank-original (arg)
504 "Insert the message being replied to, if any (in rmail).
505 Puts point before the text and mark after.
506 Normally, indents each nonblank line ARG spaces (default 3).
507 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
509 Just \\[universal-argument] as argument means don't indent, insert no prefix,
510 and don't delete any header fields."
511 (interactive "P")
512 (if mail-reply-buffer
513 (let ((start (point)))
514 (delete-windows-on mail-reply-buffer)
515 (insert-buffer mail-reply-buffer)
516 (if (consp arg)
518 (mail-yank-clear-headers start (mark))
519 (if (null mail-yank-prefix)
520 (indent-rigidly start (mark)
521 (if arg (prefix-numeric-value arg) 3))
522 (save-excursion
523 (goto-char start)
524 (while (< (point) (mark))
525 (insert mail-yank-prefix)
526 (forward-line 1)))))
527 (exchange-point-and-mark)
528 (if (not (eolp)) (insert ?\n)))))
530 (defun mail-yank-clear-headers (start end)
531 (save-excursion
532 (goto-char start)
533 (if (search-forward "\n\n" end t)
534 (save-restriction
535 (narrow-to-region start (point))
536 (goto-char start)
537 (while (let ((case-fold-search t))
538 (re-search-forward mail-yank-ignored-headers nil t))
539 (beginning-of-line)
540 (delete-region (point)
541 (progn (re-search-forward "\n[^ \t]")
542 (forward-char -1)
543 (point))))))))
545 ;; Put these last, to reduce chance of lossage from quitting in middle of loading the file.
547 ;;;###autoload
548 (defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
549 "Edit a message to be sent. Argument means resume editing (don't erase).
550 Search for an existing mail buffer currently not in use and initialize it,
551 or make a new one if all existing mail buffers are busy.
552 With an argument, search for a busy existing mail buffer and re-select it.
554 Returns with message buffer selected; value t if message freshly initialized.
555 By default, the signature file `~/.signature' is inserted at the end;
556 see the variable `mail-signature'.
558 \\<mail-mode-map>
559 While editing message, type \\[mail-send-and-exit] to send the message and exit.
561 Various special commands starting with C-c are available in sendmail mode
562 to move to message header fields:
563 \\{mail-mode-map}
565 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
566 when the message is initialized.
568 If `mail-default-reply-to' is non-nil, it should be an address (a string);
569 a Reply-to: field with that address is inserted.
571 If `mail-archive-file-name' is non-nil, an FCC field with that file name
572 is inserted.
574 If `mail-setup-hook' is bound, its value is called with no arguments
575 after the message is initialized. It can add more default fields.
577 When calling from a program, the second through fifth arguments
578 TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
579 the initial contents of those header fields.
580 These arguments should not have final newlines.
581 The sixth argument REPLYBUFFER is a buffer whose contents
582 should be yanked if the user types C-c C-y.
583 The seventh argument ACTIONS is a list of actions to take
584 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
585 when the message is sent, we apply FUNCTION to ARGS.
586 This is how Rmail arranges to mark messages `answered'."
587 (interactive "P")
588 (let ((index 1)
589 buffer)
590 ;; If requested, look for a mail buffer that is modified and go to it.
591 (if noerase
592 (progn
593 (while (and (setq buffer
594 (get-buffer (if (= 1 index) "*mail*"
595 (format "*mail*<%d>" index))))
596 (not (buffer-modified-p buffer)))
597 (setq index (1+ index)))
598 (if buffer (switch-to-buffer buffer)
599 ;; If none exists, start a new message.
600 ;; This will never re-use an existing unmodified mail buffer
601 ;; (since index is not 1 anymore). Perhaps it should.
602 (setq noerase nil))))
603 ;; Unless we found a modified message and are happy, start a new message.
604 (if (not noerase)
605 (progn
606 ;; Look for existing unmodified mail buffer.
607 (while (and (setq buffer
608 (get-buffer (if (= 1 index) "*mail*"
609 (format "*mail*<%d>" index))))
610 (buffer-modified-p buffer))
611 (setq index (1+ index)))
612 ;; If none, make a new one.
613 (or buffer
614 (setq buffer (generate-new-buffer "*mail*")))
615 ;; Go there and initialize it.
616 (switch-to-buffer buffer)
617 (erase-buffer)
618 (setq default-directory (expand-file-name "~/"))
619 (auto-save-mode auto-save-default)
620 (mail-mode)
621 (mail-setup to subject in-reply-to cc replybuffer actions)
622 (if (and buffer-auto-save-file-name
623 (file-exists-p buffer-auto-save-file-name))
624 (message "Auto save file for draft message exists; consider M-x mail-recover"))
625 t))))
627 ;;;###autoload
628 (define-key ctl-x-map "m" 'mail)
630 (defun mail-recover ()
631 "Reread contents of current buffer from its last auto-save file."
632 (interactive)
633 (let ((file-name (make-auto-save-file-name)))
634 (cond ((save-window-excursion
635 (if (not (eq system-type 'vax-vms))
636 (with-output-to-temp-buffer "*Directory*"
637 (buffer-disable-undo standard-output)
638 (call-process "ls" nil standard-output nil "-l" file-name)))
639 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
640 (let ((buffer-read-only nil))
641 (erase-buffer)
642 (insert-file-contents file-name nil)))
643 (t (error "mail-recover cancelled.")))))
645 ;;;###autoload
646 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
647 "Like `mail' command, but display mail buffer in another window."
648 (interactive "P")
649 (let ((pop-up-windows t))
650 (pop-to-buffer "*mail*"))
651 (mail noerase to subject in-reply-to cc replybuffer sendactions))
653 ;;;###autoload
654 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
655 "Like `mail' command, but display mail buffer in another frame."
656 (interactive "P")
657 (let ((pop-up-frames t))
658 (pop-to-buffer "*mail*"))
659 (mail noerase to subject in-reply-to cc replybuffer sendactions))
662 ;;;###autoload
663 (define-key ctl-x-4-map "m" 'mail-other-window)
665 ;;;###autoload
666 (define-key ctl-x-5-map "m" 'mail-other-frame)
669 ;;; Do not add anything but external entries on this page.
671 (provide 'sendmail)
673 ;;; sendmail.el ends here