annotate lisp/mail/sendmail.el @ 3657:7503a402c721

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