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