entered into RCS
[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))
801ddffa
RS
417 (beg (point-min)) (end (point-max))
418 (beg2 (save-excursion (goto-char (point-min))
419 (forward-line 2) (point))))
20a8832d
RS
420 (save-excursion
421 (set-buffer buffer)
422 ;; Keep the end of the accessible portion at the same place
423 ;; unless it is the end of the buffer.
424 (let ((max (if (/= (1+ (buffer-size)) (point-max))
425 (point-max))))
426 (unwind-protect
0dda0842
RS
427 ;; Code below lifted from rmailout.el
428 ;; function rmail-output-to-rmail-file:
429 (let ((buffer-read-only nil)
430 (msg (and (boundp 'rmail-current-message)
431 rmail-current-message)))
432 ;; If MSG is non-nil, buffer is in RMAIL mode.
433 (if msg
434 (progn
435 (rmail-maybe-set-message-counters)
436 (widen)
437 (narrow-to-region (point-max) (point-max))
20a8832d
RS
438 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
439 "From: " (user-login-name) "\n"
440 "Date: " (current-time-string) "\n")
801ddffa 441 (insert-buffer-substring curbuf beg2 end)
ba7f25a3 442 (insert "\n\C-_")
0dda0842
RS
443 (goto-char (point-min))
444 (widen)
445 (search-backward "\n\^_")
446 (narrow-to-region (point) (point-max))
447 (rmail-count-new-messages t)
448 (rmail-show-message msg)
449 (setq max nil))
450 ;; Output file not in rmail mode
451 ;; => just insert at the end.
452 (narrow-to-region (point-min) (1+ (buffer-size)))
453 (goto-char (point-max))
20a8832d
RS
454 (insert-buffer-substring curbuf beg end)))
455 (if max (narrow-to-region (point-min) max))))))
456 ;; Else append to the file directly.
457 (write-region
458 ;; Include a blank line before if file already exists.
fc23ca96 459
20a8832d
RS
460 (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min)))
461 (point-max) (car fcc-list) t)))
462 (setq fcc-list (cdr fcc-list))))
463 (kill-buffer tembuf)))
464
465(defun mail-sent-via ()
466 "Make a Sent-via header line from each To or CC header line."
467 (interactive)
468 (save-excursion
469 (goto-char (point-min))
470 ;; find the header-separator
471 (search-forward (concat "\n" mail-header-separator "\n"))
472 (forward-line -1)
473 ;; put a marker at the end of the header
474 (let ((end (point-marker))
475 (case-fold-search t)
476 to-line)
477 (goto-char (point-min))
478 ;; search for the To: lines and make Sent-via: lines from them
479 ;; search for the next To: line
480 (while (re-search-forward "^\\(to\\|cc\\):" end t)
481 ;; Grab this line plus all its continuations, sans the `to:'.
482 (let ((to-line
483 (buffer-substring (point)
484 (progn
485 (if (re-search-forward "^[^ \t\n]" end t)
486 (backward-char 1)
487 (goto-char end))
488 (point)))))
489 ;; Insert a copy, with altered header field name.
490 (insert-before-markers "Sent-via:" to-line))))))
491\f
492(defun mail-to ()
493 "Move point to end of To-field."
494 (interactive)
495 (expand-abbrev)
496 (mail-position-on-field "To"))
497
498(defun mail-subject ()
499 "Move point to end of Subject-field."
500 (interactive)
501 (expand-abbrev)
502 (mail-position-on-field "Subject"))
503
504(defun mail-cc ()
505 "Move point to end of CC-field. Create a CC field if none."
506 (interactive)
507 (expand-abbrev)
508 (or (mail-position-on-field "cc" t)
509 (progn (mail-position-on-field "to")
510 (insert "\nCC: "))))
511
512(defun mail-bcc ()
513 "Move point to end of BCC-field. Create a BCC field if none."
514 (interactive)
515 (expand-abbrev)
516 (or (mail-position-on-field "bcc" t)
517 (progn (mail-position-on-field "to")
518 (insert "\nBCC: "))))
519
70ee42f7
JB
520(defun mail-fcc ()
521 "Add a new FCC field, with file name completion."
522 (interactive)
523 (expand-abbrev)
524 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
525 (mail-position-on-field "to"))
526 (insert "\nFCC: " (read-file-name "Folder carbon copy: ")))
527
20a8832d
RS
528(defun mail-position-on-field (field &optional soft)
529 (let (end
530 (case-fold-search t))
531 (goto-char (point-min))
08564963 532 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
20a8832d
RS
533 (setq end (match-beginning 0))
534 (goto-char (point-min))
535 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
536 (progn
537 (re-search-forward "^[^ \t]" nil 'move)
538 (beginning-of-line)
539 (skip-chars-backward "\n")
540 t)
541 (or soft
542 (progn (goto-char end)
08564963
JB
543 (insert field ": \n")
544 (skip-chars-backward "\n")))
20a8832d
RS
545 nil)))
546
547(defun mail-text ()
548 "Move point to beginning of text field."
549 (interactive)
550 (goto-char (point-min))
551 (search-forward (concat "\n" mail-header-separator "\n")))
552\f
0d021ccf 553(defun mail-signature (atpoint)
33b4a308 554 "Sign letter with contents of `mail-signature-file'."
0d021ccf 555 (interactive "P")
20a8832d 556 (save-excursion
0d021ccf
ER
557 (or atpoint
558 (goto-char (point-max)))
20a8832d
RS
559 (skip-chars-backward " \t\n")
560 (end-of-line)
0d021ccf
ER
561 (or atpoint
562 (delete-region (point) (point-max)))
1c24b04a 563 (insert "\n\n")
547075d4 564 (insert-file-contents (expand-file-name "~/.signature"))))
20a8832d
RS
565
566(defun mail-fill-yanked-message (&optional justifyp)
567 "Fill the paragraphs of a message yanked into this one.
568Numeric argument means justify as well."
569 (interactive "P")
570 (save-excursion
571 (goto-char (point-min))
572 (search-forward (concat "\n" mail-header-separator "\n") nil t)
573 (fill-individual-paragraphs (point)
574 (point-max)
575 justifyp
576 t)))
577
1c24b04a
RS
578(defun mail-indent-citation ()
579 "Modify text just inserted from a message to be cited.
580The inserted text should be the region.
581When this function returns, the region is again around the modified text.
582
583Normally, indent each nonblank line `mail-indentation-spaces' spaces.
584However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
585 (let ((start (point)))
586 (mail-yank-clear-headers start (mark t))
587 (if (null mail-yank-prefix)
588 (indent-rigidly start (mark t) mail-indentation-spaces)
589 (save-excursion
590 (goto-char start)
591 (while (< (point) (mark t))
592 (insert mail-yank-prefix)
593 (forward-line 1))))))
594
20a8832d
RS
595(defun mail-yank-original (arg)
596 "Insert the message being replied to, if any (in rmail).
597Puts point before the text and mark after.
598Normally, indents each nonblank line ARG spaces (default 3).
599However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
600
601Just \\[universal-argument] as argument means don't indent, insert no prefix,
602and don't delete any header fields."
603 (interactive "P")
604 (if mail-reply-buffer
605 (let ((start (point)))
606 (delete-windows-on mail-reply-buffer)
607 (insert-buffer mail-reply-buffer)
608 (if (consp arg)
609 nil
1c24b04a
RS
610 (goto-char start)
611 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
612 mail-indentation-spaces)))
613 (run-hooks 'mail-yank-hooks)))
3c280f48
RS
614 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
615 ;; It is cleaner to avoid activation, even though the command
616 ;; loop would deactivate the mark because we inserted text.
617 (goto-char (prog1 (mark t)
618 (set-marker (mark-marker) (point) (current-buffer))))
20a8832d
RS
619 (if (not (eolp)) (insert ?\n)))))
620
621(defun mail-yank-clear-headers (start end)
622 (save-excursion
623 (goto-char start)
624 (if (search-forward "\n\n" end t)
625 (save-restriction
626 (narrow-to-region start (point))
627 (goto-char start)
628 (while (let ((case-fold-search t))
629 (re-search-forward mail-yank-ignored-headers nil t))
630 (beginning-of-line)
631 (delete-region (point)
632 (progn (re-search-forward "\n[^ \t]")
633 (forward-char -1)
634 (point))))))))
635\f
636;; Put these last, to reduce chance of lossage from quitting in middle of loading the file.
637
638;;;###autoload
639(defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
e635fdf0
RS
640 "Edit a message to be sent. Prefix arg means resume editing (don't erase).
641When this function returns, the buffer `*mail*' is selected.
642The value is t if the message was newly initialized; otherwise, nil.
20a8832d 643
547075d4
JB
644By default, the signature file `~/.signature' is inserted at the end;
645see the variable `mail-signature'.
20a8832d
RS
646
647\\<mail-mode-map>
648While editing message, type \\[mail-send-and-exit] to send the message and exit.
649
650Various special commands starting with C-c are available in sendmail mode
651to move to message header fields:
652\\{mail-mode-map}
653
654If `mail-self-blind' is non-nil, a BCC to yourself is inserted
655when the message is initialized.
656
657If `mail-default-reply-to' is non-nil, it should be an address (a string);
658a Reply-to: field with that address is inserted.
659
660If `mail-archive-file-name' is non-nil, an FCC field with that file name
661is inserted.
662
663If `mail-setup-hook' is bound, its value is called with no arguments
664after the message is initialized. It can add more default fields.
665
666When calling from a program, the second through fifth arguments
667 TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
668 the initial contents of those header fields.
669 These arguments should not have final newlines.
670The sixth argument REPLYBUFFER is a buffer whose contents
671 should be yanked if the user types C-c C-y.
672The seventh argument ACTIONS is a list of actions to take
673 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
674 when the message is sent, we apply FUNCTION to ARGS.
675 This is how Rmail arranges to mark messages `answered'."
676 (interactive "P")
e635fdf0
RS
677;;; This is commented out because I found it was confusing in practice.
678;;; It is easy enough to rename *mail* by hand with rename-buffer
679;;; if you want to have multiple mail buffers.
680;;; And then you can control which messages to save. --rms.
681;;; (let ((index 1)
682;;; buffer)
683;;; ;; If requested, look for a mail buffer that is modified and go to it.
684;;; (if noerase
685;;; (progn
686;;; (while (and (setq buffer
687;;; (get-buffer (if (= 1 index) "*mail*"
688;;; (format "*mail*<%d>" index))))
689;;; (not (buffer-modified-p buffer)))
690;;; (setq index (1+ index)))
691;;; (if buffer (switch-to-buffer buffer)
692;;; ;; If none exists, start a new message.
693;;; ;; This will never re-use an existing unmodified mail buffer
694;;; ;; (since index is not 1 anymore). Perhaps it should.
695;;; (setq noerase nil))))
696;;; ;; Unless we found a modified message and are happy, start a new message.
697;;; (if (not noerase)
698;;; (progn
699;;; ;; Look for existing unmodified mail buffer.
700;;; (while (and (setq buffer
701;;; (get-buffer (if (= 1 index) "*mail*"
702;;; (format "*mail*<%d>" index))))
703;;; (buffer-modified-p buffer))
704;;; (setq index (1+ index)))
705;;; ;; If none, make a new one.
706;;; (or buffer
707;;; (setq buffer (generate-new-buffer "*mail*")))
708;;; ;; Go there and initialize it.
709;;; (switch-to-buffer buffer)
710;;; (erase-buffer)
711;;; (setq default-directory (expand-file-name "~/"))
712;;; (auto-save-mode auto-save-default)
713;;; (mail-mode)
714;;; (mail-setup to subject in-reply-to cc replybuffer actions)
715;;; (if (and buffer-auto-save-file-name
716;;; (file-exists-p buffer-auto-save-file-name))
717;;; (message "Auto save file for draft message exists; consider M-x mail-recover"))
718;;; t))
719 (switch-to-buffer "*mail*")
720 (setq default-directory (expand-file-name "~/"))
721 (auto-save-mode auto-save-default)
722 (mail-mode)
723 (let (initialized)
724 (and (not noerase)
725 (or (not (buffer-modified-p))
726 (y-or-n-p "Unsent message being composed; erase it? "))
727 (progn (erase-buffer)
728 (mail-setup to subject in-reply-to cc replybuffer actions)
729 (setq initialized t)))
730 (if (and buffer-auto-save-file-name
731 (file-exists-p buffer-auto-save-file-name))
732 (message "Auto save file for draft message exists; consider M-x mail-recover"))
733 initialized))
20a8832d
RS
734
735(defun mail-recover ()
736 "Reread contents of current buffer from its last auto-save file."
737 (interactive)
738 (let ((file-name (make-auto-save-file-name)))
739 (cond ((save-window-excursion
740 (if (not (eq system-type 'vax-vms))
741 (with-output-to-temp-buffer "*Directory*"
742 (buffer-disable-undo standard-output)
743 (call-process "ls" nil standard-output nil "-l" file-name)))
744 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
745 (let ((buffer-read-only nil))
746 (erase-buffer)
747 (insert-file-contents file-name nil)))
748 (t (error "mail-recover cancelled.")))))
749
750;;;###autoload
751(defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
752 "Like `mail' command, but display mail buffer in another window."
753 (interactive "P")
754 (let ((pop-up-windows t))
755 (pop-to-buffer "*mail*"))
756 (mail noerase to subject in-reply-to cc replybuffer sendactions))
757
758;;;###autoload
0cc89026
JB
759(defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
760 "Like `mail' command, but display mail buffer in another frame."
20a8832d 761 (interactive "P")
0cc89026 762 (let ((pop-up-frames t))
20a8832d
RS
763 (pop-to-buffer "*mail*"))
764 (mail noerase to subject in-reply-to cc replybuffer sendactions))
765
766
e635fdf0
RS
767;;;###autoload
768(define-key ctl-x-map "m" 'mail)
769
20a8832d
RS
770;;;###autoload
771(define-key ctl-x-4-map "m" 'mail-other-window)
772
773;;;###autoload
0cc89026 774(define-key ctl-x-5-map "m" 'mail-other-frame)
20a8832d
RS
775
776
777;;; Do not add anything but external entries on this page.
49116ac0
JB
778
779(provide 'sendmail)
780
c88ab9ce 781;;; sendmail.el ends here