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