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