Mercurial > emacs
annotate lisp/mail/sendmail.el @ 9438:d9dc17134dde
(buffer_slot_type_mismatch): Test against Lisp_Misc.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 11 Oct 1994 07:46:22 +0000 |
parents | 535197b3fc42 |
children | ce0b3e3021bf |
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 |
5731
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992, 1993, 1994 Free Software Foundation, Inc. |
846
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 | |
5261
50406a868f05
(mail-default-reply-to): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
5210
diff
changeset
|
61 ;;;###autoload |
8972
ad8f1cea49cc
(mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents:
8955
diff
changeset
|
62 (defvar mail-default-reply-to t |
455 | 63 "*Address to insert as default Reply-to field of outgoing messages.") |
64 | |
8488
ddd8e250a65d
(mail-alias-file): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
8416
diff
changeset
|
65 ;;;###autoload |
455 | 66 (defvar mail-alias-file nil |
67 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
68 This file defines aliases to be expanded by the mailer; this is a different | |
69 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
70 This variable has no effect unless your system uses sendmail as its mailer.") | |
71 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
72 (defvar mail-aliases t |
1468
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
73 "Alist of mail address aliases, |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
74 or t meaning should be initialized from `~/.mailrc'. |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
75 The alias definitions in `~/.mailrc' have this form: |
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
76 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
|
77 |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
78 (defvar mail-alias-modtime nil |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
79 "The modification time of ~/.mailrc when it was last examined.") |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
80 |
455 | 81 (defvar mail-yank-prefix nil |
82 "*Prefix insert on lines of yanked message being replied to. | |
83 nil means use indentation.") | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
84 (defvar mail-indentation-spaces 3 |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
85 "*Number of spaces to insert at the beginning of each cited line. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
86 Used by `mail-yank-original' via `mail-yank-cite'.") |
4418
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
87 (defvar mail-yank-hooks nil |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
88 "Obsolete hook for modifying a citation just inserted in the mail buffer. |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
89 Each hook function can find the citation between (point) and (mark t). |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
90 And each hook function should leave point and mark around the citation |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
91 text as modified. |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
92 |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
93 This is a normal hook, misnamed for historical reasons. |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
94 It is semi-obsolete and mail agents should no longer use it.") |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
95 |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
96 (defvar mail-citation-hook nil |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
97 "*Hook for modifying a citation just inserted in the mail buffer. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
98 Each hook function can find the citation between (point) and (mark t). |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
99 And each hook function should leave point and mark around the citation |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
100 text as modified. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
101 |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
102 If this hook is entirely empty (nil), a default action is taken |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
103 instead of no action.") |
455 | 104 |
105 (defvar mail-abbrevs-loaded nil) | |
106 (defvar mail-mode-map nil) | |
107 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
108 (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
|
109 "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
|
110 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
111 |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
112 (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
|
113 "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
|
114 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
|
115 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
|
116 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
|
117 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
118 |
999 | 119 ;;;###autoload |
1025 | 120 (defvar mail-signature nil |
121 "*Text inserted at end of mail buffer when a message is initialized. | |
122 If t, it means to insert the contents of the file `~/.signature'.") | |
455 | 123 |
124 (defvar mail-reply-buffer nil) | |
125 (defvar mail-send-actions nil | |
126 "A list of actions to be performed upon successful sending of a message.") | |
127 | |
128 (defvar mail-default-headers nil | |
129 "*A string containing header lines, to be inserted in outgoing messages. | |
130 It is inserted before you edit the message, | |
131 so you can edit or delete these lines.") | |
132 | |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
133 (defvar mail-bury-selects-summary t |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
134 "*If non-nil, try to show RMAIL summary buffer after returning from mail. |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
135 The functions \\[mail-send-on-exit] or \\[mail-dont-send] select |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
136 the RMAIL summary buffer before returning, if it exists and this variable |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
137 is non-nil.") |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
138 |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
139 ;; Note: could use /usr/ucb/mail instead of sendmail; |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
140 ;; options -t, and -v if not interactive. |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
141 (defvar mail-mailer-swallows-blank-line |
5731
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
142 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" system-configuration) |
8253
e390776e5846
(mail-mailer-swallows-blank-line): Verify sendmail.cf
Richard M. Stallman <rms@gnu.org>
parents:
8216
diff
changeset
|
143 (file-readable-p "/etc/sendmail.cf") |
5731
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
144 (let ((buffer (get-buffer-create " *temp*"))) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
145 (unwind-protect |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
146 (save-excursion |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
147 (set-buffer buffer) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
148 (insert-file-contents "/etc/sendmail.cf") |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
149 (goto-char (point-min)) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
150 (let ((case-fold-search nil)) |
5977
8c5cc76de654
(mail-mailer-swallows-blank-line): Fix regexp typo.
Richard M. Stallman <rms@gnu.org>
parents:
5847
diff
changeset
|
151 (re-search-forward "^OR\\>" nil t))) |
5731
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
152 (kill-buffer buffer)))) |
7399
473e0321d65a
(mail-mailer-swallows-blank-line): Put space and tab into brackets.
Richard M. Stallman <rms@gnu.org>
parents:
6443
diff
changeset
|
153 '(looking-at "[ \t]\\|[-a-zA-Z]+:")) |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
154 "Set this non-nil if the system's mailer runs the header and body together. |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
155 \(This problem exists on Sunos 4 when sendmail is run in remote mode.) |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
156 The value should be an expression to test whether the problem will |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
157 actually occur.") |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
158 |
455 | 159 (defvar mail-mode-syntax-table nil |
160 "Syntax table used while in mail mode.") | |
161 | |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
162 (if (not mail-mode-syntax-table) |
455 | 163 (progn |
164 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table)) | |
165 (modify-syntax-entry ?% ". " mail-mode-syntax-table))) | |
166 | |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
167 (defvar mail-font-lock-keywords |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
168 (list '("^To:" . font-lock-function-name-face) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
169 '("^B?CC:\\|^Reply-To:" . font-lock-keyword-face) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
170 '("^Subject:" . font-lock-comment-face) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
171 '("^Subject:\\s *\\(.+\\)$" 1 font-lock-type-face) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
172 (list (concat "^\\(" mail-header-separator "\\)$") 1 |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
173 'font-lock-comment-face) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
174 '("^[ \t]*\\sw*[>|}].*$" . font-lock-reference-face) ; Citation. |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
175 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*$" . font-lock-string-face)) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
176 "Additional expressions to highlight in Mail mode.") |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
177 |
7917
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
178 (defvar mail-send-hook nil |
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
179 "Normal hook run before sending mail, in Mail mode.") |
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
180 |
9004
a253156d96b5
(sendmail-synch-aliases): Renamed from sync-mail-aliases. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
8972
diff
changeset
|
181 (defun sendmail-synch-aliases () |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
182 (let ((modtime (nth 5 (file-attributes "~/.mailrc")))) |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
183 (or (equal mail-alias-modtime modtime) |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
184 (setq mail-alias-modtime modtime |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
185 mail-aliases t)))) |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
186 |
455 | 187 (defun mail-setup (to subject in-reply-to cc replybuffer actions) |
8972
ad8f1cea49cc
(mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents:
8955
diff
changeset
|
188 (if (eq mail-default-reply-to t) |
ad8f1cea49cc
(mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents:
8955
diff
changeset
|
189 (setq mail-default-reply-to (getenv "REPLYTO"))) |
9004
a253156d96b5
(sendmail-synch-aliases): Renamed from sync-mail-aliases. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
8972
diff
changeset
|
190 (sendmail-synch-aliases) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
191 (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
|
192 (progn |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
193 (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
|
194 (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
|
195 (build-mail-aliases)))) |
455 | 196 (setq mail-send-actions actions) |
197 (setq mail-reply-buffer replybuffer) | |
198 (goto-char (point-min)) | |
199 (insert "To: ") | |
200 (save-excursion | |
201 (if to | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
202 ;; 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
|
203 ;; 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
|
204 ;; 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
|
205 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
206 (address-start (point))) |
455 | 207 (insert to "\n") |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
208 (fill-region-as-paragraph address-start (point-max))) |
455 | 209 (newline)) |
210 (if cc | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
211 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
212 (address-start (progn (insert "CC: ") (point)))) |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
213 (insert cc "\n") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
214 (fill-region-as-paragraph address-start (point-max)))) |
455 | 215 (if in-reply-to |
216 (insert "In-reply-to: " in-reply-to "\n")) | |
217 (insert "Subject: " (or subject "") "\n") | |
218 (if mail-default-headers | |
219 (insert mail-default-headers)) | |
220 (if mail-default-reply-to | |
221 (insert "Reply-to: " mail-default-reply-to "\n")) | |
222 (if mail-self-blind | |
223 (insert "BCC: " (user-login-name) "\n")) | |
224 (if mail-archive-file-name | |
225 (insert "FCC: " mail-archive-file-name "\n")) | |
1024
ceb4469d3cd7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
999
diff
changeset
|
226 (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
|
227 ;; 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
|
228 (if to (setq to (point))) |
1025 | 229 (cond ((eq mail-signature t) |
230 (if (file-exists-p "~/.signature") | |
8216
1f1387385ac6
(mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents:
8145
diff
changeset
|
231 (progn |
1f1387385ac6
(mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents:
8145
diff
changeset
|
232 (insert "\n\n-- \n") |
1f1387385ac6
(mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents:
8145
diff
changeset
|
233 (insert-file-contents "~/.signature")))) |
1025 | 234 (mail-signature |
235 (insert mail-signature))) | |
455 | 236 (goto-char (point-max)) |
237 (or (bolp) (newline))) | |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
238 (if to (goto-char to)) |
455 | 239 (or to subject in-reply-to |
240 (set-buffer-modified-p nil)) | |
241 (run-hooks 'mail-setup-hook)) | |
242 | |
243 ;;;###autoload | |
244 (defun mail-mode () | |
245 "Major mode for editing mail to be sent. | |
246 Like Text Mode but with these additional commands: | |
247 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
248 C-c C-f move to a header field (and create it if there isn't): | |
249 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
250 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
6443 | 251 C-c C-f C-f move to FCC: |
455 | 252 C-c C-t move to message text. |
253 C-c C-y mail-yank-original (insert current message, in Rmail). | |
254 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
255 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." | |
256 (interactive) | |
257 (kill-all-local-variables) | |
258 (make-local-variable 'mail-reply-buffer) | |
259 (setq mail-reply-buffer nil) | |
260 (make-local-variable 'mail-send-actions) | |
261 (set-syntax-table mail-mode-syntax-table) | |
262 (use-local-map mail-mode-map) | |
263 (setq local-abbrev-table text-mode-abbrev-table) | |
264 (setq major-mode 'mail-mode) | |
265 (setq mode-name "Mail") | |
266 (setq buffer-offer-save t) | |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
267 (make-local-variable 'font-lock-keywords) |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
268 (setq font-lock-keywords mail-font-lock-keywords) |
455 | 269 (make-local-variable 'paragraph-separate) |
270 (make-local-variable 'paragraph-start) | |
271 (setq paragraph-start (concat "^" mail-header-separator | |
272 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
273 paragraph-start)) | |
274 (setq paragraph-separate (concat "^" mail-header-separator | |
275 "$\\|^[ \t]*[-_][-_][-_]+$\\|" | |
276 paragraph-separate)) | |
277 (run-hooks 'text-mode-hook 'mail-mode-hook)) | |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
278 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
279 ;;; Set up keymap. |
455 | 280 |
281 (if mail-mode-map | |
282 nil | |
283 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
284 (define-key mail-mode-map "\C-c?" 'describe-mode) | |
285 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to) | |
286 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc) | |
573 | 287 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc) |
455 | 288 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc) |
289 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject) | |
290 (define-key mail-mode-map "\C-c\C-t" 'mail-text) | |
291 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original) | |
292 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message) | |
293 (define-key mail-mode-map "\C-c\C-w" 'mail-signature) | |
294 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via) | |
295 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit) | |
296 (define-key mail-mode-map "\C-c\C-s" 'mail-send)) | |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
297 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
298 (define-key mail-mode-map [menu-bar mail] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
299 (cons "Mail" (make-sparse-keymap "Mail"))) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
300 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
301 (define-key mail-mode-map [menu-bar mail fill] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
302 '("Fill Citation" . mail-fill-yanked-message)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
303 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
304 (define-key mail-mode-map [menu-bar mail yank] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
305 '("Cite Original" . mail-yank-original)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
306 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
307 (define-key mail-mode-map [menu-bar mail signature] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
308 '("Insert Signature" . mail-signature)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
309 |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
310 (define-key mail-mode-map [menu-bar mail cancel] |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
311 '("Cancel" . mail-dont-send)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
312 |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
313 (define-key mail-mode-map [menu-bar mail send-stay] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
314 '("Send, Keep Editing" . mail-send)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
315 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
316 (define-key mail-mode-map [menu-bar mail send] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
317 '("Send Message" . mail-send-and-exit)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
318 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
319 (define-key mail-mode-map [menu-bar headers] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
320 (cons "Headers" (make-sparse-keymap "Headers"))) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
321 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
322 (define-key mail-mode-map [menu-bar headers sent-via] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
323 '("Sent Via" . mail-sent-via)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
324 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
325 (define-key mail-mode-map [menu-bar headers text] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
326 '("Text" . mail-text)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
327 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
328 (define-key mail-mode-map [menu-bar headers bcc] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
329 '("Bcc" . mail-bcc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
330 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
331 (define-key mail-mode-map [menu-bar headers fcc] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
332 '("Fcc" . mail-fcc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
333 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
334 (define-key mail-mode-map [menu-bar headers cc] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
335 '("Cc" . mail-cc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
336 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
337 (define-key mail-mode-map [menu-bar headers subject] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
338 '("Subject" . mail-subject)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
339 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
340 (define-key mail-mode-map [menu-bar headers to] |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
341 '("To" . mail-to)) |
455 | 342 |
343 (defun mail-send-and-exit (arg) | |
1539 | 344 "Send message like `mail-send', then, if no errors, exit from mail buffer. |
455 | 345 Prefix arg means don't delete this window." |
346 (interactive "P") | |
347 (mail-send) | |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
348 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
349 |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
350 (defun mail-dont-send (arg) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
351 "Don't send the message you have been editing. |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
352 Prefix arg means don't delete this window." |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
353 (interactive "P") |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
354 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
355 |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
356 (defun mail-bury (arg) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
357 "Bury this mail buffer." |
1269
d123cad4373c
(mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1075
diff
changeset
|
358 (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
|
359 (bury-buffer (current-buffer)) |
4194
053660379077
(mail-bury): Check that frame-parameters is defined.
Richard M. Stallman <rms@gnu.org>
parents:
4107
diff
changeset
|
360 (if (and (fboundp 'frame-parameters) |
053660379077
(mail-bury): Check that frame-parameters is defined.
Richard M. Stallman <rms@gnu.org>
parents:
4107
diff
changeset
|
361 (cdr (assq 'dedicated (frame-parameters))) |
4107
7b855e27223f
(mail-bury): If selected frame is dedicated,
Richard M. Stallman <rms@gnu.org>
parents:
4074
diff
changeset
|
362 (not (null (delq (selected-frame) (visible-frame-list))))) |
7b855e27223f
(mail-bury): If selected frame is dedicated,
Richard M. Stallman <rms@gnu.org>
parents:
4074
diff
changeset
|
363 (delete-frame (selected-frame)) |
7833
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
364 (let (rmail-flag summary-buffer) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
365 (and (not arg) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
366 (not (one-window-p)) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
367 (save-excursion |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
368 (set-buffer (window-buffer (next-window (selected-window) 'not))) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
369 (setq rmail-flag (eq major-mode 'rmail-mode)) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
370 (setq summary-buffer |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
371 (and mail-bury-selects-summary |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
372 (boundp 'rmail-summary-buffer) |
7963
b66df6f80740
(mail-bury): Test that rmail-summary-buffer is boundp.
Richard M. Stallman <rms@gnu.org>
parents:
7917
diff
changeset
|
373 rmail-summary-buffer |
7833
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
374 (buffer-name rmail-summary-buffer) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
375 (not (get-buffer-window rmail-summary-buffer)) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
376 rmail-summary-buffer)))) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
377 (if rmail-flag |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
378 ;; If the Rmail buffer has a summary, show that. |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
379 (if summary-buffer (switch-to-buffer summary-buffer) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
380 (delete-window)) |
6cc0db90bcc3
(mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents:
7642
diff
changeset
|
381 (switch-to-buffer newbuf)))))) |
455 | 382 |
383 (defun mail-send () | |
384 "Send the message in the current buffer. | |
385 If `mail-interactive' is non-nil, wait for success indication | |
386 or error messages, and inform user. | |
387 Otherwise any failure is reported in a message back to | |
388 the user from the mailer." | |
389 (interactive) | |
3949
d95172e91f4e
(mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
3859
diff
changeset
|
390 (if (if buffer-file-name |
d95172e91f4e
(mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
3859
diff
changeset
|
391 (y-or-n-p "Send buffer contents as mail message? ") |
d95172e91f4e
(mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
3859
diff
changeset
|
392 (or (buffer-modified-p) |
d95172e91f4e
(mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents:
3859
diff
changeset
|
393 (y-or-n-p "Message already sent; resend? "))) |
455 | 394 (progn |
7917
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
395 (run-hooks 'mail-send-hook) |
455 | 396 (message "Sending...") |
397 (funcall send-mail-function) | |
398 ;; Now perform actions on successful sending. | |
399 (while mail-send-actions | |
400 (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
|
401 (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
|
402 (cdr (car mail-send-actions))) |
455 | 403 (error)) |
404 (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
|
405 (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
|
406 ;; 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
|
407 (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
|
408 (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
|
409 (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
|
410 (delete-auto-save-file-if-necessary t)))))) |
455 | 411 |
412 (defun sendmail-send-it () | |
413 (let ((errbuf (if mail-interactive | |
414 (generate-new-buffer " sendmail errors") | |
415 0)) | |
416 (tembuf (generate-new-buffer " sendmail temp")) | |
417 (case-fold-search nil) | |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
418 resend-to-addresses |
455 | 419 delimline |
420 (mailbuf (current-buffer))) | |
421 (unwind-protect | |
422 (save-excursion | |
423 (set-buffer tembuf) | |
424 (erase-buffer) | |
425 (insert-buffer-substring mailbuf) | |
426 (goto-char (point-max)) | |
427 ;; require one newline at the end. | |
428 (or (= (preceding-char) ?\n) | |
429 (insert ?\n)) | |
430 ;; Change header-delimiter to be what sendmail expects. | |
431 (goto-char (point-min)) | |
432 (re-search-forward | |
433 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
434 (replace-match "\n") | |
435 (backward-char 1) | |
436 (setq delimline (point-marker)) | |
9004
a253156d96b5
(sendmail-synch-aliases): Renamed from sync-mail-aliases. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
8972
diff
changeset
|
437 (sendmail-synch-aliases) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
438 (if mail-aliases |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
439 (expand-mail-aliases (point-min) delimline)) |
455 | 440 (goto-char (point-min)) |
441 ;; ignore any blank lines in the header | |
442 (while (and (re-search-forward "\n\n\n*" delimline t) | |
443 (< (point) delimline)) | |
444 (replace-match "\n")) | |
445 (let ((case-fold-search t)) | |
446 (goto-char (point-min)) | |
447 ;; Find and handle any FCC fields. | |
448 (goto-char (point-min)) | |
449 (if (re-search-forward "^FCC:" delimline t) | |
450 (mail-do-fcc delimline)) | |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
451 (goto-char (point-min)) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
452 (require 'mail-utils) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
453 (while (re-search-forward "^Resent-to:" delimline t) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
454 (setq resend-to-addresses |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
455 (save-restriction |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
456 (narrow-to-region (point) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
457 (save-excursion |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
458 (end-of-line) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
459 (point))) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
460 (append (mail-parse-comma-list) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
461 resend-to-addresses)))) |
4910
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
462 ;;; Apparently this causes a duplicate Sender. |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
463 ;;; ;; If the From is different than current user, insert Sender. |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
464 ;;; (goto-char (point-min)) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
465 ;;; (and (re-search-forward "^From:" delimline t) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
466 ;;; (progn |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
467 ;;; (require 'mail-utils) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
468 ;;; (not (string-equal |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
469 ;;; (mail-strip-quoted-names |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
470 ;;; (save-restriction |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
471 ;;; (narrow-to-region (point-min) delimline) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
472 ;;; (mail-fetch-field "From"))) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
473 ;;; (user-login-name)))) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
474 ;;; (progn |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
475 ;;; (forward-line 1) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
476 ;;; (insert "Sender: " (user-login-name) "\n"))) |
455 | 477 ;; "S:" is an abbreviation for "Subject:". |
478 (goto-char (point-min)) | |
479 (if (re-search-forward "^S:" delimline t) | |
480 (replace-match "Subject:")) | |
481 ;; Don't send out a blank subject line | |
482 (goto-char (point-min)) | |
483 (if (re-search-forward "^Subject:[ \t]*\n" delimline t) | |
484 (replace-match "")) | |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
485 ;; Insert an extra newline if we need it to work around |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
486 ;; Sun's bug that swallows newlines. |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
487 (goto-char (1+ delimline)) |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
488 (if (eval mail-mailer-swallows-blank-line) |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
489 (newline)) |
455 | 490 (if mail-interactive |
491 (save-excursion | |
492 (set-buffer errbuf) | |
493 (erase-buffer)))) | |
494 (apply 'call-process-region | |
495 (append (list (point-min) (point-max) | |
496 (if (boundp 'sendmail-program) | |
497 sendmail-program | |
498 "/usr/lib/sendmail") | |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
499 nil errbuf nil "-oi") |
455 | 500 ;; Always specify who from, |
501 ;; since some systems have broken sendmails. | |
502 (list "-f" (user-login-name)) | |
503 ;;; ;; Don't say "from root" if running under su. | |
504 ;;; (and (equal (user-real-login-name) "root") | |
505 ;;; (list "-f" (user-login-name))) | |
506 (and mail-alias-file | |
507 (list (concat "-oA" mail-alias-file))) | |
508 ;; These mean "report errors by mail" | |
509 ;; and "deliver in background". | |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
510 (if (null mail-interactive) '("-oem" "-odb")) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
511 ;; Get the addresses from the message |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
512 ;; unless this is a resend. |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
513 ;; We must not do that for a resend |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
514 ;; because we would find the original addresses. |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
515 ;; For a resend, include the specific addresses. |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
516 (or resend-to-addresses |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
517 '("-t")))) |
455 | 518 (if mail-interactive |
519 (save-excursion | |
520 (set-buffer errbuf) | |
521 (goto-char (point-min)) | |
522 (while (re-search-forward "\n\n* *" nil t) | |
523 (replace-match "; ")) | |
524 (if (not (zerop (buffer-size))) | |
525 (error "Sending...failed to %s" | |
526 (buffer-substring (point-min) (point-max))))))) | |
527 (kill-buffer tembuf) | |
528 (if (bufferp errbuf) | |
529 (kill-buffer errbuf))))) | |
530 | |
531 (defun mail-do-fcc (header-end) | |
532 (let (fcc-list | |
533 (rmailbuf (current-buffer)) | |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
534 (time (current-time)) |
455 | 535 (tembuf (generate-new-buffer " rmail output")) |
536 (case-fold-search t)) | |
537 (save-excursion | |
538 (goto-char (point-min)) | |
539 (while (re-search-forward "^FCC:[ \t]*" header-end t) | |
540 (setq fcc-list (cons (buffer-substring (point) | |
541 (progn | |
542 (end-of-line) | |
543 (skip-chars-backward " \t") | |
544 (point))) | |
545 fcc-list)) | |
546 (delete-region (match-beginning 0) | |
547 (progn (forward-line 1) (point)))) | |
548 (set-buffer tembuf) | |
549 (erase-buffer) | |
3340
908134e8308a
(mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents:
3232
diff
changeset
|
550 ;; 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
|
551 (insert "\nFrom " (user-login-name) " " |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
552 (current-time-string time) "\n") |
1075 | 553 ;; Insert the time zone before the year. |
554 (forward-char -1) | |
555 (forward-word -1) | |
4021
5a8ed60f39f2
(mail-do-fcc): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents:
3949
diff
changeset
|
556 (require 'mail-utils) |
5a8ed60f39f2
(mail-do-fcc): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents:
3949
diff
changeset
|
557 (insert (mail-rfc822-time-zone time) " ") |
1075 | 558 (goto-char (point-max)) |
455 | 559 (insert-buffer-substring rmailbuf) |
560 ;; Make sure messages are separated. | |
561 (goto-char (point-max)) | |
562 (insert ?\n) | |
563 (goto-char 2) | |
564 ;; ``Quote'' "^From " as ">From " | |
565 ;; (note that this isn't really quoting, as there is no requirement | |
566 ;; that "^[>]+From " be quoted in the same transparent way.) | |
567 (let ((case-fold-search nil)) | |
568 (while (search-forward "\nFrom " nil t) | |
569 (forward-char -5) | |
570 (insert ?>))) | |
571 (while fcc-list | |
572 (let ((buffer (get-file-buffer (car fcc-list)))) | |
573 (if buffer | |
574 ;; File is present in a buffer => append to that buffer. | |
575 (let ((curbuf (current-buffer)) | |
3468
f3052346f005
(mail-do-fcc): Omit first 2 lines when appending to an RMAIL buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3424
diff
changeset
|
576 (beg (point-min)) (end (point-max)) |
f3052346f005
(mail-do-fcc): Omit first 2 lines when appending to an RMAIL buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3424
diff
changeset
|
577 (beg2 (save-excursion (goto-char (point-min)) |
f3052346f005
(mail-do-fcc): Omit first 2 lines when appending to an RMAIL buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3424
diff
changeset
|
578 (forward-line 2) (point)))) |
455 | 579 (save-excursion |
580 (set-buffer buffer) | |
581 ;; Keep the end of the accessible portion at the same place | |
582 ;; unless it is the end of the buffer. | |
583 (let ((max (if (/= (1+ (buffer-size)) (point-max)) | |
584 (point-max)))) | |
585 (unwind-protect | |
3513
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
586 ;; Code below lifted from rmailout.el |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
587 ;; function rmail-output-to-rmail-file: |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
588 (let ((buffer-read-only nil) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
589 (msg (and (boundp 'rmail-current-message) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
590 rmail-current-message))) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
591 ;; If MSG is non-nil, buffer is in RMAIL mode. |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
592 (if msg |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
593 (progn |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
594 (rmail-maybe-set-message-counters) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
595 (widen) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
596 (narrow-to-region (point-max) (point-max)) |
455 | 597 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n" |
598 "From: " (user-login-name) "\n" | |
4021
5a8ed60f39f2
(mail-do-fcc): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents:
3949
diff
changeset
|
599 "Date: " (mail-rfc822-date) "\n") |
3468
f3052346f005
(mail-do-fcc): Omit first 2 lines when appending to an RMAIL buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3424
diff
changeset
|
600 (insert-buffer-substring curbuf beg2 end) |
746
1b0748ff6f65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
601 (insert "\n\C-_") |
3513
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
602 (goto-char (point-min)) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
603 (widen) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
604 (search-backward "\n\^_") |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
605 (narrow-to-region (point) (point-max)) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
606 (rmail-count-new-messages t) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
607 (rmail-show-message msg) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
608 (setq max nil)) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
609 ;; Output file not in rmail mode |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
610 ;; => just insert at the end. |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
611 (narrow-to-region (point-min) (1+ (buffer-size))) |
8154b7ce787e
(mail-do-fcc): Replace the code for appending to buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3468
diff
changeset
|
612 (goto-char (point-max)) |
455 | 613 (insert-buffer-substring curbuf beg end))) |
614 (if max (narrow-to-region (point-min) max)))))) | |
615 ;; Else append to the file directly. | |
616 (write-region | |
6136
74f4a8947d57
(mail-do-fcc): Don't write a newline before the text.
Richard M. Stallman <rms@gnu.org>
parents:
5977
diff
changeset
|
617 (1+ (point-min)) (point-max) (car fcc-list) t))) |
455 | 618 (setq fcc-list (cdr fcc-list)))) |
619 (kill-buffer tembuf))) | |
620 | |
621 (defun mail-sent-via () | |
622 "Make a Sent-via header line from each To or CC header line." | |
623 (interactive) | |
624 (save-excursion | |
625 (goto-char (point-min)) | |
626 ;; find the header-separator | |
627 (search-forward (concat "\n" mail-header-separator "\n")) | |
628 (forward-line -1) | |
629 ;; put a marker at the end of the header | |
630 (let ((end (point-marker)) | |
631 (case-fold-search t) | |
632 to-line) | |
633 (goto-char (point-min)) | |
634 ;; search for the To: lines and make Sent-via: lines from them | |
635 ;; search for the next To: line | |
636 (while (re-search-forward "^\\(to\\|cc\\):" end t) | |
637 ;; Grab this line plus all its continuations, sans the `to:'. | |
638 (let ((to-line | |
639 (buffer-substring (point) | |
640 (progn | |
641 (if (re-search-forward "^[^ \t\n]" end t) | |
642 (backward-char 1) | |
643 (goto-char end)) | |
644 (point))))) | |
645 ;; Insert a copy, with altered header field name. | |
646 (insert-before-markers "Sent-via:" to-line)))))) | |
647 | |
648 (defun mail-to () | |
649 "Move point to end of To-field." | |
650 (interactive) | |
651 (expand-abbrev) | |
652 (mail-position-on-field "To")) | |
653 | |
654 (defun mail-subject () | |
655 "Move point to end of Subject-field." | |
656 (interactive) | |
657 (expand-abbrev) | |
658 (mail-position-on-field "Subject")) | |
659 | |
660 (defun mail-cc () | |
661 "Move point to end of CC-field. Create a CC field if none." | |
662 (interactive) | |
663 (expand-abbrev) | |
664 (or (mail-position-on-field "cc" t) | |
665 (progn (mail-position-on-field "to") | |
666 (insert "\nCC: ")))) | |
667 | |
668 (defun mail-bcc () | |
669 "Move point to end of BCC-field. Create a BCC field if none." | |
670 (interactive) | |
671 (expand-abbrev) | |
672 (or (mail-position-on-field "bcc" t) | |
673 (progn (mail-position-on-field "to") | |
674 (insert "\nBCC: ")))) | |
675 | |
5210
4db0922992a3
(mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents:
5097
diff
changeset
|
676 (defun mail-fcc (folder) |
573 | 677 "Add a new FCC field, with file name completion." |
5210
4db0922992a3
(mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents:
5097
diff
changeset
|
678 (interactive "FFolder carbon copy: ") |
573 | 679 (expand-abbrev) |
680 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC. | |
681 (mail-position-on-field "to")) | |
5210
4db0922992a3
(mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents:
5097
diff
changeset
|
682 (insert "\nFCC: " folder)) |
573 | 683 |
455 | 684 (defun mail-position-on-field (field &optional soft) |
685 (let (end | |
686 (case-fold-search t)) | |
687 (goto-char (point-min)) | |
604 | 688 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n")) |
455 | 689 (setq end (match-beginning 0)) |
690 (goto-char (point-min)) | |
691 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t) | |
692 (progn | |
693 (re-search-forward "^[^ \t]" nil 'move) | |
694 (beginning-of-line) | |
695 (skip-chars-backward "\n") | |
696 t) | |
697 (or soft | |
698 (progn (goto-char end) | |
604 | 699 (insert field ": \n") |
700 (skip-chars-backward "\n"))) | |
455 | 701 nil))) |
702 | |
703 (defun mail-text () | |
704 "Move point to beginning of text field." | |
705 (interactive) | |
706 (goto-char (point-min)) | |
707 (search-forward (concat "\n" mail-header-separator "\n"))) | |
708 | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
709 (defun mail-signature (atpoint) |
5847
8a2e912b29a5
(mail-signature): Insert a `-- ' line.
Richard M. Stallman <rms@gnu.org>
parents:
5839
diff
changeset
|
710 "Sign letter with contents of the file `~/.signature'. |
5839 | 711 Prefix arg means put contents at point." |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
712 (interactive "P") |
455 | 713 (save-excursion |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
714 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
715 (goto-char (point-max))) |
455 | 716 (skip-chars-backward " \t\n") |
717 (end-of-line) | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
718 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
719 (delete-region (point) (point-max))) |
5847
8a2e912b29a5
(mail-signature): Insert a `-- ' line.
Richard M. Stallman <rms@gnu.org>
parents:
5839
diff
changeset
|
720 (insert "\n\n-- \n") |
1025 | 721 (insert-file-contents (expand-file-name "~/.signature")))) |
455 | 722 |
723 (defun mail-fill-yanked-message (&optional justifyp) | |
724 "Fill the paragraphs of a message yanked into this one. | |
725 Numeric argument means justify as well." | |
726 (interactive "P") | |
727 (save-excursion | |
728 (goto-char (point-min)) | |
729 (search-forward (concat "\n" mail-header-separator "\n") nil t) | |
730 (fill-individual-paragraphs (point) | |
731 (point-max) | |
732 justifyp | |
733 t))) | |
734 | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
735 (defun mail-indent-citation () |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
736 "Modify text just inserted from a message to be cited. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
737 The inserted text should be the region. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
738 When this function returns, the region is again around the modified text. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
739 |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
740 Normally, indent each nonblank line `mail-indentation-spaces' spaces. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
741 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line." |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
742 (let ((start (point))) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
743 (mail-yank-clear-headers start (mark t)) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
744 (if (null mail-yank-prefix) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
745 (indent-rigidly start (mark t) mail-indentation-spaces) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
746 (save-excursion |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
747 (goto-char start) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
748 (while (< (point) (mark t)) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
749 (insert mail-yank-prefix) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
750 (forward-line 1)))))) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
751 |
455 | 752 (defun mail-yank-original (arg) |
753 "Insert the message being replied to, if any (in rmail). | |
754 Puts point before the text and mark after. | |
755 Normally, indents each nonblank line ARG spaces (default 3). | |
756 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line. | |
757 | |
758 Just \\[universal-argument] as argument means don't indent, insert no prefix, | |
759 and don't delete any header fields." | |
760 (interactive "P") | |
761 (if mail-reply-buffer | |
762 (let ((start (point))) | |
5097
a0a5b39e3d22
(mail-yank-original): Delete windows on selected frame only.
Richard M. Stallman <rms@gnu.org>
parents:
4910
diff
changeset
|
763 ;; If the original message is in another window in the same frame, |
a0a5b39e3d22
(mail-yank-original): Delete windows on selected frame only.
Richard M. Stallman <rms@gnu.org>
parents:
4910
diff
changeset
|
764 ;; delete that window to save screen space. |
a0a5b39e3d22
(mail-yank-original): Delete windows on selected frame only.
Richard M. Stallman <rms@gnu.org>
parents:
4910
diff
changeset
|
765 ;; t means don't alter other frames. |
a0a5b39e3d22
(mail-yank-original): Delete windows on selected frame only.
Richard M. Stallman <rms@gnu.org>
parents:
4910
diff
changeset
|
766 (delete-windows-on mail-reply-buffer t) |
455 | 767 (insert-buffer mail-reply-buffer) |
768 (if (consp arg) | |
769 nil | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
770 (goto-char start) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
771 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
772 mail-indentation-spaces))) |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
773 (if mail-citation-hook |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
774 (run-hooks 'mail-citation-hook) |
4418
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
775 (if mail-yank-hooks |
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
776 (run-hooks 'mail-yank-hooks) |
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
777 (mail-indent-citation))))) |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
778 ;; 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
|
779 ;; 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
|
780 ;; 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
|
781 (goto-char (prog1 (mark t) |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
782 (set-marker (mark-marker) (point) (current-buffer)))) |
455 | 783 (if (not (eolp)) (insert ?\n))))) |
784 | |
785 (defun mail-yank-clear-headers (start end) | |
786 (save-excursion | |
787 (goto-char start) | |
788 (if (search-forward "\n\n" end t) | |
789 (save-restriction | |
790 (narrow-to-region start (point)) | |
791 (goto-char start) | |
792 (while (let ((case-fold-search t)) | |
793 (re-search-forward mail-yank-ignored-headers nil t)) | |
794 (beginning-of-line) | |
795 (delete-region (point) | |
796 (progn (re-search-forward "\n[^ \t]") | |
797 (forward-char -1) | |
798 (point)))))))) | |
799 | |
800 ;; Put these last, to reduce chance of lossage from quitting in middle of loading the file. | |
801 | |
802 ;;;###autoload | |
803 (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
|
804 "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
|
805 When this function returns, the buffer `*mail*' is selected. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
806 The value is t if the message was newly initialized; otherwise, nil. |
455 | 807 |
1025 | 808 By default, the signature file `~/.signature' is inserted at the end; |
809 see the variable `mail-signature'. | |
455 | 810 |
811 \\<mail-mode-map> | |
812 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
813 | |
814 Various special commands starting with C-c are available in sendmail mode | |
815 to move to message header fields: | |
816 \\{mail-mode-map} | |
817 | |
818 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
819 when the message is initialized. | |
820 | |
821 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
822 a Reply-to: field with that address is inserted. | |
823 | |
824 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
825 is inserted. | |
826 | |
827 If `mail-setup-hook' is bound, its value is called with no arguments | |
828 after the message is initialized. It can add more default fields. | |
829 | |
9160 | 830 When calling from a program, the first argument if non-nil says |
831 not to erase the existing contents of the `*mail*' buffer. | |
832 | |
833 The second through fifth arguments, | |
834 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
455 | 835 the initial contents of those header fields. |
836 These arguments should not have final newlines. | |
837 The sixth argument REPLYBUFFER is a buffer whose contents | |
838 should be yanked if the user types C-c C-y. | |
839 The seventh argument ACTIONS is a list of actions to take | |
840 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
841 when the message is sent, we apply FUNCTION to ARGS. | |
842 This is how Rmail arranges to mark messages `answered'." | |
843 (interactive "P") | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
844 ;;; 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
|
845 ;;; 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
|
846 ;;; if you want to have multiple mail buffers. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
847 ;;; And then you can control which messages to save. --rms. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
848 ;;; (let ((index 1) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
849 ;;; buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
850 ;;; ;; 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
|
851 ;;; (if noerase |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
852 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
853 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
854 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
855 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
856 ;;; (not (buffer-modified-p buffer))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
857 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
858 ;;; (if buffer (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
859 ;;; ;; If none exists, start a new message. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
860 ;;; ;; This will never re-use an existing unmodified mail buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
861 ;;; ;; (since index is not 1 anymore). Perhaps it should. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
862 ;;; (setq noerase nil)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
863 ;;; ;; 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
|
864 ;;; (if (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
865 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
866 ;;; ;; Look for existing unmodified mail buffer. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
867 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
868 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
869 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
870 ;;; (buffer-modified-p buffer)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
871 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
872 ;;; ;; If none, make a new one. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
873 ;;; (or buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
874 ;;; (setq buffer (generate-new-buffer "*mail*"))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
875 ;;; ;; Go there and initialize it. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
876 ;;; (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
877 ;;; (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
878 ;;; (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
879 ;;; (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
880 ;;; (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
881 ;;; (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
882 ;;; (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
883 ;;; (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
884 ;;; (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
|
885 ;;; t)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
886 (switch-to-buffer "*mail*") |
7858
41f30d92485e
(mail): If homedir is nonexistent, don't use as default.
Richard M. Stallman <rms@gnu.org>
parents:
7833
diff
changeset
|
887 (if (file-exists-p (expand-file-name "~/")) |
41f30d92485e
(mail): If homedir is nonexistent, don't use as default.
Richard M. Stallman <rms@gnu.org>
parents:
7833
diff
changeset
|
888 (setq default-directory (expand-file-name "~/"))) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
889 (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
890 (mail-mode) |
8144 | 891 ;; Disconnect the buffer from its visited file |
892 ;; (in case the user has actually visited a file *mail*). | |
8145
d94fc60e4195
Comment out losing call to set-visited-file-name; this shouldn't hurt
Michael I. Bushnell <mib@gnu.org>
parents:
8144
diff
changeset
|
893 ; (set-visited-file-name nil) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
894 (let (initialized) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
895 (and (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
896 (or (not (buffer-modified-p)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
897 (y-or-n-p "Unsent message being composed; erase it? ")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
898 (progn (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
899 (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
900 (setq initialized t))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
901 (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
902 (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
903 (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
|
904 initialized)) |
455 | 905 |
906 (defun mail-recover () | |
907 "Reread contents of current buffer from its last auto-save file." | |
908 (interactive) | |
909 (let ((file-name (make-auto-save-file-name))) | |
910 (cond ((save-window-excursion | |
911 (if (not (eq system-type 'vax-vms)) | |
912 (with-output-to-temp-buffer "*Directory*" | |
913 (buffer-disable-undo standard-output) | |
914 (call-process "ls" nil standard-output nil "-l" file-name))) | |
915 (yes-or-no-p (format "Recover auto save file %s? " file-name))) | |
916 (let ((buffer-read-only nil)) | |
917 (erase-buffer) | |
918 (insert-file-contents file-name nil))) | |
8144 | 919 (t (error "mail-recover cancelled"))))) |
455 | 920 |
921 ;;;###autoload | |
922 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions) | |
923 "Like `mail' command, but display mail buffer in another window." | |
924 (interactive "P") | |
925 (let ((pop-up-windows t)) | |
926 (pop-to-buffer "*mail*")) | |
927 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
928 | |
929 ;;;###autoload | |
779 | 930 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) |
931 "Like `mail' command, but display mail buffer in another frame." | |
455 | 932 (interactive "P") |
779 | 933 (let ((pop-up-frames t)) |
455 | 934 (pop-to-buffer "*mail*")) |
935 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
936 | |
4342
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
937 ;;; Do not execute these when sendmail.el is loaded, |
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
938 ;;; only in loaddefs.el. |
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
939 ;;;###autoload (define-key ctl-x-map "m" 'mail) |
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
940 ;;;###autoload (define-key ctl-x-4-map "m" 'mail-other-window) |
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
941 ;;;###autoload (define-key ctl-x-5-map "m" 'mail-other-frame) |
455 | 942 |
943 ;;; Do not add anything but external entries on this page. | |
584 | 944 |
945 (provide 'sendmail) | |
946 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
947 ;;; sendmail.el ends here |