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