Mercurial > emacs
annotate lisp/mail/sendmail.el @ 3350:c9689f8d0574
Provide edebug.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 31 May 1993 17:28:56 +0000 |
parents | 908134e8308a |
children | 7ccd5b60891d |
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 | |
3232
27d2747abab2
(send-mail-function): Use defvar. not defconst.
Richard M. Stallman <rms@gnu.org>
parents:
2920
diff
changeset
|
48 (defvar send-mail-function 'sendmail-send-it "\ |
455 | 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") |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
153 ;; Insert the signature. But remember the beginning of the message. |
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
154 (if to (setq to (point))) |
1025 | 155 (cond ((eq mail-signature t) |
156 (if (file-exists-p "~/.signature") | |
2633
c703d66d09c2
* sendmail.el (mail-setup): Don't insert "--\n" before the
Jim Blandy <jimb@redhat.com>
parents:
2551
diff
changeset
|
157 (insert-file-contents "~/.signature"))) |
1025 | 158 (mail-signature |
159 (insert mail-signature))) | |
455 | 160 (goto-char (point-max)) |
161 (or (bolp) (newline))) | |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
162 (if to (goto-char to)) |
455 | 163 (or to subject in-reply-to |
164 (set-buffer-modified-p nil)) | |
165 (run-hooks 'mail-setup-hook)) | |
166 | |
167 ;;;###autoload | |
168 (defun mail-mode () | |
169 "Major mode for editing mail to be sent. | |
170 Like Text Mode but with these additional commands: | |
171 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
172 C-c C-f move to a header field (and create it if there isn't): | |
173 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
174 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
175 C-c C-t move to message text. | |
176 C-c C-y mail-yank-original (insert current message, in Rmail). | |
177 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
178 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." | |
179 (interactive) | |
180 (kill-all-local-variables) | |
181 (make-local-variable 'mail-reply-buffer) | |
182 (setq mail-reply-buffer nil) | |
183 (make-local-variable 'mail-send-actions) | |
184 (set-syntax-table mail-mode-syntax-table) | |
185 (use-local-map mail-mode-map) | |
186 (setq local-abbrev-table text-mode-abbrev-table) | |
187 (setq major-mode 'mail-mode) | |
188 (setq mode-name "Mail") | |
189 (setq buffer-offer-save t) | |
190 (make-local-variable 'paragraph-separate) | |
191 (make-local-variable 'paragraph-start) | |
192 (setq paragraph-start (concat "^" mail-header-separator | |
193 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
194 paragraph-start)) | |
195 (setq paragraph-separate (concat "^" mail-header-separator | |
196 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
197 paragraph-separate)) | |
198 (run-hooks 'text-mode-hook 'mail-mode-hook)) | |
199 | |
200 (if mail-mode-map | |
201 nil | |
202 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
203 (define-key mail-mode-map "\C-c?" 'describe-mode) | |
204 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to) | |
205 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc) | |
573 | 206 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc) |
455 | 207 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc) |
208 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject) | |
209 (define-key mail-mode-map "\C-c\C-t" 'mail-text) | |
210 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original) | |
211 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message) | |
212 (define-key mail-mode-map "\C-c\C-w" 'mail-signature) | |
213 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via) | |
214 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit) | |
215 (define-key mail-mode-map "\C-c\C-s" 'mail-send)) | |
216 | |
217 (defun mail-send-and-exit (arg) | |
1539 | 218 "Send message like `mail-send', then, if no errors, exit from mail buffer. |
455 | 219 Prefix arg means don't delete this window." |
220 (interactive "P") | |
221 (mail-send) | |
1269
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
222 (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
|
223 (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
|
224 (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
|
225 (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
|
226 (save-excursion |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
227 (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
|
228 (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
|
229 (delete-window) |
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
230 (switch-to-buffer newbuf)))) |
455 | 231 |
232 (defun mail-send () | |
233 "Send the message in the current buffer. | |
234 If `mail-interactive' is non-nil, wait for success indication | |
235 or error messages, and inform user. | |
236 Otherwise any failure is reported in a message back to | |
237 the user from the mailer." | |
238 (interactive) | |
239 (if (or (buffer-modified-p) | |
240 (y-or-n-p "Message already sent; resend? ")) | |
241 (progn | |
242 (message "Sending...") | |
243 (run-hooks 'mail-send-hook) | |
244 (funcall send-mail-function) | |
245 ;; Now perform actions on successful sending. | |
246 (while mail-send-actions | |
247 (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
|
248 (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
|
249 (cdr (car mail-send-actions))) |
455 | 250 (error)) |
251 (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
|
252 (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
|
253 ;; 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
|
254 (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
|
255 (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
|
256 (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
|
257 (delete-auto-save-file-if-necessary t)))))) |
455 | 258 |
259 (defun sendmail-send-it () | |
260 (let ((errbuf (if mail-interactive | |
261 (generate-new-buffer " sendmail errors") | |
262 0)) | |
263 (tembuf (generate-new-buffer " sendmail temp")) | |
264 (case-fold-search nil) | |
265 delimline | |
266 (mailbuf (current-buffer))) | |
267 (unwind-protect | |
268 (save-excursion | |
269 (set-buffer tembuf) | |
270 (erase-buffer) | |
271 (insert-buffer-substring mailbuf) | |
272 (goto-char (point-max)) | |
273 ;; require one newline at the end. | |
274 (or (= (preceding-char) ?\n) | |
275 (insert ?\n)) | |
276 ;; Change header-delimiter to be what sendmail expects. | |
277 (goto-char (point-min)) | |
278 (re-search-forward | |
279 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
280 (replace-match "\n") | |
281 (backward-char 1) | |
282 (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
|
283 (if mail-aliases |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
284 (expand-mail-aliases (point-min) delimline)) |
455 | 285 (goto-char (point-min)) |
286 ;; ignore any blank lines in the header | |
287 (while (and (re-search-forward "\n\n\n*" delimline t) | |
288 (< (point) delimline)) | |
289 (replace-match "\n")) | |
290 (let ((case-fold-search t)) | |
291 (goto-char (point-min)) | |
292 (if (re-search-forward "^Sender:" delimline t) | |
293 (error "Sender may not be specified.")) | |
294 ;; Find and handle any FCC fields. | |
295 (goto-char (point-min)) | |
296 (if (re-search-forward "^FCC:" delimline t) | |
297 (mail-do-fcc delimline)) | |
298 ;; If the From is different than current user, insert Sender. | |
299 (goto-char (point-min)) | |
300 (and (re-search-forward "^From:" delimline t) | |
301 (progn | |
302 (require 'mail-utils) | |
303 (not (string-equal | |
304 (mail-strip-quoted-names | |
305 (save-restriction | |
306 (narrow-to-region (point-min) delimline) | |
307 (mail-fetch-field "From"))) | |
308 (user-login-name)))) | |
309 (progn | |
310 (forward-line 1) | |
311 (insert "Sender: " (user-login-name) "\n"))) | |
312 ;; "S:" is an abbreviation for "Subject:". | |
313 (goto-char (point-min)) | |
314 (if (re-search-forward "^S:" delimline t) | |
315 (replace-match "Subject:")) | |
316 ;; Don't send out a blank subject line | |
317 (goto-char (point-min)) | |
318 (if (re-search-forward "^Subject:[ \t]*\n" delimline t) | |
319 (replace-match "")) | |
320 (if mail-interactive | |
321 (save-excursion | |
322 (set-buffer errbuf) | |
323 (erase-buffer)))) | |
324 (apply 'call-process-region | |
325 (append (list (point-min) (point-max) | |
326 (if (boundp 'sendmail-program) | |
327 sendmail-program | |
328 "/usr/lib/sendmail") | |
329 nil errbuf nil | |
330 "-oi" "-t") | |
331 ;; Always specify who from, | |
332 ;; since some systems have broken sendmails. | |
333 (list "-f" (user-login-name)) | |
334 ;;; ;; Don't say "from root" if running under su. | |
335 ;;; (and (equal (user-real-login-name) "root") | |
336 ;;; (list "-f" (user-login-name))) | |
337 (and mail-alias-file | |
338 (list (concat "-oA" mail-alias-file))) | |
339 ;; These mean "report errors by mail" | |
340 ;; and "deliver in background". | |
341 (if (null mail-interactive) '("-oem" "-odb")))) | |
342 (if mail-interactive | |
343 (save-excursion | |
344 (set-buffer errbuf) | |
345 (goto-char (point-min)) | |
346 (while (re-search-forward "\n\n* *" nil t) | |
347 (replace-match "; ")) | |
348 (if (not (zerop (buffer-size))) | |
349 (error "Sending...failed to %s" | |
350 (buffer-substring (point-min) (point-max))))))) | |
351 (kill-buffer tembuf) | |
352 (if (bufferp errbuf) | |
353 (kill-buffer errbuf))))) | |
354 | |
355 (defun mail-do-fcc (header-end) | |
356 (let (fcc-list | |
357 (rmailbuf (current-buffer)) | |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
358 (time (current-time)) |
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)))) | |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
373 (let* ((foo (current-time-zone time)) |
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
374 (offset (if (car foo) (/ (car foo) 60) 0)) |
2551
551af54fb173
(mail-do-fcc): Make a numeric time zone indicator
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
375 (abs (abs offset))) |
551af54fb173
(mail-do-fcc): Make a numeric time zone indicator
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
376 (setq timezone (format "%s%02d%02d" |
551af54fb173
(mail-do-fcc): Make a numeric time zone indicator
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
377 (if (< offset 0) "-" "+") |
551af54fb173
(mail-do-fcc): Make a numeric time zone indicator
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
378 (/ abs 60) |
551af54fb173
(mail-do-fcc): Make a numeric time zone indicator
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
379 (% abs 60)))) |
455 | 380 (set-buffer tembuf) |
381 (erase-buffer) | |
3340
908134e8308a
(mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents:
3232
diff
changeset
|
382 ;; This initial newline is written out if the fcc file already exists. |
908134e8308a
(mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents:
3232
diff
changeset
|
383 (insert "\nFrom " (user-login-name) " " |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
384 (current-time-string time) "\n") |
1075 | 385 ;; Insert the time zone before the year. |
386 (forward-char -1) | |
387 (forward-word -1) | |
388 (insert timezone " ") | |
389 (goto-char (point-max)) | |
455 | 390 (insert-buffer-substring rmailbuf) |
391 ;; Make sure messages are separated. | |
392 (goto-char (point-max)) | |
393 (insert ?\n) | |
394 (goto-char 2) | |
395 ;; ``Quote'' "^From " as ">From " | |
396 ;; (note that this isn't really quoting, as there is no requirement | |
397 ;; that "^[>]+From " be quoted in the same transparent way.) | |
398 (let ((case-fold-search nil)) | |
399 (while (search-forward "\nFrom " nil t) | |
400 (forward-char -5) | |
401 (insert ?>))) | |
402 (while fcc-list | |
403 (let ((buffer (get-file-buffer (car fcc-list)))) | |
404 (if buffer | |
405 ;; File is present in a buffer => append to that buffer. | |
406 (let ((curbuf (current-buffer)) | |
407 (beg (point-min)) (end (point-max))) | |
408 (save-excursion | |
409 (set-buffer buffer) | |
410 ;; Keep the end of the accessible portion at the same place | |
411 ;; unless it is the end of the buffer. | |
412 (let ((max (if (/= (1+ (buffer-size)) (point-max)) | |
413 (point-max)))) | |
414 (unwind-protect | |
415 (progn | |
416 (narrow-to-region (point-min) (1+ (buffer-size))) | |
417 (goto-char (point-max)) | |
418 (if (eq major-mode 'rmail-mode) | |
419 ;; Append as a message to an RMAIL file | |
420 (let ((buffer-read-only nil)) | |
421 ;; This forces RMAIL's message counters to be | |
422 ;; recomputed when the next RMAIL operation is | |
423 ;; done on the buffer. | |
424 ;; See rmail-maybe-set-message-counters. | |
425 (setq rmail-total-messages nil) | |
426 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n" | |
427 "From: " (user-login-name) "\n" | |
428 "Date: " (current-time-string) "\n") | |
429 (insert-buffer-substring curbuf beg end) | |
746
1b0748ff6f65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
430 (insert "\n\C-_") |
1b0748ff6f65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
431 (rmail-set-message-counters)) |
455 | 432 (insert-buffer-substring curbuf beg end))) |
433 (if max (narrow-to-region (point-min) max)))))) | |
434 ;; Else append to the file directly. | |
435 (write-region | |
436 ;; Include a blank line before if file already exists. | |
3340
908134e8308a
(mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents:
3232
diff
changeset
|
437 |
455 | 438 (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min))) |
439 (point-max) (car fcc-list) t))) | |
440 (setq fcc-list (cdr fcc-list)))) | |
441 (kill-buffer tembuf))) | |
442 | |
443 (defun mail-sent-via () | |
444 "Make a Sent-via header line from each To or CC header line." | |
445 (interactive) | |
446 (save-excursion | |
447 (goto-char (point-min)) | |
448 ;; find the header-separator | |
449 (search-forward (concat "\n" mail-header-separator "\n")) | |
450 (forward-line -1) | |
451 ;; put a marker at the end of the header | |
452 (let ((end (point-marker)) | |
453 (case-fold-search t) | |
454 to-line) | |
455 (goto-char (point-min)) | |
456 ;; search for the To: lines and make Sent-via: lines from them | |
457 ;; search for the next To: line | |
458 (while (re-search-forward "^\\(to\\|cc\\):" end t) | |
459 ;; Grab this line plus all its continuations, sans the `to:'. | |
460 (let ((to-line | |
461 (buffer-substring (point) | |
462 (progn | |
463 (if (re-search-forward "^[^ \t\n]" end t) | |
464 (backward-char 1) | |
465 (goto-char end)) | |
466 (point))))) | |
467 ;; Insert a copy, with altered header field name. | |
468 (insert-before-markers "Sent-via:" to-line)))))) | |
469 | |
470 (defun mail-to () | |
471 "Move point to end of To-field." | |
472 (interactive) | |
473 (expand-abbrev) | |
474 (mail-position-on-field "To")) | |
475 | |
476 (defun mail-subject () | |
477 "Move point to end of Subject-field." | |
478 (interactive) | |
479 (expand-abbrev) | |
480 (mail-position-on-field "Subject")) | |
481 | |
482 (defun mail-cc () | |
483 "Move point to end of CC-field. Create a CC field if none." | |
484 (interactive) | |
485 (expand-abbrev) | |
486 (or (mail-position-on-field "cc" t) | |
487 (progn (mail-position-on-field "to") | |
488 (insert "\nCC: ")))) | |
489 | |
490 (defun mail-bcc () | |
491 "Move point to end of BCC-field. Create a BCC field if none." | |
492 (interactive) | |
493 (expand-abbrev) | |
494 (or (mail-position-on-field "bcc" t) | |
495 (progn (mail-position-on-field "to") | |
496 (insert "\nBCC: ")))) | |
497 | |
573 | 498 (defun mail-fcc () |
499 "Add a new FCC field, with file name completion." | |
500 (interactive) | |
501 (expand-abbrev) | |
502 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC. | |
503 (mail-position-on-field "to")) | |
504 (insert "\nFCC: " (read-file-name "Folder carbon copy: "))) | |
505 | |
455 | 506 (defun mail-position-on-field (field &optional soft) |
507 (let (end | |
508 (case-fold-search t)) | |
509 (goto-char (point-min)) | |
604 | 510 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n")) |
455 | 511 (setq end (match-beginning 0)) |
512 (goto-char (point-min)) | |
513 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t) | |
514 (progn | |
515 (re-search-forward "^[^ \t]" nil 'move) | |
516 (beginning-of-line) | |
517 (skip-chars-backward "\n") | |
518 t) | |
519 (or soft | |
520 (progn (goto-char end) | |
604 | 521 (insert field ": \n") |
522 (skip-chars-backward "\n"))) | |
455 | 523 nil))) |
524 | |
525 (defun mail-text () | |
526 "Move point to beginning of text field." | |
527 (interactive) | |
528 (goto-char (point-min)) | |
529 (search-forward (concat "\n" mail-header-separator "\n"))) | |
530 | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
531 (defun mail-signature (atpoint) |
1539 | 532 "Sign letter with contents of `mail-signature-file'." |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
533 (interactive "P") |
455 | 534 (save-excursion |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
535 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
536 (goto-char (point-max))) |
455 | 537 (skip-chars-backward " \t\n") |
538 (end-of-line) | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
539 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
540 (delete-region (point) (point-max))) |
455 | 541 (insert "\n\n--\n") |
1025 | 542 (insert-file-contents (expand-file-name "~/.signature")))) |
455 | 543 |
544 (defun mail-fill-yanked-message (&optional justifyp) | |
545 "Fill the paragraphs of a message yanked into this one. | |
546 Numeric argument means justify as well." | |
547 (interactive "P") | |
548 (save-excursion | |
549 (goto-char (point-min)) | |
550 (search-forward (concat "\n" mail-header-separator "\n") nil t) | |
551 (fill-individual-paragraphs (point) | |
552 (point-max) | |
553 justifyp | |
554 t))) | |
555 | |
556 (defun mail-yank-original (arg) | |
557 "Insert the message being replied to, if any (in rmail). | |
558 Puts point before the text and mark after. | |
559 Normally, indents each nonblank line ARG spaces (default 3). | |
560 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line. | |
561 | |
562 Just \\[universal-argument] as argument means don't indent, insert no prefix, | |
563 and don't delete any header fields." | |
564 (interactive "P") | |
565 (if mail-reply-buffer | |
566 (let ((start (point))) | |
567 (delete-windows-on mail-reply-buffer) | |
568 (insert-buffer mail-reply-buffer) | |
569 (if (consp arg) | |
570 nil | |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
571 (mail-yank-clear-headers start (mark t)) |
455 | 572 (if (null mail-yank-prefix) |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
573 (indent-rigidly start (mark t) |
455 | 574 (if arg (prefix-numeric-value arg) 3)) |
575 (save-excursion | |
576 (goto-char start) | |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
577 (while (< (point) (mark t)) |
455 | 578 (insert mail-yank-prefix) |
579 (forward-line 1))))) | |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
580 ;; This is like exchange-point-and-mark, but doesn't activate the mark. |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
581 ;; It is cleaner to avoid activation, even though the command |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
582 ;; loop would deactivate the mark because we inserted text. |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
583 (goto-char (prog1 (mark t) |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
584 (set-marker (mark-marker) (point) (current-buffer)))) |
455 | 585 (if (not (eolp)) (insert ?\n))))) |
586 | |
587 (defun mail-yank-clear-headers (start end) | |
588 (save-excursion | |
589 (goto-char start) | |
590 (if (search-forward "\n\n" end t) | |
591 (save-restriction | |
592 (narrow-to-region start (point)) | |
593 (goto-char start) | |
594 (while (let ((case-fold-search t)) | |
595 (re-search-forward mail-yank-ignored-headers nil t)) | |
596 (beginning-of-line) | |
597 (delete-region (point) | |
598 (progn (re-search-forward "\n[^ \t]") | |
599 (forward-char -1) | |
600 (point)))))))) | |
601 | |
602 ;; Put these last, to reduce chance of lossage from quitting in middle of loading the file. | |
603 | |
604 ;;;###autoload | |
605 (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
|
606 "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
|
607 When this function returns, the buffer `*mail*' is selected. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
608 The value is t if the message was newly initialized; otherwise, nil. |
455 | 609 |
1025 | 610 By default, the signature file `~/.signature' is inserted at the end; |
611 see the variable `mail-signature'. | |
455 | 612 |
613 \\<mail-mode-map> | |
614 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
615 | |
616 Various special commands starting with C-c are available in sendmail mode | |
617 to move to message header fields: | |
618 \\{mail-mode-map} | |
619 | |
620 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
621 when the message is initialized. | |
622 | |
623 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
624 a Reply-to: field with that address is inserted. | |
625 | |
626 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
627 is inserted. | |
628 | |
629 If `mail-setup-hook' is bound, its value is called with no arguments | |
630 after the message is initialized. It can add more default fields. | |
631 | |
632 When calling from a program, the second through fifth arguments | |
633 TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil | |
634 the initial contents of those header fields. | |
635 These arguments should not have final newlines. | |
636 The sixth argument REPLYBUFFER is a buffer whose contents | |
637 should be yanked if the user types C-c C-y. | |
638 The seventh argument ACTIONS is a list of actions to take | |
639 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
640 when the message is sent, we apply FUNCTION to ARGS. | |
641 This is how Rmail arranges to mark messages `answered'." | |
642 (interactive "P") | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
643 ;;; 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
|
644 ;;; 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
|
645 ;;; if you want to have multiple mail buffers. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
646 ;;; And then you can control which messages to save. --rms. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
647 ;;; (let ((index 1) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
648 ;;; buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
649 ;;; ;; 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
|
650 ;;; (if noerase |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
651 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
652 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
653 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
654 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
655 ;;; (not (buffer-modified-p buffer))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
656 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
657 ;;; (if buffer (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
658 ;;; ;; If none exists, start a new message. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
659 ;;; ;; This will never re-use an existing unmodified mail buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
660 ;;; ;; (since index is not 1 anymore). Perhaps it should. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
661 ;;; (setq noerase nil)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
662 ;;; ;; 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
|
663 ;;; (if (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
664 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
665 ;;; ;; Look for existing unmodified mail buffer. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
666 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
667 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
668 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
669 ;;; (buffer-modified-p buffer)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
670 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
671 ;;; ;; If none, make a new one. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
672 ;;; (or buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
673 ;;; (setq buffer (generate-new-buffer "*mail*"))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
674 ;;; ;; Go there and initialize it. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
675 ;;; (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
676 ;;; (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
677 ;;; (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
678 ;;; (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
679 ;;; (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
680 ;;; (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
681 ;;; (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
682 ;;; (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
683 ;;; (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
|
684 ;;; t)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
685 (switch-to-buffer "*mail*") |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
686 (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
687 (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
688 (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
689 (let (initialized) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
690 (and (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
691 (or (not (buffer-modified-p)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
692 (y-or-n-p "Unsent message being composed; erase it? ")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
693 (progn (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
694 (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
695 (setq initialized t))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
696 (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
697 (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
698 (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
|
699 initialized)) |
455 | 700 |
701 (defun mail-recover () | |
702 "Reread contents of current buffer from its last auto-save file." | |
703 (interactive) | |
704 (let ((file-name (make-auto-save-file-name))) | |
705 (cond ((save-window-excursion | |
706 (if (not (eq system-type 'vax-vms)) | |
707 (with-output-to-temp-buffer "*Directory*" | |
708 (buffer-disable-undo standard-output) | |
709 (call-process "ls" nil standard-output nil "-l" file-name))) | |
710 (yes-or-no-p (format "Recover auto save file %s? " file-name))) | |
711 (let ((buffer-read-only nil)) | |
712 (erase-buffer) | |
713 (insert-file-contents file-name nil))) | |
714 (t (error "mail-recover cancelled."))))) | |
715 | |
716 ;;;###autoload | |
717 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions) | |
718 "Like `mail' command, but display mail buffer in another window." | |
719 (interactive "P") | |
720 (let ((pop-up-windows t)) | |
721 (pop-to-buffer "*mail*")) | |
722 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
723 | |
724 ;;;###autoload | |
779 | 725 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) |
726 "Like `mail' command, but display mail buffer in another frame." | |
455 | 727 (interactive "P") |
779 | 728 (let ((pop-up-frames t)) |
455 | 729 (pop-to-buffer "*mail*")) |
730 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
731 | |
732 | |
733 ;;;###autoload | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
734 (define-key ctl-x-map "m" 'mail) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
735 |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
736 ;;;###autoload |
455 | 737 (define-key ctl-x-4-map "m" 'mail-other-window) |
738 | |
739 ;;;###autoload | |
779 | 740 (define-key ctl-x-5-map "m" 'mail-other-frame) |
455 | 741 |
742 | |
743 ;;; Do not add anything but external entries on this page. | |
584 | 744 |
745 (provide 'sendmail) | |
746 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
747 ;;; sendmail.el ends here |