Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / mail / sendmail.el
blob0d6cc1f0046654e2932b24b0d7df24962a97d341
1 ;;; sendmail.el --- mail sending commands for Emacs
3 ;; Copyright (C) 1985-1986, 1992-1996, 1998, 2000-2014 Free Software
4 ;; Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: mail
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This mode provides mail-sending facilities from within Emacs. It is
27 ;; documented in the Emacs user's manual.
29 ;;; Code:
30 (require 'mail-utils)
32 (require 'rfc2047)
34 (defgroup sendmail nil
35 "Mail sending commands for Emacs."
36 :prefix "mail-"
37 :group 'mail)
39 (defcustom mail-setup-with-from t
40 "Non-nil means insert `From:' field when setting up the message."
41 :type 'boolean
42 :group 'sendmail
43 :version "22.1")
45 (defcustom sendmail-program
46 (or (executable-find "sendmail")
47 (cond
48 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
49 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
50 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
51 (t "sendmail")))
52 "Program used to send messages."
53 :version "24.1" ; add executable-find, remove fakemail
54 :group 'mail
55 :type 'file)
57 ;;;###autoload
58 (defcustom mail-from-style 'default
59 "Specifies how \"From:\" fields look.
61 If `nil', they contain just the return address like:
62 king@grassland.com
63 If `parens', they look like:
64 king@grassland.com (Elvis Parsley)
65 If `angles', they look like:
66 Elvis Parsley <king@grassland.com>
68 Otherwise, most addresses look like `angles', but they look like
69 `parens' if `angles' would need quoting and `parens' would not."
70 ;; The value `system-default' is now deprecated.
71 :type '(choice (const :tag "simple" nil)
72 (const parens)
73 (const angles)
74 (const default))
75 :version "20.3"
76 :group 'sendmail)
78 ;;;###autoload
79 (defcustom mail-specify-envelope-from nil
80 "If non-nil, specify the envelope-from address when sending mail.
81 The value used to specify it is whatever is found in
82 the variable `mail-envelope-from', with `user-mail-address' as fallback.
84 On most systems, specifying the envelope-from address is a
85 privileged operation. This variable affects sendmail and
86 smtpmail -- if you use feedmail to send mail, see instead the
87 variable `feedmail-deduce-envelope-from'."
88 :version "21.1"
89 :type 'boolean
90 :group 'sendmail)
92 (defcustom mail-envelope-from nil
93 "If non-nil, designate the envelope-from address when sending mail.
94 This only has an effect if `mail-specify-envelope-from' is non-nil.
95 The value should be either a string, or the symbol `header' (in
96 which case the contents of the \"From\" header of the message
97 being sent is used), or nil (in which case the value of
98 `user-mail-address' is used)."
99 :version "21.1"
100 :type '(choice (string :tag "From-name")
101 (const :tag "Use From: header from message" header)
102 (const :tag "Use `user-mail-address'" nil))
103 :group 'sendmail)
105 ;;;###autoload
106 (defcustom mail-self-blind nil
107 "Non-nil means insert BCC to self in messages to be sent.
108 This is done when the message is initialized,
109 so you can remove or alter the BCC field to override the default."
110 :type 'boolean
111 :group 'sendmail)
113 ;;;###autoload
114 (defcustom mail-interactive t
115 ;; We used to use a default of nil rather than t, but nowadays it is very
116 ;; common for sendmail to be misconfigured, so one cannot rely on the
117 ;; bounce message to be delivered anywhere, least of all to the
118 ;; user's mailbox.
119 "Non-nil means when sending a message wait for and display errors.
120 Otherwise, let mailer send back a message to report errors."
121 :type 'boolean
122 :version "23.1" ; changed from nil to t
123 :group 'sendmail)
125 (defcustom mail-yank-ignored-headers
126 (concat "^"
127 (regexp-opt '("via" "mail-from" "origin" "status" "remailed"
128 "received" "message-id" "summary-line" "to" "subject"
129 "in-reply-to" "return-path" "mail-reply-to"
130 ;; Should really be rmail-attribute-header and
131 ;; rmail-keyword-header, but this file does not
132 ;; require rmail (at run time).
133 "x-rmail-attributes" "x-rmail-keywords"
134 "mail-followup-to") "\\(?:")
135 ":")
136 "Delete these headers from old message when it's inserted in a reply."
137 :type 'regexp
138 :group 'sendmail
139 :version "23.1")
141 ;; Useful to set in site-init.el
142 ;;;###autoload
143 (defcustom send-mail-function
144 ;; Assume smtpmail is the preferred choice if it's already configured.
145 (if (and (boundp 'smtpmail-smtp-server)
146 smtpmail-smtp-server)
147 'smtpmail-send-it 'sendmail-query-once)
148 "Function to call to send the current buffer as mail.
149 The headers should be delimited by a line which is
150 not a valid RFC822 header or continuation line,
151 that matches the variable `mail-header-separator'.
152 This is used by the default mail-sending commands. See also
153 `message-send-mail-function' for use with the Message package."
154 :type '(radio (function-item sendmail-send-it :tag "Use Sendmail package")
155 (function-item sendmail-query-once :tag "Query the user")
156 (function-item smtpmail-send-it :tag "Use SMTPmail package")
157 (function-item feedmail-send-it :tag "Use Feedmail package")
158 (function-item mailclient-send-it :tag "Use Mailclient package")
159 function)
160 :version "24.1"
161 :group 'sendmail)
163 ;;;###autoload
164 (defcustom mail-header-separator (purecopy "--text follows this line--")
165 "Line used to separate headers from text in messages being composed."
166 :type 'string
167 :group 'sendmail)
169 ;; Set up mail-header-separator for use as a category text property.
170 (put 'mail-header-separator 'rear-nonsticky '(category))
171 ;; This was a nice idea, for preventing accidental modification of
172 ;; the separator. But I found it also prevented or obstructed
173 ;; certain deliberate operations, such as copying the separator line
174 ;; up to the top to send myself a copy of an already sent outgoing message
175 ;; and other things. So I turned it off. --rms.
176 ;;(put 'mail-header-separator 'read-only t)
178 ;;;###autoload
179 (defcustom mail-archive-file-name nil
180 "Name of file to write all outgoing messages in, or nil for none.
181 This is normally an mbox file, but for backwards compatibility may also
182 be a Babyl file."
183 :type '(choice file (const nil))
184 :group 'sendmail)
186 ;;;###autoload
187 (defcustom mail-default-reply-to nil
188 "Address to insert as default Reply-to field of outgoing messages.
189 If nil, it will be initialized from the REPLYTO environment variable
190 when you first send mail."
191 :type '(choice (const nil) string)
192 :group 'sendmail)
194 (defcustom mail-alias-file nil
195 "If non-nil, the name of a file to use instead of the sendmail default.
196 This file defines aliases to be expanded by the mailer; this is a different
197 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
198 This variable has no effect unless your system uses sendmail as its mailer.
199 The default file is defined in sendmail's configuration file, e.g.
200 `/etc/aliases'."
201 :type '(choice (const :tag "Sendmail default" nil) file)
202 :group 'sendmail)
204 ;;;###autoload
205 (defcustom mail-personal-alias-file (purecopy "~/.mailrc")
206 "If non-nil, the name of the user's personal mail alias file.
207 This file typically should be in same format as the `.mailrc' file used by
208 the `Mail' or `mailx' program.
209 This file need not actually exist."
210 :type '(choice (const nil) file)
211 :group 'sendmail)
213 ;;;###autoload
214 (defcustom mail-setup-hook nil
215 "Normal hook, run each time a new outgoing message is initialized."
216 :type 'hook
217 :options '(fortune-to-signature spook mail-abbrevs-setup)
218 :group 'sendmail)
220 ;;;###autoload
221 (defvar mail-aliases t
222 "Alist of mail address aliases,
223 or t meaning should be initialized from your mail aliases file.
224 \(The file's name is normally `~/.mailrc', but `mail-personal-alias-file'
225 can specify a different file name.)
226 The alias definitions in the file have this form:
227 alias ALIAS MEANING")
229 (defvar mail-alias-modtime nil
230 "The modification time of your mail alias file when it was last examined.")
232 ;;;###autoload
233 (defcustom mail-yank-prefix "> "
234 "Prefix insert on lines of yanked message being replied to.
235 If this is nil, use indentation, as specified by `mail-indentation-spaces'."
236 :type '(choice (const nil) string)
237 :group 'sendmail)
239 ;;;###autoload
240 (defcustom mail-indentation-spaces 3
241 "Number of spaces to insert at the beginning of each cited line.
242 Used by `mail-yank-original' via `mail-indent-citation'."
243 :type 'integer
244 :group 'sendmail)
246 (defvar mail-yank-hooks nil
247 "Obsolete hook for modifying a citation just inserted in the mail buffer.
248 Each hook function can find the citation between (point) and (mark t).
249 And each hook function should leave point and mark around the citation
250 text as modified.
251 This is a normal hook, misnamed for historical reasons.
252 It is obsolete and mail agents should no longer use it.")
253 (make-obsolete-variable 'mail-yank-hooks 'mail-citation-hook "19.34")
255 ;;;###autoload
256 (defcustom mail-citation-hook nil
257 "Hook for modifying a citation just inserted in the mail buffer.
258 Each hook function can find the citation between (point) and (mark t),
259 and should leave point and mark around the citation text as modified.
260 The hook functions can find the header of the cited message
261 in the variable `mail-citation-header', whether or not this is included
262 in the cited portion of the message.
264 If this hook is entirely empty (nil), a default action is taken
265 instead of no action."
266 :type 'hook
267 :group 'sendmail)
269 (defvar mail-citation-header nil
270 "While running `mail-citation-hook', this variable holds the message header.
271 This enables the hook functions to see the whole message header
272 regardless of what part of it (if any) is included in the cited text.")
274 ;;;###autoload
275 (defcustom mail-citation-prefix-regexp
276 (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[]>|]\\)+")
277 "Regular expression to match a citation prefix plus whitespace.
278 It should match whatever sort of citation prefixes you want to handle,
279 with whitespace before and after; it should also match just whitespace.
280 The default value matches citations like `foo-bar>' plus whitespace."
281 :type 'regexp
282 :group 'sendmail
283 :version "24.1")
285 (defvar mail-abbrevs-loaded nil)
286 (defvar mail-mode-map
287 (let ((map (make-sparse-keymap)))
288 (define-key map "\M-\t" 'completion-at-point)
289 (define-key map "\C-c?" 'describe-mode)
290 (define-key map "\C-c\C-f\C-t" 'mail-to)
291 (define-key map "\C-c\C-f\C-b" 'mail-bcc)
292 (define-key map "\C-c\C-f\C-f" 'mail-fcc)
293 (define-key map "\C-c\C-f\C-c" 'mail-cc)
294 (define-key map "\C-c\C-f\C-s" 'mail-subject)
295 (define-key map "\C-c\C-f\C-r" 'mail-reply-to)
296 (define-key map "\C-c\C-f\C-a" 'mail-mail-reply-to) ; author
297 (define-key map "\C-c\C-f\C-l" 'mail-mail-followup-to) ; list
298 (define-key map "\C-c\C-t" 'mail-text)
299 (define-key map "\C-c\C-y" 'mail-yank-original)
300 (define-key map "\C-c\C-r" 'mail-yank-region)
301 (define-key map [remap split-line] 'mail-split-line)
302 (define-key map "\C-c\C-q" 'mail-fill-yanked-message)
303 (define-key map "\C-c\C-w" 'mail-signature)
304 (define-key map "\C-c\C-c" 'mail-send-and-exit)
305 (define-key map "\C-c\C-s" 'mail-send)
306 (define-key map "\C-c\C-i" 'mail-insert-file)
307 ;; FIXME add this? "b" = bury buffer. It's in the menu-bar.
308 ;;; (define-key map "\C-c\C-b" 'mail-dont-send)
310 (define-key map [menu-bar mail]
311 (cons "Mail" (make-sparse-keymap "Mail")))
313 (define-key map [menu-bar mail attachment]
314 '("Attach File" . mail-add-attachment))
316 (define-key map [menu-bar mail fill]
317 '("Fill Citation" . mail-fill-yanked-message))
319 (define-key map [menu-bar mail yank]
320 '(menu-item "Cite Original" mail-yank-original :enable mail-reply-action))
322 (define-key map [menu-bar mail signature]
323 '("Insert Signature" . mail-signature))
325 (define-key map [menu-bar mail mail-sep]
326 '("--"))
328 (define-key map [menu-bar mail cancel]
329 '("Cancel" . mail-dont-send))
331 (define-key map [menu-bar mail send-stay]
332 '("Send, Keep Editing" . mail-send))
334 (define-key map [menu-bar mail send]
335 '("Send Message" . mail-send-and-exit))
337 (define-key map [menu-bar headers]
338 (cons "Headers" (make-sparse-keymap "Move to Header")))
340 (define-key map [menu-bar headers text]
341 '("Text" . mail-text))
343 (define-key map [menu-bar headers expand-aliases]
344 '("Expand Aliases" . expand-mail-aliases))
346 (define-key map [menu-bar headers mail-reply-to]
347 '("Mail-Reply-To" . mail-mail-reply-to))
349 (define-key map [menu-bar headers mail-followup-to]
350 '("Mail-Followup-To" . mail-mail-followup-to))
352 (define-key map [menu-bar headers reply-to]
353 '("Reply-To" . mail-reply-to))
355 (define-key map [menu-bar headers bcc]
356 '("Bcc" . mail-bcc))
358 (define-key map [menu-bar headers fcc]
359 '("Fcc" . mail-fcc))
361 (define-key map [menu-bar headers cc]
362 '("Cc" . mail-cc))
364 (define-key map [menu-bar headers subject]
365 '("Subject" . mail-subject))
367 (define-key map [menu-bar headers to]
368 '("To" . mail-to))
370 map))
372 (autoload 'build-mail-aliases "mailalias"
373 "Read mail aliases from personal aliases file and set `mail-aliases'.
374 By default, this is the file specified by `mail-personal-alias-file'." t)
376 ;;;###autoload
377 (defcustom mail-signature t
378 "Text inserted at end of mail buffer when a message is initialized.
379 If t, it means to insert the contents of the file `mail-signature-file'.
380 If a string, that string is inserted.
381 (To make a proper signature, the string should begin with \\n\\n-- \\n,
382 which is the standard way to delimit a signature in a message.)
383 Otherwise, it should be an expression; it is evaluated
384 and should insert whatever you want to insert."
385 :type '(choice (const :tag "None" nil)
386 (const :tag "Use `.signature' file" t)
387 (string :tag "String to insert")
388 (sexp :tag "Expression to evaluate"))
389 :group 'sendmail)
390 (put 'mail-signature 'risky-local-variable t)
392 ;;;###autoload
393 (defcustom mail-signature-file (purecopy "~/.signature")
394 "File containing the text inserted at end of mail buffer."
395 :type 'file
396 :group 'sendmail)
398 ;;;###autoload
399 (defcustom mail-default-directory (purecopy "~/")
400 "Value of `default-directory' for Mail mode buffers.
401 This directory is used for auto-save files of Mail mode buffers.
403 Note that Message mode does not use this variable; it auto-saves
404 in `message-auto-save-directory'."
405 :type '(directory :tag "Directory")
406 :group 'sendmail
407 :version "22.1")
409 (defvar mail-reply-action nil)
410 (defvar mail-send-actions nil
411 "A list of actions to be performed upon successful sending of a message.")
412 (defvar mail-return-action nil)
414 ;;;###autoload
415 (defcustom mail-default-headers nil
416 "A string containing header lines, to be inserted in outgoing messages.
417 It can contain newlines, and should end in one. It is inserted
418 before you edit the message, so you can edit or delete the lines."
419 :type '(choice (const nil) string)
420 :group 'sendmail)
422 (defcustom mail-bury-selects-summary t
423 "If non-nil, try to show Rmail summary buffer after returning from mail.
424 The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
425 the Rmail summary buffer before returning, if it exists and this variable
426 is non-nil."
427 :type 'boolean
428 :group 'sendmail)
430 (defcustom mail-send-nonascii 'mime
431 "Specify whether to allow sending non-ASCII characters in mail.
432 If t, that means do allow it. nil means don't allow it.
433 `query' means ask the user each time.
434 `mime' means add an appropriate MIME header if none already present.
435 The default is `mime'.
436 Including non-ASCII characters in a mail message can be problematical
437 for the recipient, who may not know how to decode them properly."
438 :type '(choice (const t) (const nil) (const query) (const mime))
439 :group 'sendmail)
441 (defcustom mail-use-dsn nil
442 "Ask MTA for notification of failed, delayed or successful delivery.
443 Note that only some MTAs (currently only recent versions of Sendmail)
444 support Delivery Status Notification."
445 :group 'sendmail
446 :type '(repeat (radio (const :tag "Failure" failure)
447 (const :tag "Delay" delay)
448 (const :tag "Success" success)))
449 :version "22.1")
451 ;; Note: could use /usr/ucb/mail instead of sendmail;
452 ;; options -t, and -v if not interactive.
453 (defvar mail-mailer-swallows-blank-line nil
454 "Set this non-nil if the system's mailer runs the header and body together.
455 The actual value should be an expression to evaluate that returns
456 non-nil if the problem will actually occur.
457 \(As far as we know, this is not an issue on any system still supported
458 by Emacs.)")
460 (put 'mail-mailer-swallows-blank-line 'risky-local-variable t) ; gets evalled
461 (make-obsolete-variable 'mail-mailer-swallows-blank-line
462 "no need to set this on any modern system."
463 "24.1" 'set)
465 (defvar mail-mode-syntax-table
466 ;; define-derived-mode will make it inherit from text-mode-syntax-table.
467 (let ((st (make-syntax-table)))
468 ;; FIXME this is probably very obsolete now ("percent hack").
469 ;; sending.texi used to say:
470 ;; Mail mode defines the character `%' as a word separator; this
471 ;; is helpful for using the word commands to edit mail addresses.
472 (modify-syntax-entry ?% ". " st)
474 "Syntax table used while in `mail-mode'.")
476 (defvar mail-font-lock-keywords
477 (eval-when-compile
478 (let* ((cite-chars "[>|}]")
479 (cite-prefix "[:alpha:]")
480 (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
481 (list '("^\\(To\\|Newsgroups\\):" . font-lock-function-name-face)
482 '("^\\(B?CC\\|Reply-to\\|Mail-\\(reply\\|followup\\)-to\\):" . font-lock-keyword-face)
483 '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
484 (1 font-lock-comment-face)
485 ;; (2 font-lock-type-face nil t)
487 ;; Use EVAL to delay in case `mail-header-separator' gets changed.
488 '(eval .
489 (let ((separator (if (zerop (length mail-header-separator))
490 " \\`\\' "
491 (regexp-quote mail-header-separator))))
492 (cons (concat "^" separator "$") 'font-lock-warning-face)))
493 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
494 `(,cite-chars
495 (,(concat "\\=[ \t]*"
496 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
497 "\\(" cite-chars "[ \t]*\\)\\)+\\)"
498 "\\(.*\\)")
499 (beginning-of-line) (end-of-line)
500 (1 font-lock-comment-delimiter-face nil t)
501 (5 font-lock-comment-face nil t)))
502 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$"
503 . font-lock-string-face))))
504 "Additional expressions to highlight in Mail mode.")
507 ;;;###autoload
508 (defun sendmail-query-once ()
509 "Query for `send-mail-function' and send mail with it.
510 This also saves the value of `send-mail-function' via Customize."
511 ;; If send-mail-function is already setup, we're incorrectly called
512 ;; a second time, probably because someone's using an old value
513 ;; of send-mail-function.
514 (when (eq send-mail-function 'sendmail-query-once)
515 (sendmail-query-user-about-smtp))
516 (funcall send-mail-function))
518 (defun sendmail-query-user-about-smtp ()
519 (let* ((options `(("mail client" . mailclient-send-it)
520 ,@(when (and sendmail-program
521 (executable-find sendmail-program))
522 '(("transport" . sendmail-send-it)))
523 ("smtp" . smtpmail-send-it)))
524 (choice
525 ;; Query the user.
526 (with-temp-buffer
527 (rename-buffer "*Emacs Mail Setup Help*" t)
528 (insert "\
529 Emacs is about to send an email message, but it has not been
530 configured for sending email. To tell Emacs how to send email:
532 - Type `"
533 (propertize "mail client" 'face 'bold)
534 "' to start your default email client and
535 pass it the message text.\n\n")
536 (and sendmail-program
537 (executable-find sendmail-program)
538 (insert "\
539 - Type `"
540 (propertize "transport" 'face 'bold)
541 "' to invoke the system's mail transport agent
542 (the `"
543 sendmail-program
544 "' program).\n\n"))
545 (insert "\
546 - Type `"
547 (propertize "smtp" 'face 'bold)
548 "' to send mail directly to an \"outgoing mail\" server.
549 (Emacs may prompt you for SMTP settings).
551 Emacs will record your selection and will use it thereafter.
552 To change it later, customize the option `send-mail-function'.\n")
553 (goto-char (point-min))
554 (display-buffer (current-buffer))
555 (let ((completion-ignore-case t))
556 (completing-read "Send mail via: "
557 options nil 'require-match)))))
558 (customize-save-variable 'send-mail-function
559 (cdr (assoc-string choice options t)))))
561 (defun sendmail-sync-aliases ()
562 (when mail-personal-alias-file
563 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
564 (or (equal mail-alias-modtime modtime)
565 (setq mail-alias-modtime modtime
566 mail-aliases t)))))
569 ;;;###autoload
570 (define-mail-user-agent 'sendmail-user-agent
571 'sendmail-user-agent-compose
572 'mail-send-and-exit)
574 ;;;###autoload
575 (defun sendmail-user-agent-compose (&optional to subject other-headers
576 continue switch-function yank-action
577 send-actions return-action
578 &rest ignored)
579 (if switch-function
580 (funcall switch-function "*mail*"))
581 (let ((cc (cdr (assoc-string "cc" other-headers t)))
582 (in-reply-to (cdr (assoc-string "in-reply-to" other-headers t)))
583 (body (cdr (assoc-string "body" other-headers t))))
584 (or (mail continue to subject in-reply-to cc yank-action
585 send-actions return-action)
586 continue
587 (error "Message aborted"))
588 (save-excursion
589 (rfc822-goto-eoh)
590 (while other-headers
591 (unless (member-ignore-case (car (car other-headers))
592 '("in-reply-to" "cc" "body"))
593 (insert (car (car other-headers)) ": "
594 (cdr (car other-headers))
595 (if use-hard-newlines hard-newline "\n")))
596 (setq other-headers (cdr other-headers)))
597 (when body
598 (forward-line 1)
599 (insert body))
600 t)))
602 (defun mail-setup (to subject in-reply-to cc replybuffer
603 actions return-action)
604 (or mail-default-reply-to
605 (setq mail-default-reply-to (getenv "REPLYTO")))
606 (sendmail-sync-aliases)
607 (when (eq mail-aliases t)
608 (setq mail-aliases nil)
609 (and mail-personal-alias-file
610 (file-exists-p mail-personal-alias-file)
611 (build-mail-aliases)))
612 ;; Don't leave this around from a previous message.
613 (kill-local-variable 'buffer-file-coding-system)
614 ;; This doesn't work for enable-multibyte-characters.
615 ;; (kill-local-variable 'enable-multibyte-characters)
616 (set-buffer-multibyte (default-value 'enable-multibyte-characters))
617 (if current-input-method
618 (deactivate-input-method))
620 ;; Local variables for Mail mode.
621 (setq mail-send-actions actions)
622 (setq mail-reply-action replybuffer)
623 (setq mail-return-action return-action)
625 (goto-char (point-min))
626 (if mail-setup-with-from
627 (mail-insert-from-field))
628 (insert "To: ")
629 (save-excursion
630 (if to
631 ;; Here removed code to extract names from within <...>
632 ;; on the assumption that mail-strip-quoted-names
633 ;; has been called and has done so.
634 (let ((fill-prefix "\t")
635 (address-start (point)))
636 (insert to "\n")
637 (fill-region-as-paragraph address-start (point-max))
638 (goto-char (point-max))
639 (unless (bolp)
640 (newline)))
641 (newline))
642 (if cc
643 (let ((fill-prefix "\t")
644 (address-start (progn (insert "CC: ") (point))))
645 (insert cc "\n")
646 (fill-region-as-paragraph address-start (point-max))
647 (goto-char (point-max))
648 (unless (bolp)
649 (newline))))
650 (if in-reply-to
651 (let ((fill-prefix "\t")
652 (fill-column 78)
653 (address-start (point)))
654 (insert "In-reply-to: " in-reply-to "\n")
655 (fill-region-as-paragraph address-start (point-max))
656 (goto-char (point-max))
657 (unless (bolp)
658 (newline))))
659 (insert "Subject: " (or subject "") "\n")
660 (if mail-default-headers
661 (insert mail-default-headers))
662 (if mail-default-reply-to
663 (insert "Reply-to: " mail-default-reply-to "\n"))
664 (if mail-self-blind
665 (insert "BCC: " user-mail-address "\n"))
666 (if mail-archive-file-name
667 (insert "FCC: " mail-archive-file-name "\n"))
668 (put-text-property (point)
669 (progn
670 (insert mail-header-separator "\n")
671 (1- (point)))
672 'category 'mail-header-separator)
673 ;; Insert the signature. But remember the beginning of the message.
674 (if to (setq to (point)))
675 (if mail-signature (mail-signature t))
676 (goto-char (point-max))
677 (or (bolp) (newline)))
678 (if to (goto-char to))
679 (or to subject in-reply-to
680 (set-buffer-modified-p nil))
681 (run-hooks 'mail-setup-hook))
683 (defcustom mail-mode-hook nil
684 "Hook run by Mail mode.
685 When composing a mail, this runs immediately after creating, or
686 switching to, the `*mail*' buffer. See also `mail-setup-hook'."
687 :group 'sendmail
688 :type 'hook
689 :options '(footnote-mode))
691 (defvar mail-mode-abbrev-table text-mode-abbrev-table)
692 (defvar mail-encode-mml)
693 ;;;###autoload
694 (define-derived-mode mail-mode text-mode "Mail"
695 "Major mode for editing mail to be sent.
696 Like Text Mode but with these additional commands:
698 \\[mail-send] mail-send (send the message)
699 \\[mail-send-and-exit] mail-send-and-exit (send the message and exit)
701 Here are commands that move to a header field (and create it if there isn't):
702 \\[mail-to] move to To: \\[mail-subject] move to Subj:
703 \\[mail-bcc] move to BCC: \\[mail-cc] move to CC:
704 \\[mail-fcc] move to FCC: \\[mail-reply-to] move to Reply-To:
705 \\[mail-mail-reply-to] move to Mail-Reply-To:
706 \\[mail-mail-followup-to] move to Mail-Followup-To:
707 \\[mail-text] move to message text.
708 \\[mail-signature] mail-signature (insert `mail-signature-file' file).
709 \\[mail-yank-original] mail-yank-original (insert current message, in Rmail).
710 \\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked).
711 \\[mail-insert-file] insert a text file into the message.
712 \\[mail-add-attachment] attach to the message a file as binary attachment.
713 Turning on Mail mode runs the normal hooks `text-mode-hook' and
714 `mail-mode-hook' (in that order)."
715 (make-local-variable 'mail-reply-action)
716 (make-local-variable 'mail-send-actions)
717 (make-local-variable 'mail-return-action)
718 (make-local-variable 'mail-encode-mml)
719 (setq mail-encode-mml nil)
720 (setq buffer-offer-save t)
721 (make-local-variable 'font-lock-defaults)
722 (setq font-lock-defaults '(mail-font-lock-keywords t t))
723 (make-local-variable 'paragraph-separate)
724 (make-local-variable 'normal-auto-fill-function)
725 (setq normal-auto-fill-function 'mail-mode-auto-fill)
726 (make-local-variable 'fill-paragraph-function)
727 (setq fill-paragraph-function 'mail-mode-fill-paragraph)
728 ;; Allow using comment commands to add/remove quoting (this only does
729 ;; anything if mail-yank-prefix is set to a non-nil value).
730 (set (make-local-variable 'comment-start) mail-yank-prefix)
731 (if mail-yank-prefix
732 (set (make-local-variable 'comment-start-skip)
733 (concat "^" (regexp-quote mail-yank-prefix) "[ \t]*")))
734 (make-local-variable 'adaptive-fill-regexp)
735 ;; Also update the paragraph-separate entry if you change this.
736 (setq adaptive-fill-regexp
737 (concat "[ \t]*[-[:alnum:]]+>+[ \t]*\\|"
738 adaptive-fill-regexp))
739 (make-local-variable 'adaptive-fill-first-line-regexp)
740 (setq adaptive-fill-first-line-regexp
741 (concat "[ \t]*[-[:alnum:]]*>+[ \t]*\\|"
742 adaptive-fill-first-line-regexp))
743 (add-hook 'completion-at-point-functions #'mail-completion-at-point-function
744 nil 'local)
745 ;; `-- ' precedes the signature. `-----' appears at the start of the
746 ;; lines that delimit forwarded messages.
747 ;; Lines containing just >= 3 dashes, perhaps after whitespace,
748 ;; are also sometimes used and should be separators.
749 (setq paragraph-separate
750 (concat (regexp-quote mail-header-separator)
751 ;; This is based on adaptive-fill-regexp (presumably
752 ;; the idea is to allow navigation etc of cited paragraphs).
753 "$\\|\t*[-–!|#%;>*·•‣⁃◦ ]+$"
754 "\\|[ \t]*[-[:alnum:]]*>+[ \t]*$\\|[ \t]*$\\|"
755 "--\\( \\|-+\\)$\\|"
756 page-delimiter)))
759 (defun mail-header-end ()
760 "Return the buffer location of the end of headers, as a number."
761 (save-restriction
762 (widen)
763 (save-excursion
764 (rfc822-goto-eoh)
765 (point))))
767 (defun mail-text-start ()
768 "Return the buffer location of the start of text, as a number."
769 (save-restriction
770 (widen)
771 (save-excursion
772 (rfc822-goto-eoh)
773 (forward-line 1)
774 (point))))
776 (defun mail-sendmail-delimit-header ()
777 "Set up whatever header delimiter convention sendmail will use.
778 Concretely: replace the first blank line in the header with the separator."
779 (rfc822-goto-eoh)
780 (insert mail-header-separator)
781 (point))
783 (defun mail-sendmail-undelimit-header ()
784 "Remove header separator to put the message in correct form for sendmail.
785 Leave point at the start of the delimiter line."
786 (rfc822-goto-eoh)
787 (delete-region (point) (progn (end-of-line) (point))))
789 (defun mail-mode-auto-fill ()
790 "Carry out Auto Fill for Mail mode.
791 If within the headers, this makes the new lines into continuation lines."
792 (if (< (point) (mail-header-end))
793 (let ((old-line-start (line-beginning-position)))
794 (if (do-auto-fill)
795 (save-excursion
796 (beginning-of-line)
797 (while (not (eq (point) old-line-start))
798 ;; Use insert-before-markers in case we're inserting
799 ;; before the saved value of point (which is common).
800 (insert-before-markers " ")
801 (forward-line -1))
802 t)))
803 (do-auto-fill)))
805 (defun mail-mode-fill-paragraph (arg)
806 ;; Do something special only if within the headers.
807 (if (< (point) (mail-header-end))
808 (let (beg end fieldname)
809 (when (prog1 (re-search-backward "^[-a-zA-Z]+:" nil 'yes)
810 (setq beg (point)))
811 (setq fieldname
812 (downcase (buffer-substring beg (1- (match-end 0))))))
813 (forward-line 1)
814 ;; Find continuation lines and get rid of their continuation markers.
815 (while (looking-at "[ \t]")
816 (delete-horizontal-space)
817 (forward-line 1))
818 (setq end (point-marker))
819 (goto-char beg)
820 ;; If this field contains addresses,
821 ;; make sure we can fill after each address.
822 (if (member fieldname
823 '("to" "cc" "bcc" "from" "reply-to"
824 "mail-reply-to" "mail-followup-to"
825 "resent-to" "resent-cc" "resent-bcc"
826 "resent-from" "resent-reply-to"))
827 (while (search-forward "," end t)
828 (or (looking-at "[ \t]")
829 (insert " "))))
830 (fill-region-as-paragraph beg end arg)
831 ;; Mark all lines except the first as continuations.
832 (goto-char beg)
833 (forward-line 1)
834 (while (< (point) end)
835 (insert " ")
836 (forward-line 1))
837 (move-marker end nil)
838 t)))
840 ;; User-level commands for sending.
842 (defun mail-send-and-exit (&optional arg)
843 "Send message like `mail-send', then, if no errors, exit from mail buffer.
844 Prefix arg means don't delete this window."
845 (interactive "P")
846 (mail-send)
847 (mail-bury arg))
849 (defun mail-dont-send (&optional arg)
850 "Don't send the message you have been editing.
851 Prefix arg means don't delete this window."
852 (interactive "P")
853 (mail-bury arg))
855 (defun mail-bury (&optional arg)
856 "Bury this mail buffer."
857 (let ((newbuf (other-buffer (current-buffer)))
858 (return-action mail-return-action))
859 (bury-buffer (current-buffer))
860 ;; If there is an Rmail buffer, return to it nicely
861 ;; even if this message was not started by an Rmail command.
862 (unless return-action
863 (dolist (buffer (buffer-list))
864 (if (and (eq (buffer-local-value 'major-mode buffer) 'rmail-mode)
865 (null return-action)
866 ;; Don't match message-viewer buffer.
867 (not (string-match "\\` " (buffer-name buffer))))
868 (setq return-action `(rmail-mail-return ,buffer)))))
869 (if (and (null arg) return-action)
870 (apply (car return-action) (cdr return-action))
871 (switch-to-buffer newbuf))))
873 (defcustom mail-send-hook nil
874 "Hook run just before sending a message."
875 :type 'hook
876 :options '(flyspell-mode-off)
877 :group 'sendmail)
879 ;;;###autoload
880 (defcustom mail-mailing-lists nil
881 "List of mailing list addresses the user is subscribed to.
882 The variable is used to trigger insertion of the \"Mail-Followup-To\"
883 header when sending a message to a mailing list."
884 :type '(repeat string)
885 :group 'sendmail)
887 (declare-function mml-to-mime "mml" ())
889 (defun mail-send ()
890 "Send the message in the current buffer.
891 If `mail-interactive' is non-nil, wait for success indication
892 or error messages, and inform user.
893 Otherwise any failure is reported in a message back to
894 the user from the mailer."
895 (interactive)
896 (if (if buffer-file-name
897 (y-or-n-p "Send buffer contents as mail message? ")
898 (or (buffer-modified-p)
899 (y-or-n-p "Message already sent; resend? ")))
900 (let ((inhibit-read-only t)
901 (opoint (point))
902 (ml (when mail-mailing-lists
903 ;; The surrounding regexp assumes the use of
904 ;; `mail-strip-quoted-names' on addresses before matching
905 ;; Cannot deal with full RFC 822 freedom, but that is
906 ;; unlikely to be problematic.
907 (concat "\\(?:[[:space:];,]\\|\\`\\)"
908 (regexp-opt mail-mailing-lists t)
909 "\\(?:[[:space:];,]\\|\\'\\)"))))
910 ;; If there are mailing lists defined
911 (when ml
912 (save-excursion
913 (let* ((to (mail-fetch-field "to" nil t))
914 (cc (mail-fetch-field "cc" nil t))
915 (new-header-values ; To: and Cc:
916 (mail-strip-quoted-names
917 (concat to (when cc (concat ", " cc))))))
918 ;; If message goes to known mailing list ...
919 (when (string-match ml new-header-values)
920 ;; Add Mail-Followup-To if none yet
921 (unless (mail-fetch-field "mail-followup-to")
922 (goto-char (mail-header-end))
923 (insert "Mail-Followup-To: "
924 (let ((l))
925 (mapc
926 ;; remove duplicates
927 (lambda (e)
928 (unless (member e l)
929 (push e l)))
930 (split-string new-header-values
931 ",[[:space:]]+" t))
932 (mapconcat 'identity l ", "))
933 "\n"))
934 ;; Add Mail-Reply-To if none yet
935 (unless (mail-fetch-field "mail-reply-to")
936 (goto-char (mail-header-end))
937 (insert "Mail-Reply-To: "
938 (or (mail-fetch-field "reply-to")
939 user-mail-address)
940 "\n"))))))
941 (unless (memq mail-send-nonascii '(t mime))
942 (goto-char (point-min))
943 (skip-chars-forward "\0-\177")
944 (or (= (point) (point-max))
945 (if (eq mail-send-nonascii 'query)
946 (or (y-or-n-p "Message contains non-ASCII characters; send anyway? ")
947 (error "Aborted"))
948 (error "Message contains non-ASCII characters"))))
949 ;; Complain about any invalid line.
950 (goto-char (point-min))
951 (re-search-forward (regexp-quote mail-header-separator) (point-max) t)
952 (let ((header-end (or (match-beginning 0) (point-max))))
953 (goto-char (point-min))
954 (while (< (point) header-end)
955 (unless (looking-at "[ \t]\\|.*:\\|$")
956 (push-mark opoint)
957 (error "Invalid header line (maybe a continuation line lacks initial whitespace)"))
958 (forward-line 1)))
959 (goto-char opoint)
960 (when mail-encode-mml
961 (mml-to-mime)
962 (setq mail-encode-mml nil))
963 (run-hooks 'mail-send-hook)
964 (message "Sending...")
965 (funcall send-mail-function)
966 ;; Now perform actions on successful sending.
967 (while mail-send-actions
968 (condition-case nil
969 (apply (car (car mail-send-actions))
970 (cdr (car mail-send-actions)))
971 (error))
972 (setq mail-send-actions (cdr mail-send-actions)))
973 (message "Sending...done")
974 ;; If buffer has no file, mark it as unmodified and delete auto-save.
975 (if (not buffer-file-name)
976 (progn
977 (set-buffer-modified-p nil)
978 (delete-auto-save-file-if-necessary t))))))
980 (defun mail-envelope-from ()
981 "Return the envelope mail address to use when sending mail.
982 This function uses `mail-envelope-from'."
983 (if (eq mail-envelope-from 'header)
984 (nth 1 (mail-extract-address-components
985 (mail-fetch-field "From")))
986 mail-envelope-from))
988 ;; This does the real work of sending a message via sendmail.
989 ;; It is called via the variable send-mail-function.
991 ;;;###autoload
992 (defvar sendmail-coding-system nil
993 "Coding system for encoding the outgoing mail.
994 This has higher priority than the default `buffer-file-coding-system'
995 and `default-sendmail-coding-system',
996 but lower priority than the local value of `buffer-file-coding-system'.
997 See also the function `select-message-coding-system'.")
999 ;;;###autoload
1000 (defvar default-sendmail-coding-system 'iso-latin-1
1001 "Default coding system for encoding the outgoing mail.
1002 This variable is used only when `sendmail-coding-system' is nil.
1004 This variable is set/changed by the command `set-language-environment'.
1005 User should not set this variable manually,
1006 instead use `sendmail-coding-system' to get a constant encoding
1007 of outgoing mails regardless of the current language environment.
1008 See also the function `select-message-coding-system'.")
1010 (defun mail-insert-from-field ()
1011 "Insert the \"From:\" field of a mail header.
1012 The style of the field is determined by the variable `mail-from-style'.
1013 This function does not perform RFC2047 encoding."
1014 (let* ((login user-mail-address)
1015 (fullname (user-full-name))
1016 (quote-fullname nil))
1017 (if (string-match "[^\0-\177]" fullname)
1018 (setq quote-fullname t))
1019 (cond ((null mail-from-style)
1020 (insert "From: " login "\n"))
1021 ;; This is deprecated.
1022 ((eq mail-from-style 'system-default)
1023 nil)
1024 ((or (eq mail-from-style 'angles)
1025 (and (not (eq mail-from-style 'parens))
1026 ;; Use angles if no quoting is needed, or if
1027 ;; parens would need quoting too.
1028 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
1029 (let ((tmp (concat fullname nil)))
1030 (while (string-match "([^()]*)" tmp)
1031 (aset tmp (match-beginning 0) ?-)
1032 (aset tmp (1- (match-end 0)) ?-))
1033 (string-match "[\\()]" tmp)))))
1034 (insert "From: " fullname)
1035 (let ((fullname-start (+ (point-min) 6))
1036 (fullname-end (point-marker)))
1037 (goto-char fullname-start)
1038 ;; Look for a character that cannot appear unquoted
1039 ;; according to RFC 822.
1040 (if (or (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
1041 fullname-end 1)
1042 quote-fullname)
1043 (progn
1044 ;; Quote fullname, escaping specials.
1045 (goto-char fullname-start)
1046 (insert "\"")
1047 (while (re-search-forward "[\"\\]"
1048 fullname-end 1)
1049 (replace-match "\\\\\\&" t))
1050 (insert "\""))))
1051 (insert " <" login ">\n"))
1052 ;; 'parens or default
1054 (insert "From: " login " (")
1055 (let ((fullname-start (point)))
1056 (if quote-fullname
1057 (insert "\""))
1058 (insert fullname)
1059 (if quote-fullname
1060 (insert "\""))
1061 (let ((fullname-end (point-marker)))
1062 (goto-char fullname-start)
1063 ;; RFC 822 says \ and nonmatching parentheses
1064 ;; must be escaped in comments.
1065 ;; Escape every instance of ()\ ...
1066 (while (re-search-forward "[()\\]" fullname-end 1)
1067 (replace-match "\\\\\\&" t))
1068 ;; ... then undo escaping of matching parentheses,
1069 ;; including matching nested parentheses.
1070 (goto-char fullname-start)
1071 (while (re-search-forward
1072 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
1073 fullname-end 1)
1074 (replace-match "\\1(\\3)" t)
1075 (goto-char fullname-start))))
1076 (insert ")\n")))))
1078 (defun mail-encode-header (beg end)
1079 "Encode the mail header between BEG and END according to RFC2047.
1080 Return non-nil if and only if some part of the header is encoded."
1081 (save-restriction
1082 (narrow-to-region beg end)
1083 (let* ((selected (select-message-coding-system))
1084 (mm-coding-system-priorities
1085 (if (and selected (coding-system-get selected :mime-charset))
1086 (cons selected mm-coding-system-priorities)
1087 mm-coding-system-priorities))
1088 (tick (buffer-chars-modified-tick))
1089 ;; Many mailers, including Gnus, passes a message of which
1090 ;; the header is already encoded, so this is necessary to
1091 ;; prevent it from being encoded again.
1092 (rfc2047-encode-encoded-words nil))
1093 (rfc2047-encode-message-header)
1094 (= tick (buffer-chars-modified-tick)))))
1096 ;; Normally you will not need to modify these options unless you are
1097 ;; using some non-genuine substitute for sendmail which does not
1098 ;; implement each and every option that the original supports.
1099 ;; E.g., ssmtp does not support "-odb", so, if your site uses it,
1100 ;; you will need to modify `sendmail-error-reporting-non-interactive'
1101 ;; in your site-init.el.
1102 (defvar sendmail-error-reporting-interactive
1103 ;; These mean "report errors to terminal" and "deliver interactively"
1104 '("-oep" "-odi"))
1105 (defvar sendmail-error-reporting-non-interactive
1106 ;; These mean "report errors by mail" and "deliver in background".
1107 '("-oem" "-odb"))
1109 (defun sendmail-send-it ()
1110 "Send the current mail buffer using the Sendmail package.
1111 This is a suitable value for `send-mail-function'. It sends using the
1112 external program defined by `sendmail-program'."
1113 (require 'mail-utils)
1114 (let ((errbuf (if mail-interactive
1115 (generate-new-buffer " sendmail errors")
1117 (error nil)
1118 (tembuf (generate-new-buffer " sendmail temp"))
1119 (multibyte enable-multibyte-characters)
1120 (case-fold-search nil)
1121 (selected-coding (select-message-coding-system))
1122 resend-to-addresses
1123 delimline
1124 fcc-was-found
1125 (mailbuf (current-buffer))
1126 ;; Examine these variables now, so that
1127 ;; local binding in the mail buffer will take effect.
1128 (envelope-from
1129 (and mail-specify-envelope-from
1130 (or (mail-envelope-from) user-mail-address))))
1131 (unwind-protect
1132 (with-current-buffer tembuf
1133 (erase-buffer)
1134 (unless multibyte
1135 (set-buffer-multibyte nil))
1136 (insert-buffer-substring mailbuf)
1137 (set-buffer-file-coding-system selected-coding)
1138 (goto-char (point-max))
1139 ;; require one newline at the end.
1140 (or (= (preceding-char) ?\n)
1141 (insert ?\n))
1142 ;; Change header-delimiter to be what sendmail expects.
1143 (goto-char (mail-header-end))
1144 (delete-region (point) (progn (end-of-line) (point)))
1145 (setq delimline (point-marker))
1146 (sendmail-sync-aliases)
1147 (if mail-aliases
1148 (expand-mail-aliases (point-min) delimline))
1149 (goto-char (point-min))
1150 ;; Ignore any blank lines in the header
1151 (while (and (re-search-forward "\n\n\n*" delimline t)
1152 (< (point) delimline))
1153 (replace-match "\n"))
1154 (goto-char (point-min))
1155 ;; Look for Resent- headers. They require sending
1156 ;; the message specially.
1157 (let ((case-fold-search t))
1158 (goto-char (point-min))
1159 (while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
1160 ;; Put a list of such addresses in resend-to-addresses.
1161 (setq resend-to-addresses
1162 (save-restriction
1163 (narrow-to-region (point)
1164 (save-excursion
1165 (forward-line 1)
1166 (while (looking-at "^[ \t]")
1167 (forward-line 1))
1168 (point)))
1169 (append (mail-parse-comma-list)
1170 resend-to-addresses)))
1171 ;; Delete Resent-BCC ourselves
1172 (if (save-excursion (beginning-of-line)
1173 (looking-at "resent-bcc"))
1174 (delete-region (line-beginning-position)
1175 (line-beginning-position 2))))
1176 ;; Apparently this causes a duplicate Sender.
1177 ;; ;; If the From is different than current user, insert Sender.
1178 ;; (goto-char (point-min))
1179 ;; (and (re-search-forward "^From:" delimline t)
1180 ;; (progn
1181 ;; (require 'mail-utils)
1182 ;; (not (string-equal
1183 ;; (mail-strip-quoted-names
1184 ;; (save-restriction
1185 ;; (narrow-to-region (point-min) delimline)
1186 ;; (mail-fetch-field "From")))
1187 ;; (user-login-name))))
1188 ;; (progn
1189 ;; (forward-line 1)
1190 ;; (insert "Sender: " (user-login-name) "\n")))
1191 ;; Don't send out a blank subject line
1192 (goto-char (point-min))
1193 (if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t)
1194 (replace-match "")
1195 ;; This one matches a Subject just before the header delimiter.
1196 (if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t)
1197 (= (match-end 0) delimline))
1198 (replace-match "")))
1199 ;; Put the "From:" field in unless for some odd reason
1200 ;; they put one in themselves.
1201 (goto-char (point-min))
1202 (if (not (re-search-forward "^From:" delimline t))
1203 (mail-insert-from-field))
1204 ;; Possibly add a MIME header for the current coding system
1205 (let (charset where-content-type)
1206 (goto-char (point-min))
1207 (setq where-content-type
1208 (re-search-forward "^Content-type:" delimline t))
1209 (goto-char (point-min))
1210 (and (eq mail-send-nonascii 'mime)
1211 (not (re-search-forward "^MIME-version:" delimline t))
1212 (progn (skip-chars-forward "\0-\177")
1213 (/= (point) (point-max)))
1214 selected-coding
1215 (setq charset
1216 (coding-system-get selected-coding :mime-charset))
1217 (progn
1218 (goto-char delimline)
1219 (insert "MIME-version: 1.0\n"
1220 "Content-type: text/plain; charset="
1221 (symbol-name charset)
1222 "\nContent-Transfer-Encoding: 8bit\n")
1223 ;; The character set we will actually use
1224 ;; should override any specified in the message itself.
1225 (when where-content-type
1226 (goto-char where-content-type)
1227 (delete-region (point-at-bol)
1228 (progn (forward-line 1) (point)))))))
1229 ;; Insert an extra newline if we need it to work around
1230 ;; Sun's bug that swallows newlines.
1231 (goto-char (1+ delimline))
1232 (if (eval mail-mailer-swallows-blank-line)
1233 (newline))
1234 ;; Find and handle any FCC fields.
1235 (goto-char (point-min))
1236 (if (re-search-forward "^FCC:" delimline t)
1237 (progn
1238 (setq fcc-was-found t)
1239 (mail-do-fcc delimline)))
1240 (if mail-interactive
1241 (with-current-buffer errbuf
1242 (erase-buffer))))
1243 ;; Encode the header according to RFC2047.
1244 (mail-encode-header (point-min) delimline)
1245 (goto-char (point-min))
1246 (if (let ((case-fold-search t))
1247 (or resend-to-addresses
1248 (re-search-forward "^To:\\|^cc:\\|^bcc:"
1249 delimline t)))
1250 (let* ((default-directory "/")
1251 (coding-system-for-write selected-coding)
1252 (args
1253 (append (list (point-min) (point-max)
1254 sendmail-program
1255 nil errbuf nil "-oi")
1256 (and envelope-from
1257 (list "-f" envelope-from))
1258 ;; ;; Don't say "from root" if running under su.
1259 ;; (and (equal (user-real-login-name) "root")
1260 ;; (list "-f" (user-login-name)))
1261 (and mail-alias-file
1262 (list (concat "-oA" mail-alias-file)))
1263 (if mail-interactive
1264 sendmail-error-reporting-interactive
1265 sendmail-error-reporting-non-interactive)
1266 ;; Get the addresses from the message
1267 ;; unless this is a resend.
1268 ;; We must not do that for a resend
1269 ;; because we would find the original addresses.
1270 ;; For a resend, include the specific addresses.
1271 (or resend-to-addresses
1272 '("-t")
1274 (if mail-use-dsn
1275 (list "-N" (mapconcat 'symbol-name
1276 mail-use-dsn ",")))
1279 (exit-value (apply 'call-process-region args)))
1280 (cond ((or (null exit-value) (eq 0 exit-value)))
1281 ((numberp exit-value)
1282 (setq error t)
1283 (error "Sending...failed with exit value %d" exit-value))
1284 ((stringp exit-value)
1285 (setq error t)
1286 (error "Sending...terminated by signal: %s" exit-value))
1288 (setq error t)
1289 (error "SENDMAIL-SEND-IT -- fall through: %S" exit-value))))
1290 (or fcc-was-found
1291 (error "No recipients")))
1292 (if mail-interactive
1293 (with-current-buffer errbuf
1294 (goto-char (point-min))
1295 (while (re-search-forward "\n\n* *" nil t)
1296 (replace-match "; "))
1297 (unless (zerop (buffer-size))
1298 (setq error t)
1299 (error "Sending...failed to %s"
1300 (buffer-substring (point-min) (point-max)))))))
1301 (kill-buffer tembuf)
1302 (if (and (bufferp errbuf)
1303 (not error))
1304 (kill-buffer errbuf)
1305 (switch-to-buffer-other-window errbuf)))))
1307 (autoload 'rmail-output-to-rmail-buffer "rmailout")
1309 (defun mail-do-fcc (header-end)
1310 "Find and act on any FCC: headers in the current message before HEADER-END.
1311 If a buffer is visiting the FCC file, append to it before
1312 offering to save it, if it was modified initially. If this is an
1313 Rmail buffer, update Rmail as needed. If there is no buffer,
1314 just append to the file, in Babyl format if necessary."
1315 (unless (markerp header-end)
1316 (error "Value of `header-end' must be a marker"))
1317 (let (fcc-list
1318 (mailbuf (current-buffer))
1319 (time (current-time)))
1320 (save-excursion
1321 (goto-char (point-min))
1322 (let ((case-fold-search t))
1323 (while (re-search-forward "^FCC:[ \t]*" header-end t)
1324 (push (buffer-substring (point)
1325 (progn
1326 (end-of-line)
1327 (skip-chars-backward " \t")
1328 (point)))
1329 fcc-list)
1330 (delete-region (match-beginning 0)
1331 (progn (forward-line 1) (point)))))
1332 (with-temp-buffer
1333 ;; This initial newline is not written out if we create a new
1334 ;; file (see below).
1335 (insert "\nFrom " (user-login-name) " " (current-time-string time) "\n")
1336 ;; Insert the time zone before the year.
1337 (forward-char -1)
1338 (forward-word -1)
1339 (require 'mail-utils)
1340 (insert (mail-rfc822-time-zone time) " ")
1341 (goto-char (point-max))
1342 (insert-buffer-substring mailbuf)
1343 ;; Make sure messages are separated.
1344 (goto-char (point-max))
1345 (insert ?\n)
1346 (goto-char 2)
1347 ;; ``Quote'' "^From " as ">From "
1348 ;; (note that this isn't really quoting, as there is no requirement
1349 ;; that "^[>]+From " be quoted in the same transparent way.)
1350 (let ((case-fold-search nil))
1351 (while (search-forward "\nFrom " nil t)
1352 (forward-char -5)
1353 (insert ?>)))
1354 (dolist (fcc fcc-list)
1355 (let* ((buffer (find-buffer-visiting fcc))
1356 (curbuf (current-buffer))
1357 dont-write-the-file
1358 buffer-matches-file
1359 (beg (point-min)) ; the initial blank line
1360 (end (point-max))
1361 ;; After the ^From line.
1362 (beg2 (save-excursion (goto-char (point-min))
1363 (forward-line 2) (point))))
1364 (if buffer
1365 ;; File is present in a buffer => append to that buffer.
1366 (with-current-buffer buffer
1367 (setq buffer-matches-file
1368 (and (not (buffer-modified-p))
1369 (verify-visited-file-modtime buffer)))
1370 (let ((msg (bound-and-true-p rmail-current-message))
1371 (buffer-read-only nil))
1372 ;; If MSG is non-nil, buffer is in Rmail mode.
1373 (if msg
1374 (let ((buff (generate-new-buffer " *mail-do-fcc")))
1375 (unwind-protect
1376 (progn
1377 (with-current-buffer buff
1378 (insert-buffer-substring curbuf (1+ beg) end))
1379 (rmail-output-to-rmail-buffer buff msg))
1380 (kill-buffer buff)))
1381 ;; Output file not in Rmail mode => just insert
1382 ;; at the end.
1383 (save-restriction
1384 (widen)
1385 (goto-char (point-max))
1386 (insert-buffer-substring curbuf beg end)))
1387 ;; Offer to save the buffer if it was modified
1388 ;; before we started.
1389 (unless buffer-matches-file
1390 (if (y-or-n-p (format "Save file %s? " fcc))
1391 (save-buffer))
1392 (setq dont-write-the-file t)))))
1393 ;; Append to the file directly, unless we've already taken
1394 ;; care of it.
1395 (unless dont-write-the-file
1396 (if (and (file-exists-p fcc)
1397 (mail-file-babyl-p fcc))
1398 ;; If the file is a Babyl file, convert the message to
1399 ;; Babyl format. Even though Rmail no longer uses
1400 ;; Babyl, this code can remain for the time being, on
1401 ;; the off-chance one FCCs to a Babyl file that has
1402 ;; not yet been converted to mbox.
1403 (let ((coding-system-for-write
1404 (or rmail-file-coding-system 'emacs-mule)))
1405 (with-temp-buffer
1406 (insert "\C-l\n0, unseen,,\n*** EOOH ***\nDate: "
1407 (mail-rfc822-date) "\n")
1408 (insert-buffer-substring curbuf beg2 end)
1409 (insert "\n\C-_")
1410 (write-region (point-min) (point-max) fcc t)))
1411 ;; Ensure there is a blank line between messages, but
1412 ;; not at the very start of the file.
1413 (write-region (if (file-exists-p fcc)
1414 (point-min)
1415 (1+ (point-min)))
1416 (point-max) fcc t)))
1417 (and buffer (not dont-write-the-file)
1418 (with-current-buffer buffer
1419 (set-visited-file-modtime)))))))))
1421 (defun mail-sent-via ()
1422 "Make a Sent-via header line from each To or CC header line."
1423 (declare (obsolete "nobody can remember what it is for." "24.1"))
1424 (interactive)
1425 (save-excursion
1426 ;; put a marker at the end of the header
1427 (let ((end (copy-marker (mail-header-end)))
1428 (case-fold-search t))
1429 (goto-char (point-min))
1430 ;; search for the To: lines and make Sent-via: lines from them
1431 ;; search for the next To: line
1432 (while (re-search-forward "^\\(to\\|cc\\):" end t)
1433 ;; Grab this line plus all its continuations, sans the `to:'.
1434 (let ((to-line
1435 (buffer-substring (point)
1436 (progn
1437 (if (re-search-forward "^[^ \t\n]" end t)
1438 (backward-char 1)
1439 (goto-char end))
1440 (point)))))
1441 ;; Insert a copy, with altered header field name.
1442 (insert-before-markers "Sent-via:" to-line))))))
1444 (defun mail-to ()
1445 "Move point to end of To field, creating it if necessary."
1446 (interactive)
1447 (expand-abbrev)
1448 (mail-position-on-field "To"))
1450 (defun mail-subject ()
1451 "Move point to end of Subject field, creating it if necessary."
1452 (interactive)
1453 (expand-abbrev)
1454 (mail-position-on-field "Subject"))
1456 (defun mail-cc ()
1457 "Move point to end of CC field, creating it if necessary."
1458 (interactive)
1459 (expand-abbrev)
1460 (or (mail-position-on-field "cc" t)
1461 (progn (mail-position-on-field "to")
1462 (insert "\nCC: "))))
1464 (defun mail-bcc ()
1465 "Move point to end of BCC field, creating it if necessary."
1466 (interactive)
1467 (expand-abbrev)
1468 (or (mail-position-on-field "bcc" t)
1469 (progn (mail-position-on-field "to")
1470 (insert "\nBCC: "))))
1472 (defun mail-fcc (folder)
1473 "Add a new FCC field, with file name completion."
1474 (interactive "FFolder carbon copy: ")
1475 (expand-abbrev)
1476 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
1477 (mail-position-on-field "to"))
1478 (insert "\nFCC: " folder))
1480 (defun mail-reply-to ()
1481 "Move point to end of Reply-To field, creating it if necessary."
1482 (interactive)
1483 (expand-abbrev)
1484 (mail-position-on-field "Reply-To"))
1486 (defun mail-mail-reply-to ()
1487 "Move point to end of Mail-Reply-To field, creating it if necessary."
1488 (interactive)
1489 (expand-abbrev)
1490 (or (mail-position-on-field "mail-reply-to" t)
1491 (progn (mail-position-on-field "to")
1492 (insert "\nMail-Reply-To: "))))
1494 (defun mail-mail-followup-to ()
1495 "Move point to end of Mail-Followup-To field, creating it if necessary."
1496 (interactive)
1497 (expand-abbrev)
1498 (or (mail-position-on-field "mail-followup-to" t)
1499 (progn (mail-position-on-field "to")
1500 (insert "\nMail-Followup-To: "))))
1502 (defun mail-position-on-field (field &optional soft)
1503 "Move to the start of the contents of header field FIELD.
1504 If there is none, insert one, unless SOFT is non-nil.
1505 If there are multiple FIELD fields, this goes to the first."
1506 (let (end
1507 (case-fold-search t))
1508 (setq end (mail-header-end))
1509 (goto-char (point-min))
1510 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
1511 (progn
1512 (re-search-forward "^[^ \t]" nil 'move)
1513 (beginning-of-line)
1514 (skip-chars-backward "\n")
1516 (or soft
1517 (progn (goto-char end)
1518 (insert field ": \n")
1519 (skip-chars-backward "\n")))
1520 nil)))
1522 (defun mail-text ()
1523 "Move point to beginning of text field."
1524 (interactive)
1525 (expand-abbrev)
1526 (goto-char (mail-text-start)))
1528 (defun mail-signature (&optional atpoint)
1529 "Sign letter with signature.
1530 If the variable `mail-signature' is a string, inserts it.
1531 If it is t or nil, inserts the contents of the file `mail-signature-file'.
1532 Otherwise, evals `mail-signature'.
1533 Prefix argument ATPOINT means insert at point rather than the end."
1534 (interactive "*P")
1535 ;; Test for an unreadable file here, before we delete trailing
1536 ;; whitespace, so that we don't modify the buffer needlessly.
1537 (if (and (memq mail-signature '(t nil))
1538 (not (file-readable-p mail-signature-file)))
1539 (if (called-interactively-p 'interactive)
1540 (message "The signature file `%s' could not be read"
1541 mail-signature-file))
1542 (save-excursion
1543 (unless atpoint
1544 (goto-char (point-max))
1545 ;; Delete trailing whitespace and blank lines.
1546 (skip-chars-backward " \t\n")
1547 (end-of-line)
1548 (delete-region (point) (point-max)))
1549 (cond ((stringp mail-signature)
1550 (insert mail-signature))
1551 ((memq mail-signature '(t nil))
1552 (insert "\n\n-- \n")
1553 (insert-file-contents (expand-file-name mail-signature-file)))
1555 ;; FIXME add condition-case error handling?
1556 (eval mail-signature))))))
1558 (defun mail-fill-yanked-message (&optional justifyp)
1559 "Fill the paragraphs of a message yanked into this one.
1560 Numeric argument means justify as well."
1561 (interactive "P")
1562 (save-excursion
1563 (goto-char (mail-text-start))
1564 (fill-individual-paragraphs (point)
1565 (point-max)
1566 justifyp
1567 mail-citation-prefix-regexp)))
1569 (defun mail-indent-citation ()
1570 "Modify text just inserted from a message to be cited.
1571 The inserted text should be the region.
1572 When this function returns, the region is again around the modified text.
1574 Normally, indent each nonblank line `mail-indentation-spaces' spaces.
1575 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
1576 (mail-yank-clear-headers (region-beginning) (region-end))
1577 (if (null mail-yank-prefix)
1578 (indent-rigidly (region-beginning) (region-end)
1579 mail-indentation-spaces)
1580 (save-excursion
1581 (let ((end (set-marker (make-marker) (region-end))))
1582 (goto-char (region-beginning))
1583 (while (< (point) end)
1584 (insert mail-yank-prefix)
1585 (forward-line 1))))))
1587 (defun mail-yank-original (arg)
1588 "Insert the message being replied to, if any (in Rmail).
1589 Puts point after the text and mark before.
1590 Normally, indents each nonblank line ARG spaces (default 3).
1591 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
1593 Just \\[universal-argument] as argument means don't indent, insert no prefix,
1594 and don't delete any header fields."
1595 (interactive "P")
1596 (if mail-reply-action
1597 (let ((start (point))
1598 (original mail-reply-action)
1599 (omark (mark t)))
1600 (and (consp original) (eq (car original) 'insert-buffer)
1601 (setq original (nth 1 original)))
1602 (if (consp original)
1603 (progn
1604 ;; Call yank function, and set the mark if it doesn't.
1605 (apply (car original) (cdr original))
1606 (if (eq omark (mark t))
1607 (push-mark (point))))
1608 ;; If the original message is in another window in the same
1609 ;; frame, delete that window to save space.
1610 (delete-windows-on original t)
1611 (with-no-warnings
1612 ;; We really want this to set mark.
1613 (insert-buffer original)
1614 ;; If they yank the original text, the encoding of the
1615 ;; original message is a better default than
1616 ;; the default buffer-file-coding-system.
1617 (and (coding-system-equal
1618 (default-value 'buffer-file-coding-system)
1619 buffer-file-coding-system)
1620 (setq buffer-file-coding-system
1621 (coding-system-change-text-conversion
1622 buffer-file-coding-system
1623 (coding-system-base
1624 (with-current-buffer original
1625 buffer-file-coding-system))))))
1626 (set-text-properties (point) (mark t) nil))
1627 (if (consp arg)
1629 (goto-char start)
1630 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
1631 mail-indentation-spaces))
1632 ;; Avoid error in Transient Mark mode
1633 ;; on account of mark's being inactive.
1634 (mark-even-if-inactive t))
1635 (cond (mail-citation-hook
1636 ;; Bind mail-citation-header to the inserted
1637 ;; message's header.
1638 (let ((mail-citation-header
1639 (buffer-substring-no-properties
1640 start
1641 (save-excursion
1642 (save-restriction
1643 (narrow-to-region start (point-max))
1644 (goto-char start)
1645 (rfc822-goto-eoh)
1646 (point))))))
1647 (run-hooks 'mail-citation-hook)))
1648 (mail-yank-hooks
1649 (run-hooks 'mail-yank-hooks))
1651 (mail-indent-citation)))))
1652 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1653 ;; It is cleaner to avoid activation, even though the command
1654 ;; loop would deactivate the mark because we inserted text.
1655 (goto-char (prog1 (mark t)
1656 (set-marker (mark-marker) (point) (current-buffer))))
1657 (if (not (eolp)) (insert ?\n)))))
1659 (defun mail-yank-clear-headers (start end)
1660 (if (< end start)
1661 (let (temp)
1662 (setq temp start start end end temp)))
1663 (if mail-yank-ignored-headers
1664 (save-excursion
1665 (goto-char start)
1666 (if (search-forward "\n\n" end t)
1667 (save-restriction
1668 (narrow-to-region start (point))
1669 (goto-char start)
1670 (while (let ((case-fold-search t))
1671 (re-search-forward mail-yank-ignored-headers nil t))
1672 (beginning-of-line)
1673 (delete-region (point)
1674 (progn (re-search-forward "\n[^ \t]")
1675 (forward-char -1)
1676 (point)))))))))
1678 (defun mail-yank-region (arg)
1679 "Insert the selected region from the message being replied to.
1680 Puts point after the text and mark before.
1681 Normally, indents each nonblank line ARG spaces (default 3).
1682 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
1684 Just \\[universal-argument] as argument means don't indent, insert no prefix,
1685 and don't delete any header fields."
1686 (interactive "P")
1687 (and (consp mail-reply-action)
1688 (memq (car mail-reply-action)
1689 '(rmail-yank-current-message insert-buffer))
1690 (with-current-buffer (nth 1 mail-reply-action)
1691 (or (mark t)
1692 (error "No mark set: %S" (current-buffer))))
1693 (let ((buffer (nth 1 mail-reply-action))
1694 (start (point))
1695 ;; Avoid error in Transient Mark mode
1696 ;; on account of mark's being inactive.
1697 (mark-even-if-inactive t))
1698 ;; Insert the citation text.
1699 (insert (with-current-buffer buffer
1700 (buffer-substring-no-properties (point) (mark))))
1701 (push-mark start)
1702 ;; Indent or otherwise annotate the citation text.
1703 (if (consp arg)
1705 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
1706 mail-indentation-spaces)))
1707 (if mail-citation-hook
1708 ;; Bind mail-citation-header to the original message's header.
1709 (let ((mail-citation-header
1710 (with-current-buffer buffer
1711 (buffer-substring-no-properties
1712 (point-min)
1713 (save-excursion
1714 (goto-char (point-min))
1715 (rfc822-goto-eoh)
1716 (point))))))
1717 (run-hooks 'mail-citation-hook))
1718 (if mail-yank-hooks
1719 (run-hooks 'mail-yank-hooks)
1720 (mail-indent-citation))))))))
1722 (defun mail-split-line ()
1723 "Split current line, moving portion beyond point vertically down.
1724 If the current line has `mail-yank-prefix', insert it on the new line."
1725 (interactive "*")
1726 (split-line mail-yank-prefix))
1729 (defun mail-insert-file (&optional file)
1730 "Insert a file at the end of the buffer, with separator lines around it."
1731 (interactive "fAttach file: ")
1732 (save-excursion
1733 (goto-char (point-max))
1734 (or (bolp) (newline))
1735 (newline)
1736 (let ((start (point))
1737 middle)
1738 (insert (format "===File %s===" file))
1739 (insert-char ?= (max 0 (- 60 (current-column))))
1740 (newline)
1741 (setq middle (point))
1742 (insert "============================================================\n")
1743 (push-mark)
1744 (goto-char middle)
1745 (insert-file-contents file)
1746 (or (bolp) (newline))
1747 (goto-char start))))
1749 (define-obsolete-function-alias 'mail-attach-file 'mail-insert-file "24.1")
1751 (declare-function mml-attach-file "mml"
1752 (file &optional type description disposition))
1753 (declare-function mm-default-file-encoding "mm-encode" (file))
1755 (defun mail-add-attachment (file)
1756 "Add FILE as a MIME attachment to the end of the mail message being composed."
1757 (interactive "fAttach file: ")
1758 (mml-attach-file file
1759 (or (mm-default-file-encoding file)
1760 "application/octet-stream") nil)
1761 (setq mail-encode-mml t))
1764 ;; Put these commands last, to reduce chance of lossage from quitting
1765 ;; in middle of loading the file.
1767 ;;;###autoload
1768 (defun mail (&optional noerase to subject in-reply-to cc replybuffer
1769 actions return-action)
1770 "Edit a message to be sent. Prefix arg means resume editing (don't erase).
1771 When this function returns, the buffer `*mail*' is selected.
1772 The value is t if the message was newly initialized; otherwise, nil.
1774 Optionally, the signature file `mail-signature-file' can be inserted at the
1775 end; see the variable `mail-signature'.
1777 \\<mail-mode-map>
1778 While editing message, type \\[mail-send-and-exit] to send the message and exit.
1780 Various special commands starting with C-c are available in sendmail mode
1781 to move to message header fields:
1782 \\{mail-mode-map}
1784 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
1785 when the message is initialized.
1787 If `mail-default-reply-to' is non-nil, it should be an address (a string);
1788 a Reply-to: field with that address is inserted.
1790 If `mail-archive-file-name' is non-nil, an FCC field with that file name
1791 is inserted.
1793 The normal hook `mail-setup-hook' is run after the message is
1794 initialized. It can add more default fields to the message.
1796 The first argument, NOERASE, determines what to do when there is
1797 an existing modified `*mail*' buffer. If NOERASE is nil, the
1798 existing mail buffer is used, and the user is prompted whether to
1799 keep the old contents or to erase them. If NOERASE has the value
1800 `new', a new mail buffer will be created instead of using the old
1801 one. Any other non-nil value means to always select the old
1802 buffer without erasing the contents.
1804 The second through fifth arguments,
1805 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
1806 the initial contents of those header fields.
1807 These arguments should not have final newlines.
1808 The sixth argument REPLYBUFFER is a buffer which contains an
1809 original message being replied to, or else an action
1810 of the form (FUNCTION . ARGS) which says how to insert the original.
1811 Or it can be nil, if not replying to anything.
1812 The seventh argument ACTIONS is a list of actions to take
1813 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
1814 when the message is sent, we apply FUNCTION to ARGS.
1815 This is how Rmail arranges to mark messages `answered'."
1816 (interactive "P")
1817 (if (eq noerase 'new)
1818 (pop-to-buffer-same-window (generate-new-buffer "*mail*"))
1819 (and noerase
1820 (not (get-buffer "*mail*"))
1821 (setq noerase nil))
1822 (pop-to-buffer-same-window "*mail*"))
1824 ;; Avoid danger that the auto-save file can't be written.
1825 (let ((dir (expand-file-name
1826 (file-name-as-directory mail-default-directory))))
1827 (if (file-exists-p dir)
1828 (setq default-directory dir)))
1829 ;; Only call auto-save-mode if necessary, to avoid changing auto-save file.
1830 (if (or (and auto-save-default (not buffer-auto-save-file-name))
1831 (and (not auto-save-default) buffer-auto-save-file-name))
1832 (auto-save-mode auto-save-default))
1833 (mail-mode)
1834 ;; Disconnect the buffer from its visited file
1835 ;; (in case the user has actually visited a file *mail*).
1836 ;; (set-visited-file-name nil)
1837 (let (initialized)
1838 (and (not (and noerase
1839 (not (eq noerase 'new))))
1840 (if buffer-file-name
1841 (if (buffer-modified-p)
1842 (when (y-or-n-p "Buffer has unsaved changes; reinitialize it and discard them? ")
1843 (if (y-or-n-p "Disconnect buffer from visited file? ")
1844 (set-visited-file-name nil))
1846 (when (y-or-n-p "Reinitialize buffer, and disconnect it from the visited file? ")
1847 (set-visited-file-name nil)
1849 ;; A non-file-visiting buffer.
1850 (if (buffer-modified-p)
1851 (y-or-n-p "Unsent message being composed; erase it? ")
1853 (let ((inhibit-read-only t))
1854 (erase-buffer)
1855 (mail-setup to subject in-reply-to cc replybuffer actions
1856 return-action)
1857 (setq initialized t)))
1858 (if (and buffer-auto-save-file-name
1859 (file-exists-p buffer-auto-save-file-name))
1860 (message "Auto save file for draft message exists; consider M-x mail-recover"))
1861 initialized))
1863 (declare-function dired-view-file "dired" ())
1864 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
1866 (defun mail-recover-1 ()
1867 "Pop up a list of auto-saved draft messages so you can recover one of them."
1868 (interactive)
1869 (let ((file-name (make-auto-save-file-name))
1870 (ls-lisp-support-shell-wildcards t)
1871 non-random-len wildcard)
1872 ;; Remove the random part from the auto-save-file-name, and
1873 ;; create a wildcard which matches possible candidates.
1874 ;; Note: this knows that make-auto-save-file-name appends
1875 ;; "#<RANDOM-STUFF>#" to the buffer name, where RANDOM-STUFF
1876 ;; is the result of (make-temp-name "").
1877 (setq non-random-len
1878 (- (length file-name) (length (make-temp-name "")) 1))
1879 (setq wildcard (concat (substring file-name 0 non-random-len) "*"))
1880 (if (null (file-expand-wildcards wildcard))
1881 (message "There are no auto-saved drafts to recover")
1882 ;; Bind dired-trivial-filenames to t because all auto-save file
1883 ;; names are normally ``trivial'', so Dired will set point after
1884 ;; all the files, at buffer bottom. We want it on the first
1885 ;; file instead.
1886 ;; Require dired so that dired-trivial-filenames does not get
1887 ;; unbound on exit from the let.
1888 (require 'dired)
1889 (let ((dired-trivial-filenames t))
1890 (dired-other-window wildcard (concat dired-listing-switches " -t")))
1891 (rename-buffer "*Auto-saved Drafts*" t)
1892 (save-excursion
1893 (goto-char (point-min))
1894 (or (looking-at " Move to the draft file you want to recover,")
1895 (let ((inhibit-read-only t))
1896 ;; Each line starts with a space so that Font Lock mode
1897 ;; won't highlight the first character.
1898 (insert "\
1899 Move to the draft file you want to recover, then type C-c C-c
1900 to recover text of message whose composition was interrupted.
1901 To browse text of a draft, type v on the draft file's line.
1903 You can also delete some of these files;
1904 type d on a line to mark that file for deletion.
1906 List of possible auto-save files for recovery:
1908 "))))
1909 (use-local-map
1910 (let ((map (make-sparse-keymap)))
1911 (set-keymap-parent map (current-local-map))
1912 map))
1913 (define-key (current-local-map) "v"
1914 (lambda ()
1915 (interactive)
1916 (let ((coding-system-for-read 'utf-8-emacs-unix))
1917 (dired-view-file))))
1918 (define-key (current-local-map) "\C-c\C-c"
1919 (lambda ()
1920 (interactive)
1921 (let ((fname (dired-get-filename))
1922 ;; Auto-saved files are written in the internal
1923 ;; representation, so they should be read accordingly.
1924 (coding-system-for-read 'utf-8-emacs-unix))
1925 (switch-to-buffer-other-window "*mail*")
1926 (let ((buffer-read-only nil))
1927 (erase-buffer)
1928 (insert-file-contents fname nil)
1929 ;; insert-file-contents will set buffer-file-coding-system
1930 ;; to utf-8-emacs, which is probably not what they want to
1931 ;; use for sending the message. But we don't know what
1932 ;; was its value before the buffer was killed or Emacs
1933 ;; crashed. We therefore reset buffer-file-coding-system
1934 ;; to the default value, so that either the default does
1935 ;; TRT, or the user will get prompted for the right
1936 ;; encoding when they send the message.
1937 (setq buffer-file-coding-system
1938 (default-value 'buffer-file-coding-system)))))))))
1940 (declare-function dired-move-to-filename "dired" (&optional raise-error eol))
1941 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
1942 (declare-function dired-view-file "dired" ())
1944 (defun mail-recover ()
1945 "Recover interrupted mail composition from auto-save files.
1947 If the mail buffer has a current valid auto-save file,
1948 the command recovers that file. Otherwise, it displays a
1949 buffer showing the existing auto-saved draft messages;
1950 you can move to one of them and type C-c C-c to recover that one."
1951 (interactive)
1952 ;; In case they invoke us from some random buffer...
1953 (switch-to-buffer "*mail*")
1954 ;; If *mail* didn't exist, set its directory, so that auto-saved
1955 ;; drafts will be found.
1956 (let ((dir (expand-file-name
1957 (file-name-as-directory mail-default-directory))))
1958 (if (file-exists-p dir)
1959 (setq default-directory dir)))
1960 (or (eq major-mode 'mail-mode)
1961 (mail-mode))
1962 (let ((file-name buffer-auto-save-file-name))
1963 (cond ((and file-name (file-exists-p file-name))
1964 (let ((dispbuf
1965 ;; This used to invoke `ls' via call-process, but
1966 ;; dired-noselect is more portable to systems where
1967 ;; `ls' is not a standard program (it will use
1968 ;; ls-lisp instead).
1969 (dired-noselect file-name
1970 (concat dired-listing-switches " -t"))))
1971 (save-selected-window
1972 (switch-to-buffer-other-window dispbuf)
1973 (goto-char (point-min))
1974 (forward-line 2)
1975 (dired-move-to-filename)
1976 (setq dispbuf (rename-buffer "*Directory*" t)))
1977 (if (not (yes-or-no-p
1978 (format "Recover mail draft from auto save file %s? "
1979 file-name)))
1980 (error "mail-recover cancelled")
1981 (let ((buffer-read-only nil)
1982 (buffer-coding buffer-file-coding-system)
1983 ;; Auto-save files are written in internal
1984 ;; representation of non-ASCII characters.
1985 (coding-system-for-read 'utf-8-emacs-unix))
1986 (erase-buffer)
1987 (insert-file-contents file-name nil)
1988 (setq buffer-file-coding-system buffer-coding)))))
1989 (t (mail-recover-1)))))
1991 ;;;###autoload
1992 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
1993 "Like `mail' command, but display mail buffer in another window."
1994 (interactive "P")
1995 (switch-to-buffer-other-window "*mail*")
1996 (mail noerase to subject in-reply-to cc replybuffer sendactions))
1998 ;;;###autoload
1999 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
2000 "Like `mail' command, but display mail buffer in another frame."
2001 (interactive "P")
2002 (switch-to-buffer-other-frame "*mail*")
2003 (mail noerase to subject in-reply-to cc replybuffer sendactions))
2005 ;; Do not add anything but external entries on this page.
2007 (provide 'sendmail)
2009 ;; Local Variables:
2010 ;; byte-compile-dynamic: t
2011 ;; coding: utf-8
2012 ;; End:
2014 ;;; sendmail.el ends here