(kill-ring-save): Doc fix.
[bpt/emacs.git] / lisp / mail / sendmail.el
CommitLineData
c88ab9ce
ER
1;;; sendmail.el --- mail sending commands for Emacs.
2
3a801d0c
ER
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
4
e5167999 5;; Maintainer: FSF
d7b4d18f 6;; Keywords: mail
e5167999 7
20a8832d
RS
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
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
20a8832d
RS
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
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
d9ecc911
ER
24;;; Commentary:
25
26;; This mode provides mail-sending facilities from within Emacs. It is
27;; documented in the Emacs user's manual.
28
e5167999 29;;; Code:
20a8832d 30
20a8832d 31;;;###autoload
92e0f87a 32(defvar mail-self-blind nil "\
20a8832d
RS
33Non-nil means insert BCC to self in messages to be sent.
34This is done when the message is initialized,
35so you can remove or alter the BCC field to override the default.")
36
37;;;###autoload
92e0f87a 38(defvar mail-interactive nil "\
20a8832d
RS
39Non-nil means when sending a message wait for and display errors.
40nil means let mailer mail back a message to report errors.")
41
42;;;###autoload
92e0f87a 43(defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
20a8832d
RS
44Delete these headers from old message when it's inserted in a reply.")
45
46;; Useful to set in site-init.el
47;;;###autoload
06b68294 48(defvar send-mail-function 'sendmail-send-it "\
20a8832d 49Function to call to send the current buffer as mail.
33b4a308 50The headers are be delimited by a line which is `mail-header-separator'.")
20a8832d
RS
51
52;;;###autoload
53(defvar mail-header-separator "--text follows this line--" "\
54*Line used to separate headers from text in messages being composed.")
55
56;;;###autoload
57(defvar mail-archive-file-name nil "\
58*Name of file to write all outgoing messages in, or nil for none.
59Do not use an rmail file here! Instead, use its inbox file.")
60
20a8832d
RS
61(defvar mail-default-reply-to nil
62 "*Address to insert as default Reply-to field of outgoing messages.")
63
64(defvar mail-alias-file nil
65 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
66This file defines aliases to be expanded by the mailer; this is a different
67feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
68This variable has no effect unless your system uses sendmail as its mailer.")
69
5ef9d627 70(defvar mail-aliases t
ade349a0
RS
71 "Alist of mail address aliases,
72or t meaning should be initialized from `~/.mailrc'.
73The alias definitions in `~/.mailrc' have this form:
74 alias ALIAS MEANING")
5ef9d627 75
20a8832d
RS
76(defvar mail-yank-prefix nil
77 "*Prefix insert on lines of yanked message being replied to.
78nil means use indentation.")
1c24b04a
RS
79(defvar mail-indentation-spaces 3
80 "*Number of spaces to insert at the beginning of each cited line.
81Used by `mail-yank-original' via `mail-yank-cite'.")
82(defvar mail-yank-hooks '(mail-indent-citation)
83 "*Hook for modifying a citation just inserted in the mail buffer.
84Each hook function can find the citation between (point) and (mark t).
85And each hook function should leave point and mark around the citation
86text as modified.
87
88This is a normal hook, currently misnamed for historical reasons.")
20a8832d
RS
89
90(defvar mail-abbrevs-loaded nil)
91(defvar mail-mode-map nil)
92
5ef9d627
RS
93(autoload 'build-mail-aliases "mailalias"
94 "Read mail aliases from `~/.mailrc' and set `mail-aliases'."
95 nil)
96
97(autoload 'expand-mail-aliases "mailalias"
98 "Expand all mail aliases in suitable header fields found between BEG and END.
99Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants.
100Optional second arg EXCLUDE may be a regular expression defining text to be
101removed from alias expansions."
102 nil)
103
ef15f270 104;;;###autoload
547075d4
JB
105(defvar mail-signature nil
106 "*Text inserted at end of mail buffer when a message is initialized.
107If t, it means to insert the contents of the file `~/.signature'.")
20a8832d
RS
108
109(defvar mail-reply-buffer nil)
110(defvar mail-send-actions nil
111 "A list of actions to be performed upon successful sending of a message.")
112
113(defvar mail-default-headers nil
114 "*A string containing header lines, to be inserted in outgoing messages.
115It is inserted before you edit the message,
116so you can edit or delete these lines.")
117
118(defvar mail-mode-syntax-table nil
119 "Syntax table used while in mail mode.")
120
121(if (null mail-mode-syntax-table)
122 (progn
123 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table))
124 (modify-syntax-entry ?% ". " mail-mode-syntax-table)))
125
20a8832d 126(defun mail-setup (to subject in-reply-to cc replybuffer actions)
5ef9d627
RS
127 (if (eq mail-aliases t)
128 (progn
129 (setq mail-aliases nil)
130 (if (file-exists-p "~/.mailrc")
131 (build-mail-aliases))))
20a8832d 132 (setq mail-send-actions actions)
20a8832d
RS
133 (setq mail-reply-buffer replybuffer)
134 (goto-char (point-min))
135 (insert "To: ")
136 (save-excursion
137 (if to
70ca75ae
RS
138 ;; Here removed code to extract names from within <...>
139 ;; on the assumption that mail-strip-quoted-names
140 ;; has been called and has done so.
141 (let ((fill-prefix "\t")
142 (address-start (point)))
20a8832d 143 (insert to "\n")
70ca75ae 144 (fill-region-as-paragraph address-start (point-max)))
20a8832d
RS
145 (newline))
146 (if cc
70ca75ae
RS
147 (let ((fill-prefix "\t")
148 (address-start (progn (insert "CC: ") (point))))
149 (insert cc "\n")
150 (fill-region-as-paragraph address-start (point-max))))
20a8832d
RS
151 (if in-reply-to
152 (insert "In-reply-to: " in-reply-to "\n"))
153 (insert "Subject: " (or subject "") "\n")
154 (if mail-default-headers
155 (insert mail-default-headers))
156 (if mail-default-reply-to
157 (insert "Reply-to: " mail-default-reply-to "\n"))
158 (if mail-self-blind
159 (insert "BCC: " (user-login-name) "\n"))
160 (if mail-archive-file-name
161 (insert "FCC: " mail-archive-file-name "\n"))
8defe99b 162 (insert mail-header-separator "\n")
874bdb5a
RS
163 ;; Insert the signature. But remember the beginning of the message.
164 (if to (setq to (point)))
547075d4
JB
165 (cond ((eq mail-signature t)
166 (if (file-exists-p "~/.signature")
684602b9 167 (insert-file-contents "~/.signature")))
547075d4
JB
168 (mail-signature
169 (insert mail-signature)))
20a8832d
RS
170 (goto-char (point-max))
171 (or (bolp) (newline)))
874bdb5a 172 (if to (goto-char to))
20a8832d
RS
173 (or to subject in-reply-to
174 (set-buffer-modified-p nil))
175 (run-hooks 'mail-setup-hook))
176
177;;;###autoload
178(defun mail-mode ()
179 "Major mode for editing mail to be sent.
180Like Text Mode but with these additional commands:
181C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
182C-c C-f move to a header field (and create it if there isn't):
183 C-c C-f C-t move to To: C-c C-f C-s move to Subj:
184 C-c C-f C-b move to BCC: C-c C-f C-c move to CC:
185C-c C-t move to message text.
186C-c C-y mail-yank-original (insert current message, in Rmail).
187C-c C-q mail-fill-yanked-message (fill what was yanked).
188C-c C-v mail-sent-via (add a sent-via field for each To or CC)."
189 (interactive)
190 (kill-all-local-variables)
191 (make-local-variable 'mail-reply-buffer)
192 (setq mail-reply-buffer nil)
193 (make-local-variable 'mail-send-actions)
194 (set-syntax-table mail-mode-syntax-table)
195 (use-local-map mail-mode-map)
196 (setq local-abbrev-table text-mode-abbrev-table)
197 (setq major-mode 'mail-mode)
198 (setq mode-name "Mail")
199 (setq buffer-offer-save t)
200 (make-local-variable 'paragraph-separate)
201 (make-local-variable 'paragraph-start)
202 (setq paragraph-start (concat "^" mail-header-separator
203 "$\\|^[ \t]*[-_][-_][-_]+$\\|"
204 paragraph-start))
205 (setq paragraph-separate (concat "^" mail-header-separator
206 "$\\|^[ \t]*[-_][-_][-_]+$\\|"
207 paragraph-separate))
208 (run-hooks 'text-mode-hook 'mail-mode-hook))
209
210(if mail-mode-map
211 nil
212 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map))
213 (define-key mail-mode-map "\C-c?" 'describe-mode)
214 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to)
215 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc)
70ee42f7 216 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc)
20a8832d
RS
217 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc)
218 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
219 (define-key mail-mode-map "\C-c\C-t" 'mail-text)
220 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original)
221 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message)
222 (define-key mail-mode-map "\C-c\C-w" 'mail-signature)
223 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via)
224 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit)
225 (define-key mail-mode-map "\C-c\C-s" 'mail-send))
226\f
227(defun mail-send-and-exit (arg)
33b4a308 228 "Send message like `mail-send', then, if no errors, exit from mail buffer.
20a8832d
RS
229Prefix arg means don't delete this window."
230 (interactive "P")
231 (mail-send)
e49ad9a5
RS
232 (let ((newbuf (other-buffer (current-buffer))))
233 (bury-buffer (current-buffer))
234 (if (and (not arg)
235 (not (one-window-p))
236 (save-excursion
237 (set-buffer (window-buffer (next-window (selected-window) 'not)))
238 (eq major-mode 'rmail-mode)))
239 (delete-window)
240 (switch-to-buffer newbuf))))
20a8832d
RS
241
242(defun mail-send ()
243 "Send the message in the current buffer.
244If `mail-interactive' is non-nil, wait for success indication
245or error messages, and inform user.
246Otherwise any failure is reported in a message back to
247the user from the mailer."
248 (interactive)
249 (if (or (buffer-modified-p)
250 (y-or-n-p "Message already sent; resend? "))
251 (progn
252 (message "Sending...")
253 (run-hooks 'mail-send-hook)
254 (funcall send-mail-function)
255 ;; Now perform actions on successful sending.
256 (while mail-send-actions
257 (condition-case nil
d2561f34
RS
258 (apply (car (car mail-send-actions))
259 (cdr (car mail-send-actions)))
20a8832d
RS
260 (error))
261 (setq mail-send-actions (cdr mail-send-actions)))
d2561f34
RS
262 (message "Sending...done")
263 ;; If buffer has no file, mark it as unmodified and delete autosave.
264 (if (not buffer-file-name)
265 (progn
266 (set-buffer-modified-p nil)
267 (delete-auto-save-file-if-necessary t))))))
20a8832d
RS
268
269(defun sendmail-send-it ()
270 (let ((errbuf (if mail-interactive
271 (generate-new-buffer " sendmail errors")
272 0))
273 (tembuf (generate-new-buffer " sendmail temp"))
274 (case-fold-search nil)
275 delimline
276 (mailbuf (current-buffer)))
277 (unwind-protect
278 (save-excursion
279 (set-buffer tembuf)
280 (erase-buffer)
281 (insert-buffer-substring mailbuf)
282 (goto-char (point-max))
283 ;; require one newline at the end.
284 (or (= (preceding-char) ?\n)
285 (insert ?\n))
286 ;; Change header-delimiter to be what sendmail expects.
287 (goto-char (point-min))
288 (re-search-forward
289 (concat "^" (regexp-quote mail-header-separator) "\n"))
290 (replace-match "\n")
291 (backward-char 1)
292 (setq delimline (point-marker))
5ef9d627
RS
293 (if mail-aliases
294 (expand-mail-aliases (point-min) delimline))
20a8832d
RS
295 (goto-char (point-min))
296 ;; ignore any blank lines in the header
297 (while (and (re-search-forward "\n\n\n*" delimline t)
298 (< (point) delimline))
299 (replace-match "\n"))
300 (let ((case-fold-search t))
301 (goto-char (point-min))
302 (if (re-search-forward "^Sender:" delimline t)
303 (error "Sender may not be specified."))
304 ;; Find and handle any FCC fields.
305 (goto-char (point-min))
306 (if (re-search-forward "^FCC:" delimline t)
307 (mail-do-fcc delimline))
308 ;; If the From is different than current user, insert Sender.
309 (goto-char (point-min))
310 (and (re-search-forward "^From:" delimline t)
311 (progn
312 (require 'mail-utils)
313 (not (string-equal
314 (mail-strip-quoted-names
315 (save-restriction
316 (narrow-to-region (point-min) delimline)
317 (mail-fetch-field "From")))
318 (user-login-name))))
319 (progn
320 (forward-line 1)
321 (insert "Sender: " (user-login-name) "\n")))
322 ;; "S:" is an abbreviation for "Subject:".
323 (goto-char (point-min))
324 (if (re-search-forward "^S:" delimline t)
325 (replace-match "Subject:"))
326 ;; Don't send out a blank subject line
327 (goto-char (point-min))
328 (if (re-search-forward "^Subject:[ \t]*\n" delimline t)
329 (replace-match ""))
330 (if mail-interactive
331 (save-excursion
332 (set-buffer errbuf)
333 (erase-buffer))))
334 (apply 'call-process-region
335 (append (list (point-min) (point-max)
336 (if (boundp 'sendmail-program)
337 sendmail-program
338 "/usr/lib/sendmail")
339 nil errbuf nil
340 "-oi" "-t")
341 ;; Always specify who from,
342 ;; since some systems have broken sendmails.
343 (list "-f" (user-login-name))
344;;; ;; Don't say "from root" if running under su.
345;;; (and (equal (user-real-login-name) "root")
346;;; (list "-f" (user-login-name)))
347 (and mail-alias-file
348 (list (concat "-oA" mail-alias-file)))
349 ;; These mean "report errors by mail"
350 ;; and "deliver in background".
351 (if (null mail-interactive) '("-oem" "-odb"))))
352 (if mail-interactive
353 (save-excursion
354 (set-buffer errbuf)
355 (goto-char (point-min))
356 (while (re-search-forward "\n\n* *" nil t)
357 (replace-match "; "))
358 (if (not (zerop (buffer-size)))
359 (error "Sending...failed to %s"
360 (buffer-substring (point-min) (point-max)))))))
361 (kill-buffer tembuf)
362 (if (bufferp errbuf)
363 (kill-buffer errbuf)))))
364
365(defun mail-do-fcc (header-end)
366 (let (fcc-list
367 (rmailbuf (current-buffer))
facb137b 368 (time (current-time))
847f73fd 369 timezone
20a8832d
RS
370 (tembuf (generate-new-buffer " rmail output"))
371 (case-fold-search t))
372 (save-excursion
373 (goto-char (point-min))
374 (while (re-search-forward "^FCC:[ \t]*" header-end t)
375 (setq fcc-list (cons (buffer-substring (point)
376 (progn
377 (end-of-line)
378 (skip-chars-backward " \t")
379 (point)))
380 fcc-list))
381 (delete-region (match-beginning 0)
382 (progn (forward-line 1) (point))))
facb137b
JB
383 (let* ((foo (current-time-zone time))
384 (offset (if (car foo) (/ (car foo) 60) 0))
5e6cb310
RS
385 (abs (abs offset)))
386 (setq timezone (format "%s%02d%02d"
387 (if (< offset 0) "-" "+")
388 (/ abs 60)
389 (% abs 60))))
20a8832d
RS
390 (set-buffer tembuf)
391 (erase-buffer)
fc23ca96
RS
392 ;; This initial newline is written out if the fcc file already exists.
393 (insert "\nFrom " (user-login-name) " "
facb137b 394 (current-time-string time) "\n")
847f73fd
RS
395 ;; Insert the time zone before the year.
396 (forward-char -1)
397 (forward-word -1)
398 (insert timezone " ")
399 (goto-char (point-max))
20a8832d
RS
400 (insert-buffer-substring rmailbuf)
401 ;; Make sure messages are separated.
402 (goto-char (point-max))
403 (insert ?\n)
404 (goto-char 2)
405 ;; ``Quote'' "^From " as ">From "
406 ;; (note that this isn't really quoting, as there is no requirement
407 ;; that "^[>]+From " be quoted in the same transparent way.)
408 (let ((case-fold-search nil))
409 (while (search-forward "\nFrom " nil t)
410 (forward-char -5)
411 (insert ?>)))
412 (while fcc-list
413 (let ((buffer (get-file-buffer (car fcc-list))))
414 (if buffer
415 ;; File is present in a buffer => append to that buffer.
416 (let ((curbuf (current-buffer))
417 (beg (point-min)) (end (point-max)))
418 (save-excursion
419 (set-buffer buffer)
420 ;; Keep the end of the accessible portion at the same place
421 ;; unless it is the end of the buffer.
422 (let ((max (if (/= (1+ (buffer-size)) (point-max))
423 (point-max))))
424 (unwind-protect
425 (progn
426 (narrow-to-region (point-min) (1+ (buffer-size)))
427 (goto-char (point-max))
428 (if (eq major-mode 'rmail-mode)
429 ;; Append as a message to an RMAIL file
430 (let ((buffer-read-only nil))
431 ;; This forces RMAIL's message counters to be
432 ;; recomputed when the next RMAIL operation is
433 ;; done on the buffer.
434 ;; See rmail-maybe-set-message-counters.
435 (setq rmail-total-messages nil)
436 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
437 "From: " (user-login-name) "\n"
438 "Date: " (current-time-string) "\n")
439 (insert-buffer-substring curbuf beg end)
ba7f25a3
RS
440 (insert "\n\C-_")
441 (rmail-set-message-counters))
20a8832d
RS
442 (insert-buffer-substring curbuf beg end)))
443 (if max (narrow-to-region (point-min) max))))))
444 ;; Else append to the file directly.
445 (write-region
446 ;; Include a blank line before if file already exists.
fc23ca96 447
20a8832d
RS
448 (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min)))
449 (point-max) (car fcc-list) t)))
450 (setq fcc-list (cdr fcc-list))))
451 (kill-buffer tembuf)))
452
453(defun mail-sent-via ()
454 "Make a Sent-via header line from each To or CC header line."
455 (interactive)
456 (save-excursion
457 (goto-char (point-min))
458 ;; find the header-separator
459 (search-forward (concat "\n" mail-header-separator "\n"))
460 (forward-line -1)
461 ;; put a marker at the end of the header
462 (let ((end (point-marker))
463 (case-fold-search t)
464 to-line)
465 (goto-char (point-min))
466 ;; search for the To: lines and make Sent-via: lines from them
467 ;; search for the next To: line
468 (while (re-search-forward "^\\(to\\|cc\\):" end t)
469 ;; Grab this line plus all its continuations, sans the `to:'.
470 (let ((to-line
471 (buffer-substring (point)
472 (progn
473 (if (re-search-forward "^[^ \t\n]" end t)
474 (backward-char 1)
475 (goto-char end))
476 (point)))))
477 ;; Insert a copy, with altered header field name.
478 (insert-before-markers "Sent-via:" to-line))))))
479\f
480(defun mail-to ()
481 "Move point to end of To-field."
482 (interactive)
483 (expand-abbrev)
484 (mail-position-on-field "To"))
485
486(defun mail-subject ()
487 "Move point to end of Subject-field."
488 (interactive)
489 (expand-abbrev)
490 (mail-position-on-field "Subject"))
491
492(defun mail-cc ()
493 "Move point to end of CC-field. Create a CC field if none."
494 (interactive)
495 (expand-abbrev)
496 (or (mail-position-on-field "cc" t)
497 (progn (mail-position-on-field "to")
498 (insert "\nCC: "))))
499
500(defun mail-bcc ()
501 "Move point to end of BCC-field. Create a BCC field if none."
502 (interactive)
503 (expand-abbrev)
504 (or (mail-position-on-field "bcc" t)
505 (progn (mail-position-on-field "to")
506 (insert "\nBCC: "))))
507
70ee42f7
JB
508(defun mail-fcc ()
509 "Add a new FCC field, with file name completion."
510 (interactive)
511 (expand-abbrev)
512 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
513 (mail-position-on-field "to"))
514 (insert "\nFCC: " (read-file-name "Folder carbon copy: ")))
515
20a8832d
RS
516(defun mail-position-on-field (field &optional soft)
517 (let (end
518 (case-fold-search t))
519 (goto-char (point-min))
08564963 520 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
20a8832d
RS
521 (setq end (match-beginning 0))
522 (goto-char (point-min))
523 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
524 (progn
525 (re-search-forward "^[^ \t]" nil 'move)
526 (beginning-of-line)
527 (skip-chars-backward "\n")
528 t)
529 (or soft
530 (progn (goto-char end)
08564963
JB
531 (insert field ": \n")
532 (skip-chars-backward "\n")))
20a8832d
RS
533 nil)))
534
535(defun mail-text ()
536 "Move point to beginning of text field."
537 (interactive)
538 (goto-char (point-min))
539 (search-forward (concat "\n" mail-header-separator "\n")))
540\f
0d021ccf 541(defun mail-signature (atpoint)
33b4a308 542 "Sign letter with contents of `mail-signature-file'."
0d021ccf 543 (interactive "P")
20a8832d 544 (save-excursion
0d021ccf
ER
545 (or atpoint
546 (goto-char (point-max)))
20a8832d
RS
547 (skip-chars-backward " \t\n")
548 (end-of-line)
0d021ccf
ER
549 (or atpoint
550 (delete-region (point) (point-max)))
1c24b04a 551 (insert "\n\n")
547075d4 552 (insert-file-contents (expand-file-name "~/.signature"))))
20a8832d
RS
553
554(defun mail-fill-yanked-message (&optional justifyp)
555 "Fill the paragraphs of a message yanked into this one.
556Numeric argument means justify as well."
557 (interactive "P")
558 (save-excursion
559 (goto-char (point-min))
560 (search-forward (concat "\n" mail-header-separator "\n") nil t)
561 (fill-individual-paragraphs (point)
562 (point-max)
563 justifyp
564 t)))
565
1c24b04a
RS
566(defun mail-indent-citation ()
567 "Modify text just inserted from a message to be cited.
568The inserted text should be the region.
569When this function returns, the region is again around the modified text.
570
571Normally, indent each nonblank line `mail-indentation-spaces' spaces.
572However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
573 (let ((start (point)))
574 (mail-yank-clear-headers start (mark t))
575 (if (null mail-yank-prefix)
576 (indent-rigidly start (mark t) mail-indentation-spaces)
577 (save-excursion
578 (goto-char start)
579 (while (< (point) (mark t))
580 (insert mail-yank-prefix)
581 (forward-line 1))))))
582
20a8832d
RS
583(defun mail-yank-original (arg)
584 "Insert the message being replied to, if any (in rmail).
585Puts point before the text and mark after.
586Normally, indents each nonblank line ARG spaces (default 3).
587However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
588
589Just \\[universal-argument] as argument means don't indent, insert no prefix,
590and don't delete any header fields."
591 (interactive "P")
592 (if mail-reply-buffer
593 (let ((start (point)))
594 (delete-windows-on mail-reply-buffer)
595 (insert-buffer mail-reply-buffer)
596 (if (consp arg)
597 nil
1c24b04a
RS
598 (goto-char start)
599 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
600 mail-indentation-spaces)))
601 (run-hooks 'mail-yank-hooks)))
3c280f48
RS
602 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
603 ;; It is cleaner to avoid activation, even though the command
604 ;; loop would deactivate the mark because we inserted text.
605 (goto-char (prog1 (mark t)
606 (set-marker (mark-marker) (point) (current-buffer))))
20a8832d
RS
607 (if (not (eolp)) (insert ?\n)))))
608
609(defun mail-yank-clear-headers (start end)
610 (save-excursion
611 (goto-char start)
612 (if (search-forward "\n\n" end t)
613 (save-restriction
614 (narrow-to-region start (point))
615 (goto-char start)
616 (while (let ((case-fold-search t))
617 (re-search-forward mail-yank-ignored-headers nil t))
618 (beginning-of-line)
619 (delete-region (point)
620 (progn (re-search-forward "\n[^ \t]")
621 (forward-char -1)
622 (point))))))))
623\f
624;; Put these last, to reduce chance of lossage from quitting in middle of loading the file.
625
626;;;###autoload
627(defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
e635fdf0
RS
628 "Edit a message to be sent. Prefix arg means resume editing (don't erase).
629When this function returns, the buffer `*mail*' is selected.
630The value is t if the message was newly initialized; otherwise, nil.
20a8832d 631
547075d4
JB
632By default, the signature file `~/.signature' is inserted at the end;
633see the variable `mail-signature'.
20a8832d
RS
634
635\\<mail-mode-map>
636While editing message, type \\[mail-send-and-exit] to send the message and exit.
637
638Various special commands starting with C-c are available in sendmail mode
639to move to message header fields:
640\\{mail-mode-map}
641
642If `mail-self-blind' is non-nil, a BCC to yourself is inserted
643when the message is initialized.
644
645If `mail-default-reply-to' is non-nil, it should be an address (a string);
646a Reply-to: field with that address is inserted.
647
648If `mail-archive-file-name' is non-nil, an FCC field with that file name
649is inserted.
650
651If `mail-setup-hook' is bound, its value is called with no arguments
652after the message is initialized. It can add more default fields.
653
654When calling from a program, the second through fifth arguments
655 TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
656 the initial contents of those header fields.
657 These arguments should not have final newlines.
658The sixth argument REPLYBUFFER is a buffer whose contents
659 should be yanked if the user types C-c C-y.
660The seventh argument ACTIONS is a list of actions to take
661 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
662 when the message is sent, we apply FUNCTION to ARGS.
663 This is how Rmail arranges to mark messages `answered'."
664 (interactive "P")
e635fdf0
RS
665;;; This is commented out because I found it was confusing in practice.
666;;; It is easy enough to rename *mail* by hand with rename-buffer
667;;; if you want to have multiple mail buffers.
668;;; And then you can control which messages to save. --rms.
669;;; (let ((index 1)
670;;; buffer)
671;;; ;; If requested, look for a mail buffer that is modified and go to it.
672;;; (if noerase
673;;; (progn
674;;; (while (and (setq buffer
675;;; (get-buffer (if (= 1 index) "*mail*"
676;;; (format "*mail*<%d>" index))))
677;;; (not (buffer-modified-p buffer)))
678;;; (setq index (1+ index)))
679;;; (if buffer (switch-to-buffer buffer)
680;;; ;; If none exists, start a new message.
681;;; ;; This will never re-use an existing unmodified mail buffer
682;;; ;; (since index is not 1 anymore). Perhaps it should.
683;;; (setq noerase nil))))
684;;; ;; Unless we found a modified message and are happy, start a new message.
685;;; (if (not noerase)
686;;; (progn
687;;; ;; Look for existing unmodified mail buffer.
688;;; (while (and (setq buffer
689;;; (get-buffer (if (= 1 index) "*mail*"
690;;; (format "*mail*<%d>" index))))
691;;; (buffer-modified-p buffer))
692;;; (setq index (1+ index)))
693;;; ;; If none, make a new one.
694;;; (or buffer
695;;; (setq buffer (generate-new-buffer "*mail*")))
696;;; ;; Go there and initialize it.
697;;; (switch-to-buffer buffer)
698;;; (erase-buffer)
699;;; (setq default-directory (expand-file-name "~/"))
700;;; (auto-save-mode auto-save-default)
701;;; (mail-mode)
702;;; (mail-setup to subject in-reply-to cc replybuffer actions)
703;;; (if (and buffer-auto-save-file-name
704;;; (file-exists-p buffer-auto-save-file-name))
705;;; (message "Auto save file for draft message exists; consider M-x mail-recover"))
706;;; t))
707 (switch-to-buffer "*mail*")
708 (setq default-directory (expand-file-name "~/"))
709 (auto-save-mode auto-save-default)
710 (mail-mode)
711 (let (initialized)
712 (and (not noerase)
713 (or (not (buffer-modified-p))
714 (y-or-n-p "Unsent message being composed; erase it? "))
715 (progn (erase-buffer)
716 (mail-setup to subject in-reply-to cc replybuffer actions)
717 (setq initialized t)))
718 (if (and buffer-auto-save-file-name
719 (file-exists-p buffer-auto-save-file-name))
720 (message "Auto save file for draft message exists; consider M-x mail-recover"))
721 initialized))
20a8832d
RS
722
723(defun mail-recover ()
724 "Reread contents of current buffer from its last auto-save file."
725 (interactive)
726 (let ((file-name (make-auto-save-file-name)))
727 (cond ((save-window-excursion
728 (if (not (eq system-type 'vax-vms))
729 (with-output-to-temp-buffer "*Directory*"
730 (buffer-disable-undo standard-output)
731 (call-process "ls" nil standard-output nil "-l" file-name)))
732 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
733 (let ((buffer-read-only nil))
734 (erase-buffer)
735 (insert-file-contents file-name nil)))
736 (t (error "mail-recover cancelled.")))))
737
738;;;###autoload
739(defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
740 "Like `mail' command, but display mail buffer in another window."
741 (interactive "P")
742 (let ((pop-up-windows t))
743 (pop-to-buffer "*mail*"))
744 (mail noerase to subject in-reply-to cc replybuffer sendactions))
745
746;;;###autoload
0cc89026
JB
747(defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
748 "Like `mail' command, but display mail buffer in another frame."
20a8832d 749 (interactive "P")
0cc89026 750 (let ((pop-up-frames t))
20a8832d
RS
751 (pop-to-buffer "*mail*"))
752 (mail noerase to subject in-reply-to cc replybuffer sendactions))
753
754
e635fdf0
RS
755;;;###autoload
756(define-key ctl-x-map "m" 'mail)
757
20a8832d
RS
758;;;###autoload
759(define-key ctl-x-4-map "m" 'mail-other-window)
760
761;;;###autoload
0cc89026 762(define-key ctl-x-5-map "m" 'mail-other-frame)
20a8832d
RS
763
764
765;;; Do not add anything but external entries on this page.
49116ac0
JB
766
767(provide 'sendmail)
768
c88ab9ce 769;;; sendmail.el ends here