annotate lisp/mail/sendmail.el @ 18955:9612d2ae3960

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