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