Mercurial > emacs
annotate lisp/mail/sendmail.el @ 2459:fd35248ff0d1
* s/vms.h (EXEC_SUFFIXES): Add definition for this.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 05 Apr 1993 21:00:51 +0000 |
parents | 9e7ec92a4fdf |
children | 551af54fb173 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
1 ;;; sendmail.el --- mail sending commands for Emacs. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
825
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
825
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
7 |
455 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
455 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
24 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
25 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
26 ;; This mode provides mail-sending facilities from within Emacs. It is |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
27 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
29 ;;; Code: |
455 | 30 |
31 ;;;###autoload | |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
32 (defvar mail-self-blind nil "\ |
455 | 33 Non-nil means insert BCC to self in messages to be sent. |
34 This is done when the message is initialized, | |
35 so you can remove or alter the BCC field to override the default.") | |
36 | |
37 ;;;###autoload | |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
38 (defvar mail-interactive nil "\ |
455 | 39 Non-nil means when sending a message wait for and display errors. |
40 nil means let mailer mail back a message to report errors.") | |
41 | |
42 ;;;###autoload | |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
43 (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\ |
455 | 44 Delete these headers from old message when it's inserted in a reply.") |
45 | |
46 ;; Useful to set in site-init.el | |
47 ;;;###autoload | |
48 (defconst send-mail-function 'sendmail-send-it "\ | |
49 Function to call to send the current buffer as mail. | |
1539 | 50 The headers are be delimited by a line which is `mail-header-separator'.") |
455 | 51 |
52 ;;;###autoload | |
53 (defvar mail-header-separator "--text follows this line--" "\ | |
54 *Line used to separate headers from text in messages being composed.") | |
55 | |
56 ;;;###autoload | |
57 (defvar mail-archive-file-name nil "\ | |
58 *Name of file to write all outgoing messages in, or nil for none. | |
59 Do not use an rmail file here! Instead, use its inbox file.") | |
60 | |
61 (defvar mail-default-reply-to nil | |
62 "*Address to insert as default Reply-to field of outgoing messages.") | |
63 | |
64 (defvar mail-alias-file nil | |
65 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
66 This file defines aliases to be expanded by the mailer; this is a different | |
67 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
68 This variable has no effect unless your system uses sendmail as its mailer.") | |
69 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
70 (defvar mail-aliases t |
1468
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
71 "Alist of mail address aliases, |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
72 or t meaning should be initialized from `~/.mailrc'. |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
73 The alias definitions in `~/.mailrc' have this form: |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
74 alias ALIAS MEANING") |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
75 |
455 | 76 (defvar mail-yank-prefix nil |
77 "*Prefix insert on lines of yanked message being replied to. | |
78 nil means use indentation.") | |
79 | |
80 (defvar mail-abbrevs-loaded nil) | |
81 (defvar mail-mode-map nil) | |
82 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
83 (autoload 'build-mail-aliases "mailalias" |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
84 "Read mail aliases from `~/.mailrc' and set `mail-aliases'." |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
85 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
86 |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
87 (autoload 'expand-mail-aliases "mailalias" |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
88 "Expand all mail aliases in suitable header fields found between BEG and END. |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
89 Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants. |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
90 Optional second arg EXCLUDE may be a regular expression defining text to be |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
91 removed from alias expansions." |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
92 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
93 |
999 | 94 ;;;###autoload |
1025 | 95 (defvar mail-signature nil |
96 "*Text inserted at end of mail buffer when a message is initialized. | |
97 If t, it means to insert the contents of the file `~/.signature'.") | |
455 | 98 |
99 (defvar mail-reply-buffer nil) | |
100 (defvar mail-send-actions nil | |
101 "A list of actions to be performed upon successful sending of a message.") | |
102 | |
103 (defvar mail-default-headers nil | |
104 "*A string containing header lines, to be inserted in outgoing messages. | |
105 It is inserted before you edit the message, | |
106 so you can edit or delete these lines.") | |
107 | |
108 (defvar mail-mode-syntax-table nil | |
109 "Syntax table used while in mail mode.") | |
110 | |
111 (if (null mail-mode-syntax-table) | |
112 (progn | |
113 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table)) | |
114 (modify-syntax-entry ?% ". " mail-mode-syntax-table))) | |
115 | |
116 (defun mail-setup (to subject in-reply-to cc replybuffer actions) | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
117 (if (eq mail-aliases t) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
118 (progn |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
119 (setq mail-aliases nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
120 (if (file-exists-p "~/.mailrc") |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
121 (build-mail-aliases)))) |
455 | 122 (setq mail-send-actions actions) |
123 (setq mail-reply-buffer replybuffer) | |
124 (goto-char (point-min)) | |
125 (insert "To: ") | |
126 (save-excursion | |
127 (if to | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
128 ;; Here removed code to extract names from within <...> |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
129 ;; on the assumption that mail-strip-quoted-names |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
130 ;; has been called and has done so. |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
131 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
132 (address-start (point))) |
455 | 133 (insert to "\n") |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
134 (fill-region-as-paragraph address-start (point-max))) |
455 | 135 (newline)) |
136 (if cc | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
137 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
138 (address-start (progn (insert "CC: ") (point)))) |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
139 (insert cc "\n") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
140 (fill-region-as-paragraph address-start (point-max)))) |
455 | 141 (if in-reply-to |
142 (insert "In-reply-to: " in-reply-to "\n")) | |
143 (insert "Subject: " (or subject "") "\n") | |
144 (if mail-default-headers | |
145 (insert mail-default-headers)) | |
146 (if mail-default-reply-to | |
147 (insert "Reply-to: " mail-default-reply-to "\n")) | |
148 (if mail-self-blind | |
149 (insert "BCC: " (user-login-name) "\n")) | |
150 (if mail-archive-file-name | |
151 (insert "FCC: " mail-archive-file-name "\n")) | |
1024
ceb4469d3cd7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
999
diff
changeset
|
152 (insert mail-header-separator "\n") |
1025 | 153 ;; Insert the signature. |
154 (cond ((eq mail-signature t) | |
155 (if (file-exists-p "~/.signature") | |
156 (progn | |
157 (insert "--\n") | |
158 (insert-file-contents "~/.signature")))) | |
159 (mail-signature | |
160 (insert mail-signature))) | |
455 | 161 (goto-char (point-max)) |
162 (or (bolp) (newline))) | |
163 (if to (goto-char (point-max))) | |
164 (or to subject in-reply-to | |
165 (set-buffer-modified-p nil)) | |
166 (run-hooks 'mail-setup-hook)) | |
167 | |
168 ;;;###autoload | |
169 (defun mail-mode () | |
170 "Major mode for editing mail to be sent. | |
171 Like Text Mode but with these additional commands: | |
172 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
173 C-c C-f move to a header field (and create it if there isn't): | |
174 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
175 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
176 C-c C-t move to message text. | |
177 C-c C-y mail-yank-original (insert current message, in Rmail). | |
178 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
179 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." | |
180 (interactive) | |
181 (kill-all-local-variables) | |
182 (make-local-variable 'mail-reply-buffer) | |
183 (setq mail-reply-buffer nil) | |
184 (make-local-variable 'mail-send-actions) | |
185 (set-syntax-table mail-mode-syntax-table) | |
186 (use-local-map mail-mode-map) | |
187 (setq local-abbrev-table text-mode-abbrev-table) | |
188 (setq major-mode 'mail-mode) | |
189 (setq mode-name "Mail") | |
190 (setq buffer-offer-save t) | |
191 (make-local-variable 'paragraph-separate) | |
192 (make-local-variable 'paragraph-start) | |
193 (setq paragraph-start (concat "^" mail-header-separator | |
194 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
195 paragraph-start)) | |
196 (setq paragraph-separate (concat "^" mail-header-separator | |
197 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
198 paragraph-separate)) | |
199 (run-hooks 'text-mode-hook 'mail-mode-hook)) | |
200 | |
201 (if mail-mode-map | |
202 nil | |
203 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
204 (define-key mail-mode-map "\C-c?" 'describe-mode) | |
205 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to) | |
206 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc) | |
573 | 207 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc) |
455 | 208 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc) |
209 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject) | |
210 (define-key mail-mode-map "\C-c\C-t" 'mail-text) | |
211 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original) | |
212 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message) | |
213 (define-key mail-mode-map "\C-c\C-w" 'mail-signature) | |
214 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via) | |
215 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit) | |
216 (define-key mail-mode-map "\C-c\C-s" 'mail-send)) | |
217 | |
218 (defun mail-send-and-exit (arg) | |
1539 | 219 "Send message like `mail-send', then, if no errors, exit from mail buffer. |
455 | 220 Prefix arg means don't delete this window." |
221 (interactive "P") | |
222 (mail-send) | |
1269
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
223 (let ((newbuf (other-buffer (current-buffer)))) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
224 (bury-buffer (current-buffer)) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
225 (if (and (not arg) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
226 (not (one-window-p)) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
227 (save-excursion |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
228 (set-buffer (window-buffer (next-window (selected-window) 'not))) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
229 (eq major-mode 'rmail-mode))) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
230 (delete-window) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
231 (switch-to-buffer newbuf)))) |
455 | 232 |
233 (defun mail-send () | |
234 "Send the message in the current buffer. | |
235 If `mail-interactive' is non-nil, wait for success indication | |
236 or error messages, and inform user. | |
237 Otherwise any failure is reported in a message back to | |
238 the user from the mailer." | |
239 (interactive) | |
240 (if (or (buffer-modified-p) | |
241 (y-or-n-p "Message already sent; resend? ")) | |
242 (progn | |
243 (message "Sending...") | |
244 (run-hooks 'mail-send-hook) | |
245 (funcall send-mail-function) | |
246 ;; Now perform actions on successful sending. | |
247 (while mail-send-actions | |
248 (condition-case nil | |
1741
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
249 (apply (car (car mail-send-actions)) |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
250 (cdr (car mail-send-actions))) |
455 | 251 (error)) |
252 (setq mail-send-actions (cdr mail-send-actions))) | |
1741
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
253 (message "Sending...done") |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
254 ;; If buffer has no file, mark it as unmodified and delete autosave. |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
255 (if (not buffer-file-name) |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
256 (progn |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
257 (set-buffer-modified-p nil) |
bc25cbeb27c0
(mail-send): Don't clear modified or delete autosave if visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
1705
diff
changeset
|
258 (delete-auto-save-file-if-necessary t)))))) |
455 | 259 |
260 (defun sendmail-send-it () | |
261 (let ((errbuf (if mail-interactive | |
262 (generate-new-buffer " sendmail errors") | |
263 0)) | |
264 (tembuf (generate-new-buffer " sendmail temp")) | |
265 (case-fold-search nil) | |
266 delimline | |
267 (mailbuf (current-buffer))) | |
268 (unwind-protect | |
269 (save-excursion | |
270 (set-buffer tembuf) | |
271 (erase-buffer) | |
272 (insert-buffer-substring mailbuf) | |
273 (goto-char (point-max)) | |
274 ;; require one newline at the end. | |
275 (or (= (preceding-char) ?\n) | |
276 (insert ?\n)) | |
277 ;; Change header-delimiter to be what sendmail expects. | |
278 (goto-char (point-min)) | |
279 (re-search-forward | |
280 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
281 (replace-match "\n") | |
282 (backward-char 1) | |
283 (setq delimline (point-marker)) | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
284 (if mail-aliases |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
285 (expand-mail-aliases (point-min) delimline)) |
455 | 286 (goto-char (point-min)) |
287 ;; ignore any blank lines in the header | |
288 (while (and (re-search-forward "\n\n\n*" delimline t) | |
289 (< (point) delimline)) | |
290 (replace-match "\n")) | |
291 (let ((case-fold-search t)) | |
292 (goto-char (point-min)) | |
293 (if (re-search-forward "^Sender:" delimline t) | |
294 (error "Sender may not be specified.")) | |
295 ;; Find and handle any FCC fields. | |
296 (goto-char (point-min)) | |
297 (if (re-search-forward "^FCC:" delimline t) | |
298 (mail-do-fcc delimline)) | |
299 ;; If the From is different than current user, insert Sender. | |
300 (goto-char (point-min)) | |
301 (and (re-search-forward "^From:" delimline t) | |
302 (progn | |
303 (require 'mail-utils) | |
304 (not (string-equal | |
305 (mail-strip-quoted-names | |
306 (save-restriction | |
307 (narrow-to-region (point-min) delimline) | |
308 (mail-fetch-field "From"))) | |
309 (user-login-name)))) | |
310 (progn | |
311 (forward-line 1) | |
312 (insert "Sender: " (user-login-name) "\n"))) | |
313 ;; "S:" is an abbreviation for "Subject:". | |
314 (goto-char (point-min)) | |
315 (if (re-search-forward "^S:" delimline t) | |
316 (replace-match "Subject:")) | |
317 ;; Don't send out a blank subject line | |
318 (goto-char (point-min)) | |
319 (if (re-search-forward "^Subject:[ \t]*\n" delimline t) | |
320 (replace-match "")) | |
321 (if mail-interactive | |
322 (save-excursion | |
323 (set-buffer errbuf) | |
324 (erase-buffer)))) | |
325 (apply 'call-process-region | |
326 (append (list (point-min) (point-max) | |
327 (if (boundp 'sendmail-program) | |
328 sendmail-program | |
329 "/usr/lib/sendmail") | |
330 nil errbuf nil | |
331 "-oi" "-t") | |
332 ;; Always specify who from, | |
333 ;; since some systems have broken sendmails. | |
334 (list "-f" (user-login-name)) | |
335 ;;; ;; Don't say "from root" if running under su. | |
336 ;;; (and (equal (user-real-login-name) "root") | |
337 ;;; (list "-f" (user-login-name))) | |
338 (and mail-alias-file | |
339 (list (concat "-oA" mail-alias-file))) | |
340 ;; These mean "report errors by mail" | |
341 ;; and "deliver in background". | |
342 (if (null mail-interactive) '("-oem" "-odb")))) | |
343 (if mail-interactive | |
344 (save-excursion | |
345 (set-buffer errbuf) | |
346 (goto-char (point-min)) | |
347 (while (re-search-forward "\n\n* *" nil t) | |
348 (replace-match "; ")) | |
349 (if (not (zerop (buffer-size))) | |
350 (error "Sending...failed to %s" | |
351 (buffer-substring (point-min) (point-max))))))) | |
352 (kill-buffer tembuf) | |
353 (if (bufferp errbuf) | |
354 (kill-buffer errbuf))))) | |
355 | |
356 (defun mail-do-fcc (header-end) | |
357 (let (fcc-list | |
358 (rmailbuf (current-buffer)) | |
1075 | 359 timezone |
455 | 360 (tembuf (generate-new-buffer " rmail output")) |
361 (case-fold-search t)) | |
362 (save-excursion | |
363 (goto-char (point-min)) | |
364 (while (re-search-forward "^FCC:[ \t]*" header-end t) | |
365 (setq fcc-list (cons (buffer-substring (point) | |
366 (progn | |
367 (end-of-line) | |
368 (skip-chars-backward " \t") | |
369 (point))) | |
370 fcc-list)) | |
371 (delete-region (match-beginning 0) | |
372 (progn (forward-line 1) (point)))) | |
373 (set-buffer tembuf) | |
374 (erase-buffer) | |
1075 | 375 (call-process "date" nil t nil) |
376 (goto-char (point-min)) | |
377 (re-search-forward | |
1835
0aa8e261f174
(mail-do-fcc): Allow dash in timezone name.
Richard M. Stallman <rms@gnu.org>
parents:
1741
diff
changeset
|
378 "[0-9] \\([A-Za-z][-A-Za-z ]*[A-Za-z]\\)[0-9 ]*$") |
1075 | 379 (setq timezone (buffer-substring (match-beginning 1) (match-end 1))) |
380 (erase-buffer) | |
455 | 381 (insert "\nFrom " (user-login-name) " " |
382 (current-time-string) "\n") | |
1075 | 383 ;; Insert the time zone before the year. |
384 (forward-char -1) | |
385 (forward-word -1) | |
386 (insert timezone " ") | |
387 (goto-char (point-max)) | |
455 | 388 (insert-buffer-substring rmailbuf) |
389 ;; Make sure messages are separated. | |
390 (goto-char (point-max)) | |
391 (insert ?\n) | |
392 (goto-char 2) | |
393 ;; ``Quote'' "^From " as ">From " | |
394 ;; (note that this isn't really quoting, as there is no requirement | |
395 ;; that "^[>]+From " be quoted in the same transparent way.) | |
396 (let ((case-fold-search nil)) | |
397 (while (search-forward "\nFrom " nil t) | |
398 (forward-char -5) | |
399 (insert ?>))) | |
400 (while fcc-list | |
401 (let ((buffer (get-file-buffer (car fcc-list)))) | |
402 (if buffer | |
403 ;; File is present in a buffer => append to that buffer. | |
404 (let ((curbuf (current-buffer)) | |
405 (beg (point-min)) (end (point-max))) | |
406 (save-excursion | |
407 (set-buffer buffer) | |
408 ;; Keep the end of the accessible portion at the same place | |
409 ;; unless it is the end of the buffer. | |
410 (let ((max (if (/= (1+ (buffer-size)) (point-max)) | |
411 (point-max)))) | |
412 (unwind-protect | |
413 (progn | |
414 (narrow-to-region (point-min) (1+ (buffer-size))) | |
415 (goto-char (point-max)) | |
416 (if (eq major-mode 'rmail-mode) | |
417 ;; Append as a message to an RMAIL file | |
418 (let ((buffer-read-only nil)) | |
419 ;; This forces RMAIL's message counters to be | |
420 ;; recomputed when the next RMAIL operation is | |
421 ;; done on the buffer. | |
422 ;; See rmail-maybe-set-message-counters. | |
423 (setq rmail-total-messages nil) | |
424 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n" | |
425 "From: " (user-login-name) "\n" | |
426 "Date: " (current-time-string) "\n") | |
427 (insert-buffer-substring curbuf beg end) | |
746
1b0748ff6f65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
428 (insert "\n\C-_") |
1b0748ff6f65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
429 (rmail-set-message-counters)) |
455 | 430 (insert-buffer-substring curbuf beg end))) |
431 (if max (narrow-to-region (point-min) max)))))) | |
432 ;; Else append to the file directly. | |
433 (write-region | |
434 ;; Include a blank line before if file already exists. | |
435 (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min))) | |
436 (point-max) (car fcc-list) t))) | |
437 (setq fcc-list (cdr fcc-list)))) | |
438 (kill-buffer tembuf))) | |
439 | |
440 (defun mail-sent-via () | |
441 "Make a Sent-via header line from each To or CC header line." | |
442 (interactive) | |
443 (save-excursion | |
444 (goto-char (point-min)) | |
445 ;; find the header-separator | |
446 (search-forward (concat "\n" mail-header-separator "\n")) | |
447 (forward-line -1) | |
448 ;; put a marker at the end of the header | |
449 (let ((end (point-marker)) | |
450 (case-fold-search t) | |
451 to-line) | |
452 (goto-char (point-min)) | |
453 ;; search for the To: lines and make Sent-via: lines from them | |
454 ;; search for the next To: line | |
455 (while (re-search-forward "^\\(to\\|cc\\):" end t) | |
456 ;; Grab this line plus all its continuations, sans the `to:'. | |
457 (let ((to-line | |
458 (buffer-substring (point) | |
459 (progn | |
460 (if (re-search-forward "^[^ \t\n]" end t) | |
461 (backward-char 1) | |
462 (goto-char end)) | |
463 (point))))) | |
464 ;; Insert a copy, with altered header field name. | |
465 (insert-before-markers "Sent-via:" to-line)))))) | |
466 | |
467 (defun mail-to () | |
468 "Move point to end of To-field." | |
469 (interactive) | |
470 (expand-abbrev) | |
471 (mail-position-on-field "To")) | |
472 | |
473 (defun mail-subject () | |
474 "Move point to end of Subject-field." | |
475 (interactive) | |
476 (expand-abbrev) | |
477 (mail-position-on-field "Subject")) | |
478 | |
479 (defun mail-cc () | |
480 "Move point to end of CC-field. Create a CC field if none." | |
481 (interactive) | |
482 (expand-abbrev) | |
483 (or (mail-position-on-field "cc" t) | |
484 (progn (mail-position-on-field "to") | |
485 (insert "\nCC: ")))) | |
486 | |
487 (defun mail-bcc () | |
488 "Move point to end of BCC-field. Create a BCC field if none." | |
489 (interactive) | |
490 (expand-abbrev) | |
491 (or (mail-position-on-field "bcc" t) | |
492 (progn (mail-position-on-field "to") | |
493 (insert "\nBCC: ")))) | |
494 | |
573 | 495 (defun mail-fcc () |
496 "Add a new FCC field, with file name completion." | |
497 (interactive) | |
498 (expand-abbrev) | |
499 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC. | |
500 (mail-position-on-field "to")) | |
501 (insert "\nFCC: " (read-file-name "Folder carbon copy: "))) | |
502 | |
455 | 503 (defun mail-position-on-field (field &optional soft) |
504 (let (end | |
505 (case-fold-search t)) | |
506 (goto-char (point-min)) | |
604 | 507 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n")) |
455 | 508 (setq end (match-beginning 0)) |
509 (goto-char (point-min)) | |
510 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t) | |
511 (progn | |
512 (re-search-forward "^[^ \t]" nil 'move) | |
513 (beginning-of-line) | |
514 (skip-chars-backward "\n") | |
515 t) | |
516 (or soft | |
517 (progn (goto-char end) | |
604 | 518 (insert field ": \n") |
519 (skip-chars-backward "\n"))) | |
455 | 520 nil))) |
521 | |
522 (defun mail-text () | |
523 "Move point to beginning of text field." | |
524 (interactive) | |
525 (goto-char (point-min)) | |
526 (search-forward (concat "\n" mail-header-separator "\n"))) | |
527 | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
528 (defun mail-signature (atpoint) |
1539 | 529 "Sign letter with contents of `mail-signature-file'." |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
530 (interactive "P") |
455 | 531 (save-excursion |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
532 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
533 (goto-char (point-max))) |
455 | 534 (skip-chars-backward " \t\n") |
535 (end-of-line) | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
536 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
537 (delete-region (point) (point-max))) |
455 | 538 (insert "\n\n--\n") |
1025 | 539 (insert-file-contents (expand-file-name "~/.signature")))) |
455 | 540 |
541 (defun mail-fill-yanked-message (&optional justifyp) | |
542 "Fill the paragraphs of a message yanked into this one. | |
543 Numeric argument means justify as well." | |
544 (interactive "P") | |
545 (save-excursion | |
546 (goto-char (point-min)) | |
547 (search-forward (concat "\n" mail-header-separator "\n") nil t) | |
548 (fill-individual-paragraphs (point) | |
549 (point-max) | |
550 justifyp | |
551 t))) | |
552 | |
553 (defun mail-yank-original (arg) | |
554 "Insert the message being replied to, if any (in rmail). | |
555 Puts point before the text and mark after. | |
556 Normally, indents each nonblank line ARG spaces (default 3). | |
557 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line. | |
558 | |
559 Just \\[universal-argument] as argument means don't indent, insert no prefix, | |
560 and don't delete any header fields." | |
561 (interactive "P") | |
562 (if mail-reply-buffer | |
563 (let ((start (point))) | |
564 (delete-windows-on mail-reply-buffer) | |
565 (insert-buffer mail-reply-buffer) | |
566 (if (consp arg) | |
567 nil | |
568 (mail-yank-clear-headers start (mark)) | |
569 (if (null mail-yank-prefix) | |
570 (indent-rigidly start (mark) | |
571 (if arg (prefix-numeric-value arg) 3)) | |
572 (save-excursion | |
573 (goto-char start) | |
574 (while (< (point) (mark)) | |
575 (insert mail-yank-prefix) | |
576 (forward-line 1))))) | |
577 (exchange-point-and-mark) | |
578 (if (not (eolp)) (insert ?\n))))) | |
579 | |
580 (defun mail-yank-clear-headers (start end) | |
581 (save-excursion | |
582 (goto-char start) | |
583 (if (search-forward "\n\n" end t) | |
584 (save-restriction | |
585 (narrow-to-region start (point)) | |
586 (goto-char start) | |
587 (while (let ((case-fold-search t)) | |
588 (re-search-forward mail-yank-ignored-headers nil t)) | |
589 (beginning-of-line) | |
590 (delete-region (point) | |
591 (progn (re-search-forward "\n[^ \t]") | |
592 (forward-char -1) | |
593 (point)))))))) | |
594 | |
595 ;; Put these last, to reduce chance of lossage from quitting in middle of loading the file. | |
596 | |
597 ;;;###autoload | |
598 (defun mail (&optional noerase to subject in-reply-to cc replybuffer actions) | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
599 "Edit a message to be sent. Prefix arg means resume editing (don't erase). |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
600 When this function returns, the buffer `*mail*' is selected. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
601 The value is t if the message was newly initialized; otherwise, nil. |
455 | 602 |
1025 | 603 By default, the signature file `~/.signature' is inserted at the end; |
604 see the variable `mail-signature'. | |
455 | 605 |
606 \\<mail-mode-map> | |
607 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
608 | |
609 Various special commands starting with C-c are available in sendmail mode | |
610 to move to message header fields: | |
611 \\{mail-mode-map} | |
612 | |
613 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
614 when the message is initialized. | |
615 | |
616 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
617 a Reply-to: field with that address is inserted. | |
618 | |
619 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
620 is inserted. | |
621 | |
622 If `mail-setup-hook' is bound, its value is called with no arguments | |
623 after the message is initialized. It can add more default fields. | |
624 | |
625 When calling from a program, the second through fifth arguments | |
626 TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil | |
627 the initial contents of those header fields. | |
628 These arguments should not have final newlines. | |
629 The sixth argument REPLYBUFFER is a buffer whose contents | |
630 should be yanked if the user types C-c C-y. | |
631 The seventh argument ACTIONS is a list of actions to take | |
632 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
633 when the message is sent, we apply FUNCTION to ARGS. | |
634 This is how Rmail arranges to mark messages `answered'." | |
635 (interactive "P") | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
636 ;;; This is commented out because I found it was confusing in practice. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
637 ;;; It is easy enough to rename *mail* by hand with rename-buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
638 ;;; if you want to have multiple mail buffers. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
639 ;;; And then you can control which messages to save. --rms. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
640 ;;; (let ((index 1) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
641 ;;; buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
642 ;;; ;; If requested, look for a mail buffer that is modified and go to it. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
643 ;;; (if noerase |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
644 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
645 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
646 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
647 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
648 ;;; (not (buffer-modified-p buffer))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
649 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
650 ;;; (if buffer (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
651 ;;; ;; If none exists, start a new message. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
652 ;;; ;; This will never re-use an existing unmodified mail buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
653 ;;; ;; (since index is not 1 anymore). Perhaps it should. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
654 ;;; (setq noerase nil)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
655 ;;; ;; Unless we found a modified message and are happy, start a new message. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
656 ;;; (if (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
657 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
658 ;;; ;; Look for existing unmodified mail buffer. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
659 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
660 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
661 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
662 ;;; (buffer-modified-p buffer)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
663 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
664 ;;; ;; If none, make a new one. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
665 ;;; (or buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
666 ;;; (setq buffer (generate-new-buffer "*mail*"))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
667 ;;; ;; Go there and initialize it. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
668 ;;; (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
669 ;;; (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
670 ;;; (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
671 ;;; (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
672 ;;; (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
673 ;;; (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
674 ;;; (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
675 ;;; (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
676 ;;; (message "Auto save file for draft message exists; consider M-x mail-recover")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
677 ;;; t)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
678 (switch-to-buffer "*mail*") |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
679 (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
680 (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
681 (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
682 (let (initialized) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
683 (and (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
684 (or (not (buffer-modified-p)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
685 (y-or-n-p "Unsent message being composed; erase it? ")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
686 (progn (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
687 (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
688 (setq initialized t))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
689 (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
690 (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
691 (message "Auto save file for draft message exists; consider M-x mail-recover")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
692 initialized)) |
455 | 693 |
694 (defun mail-recover () | |
695 "Reread contents of current buffer from its last auto-save file." | |
696 (interactive) | |
697 (let ((file-name (make-auto-save-file-name))) | |
698 (cond ((save-window-excursion | |
699 (if (not (eq system-type 'vax-vms)) | |
700 (with-output-to-temp-buffer "*Directory*" | |
701 (buffer-disable-undo standard-output) | |
702 (call-process "ls" nil standard-output nil "-l" file-name))) | |
703 (yes-or-no-p (format "Recover auto save file %s? " file-name))) | |
704 (let ((buffer-read-only nil)) | |
705 (erase-buffer) | |
706 (insert-file-contents file-name nil))) | |
707 (t (error "mail-recover cancelled."))))) | |
708 | |
709 ;;;###autoload | |
710 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions) | |
711 "Like `mail' command, but display mail buffer in another window." | |
712 (interactive "P") | |
713 (let ((pop-up-windows t)) | |
714 (pop-to-buffer "*mail*")) | |
715 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
716 | |
717 ;;;###autoload | |
779 | 718 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) |
719 "Like `mail' command, but display mail buffer in another frame." | |
455 | 720 (interactive "P") |
779 | 721 (let ((pop-up-frames t)) |
455 | 722 (pop-to-buffer "*mail*")) |
723 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
724 | |
725 | |
726 ;;;###autoload | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
727 (define-key ctl-x-map "m" 'mail) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
728 |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
729 ;;;###autoload |
455 | 730 (define-key ctl-x-4-map "m" 'mail-other-window) |
731 | |
732 ;;;###autoload | |
779 | 733 (define-key ctl-x-5-map "m" 'mail-other-frame) |
455 | 734 |
735 | |
736 ;;; Do not add anything but external entries on this page. | |
584 | 737 |
738 (provide 'sendmail) | |
739 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
740 ;;; sendmail.el ends here |