Mercurial > emacs
annotate lisp/mail/sendmail.el @ 15104:f41d9619ffc4
[HAVE_CONFIG_H]: Only include config.h when defined.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Apr 1996 19:09:03 +0000 |
parents | 963288ebadeb |
children | a16fd1b9abb5 |
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 |
14734 | 3 ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
455 | 24 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
26 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
27 ;; 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
|
28 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
29 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
30 ;;; Code: |
455 | 31 |
32 ;;;###autoload | |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
33 (defvar mail-from-style 'angles "\ |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
34 *Specifies how \"From:\" fields look. |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
35 |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
36 If `nil', they contain just the return address like: |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
37 king@grassland.com |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
38 If `parens', they look like: |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
39 king@grassland.com (Elvis Parsley) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
40 If `angles', they look like: |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
41 Elvis Parsley <king@grassland.com>") |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
42 |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
43 ;;;###autoload |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
44 (defvar mail-self-blind nil "\ |
455 | 45 Non-nil means insert BCC to self in messages to be sent. |
46 This is done when the message is initialized, | |
47 so you can remove or alter the BCC field to override the default.") | |
48 | |
49 ;;;###autoload | |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
50 (defvar mail-interactive nil "\ |
455 | 51 Non-nil means when sending a message wait for and display errors. |
52 nil means let mailer mail back a message to report errors.") | |
53 | |
54 ;;;###autoload | |
1664
5345766220da
* sendmail.el (mail-self-blind, mail-interactive,
Jim Blandy <jimb@redhat.com>
parents:
1539
diff
changeset
|
55 (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\ |
455 | 56 Delete these headers from old message when it's inserted in a reply.") |
57 | |
58 ;; Useful to set in site-init.el | |
59 ;;;###autoload | |
3232
27d2747abab2
(send-mail-function): Use defvar. not defconst.
Richard M. Stallman <rms@gnu.org>
parents:
2920
diff
changeset
|
60 (defvar send-mail-function 'sendmail-send-it "\ |
455 | 61 Function to call to send the current buffer as mail. |
11963
bfb07760304d
(send-mail-function, mail): Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents:
11866
diff
changeset
|
62 The headers should be delimited by a line whose contents |
bfb07760304d
(send-mail-function, mail): Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents:
11866
diff
changeset
|
63 match the variable `mail-header-separator'.") |
455 | 64 |
65 ;;;###autoload | |
66 (defvar mail-header-separator "--text follows this line--" "\ | |
67 *Line used to separate headers from text in messages being composed.") | |
68 | |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
69 ;; Set up mail-header-separator for use as a category text property. |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
70 (put 'mail-header-separator 'rear-nonsticky '(category)) |
13928
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
71 ;;; This was a nice idea, for preventing accidental modification of |
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
72 ;;; the separator. But I found it also prevented or obstructed |
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
73 ;;; certain deliberate operations, such as copying the separator line |
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
74 ;;; up to the top to send myself a copy of an already sent outgoing message |
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
75 ;;; and other things. So I turned it off. --rms. |
d9a95968edb8
(mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents:
13919
diff
changeset
|
76 ;;;(put 'mail-header-separator 'read-only t) |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
77 |
455 | 78 ;;;###autoload |
79 (defvar mail-archive-file-name nil "\ | |
80 *Name of file to write all outgoing messages in, or nil for none. | |
9647
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
81 This can be an inbox file or an Rmail file.") |
455 | 82 |
5261
50406a868f05
(mail-default-reply-to): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
5210
diff
changeset
|
83 ;;;###autoload |
12473
4472a461ab1c
(mail-default-reply-to): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
12458
diff
changeset
|
84 (defvar mail-default-reply-to nil |
12607
498ce026e14b
(mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12564
diff
changeset
|
85 "*Address to insert as default Reply-to field of outgoing messages. |
498ce026e14b
(mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12564
diff
changeset
|
86 If nil, it will be initialized from the REPLYTO environment variable |
498ce026e14b
(mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12564
diff
changeset
|
87 when you first send mail.") |
455 | 88 |
8488
ddd8e250a65d
(mail-alias-file): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
8416
diff
changeset
|
89 ;;;###autoload |
455 | 90 (defvar mail-alias-file nil |
91 "*If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
92 This file defines aliases to be expanded by the mailer; this is a different | |
93 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
94 This variable has no effect unless your system uses sendmail as its mailer.") | |
95 | |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
96 ;;;###autoload |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
97 (defvar mail-personal-alias-file "~/.mailrc" |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
98 "*If non-nil, the name of the user's personal mail alias file. |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
99 This file typically should be in same format as the `.mailrc' file used by |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
100 the `Mail' or `mailx' program. |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
101 This file need not actually exist.") |
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
102 |
12564 | 103 (defvar mail-setup-hook nil |
104 "Normal hook, run each time a new outgoing mail message is initialized. | |
105 The function `mail-setup' runs this hook.") | |
106 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
107 (defvar mail-aliases t |
1468
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
108 "Alist of mail address aliases, |
9647
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
109 or t meaning should be initialized from your mail aliases file. |
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
110 \(The file's name is normally `~/.mailrc', but your MAILRC environment |
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
111 variable can override that name.) |
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
112 The alias definitions in the file have this form: |
1468
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
113 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
|
114 |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
115 (defvar mail-alias-modtime nil |
9647
c27b8baa6aa4
(mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
9645
diff
changeset
|
116 "The modification time of your mail alias file when it was last examined.") |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
117 |
455 | 118 (defvar mail-yank-prefix nil |
119 "*Prefix insert on lines of yanked message being replied to. | |
120 nil means use indentation.") | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
121 (defvar mail-indentation-spaces 3 |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
122 "*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
|
123 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
|
124 (defvar mail-yank-hooks nil |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
125 "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
|
126 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
|
127 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
|
128 text as modified. |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
129 |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
130 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
|
131 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
|
132 |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
133 (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
|
134 "*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
|
135 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
|
136 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
|
137 text as modified. |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
138 |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
139 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
|
140 instead of no action.") |
455 | 141 |
142 (defvar mail-abbrevs-loaded nil) | |
143 (defvar mail-mode-map nil) | |
144 | |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
145 (autoload 'build-mail-aliases "mailalias" |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
146 "Read mail aliases from user's personal aliases file and set `mail-aliases'." |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
147 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
148 |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
149 (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
|
150 "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
|
151 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
|
152 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
|
153 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
|
154 nil) |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
155 |
999 | 156 ;;;###autoload |
1025 | 157 (defvar mail-signature nil |
158 "*Text inserted at end of mail buffer when a message is initialized. | |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
159 If t, it means to insert the contents of the file `mail-signature-file'.") |
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
160 |
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
161 (defvar mail-signature-file "~/.signature" |
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
162 "*File containing the text inserted at end of mail buffer.") |
455 | 163 |
164 (defvar mail-reply-buffer nil) | |
165 (defvar mail-send-actions nil | |
166 "A list of actions to be performed upon successful sending of a message.") | |
167 | |
168 (defvar mail-default-headers nil | |
169 "*A string containing header lines, to be inserted in outgoing messages. | |
170 It is inserted before you edit the message, | |
171 so you can edit or delete these lines.") | |
172 | |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
173 (defvar mail-bury-selects-summary t |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
174 "*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
|
175 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
|
176 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
|
177 is non-nil.") |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
178 |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
179 ;; 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
|
180 ;; 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
|
181 (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
|
182 (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
|
183 (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
|
184 (let ((buffer (get-buffer-create " *temp*"))) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
185 (unwind-protect |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
186 (save-excursion |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
187 (set-buffer buffer) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
188 (insert-file-contents "/etc/sendmail.cf") |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
189 (goto-char (point-min)) |
d53870d31221
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5667
diff
changeset
|
190 (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
|
191 (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
|
192 (kill-buffer buffer)))) |
10624
ec7ba4fd36f0
mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents:
10326
diff
changeset
|
193 ;; According to RFC822, "The field-name must be composed of printable |
ec7ba4fd36f0
mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents:
10326
diff
changeset
|
194 ;; ASCII characters (i.e. characters that have decimal values between |
ec7ba4fd36f0
mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents:
10326
diff
changeset
|
195 ;; 33 and 126, except colon)", i.e. any chars except ctl chars, |
ec7ba4fd36f0
mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents:
10326
diff
changeset
|
196 ;; space, or colon. |
ec7ba4fd36f0
mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents:
10326
diff
changeset
|
197 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:")) |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
198 "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
|
199 \(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
|
200 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
|
201 actually occur.") |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
202 |
455 | 203 (defvar mail-mode-syntax-table nil |
204 "Syntax table used while in mail mode.") | |
205 | |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
206 (if (not mail-mode-syntax-table) |
455 | 207 (progn |
208 (setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table)) | |
209 (modify-syntax-entry ?% ". " mail-mode-syntax-table))) | |
210 | |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
211 (defvar mail-font-lock-keywords |
14364
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
212 (eval-when-compile |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
213 (let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-"))) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
214 (list '("^To:" . font-lock-function-name-face) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
215 '("^B?CC:\\|^Reply-to:" . font-lock-keyword-face) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
216 '("^\\(Subject:\\)[ \t]*\\(.+\\)?" |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
217 (1 font-lock-comment-face) (2 font-lock-type-face nil t)) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
218 '(eval cons (concat "^" (regexp-quote mail-header-separator) "$") |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
219 'font-lock-comment-face) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
220 (cons (concat "^[ \t]*" |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
221 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?" |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
222 "[>|}].*") |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
223 'font-lock-reference-face) |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
224 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*" |
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
225 . font-lock-string-face)))) |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
226 "Additional expressions to highlight in Mail mode.") |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
227 |
7917
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
228 (defvar mail-send-hook nil |
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
229 "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
|
230 |
13950
e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents:
13928
diff
changeset
|
231 (defun sendmail-sync-aliases () |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
232 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file)))) |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
233 (or (equal mail-alias-modtime modtime) |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
234 (setq mail-alias-modtime modtime |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
235 mail-aliases t)))) |
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
236 |
455 | 237 (defun mail-setup (to subject in-reply-to cc replybuffer actions) |
12473
4472a461ab1c
(mail-default-reply-to): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
12458
diff
changeset
|
238 (or mail-default-reply-to |
8972
ad8f1cea49cc
(mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents:
8955
diff
changeset
|
239 (setq mail-default-reply-to (getenv "REPLYTO"))) |
13950
e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents:
13928
diff
changeset
|
240 (sendmail-sync-aliases) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
241 (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
|
242 (progn |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
243 (setq mail-aliases nil) |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
244 (if (file-exists-p mail-personal-alias-file) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
245 (build-mail-aliases)))) |
455 | 246 (setq mail-send-actions actions) |
247 (setq mail-reply-buffer replybuffer) | |
248 (goto-char (point-min)) | |
249 (insert "To: ") | |
250 (save-excursion | |
251 (if to | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
252 ;; 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
|
253 ;; 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
|
254 ;; 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
|
255 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
256 (address-start (point))) |
455 | 257 (insert to "\n") |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
258 (fill-region-as-paragraph address-start (point-max))) |
455 | 259 (newline)) |
260 (if cc | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
261 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
262 (address-start (progn (insert "CC: ") (point)))) |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
263 (insert cc "\n") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
264 (fill-region-as-paragraph address-start (point-max)))) |
455 | 265 (if in-reply-to |
9536
ecaa7babab17
(mail-setup): Fill the in-reply-to field.
Richard M. Stallman <rms@gnu.org>
parents:
9527
diff
changeset
|
266 (let ((fill-prefix "\t") |
10013
fd7810a1535a
(mail-setup): Make fill-column wide for the in-reply-to.
Richard M. Stallman <rms@gnu.org>
parents:
9663
diff
changeset
|
267 (fill-column 78) |
9663
8bd05e79e0bd
(mail-setup): Fill in-reply-to field properly.
Richard M. Stallman <rms@gnu.org>
parents:
9647
diff
changeset
|
268 (address-start (point))) |
8bd05e79e0bd
(mail-setup): Fill in-reply-to field properly.
Richard M. Stallman <rms@gnu.org>
parents:
9647
diff
changeset
|
269 (insert "In-reply-to: " in-reply-to "\n") |
9536
ecaa7babab17
(mail-setup): Fill the in-reply-to field.
Richard M. Stallman <rms@gnu.org>
parents:
9527
diff
changeset
|
270 (fill-region-as-paragraph address-start (point-max)))) |
455 | 271 (insert "Subject: " (or subject "") "\n") |
272 (if mail-default-headers | |
273 (insert mail-default-headers)) | |
274 (if mail-default-reply-to | |
275 (insert "Reply-to: " mail-default-reply-to "\n")) | |
276 (if mail-self-blind | |
14437
8013f6a7080d
(mail-setup): For mail-self-blind, use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
14373
diff
changeset
|
277 (insert "BCC: " user-mail-address "\n")) |
455 | 278 (if mail-archive-file-name |
279 (insert "FCC: " mail-archive-file-name "\n")) | |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
280 (put-text-property (point) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
281 (progn |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
282 (insert mail-header-separator "\n") |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
283 (1- (point))) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
284 'category 'mail-header-separator) |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
285 ;; 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
|
286 (if to (setq to (point))) |
1025 | 287 (cond ((eq mail-signature t) |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
288 (if (file-exists-p mail-signature-file) |
8216
1f1387385ac6
(mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents:
8145
diff
changeset
|
289 (progn |
1f1387385ac6
(mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents:
8145
diff
changeset
|
290 (insert "\n\n-- \n") |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
291 (insert-file-contents mail-signature-file)))) |
1025 | 292 (mail-signature |
293 (insert mail-signature))) | |
455 | 294 (goto-char (point-max)) |
295 (or (bolp) (newline))) | |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
296 (if to (goto-char to)) |
455 | 297 (or to subject in-reply-to |
298 (set-buffer-modified-p nil)) | |
299 (run-hooks 'mail-setup-hook)) | |
300 | |
301 ;;;###autoload | |
302 (defun mail-mode () | |
303 "Major mode for editing mail to be sent. | |
304 Like Text Mode but with these additional commands: | |
305 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
306 C-c C-f move to a header field (and create it if there isn't): | |
11857
42dba4f290a0
(mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents:
11770
diff
changeset
|
307 C-c C-f C-t move to To: C-c C-f C-s move to Subject: |
42dba4f290a0
(mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents:
11770
diff
changeset
|
308 C-c C-f C-c move to CC: C-c C-f C-b move to BCC: |
6443 | 309 C-c C-f C-f move to FCC: |
11857
42dba4f290a0
(mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents:
11770
diff
changeset
|
310 C-c C-t mail-text (move to beginning of message text). |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
311 C-c C-w mail-signature (insert `mail-signature-file' file). |
455 | 312 C-c C-y mail-yank-original (insert current message, in Rmail). |
313 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
11857
42dba4f290a0
(mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents:
11770
diff
changeset
|
314 C-c C-v mail-sent-via (add a Sent-via field for each To or CC)." |
455 | 315 (interactive) |
316 (kill-all-local-variables) | |
317 (make-local-variable 'mail-reply-buffer) | |
318 (setq mail-reply-buffer nil) | |
319 (make-local-variable 'mail-send-actions) | |
320 (set-syntax-table mail-mode-syntax-table) | |
321 (use-local-map mail-mode-map) | |
322 (setq local-abbrev-table text-mode-abbrev-table) | |
323 (setq major-mode 'mail-mode) | |
324 (setq mode-name "Mail") | |
325 (setq buffer-offer-save t) | |
9483
a8f745eaee5c
* sendmail.el: (mail-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9470
diff
changeset
|
326 (make-local-variable 'font-lock-defaults) |
a8f745eaee5c
* sendmail.el: (mail-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9470
diff
changeset
|
327 (setq font-lock-defaults '(mail-font-lock-keywords t)) |
455 | 328 (make-local-variable 'paragraph-separate) |
329 (make-local-variable 'paragraph-start) | |
11305
e39cb5447c68
(mail-mode): Make mail-header-separator into regexp.
Richard M. Stallman <rms@gnu.org>
parents:
11181
diff
changeset
|
330 (setq paragraph-start (concat (regexp-quote mail-header-separator) |
14651
fba27ff5d896
(mail-mode): Treat `-- ' line as paragraph separator.
Richard M. Stallman <rms@gnu.org>
parents:
14437
diff
changeset
|
331 "$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|" |
455 | 332 paragraph-start)) |
11305
e39cb5447c68
(mail-mode): Make mail-header-separator into regexp.
Richard M. Stallman <rms@gnu.org>
parents:
11181
diff
changeset
|
333 (setq paragraph-separate (concat (regexp-quote mail-header-separator) |
14651
fba27ff5d896
(mail-mode): Treat `-- ' line as paragraph separator.
Richard M. Stallman <rms@gnu.org>
parents:
14437
diff
changeset
|
334 "$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|" |
455 | 335 paragraph-separate)) |
336 (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
|
337 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
338 ;;; Set up keymap. |
455 | 339 |
340 (if mail-mode-map | |
341 nil | |
342 (setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
14679
671df59704d7
(mail-mode-map): Bind M-TAB to mail-complete.
Richard M. Stallman <rms@gnu.org>
parents:
14651
diff
changeset
|
343 (define-key mail-mode-map "\M-\t" 'mail-complete) |
455 | 344 (define-key mail-mode-map "\C-c?" 'describe-mode) |
345 (define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to) | |
346 (define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc) | |
573 | 347 (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc) |
455 | 348 (define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc) |
349 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject) | |
10726
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
350 (define-key mail-mode-map "\C-c\C-f\C-r" 'mail-reply-to) |
455 | 351 (define-key mail-mode-map "\C-c\C-t" 'mail-text) |
352 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original) | |
353 (define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message) | |
354 (define-key mail-mode-map "\C-c\C-w" 'mail-signature) | |
355 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via) | |
356 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit) | |
357 (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
|
358 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
359 (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
|
360 (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
|
361 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
362 (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
|
363 '("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
|
364 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
365 (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
|
366 '("Cite Original" . mail-yank-original)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
367 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
368 (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
|
369 '("Insert Signature" . mail-signature)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
370 |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
371 (define-key mail-mode-map [menu-bar mail cancel] |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
372 '("Cancel" . mail-dont-send)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
373 |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
374 (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
|
375 '("Send, Keep Editing" . mail-send)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
376 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
377 (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
|
378 '("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
|
379 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
380 (define-key mail-mode-map [menu-bar headers] |
11181
67a8c8274784
(mail-mode-map): Longer title for headers submenu.
Richard M. Stallman <rms@gnu.org>
parents:
11120
diff
changeset
|
381 (cons "Headers" (make-sparse-keymap "Move to Header"))) |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
382 |
10726
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
383 (define-key mail-mode-map [menu-bar headers reply-to] |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
384 '("Reply-To" . mail-reply-to)) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
385 |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
386 (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
|
387 '("Sent Via" . mail-sent-via)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
388 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
389 (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
|
390 '("Text" . mail-text)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
391 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
392 (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
|
393 '("Bcc" . mail-bcc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
394 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
395 (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
|
396 '("Fcc" . mail-fcc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
397 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
398 (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
|
399 '("Cc" . mail-cc)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
400 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
401 (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
|
402 '("Subject" . mail-subject)) |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
403 |
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
404 (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
|
405 '("To" . mail-to)) |
455 | 406 |
407 (defun mail-send-and-exit (arg) | |
1539 | 408 "Send message like `mail-send', then, if no errors, exit from mail buffer. |
455 | 409 Prefix arg means don't delete this window." |
410 (interactive "P") | |
411 (mail-send) | |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
412 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
413 |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
414 (defun mail-dont-send (arg) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
415 "Don't send the message you have been editing. |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
416 Prefix arg means don't delete this window." |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
417 (interactive "P") |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
418 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
419 |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
420 (defun mail-bury (arg) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
421 "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
|
422 (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
|
423 (bury-buffer (current-buffer)) |
14369
8d779463ec36
(mail-bury): Check mail-dedicated-frame frame param.
Richard M. Stallman <rms@gnu.org>
parents:
14364
diff
changeset
|
424 (if (and (or (window-dedicated-p (frame-selected-window)) |
8d779463ec36
(mail-bury): Check mail-dedicated-frame frame param.
Richard M. Stallman <rms@gnu.org>
parents:
14364
diff
changeset
|
425 (assq 'mail-dedicated-frame (frame-parameters))) |
4107
7b855e27223f
(mail-bury): If selected frame is dedicated,
Richard M. Stallman <rms@gnu.org>
parents:
4074
diff
changeset
|
426 (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
|
427 (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
|
428 (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
|
429 (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
|
430 (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
|
431 (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
|
432 (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
|
433 (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
|
434 (setq summary-buffer |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
435 (and mail-bury-selects-summary |
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
436 (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
|
437 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
|
438 (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
|
439 (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
|
440 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
|
441 (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
|
442 ;; 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
|
443 (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
|
444 (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
|
445 (switch-to-buffer newbuf)))))) |
455 | 446 |
447 (defun mail-send () | |
448 "Send the message in the current buffer. | |
449 If `mail-interactive' is non-nil, wait for success indication | |
450 or error messages, and inform user. | |
451 Otherwise any failure is reported in a message back to | |
452 the user from the mailer." | |
453 (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
|
454 (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
|
455 (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
|
456 (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
|
457 (y-or-n-p "Message already sent; resend? "))) |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
458 (let ((inhibit-read-only t)) |
7917
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
459 (run-hooks 'mail-send-hook) |
455 | 460 (message "Sending...") |
461 (funcall send-mail-function) | |
462 ;; Now perform actions on successful sending. | |
463 (while mail-send-actions | |
464 (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
|
465 (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
|
466 (cdr (car mail-send-actions))) |
455 | 467 (error)) |
468 (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
|
469 (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
|
470 ;; 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
|
471 (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
|
472 (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
|
473 (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
|
474 (delete-auto-save-file-if-necessary t)))))) |
455 | 475 |
476 (defun sendmail-send-it () | |
13056
c1ce3b4556f2
(mail-file-babyl-p): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12980
diff
changeset
|
477 (require 'mail-utils) |
455 | 478 (let ((errbuf (if mail-interactive |
479 (generate-new-buffer " sendmail errors") | |
480 0)) | |
481 (tembuf (generate-new-buffer " sendmail temp")) | |
482 (case-fold-search nil) | |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
483 resend-to-addresses |
455 | 484 delimline |
485 (mailbuf (current-buffer))) | |
486 (unwind-protect | |
487 (save-excursion | |
488 (set-buffer tembuf) | |
489 (erase-buffer) | |
490 (insert-buffer-substring mailbuf) | |
491 (goto-char (point-max)) | |
492 ;; require one newline at the end. | |
493 (or (= (preceding-char) ?\n) | |
494 (insert ?\n)) | |
495 ;; Change header-delimiter to be what sendmail expects. | |
496 (goto-char (point-min)) | |
497 (re-search-forward | |
498 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
499 (replace-match "\n") | |
500 (backward-char 1) | |
501 (setq delimline (point-marker)) | |
13950
e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents:
13928
diff
changeset
|
502 (sendmail-sync-aliases) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
503 (if mail-aliases |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
504 (expand-mail-aliases (point-min) delimline)) |
455 | 505 (goto-char (point-min)) |
506 ;; ignore any blank lines in the header | |
507 (while (and (re-search-forward "\n\n\n*" delimline t) | |
508 (< (point) delimline)) | |
509 (replace-match "\n")) | |
510 (let ((case-fold-search t)) | |
511 (goto-char (point-min)) | |
13716
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
512 (while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t) |
8416
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
513 (setq resend-to-addresses |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
514 (save-restriction |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
515 (narrow-to-region (point) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
516 (save-excursion |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
517 (end-of-line) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
518 (point))) |
31a71761eeae
(sendmail-send-it): Handle resent-to specially.
Richard M. Stallman <rms@gnu.org>
parents:
8253
diff
changeset
|
519 (append (mail-parse-comma-list) |
13716
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
520 resend-to-addresses))) |
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
521 ;; Delete Resent-BCC ourselves |
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
522 (if (save-excursion (beginning-of-line) |
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
523 (looking-at "resent-bcc")) |
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
524 (delete-region (save-excursion (beginning-of-line) (point)) |
00bd8662272d
(sendmail-send-it): Added support for Resent-CC and
Karl Heuer <kwzh@gnu.org>
parents:
13478
diff
changeset
|
525 (save-excursion (end-of-line) (1+ (point)))))) |
4910
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
526 ;;; Apparently this causes a duplicate Sender. |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
527 ;;; ;; 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
|
528 ;;; (goto-char (point-min)) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
529 ;;; (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
|
530 ;;; (progn |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
531 ;;; (require 'mail-utils) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
532 ;;; (not (string-equal |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
533 ;;; (mail-strip-quoted-names |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
534 ;;; (save-restriction |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
535 ;;; (narrow-to-region (point-min) delimline) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
536 ;;; (mail-fetch-field "From"))) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
537 ;;; (user-login-name)))) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
538 ;;; (progn |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
539 ;;; (forward-line 1) |
435032be7b12
(sendmail-send-it): Don't insert Sender.
Richard M. Stallman <rms@gnu.org>
parents:
4418
diff
changeset
|
540 ;;; (insert "Sender: " (user-login-name) "\n"))) |
455 | 541 ;; Don't send out a blank subject line |
542 (goto-char (point-min)) | |
11709
03f977d9a240
(sendmail-send-it): Check continuation lines
Richard M. Stallman <rms@gnu.org>
parents:
11551
diff
changeset
|
543 (if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t) |
13919
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
544 (replace-match "") |
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
545 ;; This one matches a Subject just before the header delimiter. |
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
546 (if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t) |
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
547 (= (match-end 0) delimline)) |
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
548 (replace-match ""))) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
549 ;; Put the "From:" field in unless for some odd reason |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
550 ;; they put one in themselves. |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
551 (goto-char (point-min)) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
552 (if (not (re-search-forward "^From:" delimline t)) |
12980
4f9052477a81
(sendmail-send-it): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
12607
diff
changeset
|
553 (let* ((login user-mail-address) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
554 (fullname (user-full-name))) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
555 (cond ((eq mail-from-style 'angles) |
12446
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
556 (insert "From: " fullname) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
557 (let ((fullname-start (+ (point-min) 6)) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
558 (fullname-end (point-marker))) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
559 (goto-char fullname-start) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
560 ;; Look for a character that cannot appear unquoted |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
561 ;; according to RFC 822. |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
562 (if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
563 fullname-end 1) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
564 (progn |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
565 ;; Quote fullname, escaping specials. |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
566 (goto-char fullname-start) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
567 (insert "\"") |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
568 (while (re-search-forward "[\"\\]" |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
569 fullname-end 1) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
570 (replace-match "\\\\\\&" t)) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
571 (insert "\"")))) |
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
572 (insert " <" login ">\n")) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
573 ((eq mail-from-style 'parens) |
12458
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
574 (insert "From: " login " (") |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
575 (let ((fullname-start (point))) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
576 (insert fullname) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
577 (let ((fullname-end (point-marker))) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
578 (goto-char fullname-start) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
579 ;; RFC 822 says \ and nonmatching parentheses |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
580 ;; must be escaped in comments. |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
581 ;; Escape every instance of ()\ ... |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
582 (while (re-search-forward "[()\\]" fullname-end 1) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
583 (replace-match "\\\\\\&" t)) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
584 ;; ... then undo escaping of matching parentheses, |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
585 ;; including matching nested parentheses. |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
586 (goto-char fullname-start) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
587 (while (re-search-forward |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
588 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)" |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
589 fullname-end 1) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
590 (replace-match "\\1(\\3)" t) |
a83478662820
(sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents:
12446
diff
changeset
|
591 (goto-char fullname-start)))) |
12446
92440abe8409
(sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents:
11963
diff
changeset
|
592 (insert ")\n")) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
593 ((null mail-from-style) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
594 (insert "From: " login "\n"))))) |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
595 ;; 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
|
596 ;; Sun's bug that swallows newlines. |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
597 (goto-char (1+ delimline)) |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
598 (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
|
599 (newline)) |
13090
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
600 ;; Find and handle any FCC fields. |
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
601 (goto-char (point-min)) |
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
602 (if (re-search-forward "^FCC:" delimline t) |
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
603 (mail-do-fcc delimline)) |
455 | 604 (if mail-interactive |
605 (save-excursion | |
606 (set-buffer errbuf) | |
607 (erase-buffer)))) | |
13398
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
608 (let ((default-directory "/")) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
609 (apply 'call-process-region |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
610 (append (list (point-min) (point-max) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
611 (if (boundp 'sendmail-program) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
612 sendmail-program |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
613 "/usr/lib/sendmail") |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
614 nil errbuf nil "-oi") |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
615 ;; Always specify who from, |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
616 ;; since some systems have broken sendmails. |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
617 (list "-f" (user-login-name)) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
618 ;;; ;; Don't say "from root" if running under su. |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
619 ;;; (and (equal (user-real-login-name) "root") |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
620 ;;; (list "-f" (user-login-name))) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
621 (and mail-alias-file |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
622 (list (concat "-oA" mail-alias-file))) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
623 ;; These mean "report errors by mail" |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
624 ;; and "deliver in background". |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
625 (if (null mail-interactive) '("-oem" "-odb")) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
626 ;; Get the addresses from the message |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
627 ;; unless this is a resend. |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
628 ;; We must not do that for a resend |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
629 ;; because we would find the original addresses. |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
630 ;; For a resend, include the specific addresses. |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
631 (or resend-to-addresses |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
632 '("-t"))))) |
455 | 633 (if mail-interactive |
634 (save-excursion | |
635 (set-buffer errbuf) | |
636 (goto-char (point-min)) | |
637 (while (re-search-forward "\n\n* *" nil t) | |
638 (replace-match "; ")) | |
639 (if (not (zerop (buffer-size))) | |
640 (error "Sending...failed to %s" | |
641 (buffer-substring (point-min) (point-max))))))) | |
642 (kill-buffer tembuf) | |
643 (if (bufferp errbuf) | |
644 (kill-buffer errbuf))))) | |
645 | |
646 (defun mail-do-fcc (header-end) | |
647 (let (fcc-list | |
648 (rmailbuf (current-buffer)) | |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
649 (time (current-time)) |
455 | 650 (tembuf (generate-new-buffer " rmail output")) |
651 (case-fold-search t)) | |
652 (save-excursion | |
653 (goto-char (point-min)) | |
654 (while (re-search-forward "^FCC:[ \t]*" header-end t) | |
655 (setq fcc-list (cons (buffer-substring (point) | |
656 (progn | |
657 (end-of-line) | |
658 (skip-chars-backward " \t") | |
659 (point))) | |
660 fcc-list)) | |
661 (delete-region (match-beginning 0) | |
662 (progn (forward-line 1) (point)))) | |
663 (set-buffer tembuf) | |
664 (erase-buffer) | |
3340
908134e8308a
(mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents:
3232
diff
changeset
|
665 ;; 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
|
666 (insert "\nFrom " (user-login-name) " " |
2920
c47652dc3400
Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents:
2858
diff
changeset
|
667 (current-time-string time) "\n") |
1075 | 668 ;; Insert the time zone before the year. |
669 (forward-char -1) | |
670 (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
|
671 (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
|
672 (insert (mail-rfc822-time-zone time) " ") |
1075 | 673 (goto-char (point-max)) |
455 | 674 (insert-buffer-substring rmailbuf) |
675 ;; Make sure messages are separated. | |
676 (goto-char (point-max)) | |
677 (insert ?\n) | |
678 (goto-char 2) | |
679 ;; ``Quote'' "^From " as ">From " | |
680 ;; (note that this isn't really quoting, as there is no requirement | |
681 ;; that "^[>]+From " be quoted in the same transparent way.) | |
682 (let ((case-fold-search nil)) | |
683 (while (search-forward "\nFrom " nil t) | |
684 (forward-char -5) | |
685 (insert ?>))) | |
686 (while fcc-list | |
11409
4c3096cfd900
(mail-do-fcc): Use just find-buffer-visiting
Richard M. Stallman <rms@gnu.org>
parents:
11305
diff
changeset
|
687 (let* ((buffer (find-buffer-visiting (car fcc-list))) |
10726
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
688 (curbuf (current-buffer)) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
689 (beg (point-min)) (end (point-max)) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
690 (beg2 (save-excursion (goto-char (point-min)) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
691 (forward-line 2) (point)))) |
455 | 692 (if buffer |
693 ;; File is present in a buffer => append to that buffer. | |
9516
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
694 (save-excursion |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
695 (set-buffer buffer) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
696 ;; Keep the end of the accessible portion at the same place |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
697 ;; unless it is the end of the buffer. |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
698 (let ((max (if (/= (1+ (buffer-size)) (point-max)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
699 (point-max)))) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
700 (unwind-protect |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
701 ;; Code below lifted from rmailout.el |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
702 ;; function rmail-output-to-rmail-file: |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
703 (let ((buffer-read-only nil) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
704 (msg (and (boundp 'rmail-current-message) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
705 rmail-current-message))) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
706 ;; If MSG is non-nil, buffer is in RMAIL mode. |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
707 (if msg |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
708 (progn |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
709 (rmail-maybe-set-message-counters) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
710 (widen) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
711 (narrow-to-region (point-max) (point-max)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
712 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n" |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
713 "Date: " (mail-rfc822-date) "\n") |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
714 (insert-buffer-substring curbuf beg2 end) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
715 (insert "\n\C-_") |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
716 (goto-char (point-min)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
717 (widen) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
718 (search-backward "\n\^_") |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
719 (narrow-to-region (point) (point-max)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
720 (rmail-count-new-messages t) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
721 (rmail-show-message msg) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
722 (setq max nil)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
723 ;; Output file not in rmail mode |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
724 ;; => just insert at the end. |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
725 (narrow-to-region (point-min) (1+ (buffer-size))) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
726 (goto-char (point-max)) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
727 (insert-buffer-substring curbuf beg end))) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
728 (if max (narrow-to-region (point-min) max))))) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
729 ;; Else append to the file directly. |
9527
be69f1559d4f
(mail-do-fcc): If file does not exist, assume it is not a Babyl file.
Richard M. Stallman <rms@gnu.org>
parents:
9516
diff
changeset
|
730 (if (and (file-exists-p (car fcc-list)) |
be69f1559d4f
(mail-do-fcc): If file does not exist, assume it is not a Babyl file.
Richard M. Stallman <rms@gnu.org>
parents:
9516
diff
changeset
|
731 (mail-file-babyl-p (car fcc-list))) |
9516
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
732 ;; If the file is a Babyl file, |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
733 ;; convert the message to Babyl format. |
455 | 734 (save-excursion |
9516
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
735 (set-buffer (get-buffer-create " mail-temp")) |
13062
d483d9923c33
(mail-do-fcc): Clear read-only flag in ` mail-temp' buffer.
Richard M. Stallman <rms@gnu.org>
parents:
13061
diff
changeset
|
736 (setq buffer-read-only nil) |
13061
f1aa67661689
(mail-do-fcc): Erase the ` mail-temp' buffer.
Richard M. Stallman <rms@gnu.org>
parents:
13056
diff
changeset
|
737 (erase-buffer) |
9516
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
738 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n" |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
739 "Date: " (mail-rfc822-date) "\n") |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
740 (insert-buffer-substring curbuf beg2 end) |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
741 (insert "\n\C-_") |
13061
f1aa67661689
(mail-do-fcc): Erase the ` mail-temp' buffer.
Richard M. Stallman <rms@gnu.org>
parents:
13056
diff
changeset
|
742 (write-region (point-min) (point-max) (car fcc-list) t) |
f1aa67661689
(mail-do-fcc): Erase the ` mail-temp' buffer.
Richard M. Stallman <rms@gnu.org>
parents:
13056
diff
changeset
|
743 (erase-buffer)) |
9516
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
744 (write-region |
48a47a2673a5
(mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9483
diff
changeset
|
745 (1+ (point-min)) (point-max) (car fcc-list) t)))) |
455 | 746 (setq fcc-list (cdr fcc-list)))) |
747 (kill-buffer tembuf))) | |
748 | |
749 (defun mail-sent-via () | |
750 "Make a Sent-via header line from each To or CC header line." | |
751 (interactive) | |
752 (save-excursion | |
753 (goto-char (point-min)) | |
754 ;; find the header-separator | |
755 (search-forward (concat "\n" mail-header-separator "\n")) | |
756 (forward-line -1) | |
757 ;; put a marker at the end of the header | |
758 (let ((end (point-marker)) | |
759 (case-fold-search t) | |
760 to-line) | |
761 (goto-char (point-min)) | |
762 ;; search for the To: lines and make Sent-via: lines from them | |
763 ;; search for the next To: line | |
764 (while (re-search-forward "^\\(to\\|cc\\):" end t) | |
765 ;; Grab this line plus all its continuations, sans the `to:'. | |
766 (let ((to-line | |
767 (buffer-substring (point) | |
768 (progn | |
769 (if (re-search-forward "^[^ \t\n]" end t) | |
770 (backward-char 1) | |
771 (goto-char end)) | |
772 (point))))) | |
773 ;; Insert a copy, with altered header field name. | |
774 (insert-before-markers "Sent-via:" to-line)))))) | |
775 | |
776 (defun mail-to () | |
777 "Move point to end of To-field." | |
778 (interactive) | |
779 (expand-abbrev) | |
780 (mail-position-on-field "To")) | |
781 | |
782 (defun mail-subject () | |
783 "Move point to end of Subject-field." | |
784 (interactive) | |
785 (expand-abbrev) | |
786 (mail-position-on-field "Subject")) | |
787 | |
788 (defun mail-cc () | |
789 "Move point to end of CC-field. Create a CC field if none." | |
790 (interactive) | |
791 (expand-abbrev) | |
792 (or (mail-position-on-field "cc" t) | |
793 (progn (mail-position-on-field "to") | |
794 (insert "\nCC: ")))) | |
795 | |
796 (defun mail-bcc () | |
797 "Move point to end of BCC-field. Create a BCC field if none." | |
798 (interactive) | |
799 (expand-abbrev) | |
800 (or (mail-position-on-field "bcc" t) | |
801 (progn (mail-position-on-field "to") | |
802 (insert "\nBCC: ")))) | |
803 | |
5210
4db0922992a3
(mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents:
5097
diff
changeset
|
804 (defun mail-fcc (folder) |
573 | 805 "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
|
806 (interactive "FFolder carbon copy: ") |
573 | 807 (expand-abbrev) |
808 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC. | |
809 (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
|
810 (insert "\nFCC: " folder)) |
573 | 811 |
10726
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
812 (defun mail-reply-to () |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
813 "Move point to end of Reply-To-field." |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
814 (interactive) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
815 (expand-abbrev) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
816 (mail-position-on-field "Reply-To")) |
596c3e2c168d
(mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents:
10624
diff
changeset
|
817 |
455 | 818 (defun mail-position-on-field (field &optional soft) |
819 (let (end | |
820 (case-fold-search t)) | |
821 (goto-char (point-min)) | |
11551
032725b727cd
(mail-position-on-field): Use $, not \n, in regexp.
Richard M. Stallman <rms@gnu.org>
parents:
11520
diff
changeset
|
822 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$")) |
455 | 823 (setq end (match-beginning 0)) |
824 (goto-char (point-min)) | |
825 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t) | |
826 (progn | |
827 (re-search-forward "^[^ \t]" nil 'move) | |
828 (beginning-of-line) | |
829 (skip-chars-backward "\n") | |
830 t) | |
831 (or soft | |
832 (progn (goto-char end) | |
604 | 833 (insert field ": \n") |
834 (skip-chars-backward "\n"))) | |
455 | 835 nil))) |
836 | |
837 (defun mail-text () | |
11857
42dba4f290a0
(mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents:
11770
diff
changeset
|
838 "Move point to beginning of message text." |
455 | 839 (interactive) |
11866
77f73856e803
(mail-text): Expand abbrev before moving point.
Karl Heuer <kwzh@gnu.org>
parents:
11857
diff
changeset
|
840 (expand-abbrev) |
455 | 841 (goto-char (point-min)) |
842 (search-forward (concat "\n" mail-header-separator "\n"))) | |
843 | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
844 (defun mail-signature (atpoint) |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
845 "Sign letter with contents of the file `mail-signature-file'. |
5839 | 846 Prefix arg means put contents at point." |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
847 (interactive "P") |
455 | 848 (save-excursion |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
849 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
850 (goto-char (point-max))) |
455 | 851 (skip-chars-backward " \t\n") |
852 (end-of-line) | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
853 (or atpoint |
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
854 (delete-region (point) (point-max))) |
5847
8a2e912b29a5
(mail-signature): Insert a `-- ' line.
Richard M. Stallman <rms@gnu.org>
parents:
5839
diff
changeset
|
855 (insert "\n\n-- \n") |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
856 (insert-file-contents (expand-file-name mail-signature-file)))) |
455 | 857 |
858 (defun mail-fill-yanked-message (&optional justifyp) | |
859 "Fill the paragraphs of a message yanked into this one. | |
860 Numeric argument means justify as well." | |
861 (interactive "P") | |
862 (save-excursion | |
863 (goto-char (point-min)) | |
864 (search-forward (concat "\n" mail-header-separator "\n") nil t) | |
865 (fill-individual-paragraphs (point) | |
866 (point-max) | |
867 justifyp | |
868 t))) | |
869 | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
870 (defun mail-indent-citation () |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
871 "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
|
872 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
|
873 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
|
874 |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
875 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
|
876 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
|
877 (let ((start (point))) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
878 (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
|
879 (if (null mail-yank-prefix) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
880 (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
|
881 (save-excursion |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
882 (goto-char start) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
883 (while (< (point) (mark t)) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
884 (insert mail-yank-prefix) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
885 (forward-line 1)))))) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
886 |
455 | 887 (defun mail-yank-original (arg) |
888 "Insert the message being replied to, if any (in rmail). | |
14373 | 889 Puts point after the text and mark before. |
455 | 890 Normally, indents each nonblank line ARG spaces (default 3). |
891 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line. | |
892 | |
893 Just \\[universal-argument] as argument means don't indent, insert no prefix, | |
894 and don't delete any header fields." | |
895 (interactive "P") | |
896 (if mail-reply-buffer | |
897 (let ((start (point))) | |
5097
a0a5b39e3d22
(mail-yank-original): Delete windows on selected frame only.
Richard M. Stallman <rms@gnu.org>
parents:
4910
diff
changeset
|
898 ;; 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
|
899 ;; 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
|
900 ;; 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
|
901 (delete-windows-on mail-reply-buffer t) |
455 | 902 (insert-buffer mail-reply-buffer) |
903 (if (consp arg) | |
904 nil | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
905 (goto-char start) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
906 (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
|
907 mail-indentation-spaces))) |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
908 (if mail-citation-hook |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
909 (run-hooks 'mail-citation-hook) |
4418
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
910 (if mail-yank-hooks |
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
911 (run-hooks 'mail-yank-hooks) |
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
912 (mail-indent-citation))))) |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
913 ;; 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
|
914 ;; 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
|
915 ;; 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
|
916 (goto-char (prog1 (mark t) |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
917 (set-marker (mark-marker) (point) (current-buffer)))) |
455 | 918 (if (not (eolp)) (insert ?\n))))) |
919 | |
920 (defun mail-yank-clear-headers (start end) | |
13478
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
921 (if mail-yank-ignored-headers |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
922 (save-excursion |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
923 (goto-char start) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
924 (if (search-forward "\n\n" end t) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
925 (save-restriction |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
926 (narrow-to-region start (point)) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
927 (goto-char start) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
928 (while (let ((case-fold-search t)) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
929 (re-search-forward mail-yank-ignored-headers nil t)) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
930 (beginning-of-line) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
931 (delete-region (point) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
932 (progn (re-search-forward "\n[^ \t]") |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
933 (forward-char -1) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
934 (point))))))))) |
455 | 935 |
936 ;; Put these last, to reduce chance of lossage from quitting in middle of loading the file. | |
937 | |
938 ;;;###autoload | |
939 (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
|
940 "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
|
941 When this function returns, the buffer `*mail*' is selected. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
942 The value is t if the message was newly initialized; otherwise, nil. |
455 | 943 |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
944 Optionally, the signature file `mail-signature-file' can be inserted at the |
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
945 end; see the variable `mail-signature'. |
455 | 946 |
947 \\<mail-mode-map> | |
948 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
949 | |
950 Various special commands starting with C-c are available in sendmail mode | |
951 to move to message header fields: | |
952 \\{mail-mode-map} | |
953 | |
954 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
955 when the message is initialized. | |
956 | |
957 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
958 a Reply-to: field with that address is inserted. | |
959 | |
960 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
961 is inserted. | |
962 | |
12564 | 963 The normal hook `mail-setup-hook' is run after the message is |
964 initialized. It can add more default fields to the message. | |
455 | 965 |
9160 | 966 When calling from a program, the first argument if non-nil says |
967 not to erase the existing contents of the `*mail*' buffer. | |
968 | |
969 The second through fifth arguments, | |
970 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
455 | 971 the initial contents of those header fields. |
972 These arguments should not have final newlines. | |
973 The sixth argument REPLYBUFFER is a buffer whose contents | |
974 should be yanked if the user types C-c C-y. | |
975 The seventh argument ACTIONS is a list of actions to take | |
976 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
977 when the message is sent, we apply FUNCTION to ARGS. | |
978 This is how Rmail arranges to mark messages `answered'." | |
979 (interactive "P") | |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
980 ;;; 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
|
981 ;;; 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
|
982 ;;; if you want to have multiple mail buffers. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
983 ;;; And then you can control which messages to save. --rms. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
984 ;;; (let ((index 1) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
985 ;;; buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
986 ;;; ;; 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
|
987 ;;; (if noerase |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
988 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
989 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
990 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
991 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
992 ;;; (not (buffer-modified-p buffer))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
993 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
994 ;;; (if buffer (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
995 ;;; ;; If none exists, start a new message. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
996 ;;; ;; This will never re-use an existing unmodified mail buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
997 ;;; ;; (since index is not 1 anymore). Perhaps it should. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
998 ;;; (setq noerase nil)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
999 ;;; ;; 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
|
1000 ;;; (if (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1001 ;;; (progn |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1002 ;;; ;; Look for existing unmodified mail buffer. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1003 ;;; (while (and (setq buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1004 ;;; (get-buffer (if (= 1 index) "*mail*" |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1005 ;;; (format "*mail*<%d>" index)))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1006 ;;; (buffer-modified-p buffer)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1007 ;;; (setq index (1+ index))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1008 ;;; ;; If none, make a new one. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1009 ;;; (or buffer |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1010 ;;; (setq buffer (generate-new-buffer "*mail*"))) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1011 ;;; ;; Go there and initialize it. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1012 ;;; (switch-to-buffer buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1013 ;;; (erase-buffer) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1014 ;;; (setq default-directory (expand-file-name "~/")) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1015 ;;; (auto-save-mode auto-save-default) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1016 ;;; (mail-mode) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1017 ;;; (mail-setup to subject in-reply-to cc replybuffer actions) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1018 ;;; (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1019 ;;; (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1020 ;;; (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
|
1021 ;;; t)) |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1022 (pop-to-buffer "*mail*") |
14925
a19affa9f653
(mail): Put the auto-save file in the home dir.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1023 ;; Put the auto-save file in the home dir |
a19affa9f653
(mail): Put the auto-save file in the home dir.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1024 ;; to avoid any danger that it can't be written. |
14926
963288ebadeb
(mail): Once again set default dir to home dir.
Richard M. Stallman <rms@gnu.org>
parents:
14925
diff
changeset
|
1025 (if (file-exists-p (expand-file-name "~/")) |
963288ebadeb
(mail): Once again set default dir to home dir.
Richard M. Stallman <rms@gnu.org>
parents:
14925
diff
changeset
|
1026 (setq default-directory (expand-file-name "~/"))) |
963288ebadeb
(mail): Once again set default dir to home dir.
Richard M. Stallman <rms@gnu.org>
parents:
14925
diff
changeset
|
1027 (auto-save-mode auto-save-default) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1028 (mail-mode) |
8144 | 1029 ;; Disconnect the buffer from its visited file |
1030 ;; (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
|
1031 ; (set-visited-file-name nil) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1032 (let (initialized) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1033 (and (not noerase) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1034 (or (not (buffer-modified-p)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1035 (y-or-n-p "Unsent message being composed; erase it? ")) |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1036 (let ((inhibit-read-only t)) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1037 (erase-buffer) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1038 (mail-setup to subject in-reply-to cc replybuffer actions) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1039 (setq initialized t))) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1040 (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1041 (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1042 (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
|
1043 initialized)) |
455 | 1044 |
1045 (defun mail-recover () | |
1046 "Reread contents of current buffer from its last auto-save file." | |
1047 (interactive) | |
1048 (let ((file-name (make-auto-save-file-name))) | |
1049 (cond ((save-window-excursion | |
1050 (if (not (eq system-type 'vax-vms)) | |
1051 (with-output-to-temp-buffer "*Directory*" | |
1052 (buffer-disable-undo standard-output) | |
13398
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
1053 (let ((default-directory "/")) |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
1054 (call-process |
2b18ef667bde
(mail): Don't change directory for *mail* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
13304
diff
changeset
|
1055 "ls" nil standard-output nil "-l" file-name)))) |
455 | 1056 (yes-or-no-p (format "Recover auto save file %s? " file-name))) |
1057 (let ((buffer-read-only nil)) | |
1058 (erase-buffer) | |
1059 (insert-file-contents file-name nil))) | |
8144 | 1060 (t (error "mail-recover cancelled"))))) |
455 | 1061 |
1062 ;;;###autoload | |
1063 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions) | |
1064 "Like `mail' command, but display mail buffer in another window." | |
1065 (interactive "P") | |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1066 (let ((pop-up-windows t) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1067 (special-display-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1068 (special-display-regexps nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1069 (same-window-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1070 (same-window-regexps nil)) |
455 | 1071 (pop-to-buffer "*mail*")) |
1072 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
1073 | |
1074 ;;;###autoload | |
779 | 1075 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) |
1076 "Like `mail' command, but display mail buffer in another frame." | |
455 | 1077 (interactive "P") |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1078 (let ((pop-up-frames t) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1079 (special-display-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1080 (special-display-regexps nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1081 (same-window-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1082 (same-window-regexps nil)) |
455 | 1083 (pop-to-buffer "*mail*")) |
1084 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
1085 | |
4342
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
1086 ;;; 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
|
1087 ;;; only in loaddefs.el. |
1088a9aa4fd0
Do the global key bindings only via loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents:
4194
diff
changeset
|
1088 ;;;###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
|
1089 ;;;###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
|
1090 ;;;###autoload (define-key ctl-x-5-map "m" 'mail-other-frame) |
455 | 1091 |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1092 ;;;###autoload (add-hook 'same-window-buffer-names "*mail*") |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1093 |
455 | 1094 ;;; Do not add anything but external entries on this page. |
584 | 1095 |
1096 (provide 'sendmail) | |
1097 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
1098 ;;; sendmail.el ends here |