annotate lisp/mail/sendmail.el @ 60988:f79ed513cc6e

(Text Display): Add index entries for how no-break characters are displayed.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 26 Mar 2005 17:10:10 +0000
parents 2333319dc01c
children bebf790f4c99 30ad2795fdab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32295
a25a7ebfcb34 Byte-compile-dynamic since it gets loaded by
Dave Love <fx@gnu.org>
parents: 31568
diff changeset
1 ;;; sendmail.el --- mail sending commands for Emacs. -*- byte-compile-dynamic: t -*-
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 604
diff changeset
2
54278
e83b2d0cd614 (mail-mode): Set comment-start-skip.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53477
diff changeset
3 ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 98, 2000, 2001, 2002, 03, 2004
27548
cadaa8756773 Fix year ranges in copyright notice.
Dave Love <fx@gnu.org>
parents: 27246
diff changeset
4 ;; Free Software Foundation, Inc.
846
20674ae6bf52 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 825
diff changeset
5
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 779
diff changeset
6 ;; Maintainer: FSF
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
7 ;; Keywords: mail
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 779
diff changeset
8
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; 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
13 ;; the Free Software Foundation; either version 2, or (at your option)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13950
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13950
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13950
diff changeset
24 ;; Boston, MA 02111-1307, USA.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
2315
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1843
diff changeset
26 ;;; Commentary:
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1843
diff changeset
27
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1843
diff changeset
28 ;; 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
29 ;; documented in the Emacs user's manual.
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1843
diff changeset
30
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 779
diff changeset
31 ;;; Code:
27245
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
32 (eval-when-compile
27246
08855e02ad79 (toplevel): Provide `sendmail' when compiling
Gerd Moellmann <gerd@gnu.org>
parents: 27245
diff changeset
33 ;; Necessary to avoid recursive `require's.
08855e02ad79 (toplevel): Provide `sendmail' when compiling
Gerd Moellmann <gerd@gnu.org>
parents: 27245
diff changeset
34 (provide 'sendmail)
27245
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
35 (require 'rmail)
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
36 (require 'mailalias))
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
37
35615
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
38 (autoload 'rfc2047-encode-string "rfc2047")
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
39
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
40 (defgroup sendmail nil
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
41 "Mail sending commands for Emacs."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
42 :prefix "mail-"
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
43 :group 'mail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
46 (defcustom mail-from-style 'angles "\
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
47 *Specifies how \"From:\" fields look.
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
48
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
49 If `nil', they contain just the return address like:
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
50 king@grassland.com
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
51 If `parens', they look like:
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
52 king@grassland.com (Elvis Parsley)
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
53 If `angles', they look like:
22275
54bd3424441d (mail-from-style): New alternative, `default'.
Richard M. Stallman <rms@gnu.org>
parents: 22273
diff changeset
54 Elvis Parsley <king@grassland.com>
25238
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
55 If `system-default', allows the mailer to insert its default From field
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
56 derived from the envelope-from address.
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
57
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
58 In old versions of Emacs, the `system-default' setting also caused
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
59 Emacs to pass the proper email address from `user-mail-address'
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
60 to the mailer to specify the envelope-from address. But that is now
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
61 controlled by a separate variable, `mail-specify-envelope-from'."
22277
cc85ea3f54cc (mail-from-style): Rename new alternative to `system-default'.
Richard M. Stallman <rms@gnu.org>
parents: 22276
diff changeset
62 :type '(choice (const nil) (const parens) (const angles)
cc85ea3f54cc (mail-from-style): Rename new alternative to `system-default'.
Richard M. Stallman <rms@gnu.org>
parents: 22276
diff changeset
63 (const system-default))
22276
17b123f15a22 (mail-from-style): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents: 22275
diff changeset
64 :version "20.3"
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
65 :group 'sendmail)
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
66
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
67 ;;;###autoload
29631
d91cfeea29c6 (mail-specify-envelope-from): Initialize to
Gerd Moellmann <gerd@gnu.org>
parents: 28750
diff changeset
68 (defcustom mail-specify-envelope-from nil
25238
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
69 "*If non-nil, specify the envelope-from address when sending mail.
38308
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
70 The value used to specify it is whatever is found in
52320
af0e45b62c3e (mail-specify-envelope-from): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51718
diff changeset
71 the variable `mail-envelope-from', with `user-mail-address' as fallback.
25238
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
72
51718
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
73 On most systems, specifying the envelope-from address is a
52320
af0e45b62c3e (mail-specify-envelope-from): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51718
diff changeset
74 privileged operation. This variable affects sendmail and
af0e45b62c3e (mail-specify-envelope-from): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51718
diff changeset
75 smtpmail -- if you use feedmail to send mail, see instead the
af0e45b62c3e (mail-specify-envelope-from): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51718
diff changeset
76 variable `feedmail-deduce-envelope-from'."
25238
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
77 :version "21.1"
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
78 :type 'boolean
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
79 :group 'sendmail)
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
80
38308
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
81 (defcustom mail-envelope-from nil
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
82 "*If non-nil, designate the envelope-from address when sending mail.
51718
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
83 This only has an effect if `mail-specify-envelope-from' is non-nil.
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
84 The value should be either a string, or the symbol `header' (in
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
85 which case the contents of the \"From\" header of the message
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
86 being sent is used), or nil (in which case the value of
5a6a8c32b90b (mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 51082
diff changeset
87 `user-mail-address' is used)."
38308
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
88 :version "21.1"
42383
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
89 :type '(choice (string :tag "From-name")
47837
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
90 (const :tag "Use From: header from message" header)
42383
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
91 (const :tag "Use `user-mail-address'" nil))
38308
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
92 :group 'sendmail)
2ec4983f57eb (mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 38285
diff changeset
93
25238
401a07be3a35 (sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents: 25142
diff changeset
94 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
95 (defcustom mail-self-blind nil "\
15951
0807c87a589f (mail-self-blind, mail-interactive)
Richard M. Stallman <rms@gnu.org>
parents: 15546
diff changeset
96 *Non-nil means insert BCC to self in messages to be sent.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 This is done when the message is initialized,
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
98 so you can remove or alter the BCC field to override the default."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
99 :type 'boolean
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
100 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
103 (defcustom mail-interactive nil "\
15951
0807c87a589f (mail-self-blind, mail-interactive)
Richard M. Stallman <rms@gnu.org>
parents: 15546
diff changeset
104 *Non-nil means when sending a message wait for and display errors.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
105 nil means let mailer mail back a message to report errors."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
106 :type 'boolean
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
107 :group 'sendmail)
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 ;;;###autoload
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
110 (defcustom mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:\\|^mail-reply-to:\\|^mail-followup-to:" "\
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
111 *Delete these headers from old message when it's inserted in a reply."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
112 :type 'regexp
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
113 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 ;; Useful to set in site-init.el
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 ;;;###autoload
35615
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
117 (defcustom send-mail-function 'sendmail-send-it
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
118 "Function to call to send the current buffer as mail.
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
119 The headers should be delimited by a line which is
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
120 not a valid RFC822 header or continuation line,
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
121 that matches the variable `mail-header-separator'.
35615
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
122 This is used by the default mail-sending commands. See also
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
123 `message-send-mail-function' for use with the Message package."
34681
34b048e564c0 Fix last check-in.
Dave Love <fx@gnu.org>
parents: 34678
diff changeset
124 :type '(radio (function-item sendmail-send-it :tag "Use Sendmail package")
34b048e564c0 Fix last check-in.
Dave Love <fx@gnu.org>
parents: 34678
diff changeset
125 (function-item smtpmail-send-it :tag "Use SMTPmail package")
34b048e564c0 Fix last check-in.
Dave Love <fx@gnu.org>
parents: 34678
diff changeset
126 (function-item feedmail-send-it :tag "Use Feedmail package")
34678
02f8f4d6f0b8 (send-mail-function): Customize.
Dave Love <fx@gnu.org>
parents: 33415
diff changeset
127 function)
02f8f4d6f0b8 (send-mail-function): Customize.
Dave Love <fx@gnu.org>
parents: 33415
diff changeset
128 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
131 (defcustom mail-header-separator "--text follows this line--" "\
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
132 *Line used to separate headers from text in messages being composed."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
133 :type 'string
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
134 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135
13824
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
136 ;; Set up mail-header-separator for use as a category text property.
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
137 (put 'mail-header-separator 'rear-nonsticky '(category))
13928
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
138 ;;; This was a nice idea, for preventing accidental modification of
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
139 ;;; the separator. But I found it also prevented or obstructed
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
140 ;;; certain deliberate operations, such as copying the separator line
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
141 ;;; up to the top to send myself a copy of an already sent outgoing message
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
142 ;;; and other things. So I turned it off. --rms.
d9a95968edb8 (mail-header-separator): Don't put on read-only property.
Richard M. Stallman <rms@gnu.org>
parents: 13919
diff changeset
143 ;;;(put 'mail-header-separator 'read-only t)
13824
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
144
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
146 (defcustom mail-archive-file-name nil "\
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 *Name of file to write all outgoing messages in, or nil for none.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
148 This can be an inbox file or an Rmail file."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
149 :type '(choice file (const nil))
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
150 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151
5261
50406a868f05 (mail-default-reply-to): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 5210
diff changeset
152 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
153 (defcustom mail-default-reply-to nil
12607
498ce026e14b (mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12564
diff changeset
154 "*Address to insert as default Reply-to field of outgoing messages.
498ce026e14b (mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12564
diff changeset
155 If nil, it will be initialized from the REPLYTO environment variable
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
156 when you first send mail."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
157 :type '(choice (const nil) string)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
158 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159
8488
ddd8e250a65d (mail-alias-file): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 8416
diff changeset
160 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
161 (defcustom mail-alias-file nil
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 "*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
163 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
164 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
165 This variable has no effect unless your system uses sendmail as its mailer."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
166 :type '(choice (const nil) file)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
167 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168
10326
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
169 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
170 (defcustom mail-personal-alias-file "~/.mailrc"
10326
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
171 "*If non-nil, the name of the user's personal mail alias file.
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
172 This file typically should be in same format as the `.mailrc' file used by
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
173 the `Mail' or `mailx' program.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
174 This file need not actually exist."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
175 :type '(choice (const nil) file)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
176 :group 'sendmail)
10326
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
177
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
178 (defcustom mail-setup-hook nil
12564
3cd5105aeb2b (mail-setup-hook): New defvar.
Karl Heuer <kwzh@gnu.org>
parents: 12473
diff changeset
179 "Normal hook, run each time a new outgoing mail message is initialized.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
180 The function `mail-setup' runs this hook."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
181 :type 'hook
32295
a25a7ebfcb34 Byte-compile-dynamic since it gets loaded by
Dave Love <fx@gnu.org>
parents: 31568
diff changeset
182 :options '(fortune-to-signature spook mail-abbrevs-setup)
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
183 :group 'sendmail)
12564
3cd5105aeb2b (mail-setup-hook): New defvar.
Karl Heuer <kwzh@gnu.org>
parents: 12473
diff changeset
184
1431
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
185 (defvar mail-aliases t
1468
01e760e7de34 (mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1431
diff changeset
186 "Alist of mail address aliases,
9647
c27b8baa6aa4 (mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 9645
diff changeset
187 or t meaning should be initialized from your mail aliases file.
52684
3c1324a5f1d5 (mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
188 \(The file's name is normally `~/.mailrc', but `mail-personal-alias-file'
3c1324a5f1d5 (mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
189 can specify a different file name.)
9647
c27b8baa6aa4 (mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 9645
diff changeset
190 The alias definitions in the file have this form:
1468
01e760e7de34 (mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1431
diff changeset
191 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
192
8802
7fcda87193a3 (mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 8488
diff changeset
193 (defvar mail-alias-modtime nil
9647
c27b8baa6aa4 (mail-aliases, mail-archive-file-name): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 9645
diff changeset
194 "The modification time of your mail alias file when it was last examined.")
8802
7fcda87193a3 (mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 8488
diff changeset
195
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
196 (defcustom mail-yank-prefix nil
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 "*Prefix insert on lines of yanked message being replied to.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
198 nil means use indentation."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
199 :type '(choice (const nil) string)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
200 :group 'sendmail)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
201
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
202 (defcustom mail-indentation-spaces 3
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
203 "*Number of spaces to insert at the beginning of each cited line.
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
204 Used by `mail-yank-original' via `mail-indent-citation'."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
205 :type 'integer
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
206 :group 'sendmail)
4418
fdbbde0d4f24 (mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents: 4342
diff changeset
207 (defvar mail-yank-hooks nil
3816
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
208 "Obsolete hook for modifying a citation just inserted in the mail buffer.
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
209 Each hook function can find the citation between (point) and (mark t).
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
210 And each hook function should leave point and mark around the citation
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
211 text as modified.
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
212
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
213 This is a normal hook, misnamed for historical reasons.
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
214 It is semi-obsolete and mail agents should no longer use it.")
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
215
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
216 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
217 (defcustom mail-citation-hook nil
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
218 "*Hook for modifying a citation just inserted in the mail buffer.
22990
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
219 Each hook function can find the citation between (point) and (mark t),
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
220 and should leave point and mark around the citation text as modified.
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
221 The hook functions can find the header of the cited message
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
222 in the variable `mail-citation-header', whether or not this is included
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
223 in the cited portion of the message.
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
224
3816
231b935db22c (mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents: 3513
diff changeset
225 If this hook is entirely empty (nil), a default action is taken
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
226 instead of no action."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
227 :type 'hook
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
228 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229
22990
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
230 (defvar mail-citation-header nil
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
231 "While running `mail-citation-hook', this variable holds the message header.
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
232 This enables the hook functions to see the whole message header
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
233 regardless of what part of it (if any) is included in the cited text.")
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
234
22747
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
235 (defcustom mail-citation-prefix-regexp "[ \t]*[-a-z0-9A-Z]*>+[ \t]*\\|[ \t]*"
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
236 "*Regular expression to match a citation prefix plus whitespace.
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
237 It should match whatever sort of citation prefixes you want to handle,
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
238 with whitespace before and after; it should also match just whitespace.
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
239 The default value matches citations like `foo-bar>' plus whitespace."
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
240 :type 'regexp
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
241 :group 'sendmail
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
242 :version "20.3")
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
243
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 (defvar mail-abbrevs-loaded nil)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 (defvar mail-mode-map nil)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246
1431
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
247 (autoload 'build-mail-aliases "mailalias"
10326
627063d29d25 (mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents: 10174
diff changeset
248 "Read mail aliases from user's personal aliases file and set `mail-aliases'."
1431
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
249 nil)
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
250
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
251 (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
252 "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
253 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
254 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
255 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
256 nil)
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
257
999
d8d503897aa5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 898
diff changeset
258 ;;;###autoload
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
259 (defcustom mail-signature nil
1025
1ccd97bc1d2b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1024
diff changeset
260 "*Text inserted at end of mail buffer when a message is initialized.
22005
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
261 If t, it means to insert the contents of the file `mail-signature-file'.
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
262 If a string, that string is inserted.
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
263 (To make a proper signature, the string should begin with \\n\\n-- \\n,
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
264 which is the standard way to delimit a signature in a message.)
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
265 Otherwise, it should be an expression; it is evaluated
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
266 and should insert whatever you want to insert."
45423
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
267 :type '(choice (const :tag "None" nil)
22005
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
268 (const :tag "Use `.signature' file" t)
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
269 (string :tag "String to insert")
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
270 (sexp :tag "Expression to evaluate"))
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
271 :group 'sendmail)
22005
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
272 (put 'mail-signature 'risky-local-variable t)
13116
61c560010274 (mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13090
diff changeset
273
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
274 (defcustom mail-signature-file "~/.signature"
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
275 "*File containing the text inserted at end of mail buffer."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
276 :type 'file
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
277 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278
45423
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
279 ;;;###autoload
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
280 (defcustom mail-default-directory "~/"
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
281 "*Directory for mail buffers.
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
282 Value of `default-directory' for mail buffers.
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
283 This directory is used for auto-save files of mail buffers."
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
284 :type '(directory :tag "Directory")
48198
d4b940e02949 (mail-default-directory): Set the version to 21.4.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 47887
diff changeset
285 :group 'sendmail
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 55115
diff changeset
286 :version "22.1")
45423
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
287
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
288 (defvar mail-reply-action nil)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 (defvar mail-send-actions nil
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 "A list of actions to be performed upon successful sending of a message.")
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
291 (put 'mail-reply-action 'permanent-local t)
15546
e4a1ba2cfdba (mail-reply-buffer, mail-send-actions):
Richard M. Stallman <rms@gnu.org>
parents: 15162
diff changeset
292 (put 'mail-send-actions 'permanent-local t)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
294 (defcustom mail-default-headers nil
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 "*A string containing header lines, to be inserted in outgoing messages.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 It is inserted before you edit the message,
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
297 so you can edit or delete these lines."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
298 :type '(choice (const nil) string)
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
299 :group 'sendmail)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
301 (defcustom mail-bury-selects-summary t
8955
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
302 "*If non-nil, try to show RMAIL summary buffer after returning from mail.
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
303 The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
304 the RMAIL summary buffer before returning, if it exists and this variable
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
305 is non-nil."
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
306 :type 'boolean
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
307 :group 'sendmail)
8955
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
308
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
309 (defcustom mail-send-nonascii 'mime
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
310 "*Specify whether to allow sending non-ASCII characters in mail.
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
311 If t, that means do allow it. nil means don't allow it.
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
312 `query' means ask the user each time.
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
313 `mime' means add an appropriate MIME header if none already present.
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
314 The default is `mime'.
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
315 Including non-ASCII characters in a mail message can be problematical
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
316 for the recipient, who may not know how to decode them properly."
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
317 :type '(choice (const t) (const nil) (const query) (const mime))
20962
54413501e4a9 Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20953
diff changeset
318 :group 'sendmail)
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
319
44861
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
320 (defcustom mail-use-dsn nil
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
321 "*Ask MTA for notification of failed, delayed or successful delivery.
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
322 Note that only some MTAs (currently only recent versions of Sendmail)
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
323 support Delivery Status Notification."
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
324 :group 'sendmail
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
325 :type '(repeat (radio (const :tag "Failure" failure)
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
326 (const :tag "Delay" delay)
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
327 (const :tag "Success" success)))
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 55115
diff changeset
328 :version "22.1")
44861
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
329
5667
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
330 ;; Note: could use /usr/ucb/mail instead of sendmail;
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
331 ;; options -t, and -v if not interactive.
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
332 (defvar mail-mailer-swallows-blank-line
5731
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
333 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" system-configuration)
8253
e390776e5846 (mail-mailer-swallows-blank-line): Verify sendmail.cf
Richard M. Stallman <rms@gnu.org>
parents: 8216
diff changeset
334 (file-readable-p "/etc/sendmail.cf")
5731
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
335 (let ((buffer (get-buffer-create " *temp*")))
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
336 (unwind-protect
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
337 (save-excursion
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
338 (set-buffer buffer)
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
339 (insert-file-contents "/etc/sendmail.cf")
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
340 (goto-char (point-min))
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
341 (let ((case-fold-search nil))
5977
8c5cc76de654 (mail-mailer-swallows-blank-line): Fix regexp typo.
Richard M. Stallman <rms@gnu.org>
parents: 5847
diff changeset
342 (re-search-forward "^OR\\>" nil t)))
5731
d53870d31221 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5667
diff changeset
343 (kill-buffer buffer))))
10624
ec7ba4fd36f0 mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents: 10326
diff changeset
344 ;; According to RFC822, "The field-name must be composed of printable
ec7ba4fd36f0 mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents: 10326
diff changeset
345 ;; ASCII characters (i.e. characters that have decimal values between
ec7ba4fd36f0 mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents: 10326
diff changeset
346 ;; 33 and 126, except colon)", i.e. any chars except ctl chars,
ec7ba4fd36f0 mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents: 10326
diff changeset
347 ;; space, or colon.
ec7ba4fd36f0 mail-mailer-swallows-blank-line: Handle full range of legal header names as
Noah Friedman <friedman@splode.com>
parents: 10326
diff changeset
348 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
5667
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
349 "Set this non-nil if the system's mailer runs the header and body together.
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
350 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
351 The value should be an expression to test whether the problem will
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
352 actually occur.")
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
353
40383
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
354 (defvar mail-mode-syntax-table
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
355 (let ((st (make-syntax-table)))
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
356 ;; define-derived-mode will make it inherit from text-mode-syntax-table.
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
357 (modify-syntax-entry ?% ". " st)
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
358 st)
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
359 "Syntax table used while in `mail-mode'.")
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360
9381
535197b3fc42 (mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9160
diff changeset
361 (defvar mail-font-lock-keywords
14364
64be2e6b8094 Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 14169
diff changeset
362 (eval-when-compile
16453
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
363 (let* ((cite-chars "[>|}]")
33415
49906cfa5179 (mail-font-lock-keywords): Use [:alpha:], not
Dave Love <fx@gnu.org>
parents: 32295
diff changeset
364 (cite-prefix "[:alpha:]")
16453
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
365 (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
17164
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
366 (list '("^\\(To\\|Newsgroups\\):" . font-lock-function-name-face)
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
367 '("^\\(B?CC\\|Reply-to\\|Mail-\\(reply\\|followup\\)-to\\):" . font-lock-keyword-face)
14364
64be2e6b8094 Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 14169
diff changeset
368 '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
64be2e6b8094 Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 14169
diff changeset
369 (1 font-lock-comment-face) (2 font-lock-type-face nil t))
16453
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
370 ;; Use EVAL to delay in case `mail-header-separator' gets changed.
17164
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
371 '(eval .
21284
1d971e4f4645 check length of mail-header-separator before using in font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 20962
diff changeset
372 (let ((separator (if (zerop (length mail-header-separator))
21301
129d706946d5 use a string that will never match.
Simon Marshall <simon@gnu.org>
parents: 21284
diff changeset
373 " \\`\\' "
21284
1d971e4f4645 check length of mail-header-separator before using in font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 20962
diff changeset
374 (regexp-quote mail-header-separator))))
1d971e4f4645 check length of mail-header-separator before using in font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 20962
diff changeset
375 (cons (concat "^" separator "$") 'font-lock-warning-face)))
16453
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
376 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
377 `(,cite-chars
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
378 (,(concat "\\=[ \t]*"
17164
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
379 "\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
380 "\\(" cite-chars "[ \t]*\\)\\)+"
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
381 "\\(.*\\)")
16453
90a2c2aebc37 Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 15962
diff changeset
382 (beginning-of-line) (end-of-line)
20953
f3f9df46d008 Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents: 20727
diff changeset
383 (2 font-lock-constant-face nil t)
17164
024399a1b442 Tweak font-lock-keywords
Simon Marshall <simon@gnu.org>
parents: 17097
diff changeset
384 (4 font-lock-comment-face nil t)))
49063
aed65d90301e (mail-font-lock-keywords): Match multiline In-Reply-To and X-*.
Richard M. Stallman <rms@gnu.org>
parents: 49033
diff changeset
385 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$"
14364
64be2e6b8094 Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents: 14169
diff changeset
386 . font-lock-string-face))))
9381
535197b3fc42 (mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9160
diff changeset
387 "Additional expressions to highlight in Mail mode.")
535197b3fc42 (mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9160
diff changeset
388
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
389
13950
e9615c5f477a (sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents: 13928
diff changeset
390 (defun sendmail-sync-aliases ()
52372
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
391 (when mail-personal-alias-file
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
392 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
393 (or (equal mail-alias-modtime modtime)
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
394 (setq mail-alias-modtime modtime
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
395 mail-aliases t)))))
8802
7fcda87193a3 (mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 8488
diff changeset
396
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 (defun mail-setup (to subject in-reply-to cc replybuffer actions)
12473
4472a461ab1c (mail-default-reply-to): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents: 12458
diff changeset
398 (or mail-default-reply-to
8972
ad8f1cea49cc (mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents: 8955
diff changeset
399 (setq mail-default-reply-to (getenv "REPLYTO")))
13950
e9615c5f477a (sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents: 13928
diff changeset
400 (sendmail-sync-aliases)
1431
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
401 (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
402 (progn
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
403 (setq mail-aliases nil)
52372
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
404 (when mail-personal-alias-file
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
405 (if (file-exists-p mail-personal-alias-file)
02e7333fda5d (sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents: 52320
diff changeset
406 (build-mail-aliases)))))
18130
ea43e3ebc47a (mail-setup): Clear out buffer-file-coding-system.
Richard M. Stallman <rms@gnu.org>
parents: 17796
diff changeset
407 ;; Don't leave this around from a previous message.
18135
000b0a8baf1a (mail-setup): Don't set buffer-file-coding-system to nil.
Richard M. Stallman <rms@gnu.org>
parents: 18130
diff changeset
408 (kill-local-variable 'buffer-file-coding-system)
35383
2c239dcc208a (mail-setup): Call set-buffer-multibyte because
Kenichi Handa <handa@m17n.org>
parents: 35115
diff changeset
409 ;; This doesn't work for enable-multibyte-characters.
2c239dcc208a (mail-setup): Call set-buffer-multibyte because
Kenichi Handa <handa@m17n.org>
parents: 35115
diff changeset
410 ;; (kill-local-variable 'enable-multibyte-characters)
2c239dcc208a (mail-setup): Call set-buffer-multibyte because
Kenichi Handa <handa@m17n.org>
parents: 35115
diff changeset
411 (set-buffer-multibyte default-enable-multibyte-characters)
18794
631776603b13 (mail-setup): Kill the local binding of enable-multibyte-characters.
Kenichi Handa <handa@m17n.org>
parents: 18704
diff changeset
412 (if current-input-method
631776603b13 (mail-setup): Kill the local binding of enable-multibyte-characters.
Kenichi Handa <handa@m17n.org>
parents: 18704
diff changeset
413 (inactivate-input-method))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 (setq mail-send-actions actions)
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
415 (setq mail-reply-action replybuffer)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416 (goto-char (point-min))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 (insert "To: ")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419 (if to
1843
2d5caf3fd862 (mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents: 1835
diff changeset
420 ;; 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
421 ;; 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
422 ;; 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
423 (let ((fill-prefix "\t")
2d5caf3fd862 (mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents: 1835
diff changeset
424 (address-start (point)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 (insert to "\n")
22997
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
426 (fill-region-as-paragraph address-start (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
427 (goto-char (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
428 (unless (bolp)
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
429 (newline)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 (newline))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431 (if cc
1843
2d5caf3fd862 (mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents: 1835
diff changeset
432 (let ((fill-prefix "\t")
2d5caf3fd862 (mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents: 1835
diff changeset
433 (address-start (progn (insert "CC: ") (point))))
2d5caf3fd862 (mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents: 1835
diff changeset
434 (insert cc "\n")
22997
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
435 (fill-region-as-paragraph address-start (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
436 (goto-char (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
437 (unless (bolp)
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
438 (newline))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439 (if in-reply-to
22997
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
440 (let ((fill-prefix "\t")
10013
fd7810a1535a (mail-setup): Make fill-column wide for the in-reply-to.
Richard M. Stallman <rms@gnu.org>
parents: 9663
diff changeset
441 (fill-column 78)
9663
8bd05e79e0bd (mail-setup): Fill in-reply-to field properly.
Richard M. Stallman <rms@gnu.org>
parents: 9647
diff changeset
442 (address-start (point)))
8bd05e79e0bd (mail-setup): Fill in-reply-to field properly.
Richard M. Stallman <rms@gnu.org>
parents: 9647
diff changeset
443 (insert "In-reply-to: " in-reply-to "\n")
22997
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
444 (fill-region-as-paragraph address-start (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
445 (goto-char (point-max))
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
446 (unless (bolp)
7be798773f85 (mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents: 22990
diff changeset
447 (newline))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 (insert "Subject: " (or subject "") "\n")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 (if mail-default-headers
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
450 (insert mail-default-headers))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 (if mail-default-reply-to
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 (insert "Reply-to: " mail-default-reply-to "\n"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 (if mail-self-blind
14437
8013f6a7080d (mail-setup): For mail-self-blind, use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents: 14373
diff changeset
454 (insert "BCC: " user-mail-address "\n"))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 (if mail-archive-file-name
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 (insert "FCC: " mail-archive-file-name "\n"))
13824
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
457 (put-text-property (point)
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
458 (progn
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
459 (insert mail-header-separator "\n")
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
460 (1- (point)))
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
461 'category 'mail-header-separator)
2852
e80e6e533533 (mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents: 2701
diff changeset
462 ;; 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
463 (if to (setq to (point)))
1025
1ccd97bc1d2b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1024
diff changeset
464 (cond ((eq mail-signature t)
13116
61c560010274 (mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13090
diff changeset
465 (if (file-exists-p mail-signature-file)
8216
1f1387385ac6 (mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents: 8145
diff changeset
466 (progn
1f1387385ac6 (mail-setup): Insert -- line before .signature file.
Richard M. Stallman <rms@gnu.org>
parents: 8145
diff changeset
467 (insert "\n\n-- \n")
13116
61c560010274 (mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13090
diff changeset
468 (insert-file-contents mail-signature-file))))
22005
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
469 ((stringp mail-signature)
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
470 (insert mail-signature))
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
471 (t
863230e3e248 (mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents: 21920
diff changeset
472 (eval mail-signature)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 (goto-char (point-max))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 (or (bolp) (newline)))
2852
e80e6e533533 (mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents: 2701
diff changeset
475 (if to (goto-char to))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 (or to subject in-reply-to
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 (set-buffer-modified-p nil))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 (run-hooks 'mail-setup-hook))
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
479
27245
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
480 (defcustom mail-mode-hook nil
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
481 "Hook run by Mail mode."
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
482 :group 'sendmail
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
483 :type 'hook
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
484 :options '(footnote-mode))
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
485
47206
49fb7a41adff (mail-mode): Don't set local-abbrev-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45423
diff changeset
486 (defvar mail-mode-abbrev-table text-mode-abbrev-table)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487 ;;;###autoload
40383
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
488 (define-derived-mode mail-mode text-mode "Mail"
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
489 "Major mode for editing mail to be sent.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490 Like Text Mode but with these additional commands:
21545
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
491 \\[mail-send] mail-send (send the message) \\[mail-send-and-exit] mail-send-and-exit
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
492 Here are commands that move to a header field (and create it if there isn't):
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
493 \\[mail-to] move to To: \\[mail-subject] move to Subject:
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
494 \\[mail-cc] move to CC: \\[mail-bcc] move to BCC:
39396
8c3457d1371c (mail-mode): Doc fix. From Simon Josefsson <jas@extundo.com>.
Eli Zaretskii <eliz@gnu.org>
parents: 39224
diff changeset
495 \\[mail-fcc] move to FCC: \\[mail-reply-to] move to Reply-To:
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
496 \\[mail-mail-reply-to] move to Mail-Reply-To:
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
497 \\[mail-mail-followup-to] move to Mail-Followup-To:
21545
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
498 \\[mail-text] mail-text (move to beginning of message text).
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
499 \\[mail-signature] mail-signature (insert `mail-signature-file' file).
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
500 \\[mail-yank-original] mail-yank-original (insert current message, in Rmail).
2c4281059c0a (mail-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 21301
diff changeset
501 \\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked).
35115
98a3ec955d8d (mail-mode): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 34767
diff changeset
502 \\[mail-sent-via] mail-sent-via (add a Sent-via field for each To or CC).
98a3ec955d8d (mail-mode): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 34767
diff changeset
503 Turning on Mail mode runs the normal hooks `text-mode-hook' and
98a3ec955d8d (mail-mode): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 34767
diff changeset
504 `mail-mode-hook' (in that order)."
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
505 (make-local-variable 'mail-reply-action)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 (make-local-variable 'mail-send-actions)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 (setq buffer-offer-save t)
9483
a8f745eaee5c * sendmail.el: (mail-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 9470
diff changeset
508 (make-local-variable 'font-lock-defaults)
36887
854351f92bfe (mail-mode): Activate case-folding in
Gerd Moellmann <gerd@gnu.org>
parents: 35615
diff changeset
509 (setq font-lock-defaults '(mail-font-lock-keywords t t))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 (make-local-variable 'paragraph-separate)
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
511 (make-local-variable 'normal-auto-fill-function)
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
512 (setq normal-auto-fill-function 'mail-mode-auto-fill)
18704
259f416a8485 (mail-mode): Make fill-paragraph-function local.
Richard M. Stallman <rms@gnu.org>
parents: 18589
diff changeset
513 (make-local-variable 'fill-paragraph-function)
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
514 (setq fill-paragraph-function 'mail-mode-fill-paragraph)
34767
0be0c72fb0ad (mail-mode): Set `comment-start' to the yank prefix.
Miles Bader <miles@gnu.org>
parents: 34681
diff changeset
515 ;; Allow using comment commands to add/remove quoting (this only does
0be0c72fb0ad (mail-mode): Set `comment-start' to the yank prefix.
Miles Bader <miles@gnu.org>
parents: 34681
diff changeset
516 ;; anything if mail-yank-prefix is set to a non-nil value).
0be0c72fb0ad (mail-mode): Set `comment-start' to the yank prefix.
Miles Bader <miles@gnu.org>
parents: 34681
diff changeset
517 (set (make-local-variable 'comment-start) mail-yank-prefix)
54286
1395db493830 (mail-mode): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54278
diff changeset
518 (if mail-yank-prefix
1395db493830 (mail-mode): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54278
diff changeset
519 (set (make-local-variable 'comment-start-skip)
1395db493830 (mail-mode): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54278
diff changeset
520 (concat "^" (regexp-quote mail-yank-prefix) "[ \t]*")))
18870
d86beb823996 (mail-mode): Set adaptive-fill-regexp specially to cater to supercite.
Richard M. Stallman <rms@gnu.org>
parents: 18814
diff changeset
521 (make-local-variable 'adaptive-fill-regexp)
d86beb823996 (mail-mode): Set adaptive-fill-regexp specially to cater to supercite.
Richard M. Stallman <rms@gnu.org>
parents: 18814
diff changeset
522 (setq adaptive-fill-regexp
42915
4c65aa6c1046 (mail-mode): ">" is not a supercite-style prefix
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42522
diff changeset
523 (concat "[ \t]*[-[:alnum:]]+>+[ \t]*\\|"
40383
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
524 adaptive-fill-regexp))
19000
f5d103332d9e (mail-mode): Make adaptive-fill-regexp
Richard M. Stallman <rms@gnu.org>
parents: 18955
diff changeset
525 (make-local-variable 'adaptive-fill-first-line-regexp)
19724
3f803418061c (mail-mode): Set adaptive-fill-first-line-regexp
Richard M. Stallman <rms@gnu.org>
parents: 19628
diff changeset
526 (setq adaptive-fill-first-line-regexp
43054
cdc1a6112b86 (mail-mode): Undo half of last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42915
diff changeset
527 (concat "[ \t]*[-[:alnum:]]*>+[ \t]*\\|"
40383
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
528 adaptive-fill-first-line-regexp))
15162
a16fd1b9abb5 (mail-mode): Line starting with ---- is a separator.
Richard M. Stallman <rms@gnu.org>
parents: 14926
diff changeset
529 ;; `-- ' precedes the signature. `-----' appears at the start of the
a16fd1b9abb5 (mail-mode): Line starting with ---- is a separator.
Richard M. Stallman <rms@gnu.org>
parents: 14926
diff changeset
530 ;; lines that delimit forwarded messages.
a16fd1b9abb5 (mail-mode): Line starting with ---- is a separator.
Richard M. Stallman <rms@gnu.org>
parents: 14926
diff changeset
531 ;; Lines containing just >= 3 dashes, perhaps after whitespace,
a16fd1b9abb5 (mail-mode): Line starting with ---- is a separator.
Richard M. Stallman <rms@gnu.org>
parents: 14926
diff changeset
532 ;; are also sometimes used and should be separators.
51082
af63282f9b8e (mail-mode): Don't bother setting paragraph-start.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50787
diff changeset
533 (setq paragraph-separate (concat (regexp-quote mail-header-separator)
23976
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
534 "$\\|\t*\\([-|#;>* ]\\|(?[0-9]+[.)]\\)+$"
33415
49906cfa5179 (mail-font-lock-keywords): Use [:alpha:], not
Dave Love <fx@gnu.org>
parents: 32295
diff changeset
535 "\\|[ \t]*[[:alnum:]]*>+[ \t]*$\\|[ \t]*$\\|"
51082
af63282f9b8e (mail-mode): Don't bother setting paragraph-start.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50787
diff changeset
536 "--\\( \\|-+\\)$\\|"
af63282f9b8e (mail-mode): Don't bother setting paragraph-start.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50787
diff changeset
537 page-delimiter)))
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
538
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
539
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
540 (defun mail-header-end ()
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
541 "Return the buffer location of the end of headers, as a number."
22410
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
542 (save-restriction
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
543 (widen)
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
544 (save-excursion
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
545 (rfc822-goto-eoh)
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
546 (point))))
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
547
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
548 (defun mail-text-start ()
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
549 "Return the buffer location of the start of text, as a number."
22410
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
550 (save-restriction
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
551 (widen)
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
552 (save-excursion
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
553 (rfc822-goto-eoh)
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
554 (forward-line 1)
6c20dbaac61e (mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents: 22379
diff changeset
555 (point))))
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
556
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
557 (defun mail-sendmail-delimit-header ()
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
558 "Set up whatever header delimiter convention sendmail will use.
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
559 Concretely: replace the first blank line in the header with the separator."
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
560 (rfc822-goto-eoh)
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
561 (insert mail-header-separator)
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
562 (point))
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
563
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
564 (defun mail-sendmail-undelimit-header ()
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
565 "Remove header separator to put the message in correct form for sendmail.
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
566 Leave point at the start of the delimiter line."
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
567 (rfc822-goto-eoh)
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
568 (delete-region (point) (progn (end-of-line) (point))))
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
569
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
570 (defun mail-mode-auto-fill ()
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
571 "Carry out Auto Fill for Mail mode.
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
572 If within the headers, this makes the new lines into continuation lines."
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
573 (if (< (point) (mail-header-end))
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
574 (let ((old-line-start (save-excursion (beginning-of-line) (point))))
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
575 (if (do-auto-fill)
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
576 (save-excursion
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
577 (beginning-of-line)
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
578 (while (not (eq (point) old-line-start))
18814
9b92c85d0dc2 (mail-mode-auto-fill): Use insert-before-markers.
Richard M. Stallman <rms@gnu.org>
parents: 18794
diff changeset
579 ;; Use insert-before-markers in case we're inserting
9b92c85d0dc2 (mail-mode-auto-fill): Use insert-before-markers.
Richard M. Stallman <rms@gnu.org>
parents: 18794
diff changeset
580 ;; before the saved value of point (which is common).
9b92c85d0dc2 (mail-mode-auto-fill): Use insert-before-markers.
Richard M. Stallman <rms@gnu.org>
parents: 18794
diff changeset
581 (insert-before-markers " ")
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
582 (forward-line -1))
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
583 t)))
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
584 (do-auto-fill)))
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
585
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
586 (defun mail-mode-fill-paragraph (arg)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
587 ;; Do something special only if within the headers.
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
588 (if (< (point) (mail-header-end))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49063
diff changeset
589 (let (beg end fieldname)
31568
d0dfc12963ef (mail-mode-fill-paragraph): Do not get the
Gerd Moellmann <gerd@gnu.org>
parents: 30774
diff changeset
590 (when (prog1 (re-search-backward "^[-a-zA-Z]+:" nil 'yes)
d0dfc12963ef (mail-mode-fill-paragraph): Do not get the
Gerd Moellmann <gerd@gnu.org>
parents: 30774
diff changeset
591 (setq beg (point)))
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
592 (setq fieldname
31568
d0dfc12963ef (mail-mode-fill-paragraph): Do not get the
Gerd Moellmann <gerd@gnu.org>
parents: 30774
diff changeset
593 (downcase (buffer-substring beg (1- (match-end 0))))))
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
594 (forward-line 1)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
595 ;; Find continuation lines and get rid of their continuation markers.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
596 (while (looking-at "[ \t]")
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
597 (delete-horizontal-space)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
598 (forward-line 1))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
599 (setq end (point-marker))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
600 (goto-char beg)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
601 ;; If this field contains addresses,
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
602 ;; make sure we can fill after each address.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
603 (if (member fieldname
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
604 '("to" "cc" "bcc" "from" "reply-to"
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
605 "mail-reply-to" "mail-followup-to"
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
606 "resent-to" "resent-cc" "resent-bcc"
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
607 "resent-from" "resent-reply-to"))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
608 (while (search-forward "," end t)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
609 (or (looking-at "[ \t]")
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
610 (insert " "))))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
611 (fill-region-as-paragraph beg end)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
612 ;; Mark all lines except the first as continuations.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
613 (goto-char beg)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
614 (forward-line 1)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
615 (while (< (point) end)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
616 (insert " ")
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
617 (forward-line 1))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
618 (move-marker end nil)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
619 t)))
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
620
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
621 ;;; Set up keymap.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 (if mail-mode-map
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 nil
40383
cfc82f90a7d4 (mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39479
diff changeset
625 (setq mail-mode-map (make-sparse-keymap))
14679
671df59704d7 (mail-mode-map): Bind M-TAB to mail-complete.
Richard M. Stallman <rms@gnu.org>
parents: 14651
diff changeset
626 (define-key mail-mode-map "\M-\t" 'mail-complete)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 (define-key mail-mode-map "\C-c?" 'describe-mode)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 (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
629 (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
630 (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
631 (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
632 (define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
10726
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
633 (define-key mail-mode-map "\C-c\C-f\C-r" 'mail-reply-to)
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
634 (define-key mail-mode-map "\C-c\C-f\C-a" 'mail-mail-reply-to) ; author
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
635 (define-key mail-mode-map "\C-c\C-f\C-l" 'mail-mail-followup-to) ; list
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636 (define-key mail-mode-map "\C-c\C-t" 'mail-text)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 (define-key mail-mode-map "\C-c\C-y" 'mail-yank-original)
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
638 (define-key mail-mode-map "\C-c\C-r" 'mail-yank-region)
49033
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
639 (define-key mail-mode-map [remap split-line] 'mail-split-line)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 (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
641 (define-key mail-mode-map "\C-c\C-w" 'mail-signature)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 (define-key mail-mode-map "\C-c\C-v" 'mail-sent-via)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 (define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit)
17512
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
644 (define-key mail-mode-map "\C-c\C-s" 'mail-send)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
645 (define-key mail-mode-map "\C-c\C-i" 'mail-attach-file))
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
646
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
647 (define-key mail-mode-map [menu-bar mail]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
648 (cons "Mail" (make-sparse-keymap "Mail")))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
649
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
650 (define-key mail-mode-map [menu-bar mail fill]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
651 '("Fill Citation" . mail-fill-yanked-message))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
652
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
653 (define-key mail-mode-map [menu-bar mail yank]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
654 '("Cite Original" . mail-yank-original))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
655
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
656 (define-key mail-mode-map [menu-bar mail signature]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
657 '("Insert Signature" . mail-signature))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
658
17796
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
659 (define-key mail-mode-map [menu-bar mail mail-sep]
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
660 '("--"))
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
661
4074
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
662 (define-key mail-mode-map [menu-bar mail cancel]
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
663 '("Cancel" . mail-dont-send))
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
664
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
665 (define-key mail-mode-map [menu-bar mail send-stay]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
666 '("Send, Keep Editing" . mail-send))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
667
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
668 (define-key mail-mode-map [menu-bar mail send]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
669 '("Send Message" . mail-send-and-exit))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
670
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
671 (define-key mail-mode-map [menu-bar headers]
11181
67a8c8274784 (mail-mode-map): Longer title for headers submenu.
Richard M. Stallman <rms@gnu.org>
parents: 11120
diff changeset
672 (cons "Headers" (make-sparse-keymap "Move to Header")))
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
673
17796
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
674 (define-key mail-mode-map [menu-bar headers text]
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
675 '("Text" . mail-text))
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
676
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
677 (define-key mail-mode-map [menu-bar headers expand-aliases]
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
678 '("Expand Aliases" . expand-mail-aliases))
10726
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
679
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
680 (define-key mail-mode-map [menu-bar headers sent-via]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
681 '("Sent Via" . mail-sent-via))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
682
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
683 (define-key mail-mode-map [menu-bar headers mail-reply-to]
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
684 '("Mail Reply To" . mail-mail-reply-to))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
685
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
686 (define-key mail-mode-map [menu-bar headers mail-followup-to]
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
687 '("Mail Followup To" . mail-mail-followup-to))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
688
17796
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
689 (define-key mail-mode-map [menu-bar headers reply-to]
dd8043525cd9 entry for expand-mail-aliases
Simon Marshall <simon@gnu.org>
parents: 17596
diff changeset
690 '("Reply-To" . mail-reply-to))
3859
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
691
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
692 (define-key mail-mode-map [menu-bar headers bcc]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
693 '("Bcc" . mail-bcc))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
694
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
695 (define-key mail-mode-map [menu-bar headers fcc]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
696 '("Fcc" . mail-fcc))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
697
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
698 (define-key mail-mode-map [menu-bar headers cc]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
699 '("Cc" . mail-cc))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
700
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
701 (define-key mail-mode-map [menu-bar headers subject]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
702 '("Subject" . mail-subject))
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
703
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
704 (define-key mail-mode-map [menu-bar headers to]
7e2410ba8e41 (mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3816
diff changeset
705 '("To" . mail-to))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
707 ;; User-level commands for sending.
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
708
50688
5c18ceba3ad8 (mail-send-and-exit): Make arg optional.
Richard M. Stallman <rms@gnu.org>
parents: 49598
diff changeset
709 (defun mail-send-and-exit (&optional arg)
1539
5677f906bf78 Dox fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1468
diff changeset
710 "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
711 Prefix arg means don't delete this window."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 (interactive "P")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713 (mail-send)
4074
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
714 (mail-bury arg))
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
715
50787
3d35ca8a190d (mail-dont-send, mail-bury): Make ARG optional.
Richard M. Stallman <rms@gnu.org>
parents: 50688
diff changeset
716 (defun mail-dont-send (&optional arg)
4074
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
717 "Don't send the message you have been editing.
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
718 Prefix arg means don't delete this window."
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
719 (interactive "P")
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
720 (mail-bury arg))
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
721
50787
3d35ca8a190d (mail-dont-send, mail-bury): Make ARG optional.
Richard M. Stallman <rms@gnu.org>
parents: 50688
diff changeset
722 (defun mail-bury (&optional arg)
4074
daf4ba204fe5 (mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4021
diff changeset
723 "Bury this mail buffer."
1269
d123cad4373c (mail-send-and-exit): Do other-buffer before bury-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 1075
diff changeset
724 (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
725 (bury-buffer (current-buffer))
14369
8d779463ec36 (mail-bury): Check mail-dedicated-frame frame param.
Richard M. Stallman <rms@gnu.org>
parents: 14364
diff changeset
726 (if (and (or (window-dedicated-p (frame-selected-window))
20049
69e6aa6e413e (mail-bury): Check for value, not just
Karl Heuer <kwzh@gnu.org>
parents: 19914
diff changeset
727 (cdr (assq 'mail-dedicated-frame (frame-parameters))))
4107
7b855e27223f (mail-bury): If selected frame is dedicated,
Richard M. Stallman <rms@gnu.org>
parents: 4074
diff changeset
728 (not (null (delq (selected-frame) (visible-frame-list)))))
55115
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
729 (progn
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
730 (if (display-multi-frame-p)
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
731 (delete-frame (selected-frame))
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
732 ;; The previous frame is where normally they have the
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
733 ;; RMAIL buffer displayed.
af2c1ea381f4 (mail-bury): Don't delete the frame where the
Eli Zaretskii <eliz@gnu.org>
parents: 54286
diff changeset
734 (other-frame -1)))
7833
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
735 (let (rmail-flag summary-buffer)
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
736 (and (not arg)
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
737 (not (one-window-p))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
738 (save-excursion
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
739 (set-buffer (window-buffer (next-window (selected-window) 'not)))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
740 (setq rmail-flag (eq major-mode 'rmail-mode))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
741 (setq summary-buffer
8955
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
742 (and mail-bury-selects-summary
14951db9444a (mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8802
diff changeset
743 (boundp 'rmail-summary-buffer)
7963
b66df6f80740 (mail-bury): Test that rmail-summary-buffer is boundp.
Richard M. Stallman <rms@gnu.org>
parents: 7917
diff changeset
744 rmail-summary-buffer
7833
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
745 (buffer-name rmail-summary-buffer)
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
746 (not (get-buffer-window rmail-summary-buffer))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
747 rmail-summary-buffer))))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
748 (if rmail-flag
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
749 ;; If the Rmail buffer has a summary, show that.
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
750 (if summary-buffer (switch-to-buffer summary-buffer)
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
751 (delete-window))
6cc0db90bcc3 (mail-bury): If showing rmail buffer that has summary, show the summary too.
Richard M. Stallman <rms@gnu.org>
parents: 7642
diff changeset
752 (switch-to-buffer newbuf))))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
753
27245
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
754 (defcustom mail-send-hook nil
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
755 "Hook run just before sending mail with `mail-send'."
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
756 :type 'hook
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
757 :options '(flyspell-mode-off)
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
758 :group 'sendmail)
7958d9720d8f Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents: 25240
diff changeset
759
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
760 ;;;###autoload
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
761 (defcustom mail-mailing-lists nil "\
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
762 *List of mailing list addresses the user is subscribed to.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
763
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
764 The variable is used to trigger insertion of the \"Mail-Followup-To\"
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
765 header when sending a message to a mailing list."
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
766 :type '(repeat string)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
767 :group 'sendmail)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
768
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
769
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770 (defun mail-send ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771 "Send the message in the current buffer.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
772 If `mail-interactive' is non-nil, wait for success indication
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773 or error messages, and inform user.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 Otherwise any failure is reported in a message back to
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 the user from the mailer."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 (interactive)
3949
d95172e91f4e (mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents: 3859
diff changeset
777 (if (if buffer-file-name
d95172e91f4e (mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents: 3859
diff changeset
778 (y-or-n-p "Send buffer contents as mail message? ")
d95172e91f4e (mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents: 3859
diff changeset
779 (or (buffer-modified-p)
d95172e91f4e (mail-send): Don't test buffer-modified-p if buffer is visiting a file.
Richard M. Stallman <rms@gnu.org>
parents: 3859
diff changeset
780 (y-or-n-p "Message already sent; resend? ")))
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
781 (let ((inhibit-read-only t)
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
782 (opoint (point))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
783 (ml (when mail-mailing-lists
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
784 ;; The surrounding regexp assumes the use of
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
785 ;; `mail-strip-quoted-names' on addresses before matching
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
786 ;; Cannot deal with full RFC 822 freedom, but that is
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
787 ;; unlikely to be problematic.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
788 (concat "\\(?:[[:space:];,]\\|\\`\\)"
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
789 (regexp-opt mail-mailing-lists t)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
790 "\\(?:[[:space:];,]\\|\\'\\)"))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
791 ;; If there are mailing lists defined
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
792 (when ml
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
793 (save-excursion
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
794 (let* ((to (mail-fetch-field "to" nil t))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
795 (cc (mail-fetch-field "cc" nil t))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
796 (new-header-values ; To: and Cc:
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
797 (mail-strip-quoted-names
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
798 (concat to (when cc (concat ", " cc))))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
799 ;; If message goes to known mailing list ...
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
800 (when (string-match ml new-header-values)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
801 ;; Add Mail-Followup-To if none yet
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
802 (unless (mail-fetch-field "mail-followup-to")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
803 (goto-char (mail-header-end))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
804 (insert "Mail-Followup-To: "
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
805 (let ((l))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
806 (mapc
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
807 ;; remove duplicates
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
808 '(lambda (e)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
809 (unless (member e l)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
810 (push e l)))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
811 (split-string new-header-values ", +" t))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
812 (mapconcat 'identity l ", "))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
813 "\n"))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
814 ;; Add Mail-Reply-To if none yet
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
815 (unless (mail-fetch-field "mail-reply-to")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
816 (goto-char (mail-header-end))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
817 (insert "Mail-Reply-To: "
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
818 (or (mail-fetch-field "reply-to")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
819 user-mail-address)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
820 "\n"))))))
39224
cd06bcf39556 (mail-send): Obey mail-send-nonascii when
Gerd Moellmann <gerd@gnu.org>
parents: 38965
diff changeset
821 (unless (memq mail-send-nonascii '(t mime))
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
822 (goto-char (point-min))
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
823 (skip-chars-forward "\0-\177")
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
824 (or (= (point) (point-max))
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
825 (if (eq mail-send-nonascii 'query)
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
826 (or (y-or-n-p "Message contains non-ASCII characters; send anyway? ")
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
827 (error "Aborted"))
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
828 (error "Message contains non-ASCII characters"))))
19628
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
829 ;; Complain about any invalid line.
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
830 (goto-char (point-min))
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
831 (while (< (point) (mail-header-end))
19628
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
832 (unless (looking-at "[ \t]\\|.*:\\|$")
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
833 (push-mark opoint)
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
834 (error "Invalid header line (maybe a continuation line lacks initial whitespace)"))
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
835 (forward-line 1))
19350
d7ecbd12ecef (mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents: 19202
diff changeset
836 (goto-char opoint)
7917
7967c371644f (mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 7858
diff changeset
837 (run-hooks 'mail-send-hook)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 (message "Sending...")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
839 (funcall send-mail-function)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840 ;; Now perform actions on successful sending.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841 (while mail-send-actions
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 (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
843 (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
844 (cdr (car mail-send-actions)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845 (error))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 (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
847 (message "Sending...done")
23382
55b2ea28932a Comment fix.
Karl Heuer <kwzh@gnu.org>
parents: 23086
diff changeset
848 ;; If buffer has no file, mark it as unmodified and delete auto-save.
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
849 (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
850 (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
851 (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
852 (delete-auto-save-file-if-necessary t))))))
47837
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
853
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
854 (defun mail-envelope-from ()
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
855 "Return the envelope mail address to use when sending mail.
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
856 This function uses `mail-envelope-from'."
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
857 (if (eq mail-envelope-from 'header)
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
858 (nth 1 (mail-extract-address-components
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
859 (mail-fetch-field "From")))
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
860 mail-envelope-from))
15962
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
861
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
862 ;; This does the real work of sending a message via sendmail.
37baba8d7fbc (mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15951
diff changeset
863 ;; It is called via the variable send-mail-function.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864
17097
c3c90aba16f9 (sendmail-coding-system): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents: 17013
diff changeset
865 ;;;###autoload
c3c90aba16f9 (sendmail-coding-system): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents: 17013
diff changeset
866 (defvar sendmail-coding-system nil
23086
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
867 "*Coding system for encoding the outgoing mail.
23581
6b883bd6398d (sendmail-coding-system,
Andreas Schwab <schwab@suse.de>
parents: 23382
diff changeset
868 This has higher priority than `default-buffer-file-coding-system'
23086
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
869 and `default-sendmail-coding-system',
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
870 but lower priority than the local value of `buffer-file-coding-system'.
25142
2953218005dd (sendmail-coding-system): Doc-string fixed.
Kenichi Handa <handa@m17n.org>
parents: 24622
diff changeset
871 See also the function `select-message-coding-system'.")
23086
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
872
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
873 ;;;###autoload
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
874 (defvar default-sendmail-coding-system 'iso-latin-1
23581
6b883bd6398d (sendmail-coding-system,
Andreas Schwab <schwab@suse.de>
parents: 23382
diff changeset
875 "Default coding system for encoding the outgoing mail.
23086
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
876 This variable is used only when `sendmail-coding-system' is nil.
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
877
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
878 This variable is set/changed by the command set-language-environment.
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
879 User should not set this variable manually,
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
880 instead use sendmail-coding-system to get a constant encoding
baea0ab6d015 (sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents: 23020
diff changeset
881 of outgoing mails regardless of the current language environment.
25142
2953218005dd (sendmail-coding-system): Doc-string fixed.
Kenichi Handa <handa@m17n.org>
parents: 24622
diff changeset
882 See also the function `select-message-coding-system'.")
17013
d6ce795e84da (sendmail-coding-system): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 16761
diff changeset
883
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884 (defun sendmail-send-it ()
35615
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
885 "Send the current mail buffer using the Sendmail package.
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
886 This is a suitable value for `send-mail-function'. It sends using the
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
887 external program defined by `sendmail-program'."
13056
c1ce3b4556f2 (mail-file-babyl-p): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 12980
diff changeset
888 (require 'mail-utils)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 (let ((errbuf (if mail-interactive
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890 (generate-new-buffer " sendmail errors")
23845
b3d94db9bc57 (sendmail-send-it): Don't wait for sendmail to
Karl Heuer <kwzh@gnu.org>
parents: 23645
diff changeset
891 0))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 (tembuf (generate-new-buffer " sendmail temp"))
47579
d5e1e2adcb67 (sendmail-send-it): If user's buffer is unibyte, make tembuf unibyte.
Richard M. Stallman <rms@gnu.org>
parents: 47206
diff changeset
893 (multibyte enable-multibyte-characters)
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 (case-fold-search nil)
47887
d347ebc48f79 (sendmail-send-it): Call
Kenichi Handa <handa@m17n.org>
parents: 47837
diff changeset
895 (selected-coding (select-message-coding-system))
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
896 resend-to-addresses
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
897 delimline
16700
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
898 fcc-was-found
38285
b7db38e7d28d (sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents: 36913
diff changeset
899 (mailbuf (current-buffer))
b7db38e7d28d (sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents: 36913
diff changeset
900 (program (if (boundp 'sendmail-program)
b7db38e7d28d (sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents: 36913
diff changeset
901 sendmail-program
42370
fd0376bcb507 (mail-envelope-from): Fix :type. Suggested by "Golubev I. N." <gin@mo.msk.ru>.
Eli Zaretskii <eliz@gnu.org>
parents: 40383
diff changeset
902 "/usr/lib/sendmail"))
42383
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
903 ;; Examine these variables now, so that
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
904 ;; local binding in the mail buffer will take effect.
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
905 (envelope-from
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
906 (and mail-specify-envelope-from
47837
b9705a05fa60 * mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents: 47579
diff changeset
907 (or (mail-envelope-from) user-mail-address))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908 (unwind-protect
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910 (set-buffer tembuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
911 (erase-buffer)
47579
d5e1e2adcb67 (sendmail-send-it): If user's buffer is unibyte, make tembuf unibyte.
Richard M. Stallman <rms@gnu.org>
parents: 47206
diff changeset
912 (unless multibyte
d5e1e2adcb67 (sendmail-send-it): If user's buffer is unibyte, make tembuf unibyte.
Richard M. Stallman <rms@gnu.org>
parents: 47206
diff changeset
913 (set-buffer-multibyte nil))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
914 (insert-buffer-substring mailbuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
915 (goto-char (point-max))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
916 ;; require one newline at the end.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
917 (or (= (preceding-char) ?\n)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
918 (insert ?\n))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
919 ;; Change header-delimiter to be what sendmail expects.
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
920 (goto-char (mail-header-end))
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
921 (delete-region (point) (progn (end-of-line) (point)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
922 (setq delimline (point-marker))
13950
e9615c5f477a (sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents: 13928
diff changeset
923 (sendmail-sync-aliases)
1431
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
924 (if mail-aliases
240d5fe38595 (mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents: 1269
diff changeset
925 (expand-mail-aliases (point-min) delimline))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926 (goto-char (point-min))
19628
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
927 ;; Ignore any blank lines in the header
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928 (while (and (re-search-forward "\n\n\n*" delimline t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
929 (< (point) delimline))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 (replace-match "\n"))
19628
3be882bc0211 (mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents: 19440
diff changeset
931 (goto-char (point-min))
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
932 ;; Look for Resent- headers. They require sending
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
933 ;; the message specially.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 (let ((case-fold-search t))
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
935 (goto-char (point-min))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
936 (while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
937 ;; Put a list of such addresses in resend-to-addresses.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
938 (setq resend-to-addresses
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
939 (save-restriction
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
940 (narrow-to-region (point)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
941 (save-excursion
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
942 (forward-line 1)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
943 (while (looking-at "^[ \t]")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
944 (forward-line 1))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
945 (point)))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
946 (append (mail-parse-comma-list)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
947 resend-to-addresses)))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
948 ;; Delete Resent-BCC ourselves
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
949 (if (save-excursion (beginning-of-line)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
950 (looking-at "resent-bcc"))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
951 (delete-region (save-excursion (beginning-of-line) (point))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
952 (save-excursion (end-of-line) (1+ (point))))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
953 ;;; Apparently this causes a duplicate Sender.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
954 ;;; ;; If the From is different than current user, insert Sender.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
955 ;;; (goto-char (point-min))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
956 ;;; (and (re-search-forward "^From:" delimline t)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
957 ;;; (progn
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
958 ;;; (require 'mail-utils)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
959 ;;; (not (string-equal
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
960 ;;; (mail-strip-quoted-names
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
961 ;;; (save-restriction
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
962 ;;; (narrow-to-region (point-min) delimline)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
963 ;;; (mail-fetch-field "From")))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
964 ;;; (user-login-name))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
965 ;;; (progn
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
966 ;;; (forward-line 1)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
967 ;;; (insert "Sender: " (user-login-name) "\n")))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
968 ;; Don't send out a blank subject line
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
969 (goto-char (point-min))
11709
03f977d9a240 (sendmail-send-it): Check continuation lines
Richard M. Stallman <rms@gnu.org>
parents: 11551
diff changeset
970 (if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t)
13919
30b732ff2de2 (sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents: 13824
diff changeset
971 (replace-match "")
30b732ff2de2 (sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents: 13824
diff changeset
972 ;; This one matches a Subject just before the header delimiter.
30b732ff2de2 (sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents: 13824
diff changeset
973 (if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t)
30b732ff2de2 (sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents: 13824
diff changeset
974 (= (match-end 0) delimline))
30b732ff2de2 (sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents: 13824
diff changeset
975 (replace-match "")))
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
976 ;; Put the "From:" field in unless for some odd reason
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
977 ;; they put one in themselves.
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
978 (goto-char (point-min))
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
979 (if (not (re-search-forward "^From:" delimline t))
12980
4f9052477a81 (sendmail-send-it): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents: 12607
diff changeset
980 (let* ((login user-mail-address)
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
981 (fullname (user-full-name))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
982 (quote-fullname nil))
35615
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
983 (if (string-match "[^\0-\177]" fullname)
6330c3e00b34 Doc fixes.
Dave Love <fx@gnu.org>
parents: 35383
diff changeset
984 (setq fullname (rfc2047-encode-string fullname)
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
985 quote-fullname t))
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
986 (cond ((eq mail-from-style 'angles)
12446
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
987 (insert "From: " fullname)
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
988 (let ((fullname-start (+ (point-min) 6))
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
989 (fullname-end (point-marker)))
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
990 (goto-char fullname-start)
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
991 ;; Look for a character that cannot appear unquoted
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
992 ;; according to RFC 822.
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
993 (if (or (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
994 fullname-end 1)
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
995 quote-fullname)
12446
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
996 (progn
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
997 ;; Quote fullname, escaping specials.
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
998 (goto-char fullname-start)
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
999 (insert "\"")
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1000 (while (re-search-forward "[\"\\]"
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1001 fullname-end 1)
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1002 (replace-match "\\\\\\&" t))
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1003 (insert "\""))))
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1004 (insert " <" login ">\n"))
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
1005 ((eq mail-from-style 'parens)
12458
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1006 (insert "From: " login " (")
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1007 (let ((fullname-start (point)))
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1008 (if quote-fullname
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1009 (insert "\""))
12458
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1010 (insert fullname)
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1011 (if quote-fullname
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1012 (insert "\""))
12458
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1013 (let ((fullname-end (point-marker)))
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1014 (goto-char fullname-start)
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1015 ;; RFC 822 says \ and nonmatching parentheses
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1016 ;; must be escaped in comments.
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1017 ;; Escape every instance of ()\ ...
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1018 (while (re-search-forward "[()\\]" fullname-end 1)
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1019 (replace-match "\\\\\\&" t))
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1020 ;; ... then undo escaping of matching parentheses,
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1021 ;; including matching nested parentheses.
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1022 (goto-char fullname-start)
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49063
diff changeset
1023 (while (re-search-forward
12458
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1024 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1025 fullname-end 1)
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1026 (replace-match "\\1(\\3)" t)
a83478662820 (sendmail-send-it): If mail-from-style is parens,
Richard M. Stallman <rms@gnu.org>
parents: 12446
diff changeset
1027 (goto-char fullname-start))))
12446
92440abe8409 (sendmail-send-it): If user-full-name contains
Richard M. Stallman <rms@gnu.org>
parents: 11963
diff changeset
1028 (insert ")\n"))
10097
429eda63a32c (sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents: 10013
diff changeset
1029 ((null mail-from-style)
23020
d4ab4affb26d (sendmail-send-it): Report invalid values of mail-from-style.
Richard M. Stallman <rms@gnu.org>
parents: 23001
diff changeset
1030 (insert "From: " login "\n"))
d4ab4affb26d (sendmail-send-it): Report invalid values of mail-from-style.
Richard M. Stallman <rms@gnu.org>
parents: 23001
diff changeset
1031 ((eq mail-from-style 'system-default)
d4ab4affb26d (sendmail-send-it): Report invalid values of mail-from-style.
Richard M. Stallman <rms@gnu.org>
parents: 23001
diff changeset
1032 nil)
24483
0dc19350498f Fix typo in error string for sendmail-send-it.
Stephen Eglen <stephen@gnu.org>
parents: 23976
diff changeset
1033 (t (error "Invalid value for `mail-from-style'")))))
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1034 ;; Possibly add a MIME header for the current coding system
30494
0cb71f4faae1 (sendmail-send-it): Improve the way to avoid calling
Kenichi Handa <handa@m17n.org>
parents: 29648
diff changeset
1035 (let (charset)
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1036 (goto-char (point-min))
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1037 (and (eq mail-send-nonascii 'mime)
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1038 (not (re-search-forward "^MIME-version:" delimline t))
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1039 (progn (skip-chars-forward "\0-\177")
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1040 (/= (point) (point-max)))
47887
d347ebc48f79 (sendmail-send-it): Call
Kenichi Handa <handa@m17n.org>
parents: 47837
diff changeset
1041 selected-coding
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1042 (setq charset
30494
0cb71f4faae1 (sendmail-send-it): Improve the way to avoid calling
Kenichi Handa <handa@m17n.org>
parents: 29648
diff changeset
1043 (coding-system-get selected-coding 'mime-charset))
28031
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1044 (goto-char delimline)
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1045 (insert "MIME-version: 1.0\n"
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1046 "Content-type: text/plain; charset="
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1047 (symbol-name charset) "\n"
4b1aa29ef006 (mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents: 27548
diff changeset
1048 "Content-Transfer-Encoding: 8bit\n")))
5667
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
1049 ;; Insert an extra newline if we need it to work around
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
1050 ;; Sun's bug that swallows newlines.
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
1051 (goto-char (1+ delimline))
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
1052 (if (eval mail-mailer-swallows-blank-line)
03c03462bca3 (mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5261
diff changeset
1053 (newline))
13090
b9cc587a5d8b (sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents: 13062
diff changeset
1054 ;; Find and handle any FCC fields.
b9cc587a5d8b (sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents: 13062
diff changeset
1055 (goto-char (point-min))
b9cc587a5d8b (sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents: 13062
diff changeset
1056 (if (re-search-forward "^FCC:" delimline t)
16700
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1057 (progn
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1058 (setq fcc-was-found t)
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1059 (mail-do-fcc delimline)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1060 (if mail-interactive
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1061 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1062 (set-buffer errbuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1063 (erase-buffer))))
16700
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1064 (goto-char (point-min))
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1065 (if (let ((case-fold-search t))
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1066 (or resend-to-addresses
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1067 (re-search-forward "^To:\\|^cc:\\|^bcc:"
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1068 delimline t)))
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1069 (let* ((default-directory "/")
47887
d347ebc48f79 (sendmail-send-it): Call
Kenichi Handa <handa@m17n.org>
parents: 47837
diff changeset
1070 (coding-system-for-write selected-coding)
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49063
diff changeset
1071 (args
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1072 (append (list (point-min) (point-max)
38285
b7db38e7d28d (sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents: 36913
diff changeset
1073 program
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1074 nil errbuf nil "-oi")
42383
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
1075 (and envelope-from
4d7337b920e3 (mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 42370
diff changeset
1076 (list "-f" envelope-from))
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1077 ;;; ;; Don't say "from root" if running under su.
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1078 ;;; (and (equal (user-real-login-name) "root")
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1079 ;;; (list "-f" (user-login-name)))
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1080 (and mail-alias-file
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1081 (list (concat "-oA" mail-alias-file)))
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1082 (if mail-interactive
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1083 ;; These mean "report errors to terminal"
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1084 ;; and "deliver interactively"
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1085 '("-oep" "-odi")
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1086 ;; These mean "report errors by mail"
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1087 ;; and "deliver in background".
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1088 '("-oem" "-odb"))
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1089 ;; Get the addresses from the message
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1090 ;; unless this is a resend.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1091 ;; We must not do that for a resend
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1092 ;; because we would find the original addresses.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1093 ;; For a resend, include the specific addresses.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1094 (or resend-to-addresses
36913
5474d22888af (sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents: 36887
diff changeset
1095 '("-t")
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1096 )
44861
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
1097 (if mail-use-dsn
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
1098 (list "-N" (mapconcat 'symbol-name
de1bcec6e403 (mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents: 43683
diff changeset
1099 mail-use-dsn ",")))
36913
5474d22888af (sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents: 36887
diff changeset
1100 )
5474d22888af (sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents: 36887
diff changeset
1101 )
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1102 (exit-value (apply 'call-process-region args)))
53477
79093b308520 * progmodes/idlwave.el (idlwave-make-tags):
Eli Zaretskii <eliz@is.elta.co.il>
parents: 52684
diff changeset
1103 (or (null exit-value) (eq 0 exit-value)
23645
2717722f5c32 (sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents: 23581
diff changeset
1104 (error "Sending...failed with exit value %d" exit-value)))
16700
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1105 (or fcc-was-found
0ecab43a0f69 (sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents: 16634
diff changeset
1106 (error "No recipients")))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1107 (if mail-interactive
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1108 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1109 (set-buffer errbuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1110 (goto-char (point-min))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1111 (while (re-search-forward "\n\n* *" nil t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1112 (replace-match "; "))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1113 (if (not (zerop (buffer-size)))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1114 (error "Sending...failed to %s"
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1115 (buffer-substring (point-min) (point-max)))))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1116 (kill-buffer tembuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1117 (if (bufferp errbuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1118 (kill-buffer errbuf)))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1119
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1120 (defun mail-do-fcc (header-end)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1121 (let (fcc-list
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1122 (rmailbuf (current-buffer))
2920
c47652dc3400 Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents: 2858
diff changeset
1123 (time (current-time))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1124 (tembuf (generate-new-buffer " rmail output"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1125 (case-fold-search t))
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1126 (unless (markerp header-end)
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1127 (error "Value of `header-end' must be a marker"))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1128 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1129 (goto-char (point-min))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1130 (while (re-search-forward "^FCC:[ \t]*" header-end t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1131 (setq fcc-list (cons (buffer-substring (point)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1132 (progn
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1133 (end-of-line)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1134 (skip-chars-backward " \t")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1135 (point)))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1136 fcc-list))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1137 (delete-region (match-beginning 0)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1138 (progn (forward-line 1) (point))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1139 (set-buffer tembuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1140 (erase-buffer)
3340
908134e8308a (mail-do-fcc): Put back the newline at the start
Richard M. Stallman <rms@gnu.org>
parents: 3232
diff changeset
1141 ;; 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
1142 (insert "\nFrom " (user-login-name) " "
2920
c47652dc3400 Some time-handling patches from Paul Eggert:
Jim Blandy <jimb@redhat.com>
parents: 2858
diff changeset
1143 (current-time-string time) "\n")
1075
f402fe560fcd entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 1025
diff changeset
1144 ;; Insert the time zone before the year.
f402fe560fcd entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 1025
diff changeset
1145 (forward-char -1)
f402fe560fcd entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 1025
diff changeset
1146 (forward-word -1)
4021
5a8ed60f39f2 (mail-do-fcc): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents: 3949
diff changeset
1147 (require 'mail-utils)
5a8ed60f39f2 (mail-do-fcc): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents: 3949
diff changeset
1148 (insert (mail-rfc822-time-zone time) " ")
1075
f402fe560fcd entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 1025
diff changeset
1149 (goto-char (point-max))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1150 (insert-buffer-substring rmailbuf)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1151 ;; Make sure messages are separated.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1152 (goto-char (point-max))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1153 (insert ?\n)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1154 (goto-char 2)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1155 ;; ``Quote'' "^From " as ">From "
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1156 ;; (note that this isn't really quoting, as there is no requirement
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1157 ;; that "^[>]+From " be quoted in the same transparent way.)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1158 (let ((case-fold-search nil))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1159 (while (search-forward "\nFrom " nil t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1160 (forward-char -5)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1161 (insert ?>)))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1162 (while fcc-list
11409
4c3096cfd900 (mail-do-fcc): Use just find-buffer-visiting
Richard M. Stallman <rms@gnu.org>
parents: 11305
diff changeset
1163 (let* ((buffer (find-buffer-visiting (car fcc-list)))
10726
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1164 (curbuf (current-buffer))
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1165 dont-write-the-file
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1166 buffer-matches-file
10726
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1167 (beg (point-min)) (end (point-max))
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1168 (beg2 (save-excursion (goto-char (point-min))
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1169 (forward-line 2) (point))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1170 (if buffer
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1171 ;; File is present in a buffer => append to that buffer.
9516
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1172 (save-excursion
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1173 (set-buffer buffer)
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1174 (setq buffer-matches-file
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1175 (and (not (buffer-modified-p))
18589
86c067e48e33 (mail-do-fcc): Pass an arg to verify-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents: 18275
diff changeset
1176 (verify-visited-file-modtime buffer)))
9516
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1177 ;; Keep the end of the accessible portion at the same place
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1178 ;; unless it is the end of the buffer.
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1179 (let ((max (if (/= (1+ (buffer-size)) (point-max))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1180 (point-max))))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1181 (unwind-protect
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1182 ;; Code below lifted from rmailout.el
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1183 ;; function rmail-output-to-rmail-file:
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1184 (let ((buffer-read-only nil)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1185 (msg (and (boundp 'rmail-current-message)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1186 rmail-current-message)))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1187 ;; If MSG is non-nil, buffer is in RMAIL mode.
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1188 (if msg
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1189 (progn
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1190 ;; Append to an ordinary buffer as a
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1191 ;; Unix mail message.
9516
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1192 (rmail-maybe-set-message-counters)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1193 (widen)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1194 (narrow-to-region (point-max) (point-max))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1195 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1196 "Date: " (mail-rfc822-date) "\n")
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1197 (insert-buffer-substring curbuf beg2 end)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1198 (insert "\n\C-_")
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1199 (goto-char (point-min))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1200 (widen)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1201 (search-backward "\n\^_")
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1202 (narrow-to-region (point) (point-max))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1203 (rmail-count-new-messages t)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1204 (rmail-show-message msg)
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1205 (setq max nil))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1206 ;; Output file not in rmail mode
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1207 ;; => just insert at the end.
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1208 (narrow-to-region (point-min) (1+ (buffer-size)))
48a47a2673a5 (mail-file-babyl-p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9483
diff changeset
1209 (goto-char (point-max))
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1210 (insert-buffer-substring curbuf beg end))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1211 (or buffer-matches-file
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1212 (progn
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1213 (if (y-or-n-p (format "Save file %s? "
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1214 (car fcc-list)))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1215 (save-buffer))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1216 (setq dont-write-the-file t))))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1217 (if max (narrow-to-region (point-min) max))))))
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1218 ;; Append to the file directly,
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1219 ;; unless we've already taken care of it.
20096
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1220 (unless dont-write-the-file
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1221 (if (and (file-exists-p (car fcc-list))
28632
239d5d98c1bd (mail-do-fcc): Prevent inserting a newline
Gerd Moellmann <gerd@gnu.org>
parents: 28031
diff changeset
1222 ;; Check that the file isn't empty. We don't
239d5d98c1bd (mail-do-fcc): Prevent inserting a newline
Gerd Moellmann <gerd@gnu.org>
parents: 28031
diff changeset
1223 ;; want to insert a newline at the start of an
239d5d98c1bd (mail-do-fcc): Prevent inserting a newline
Gerd Moellmann <gerd@gnu.org>
parents: 28031
diff changeset
1224 ;; empty file.
239d5d98c1bd (mail-do-fcc): Prevent inserting a newline
Gerd Moellmann <gerd@gnu.org>
parents: 28031
diff changeset
1225 (not (zerop (nth 7 (file-attributes (car fcc-list)))))
20096
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1226 (mail-file-babyl-p (car fcc-list)))
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1227 ;; If the file is a Babyl file,
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1228 ;; convert the message to Babyl format.
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1229 (let ((coding-system-for-write
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1230 (or rmail-file-coding-system
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1231 'emacs-mule)))
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1232 (save-excursion
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1233 (set-buffer (get-buffer-create " mail-temp"))
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1234 (setq buffer-read-only nil)
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1235 (erase-buffer)
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1236 (insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1237 "Date: " (mail-rfc822-date) "\n")
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1238 (insert-buffer-substring curbuf beg2 end)
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1239 (insert "\n\C-_")
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1240 (write-region (point-min) (point-max) (car fcc-list) t)
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1241 (erase-buffer)))
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1242 (write-region
f83d5ee9a78e (mail-do-fcc): Handle dont-write-the-file
Karl Heuer <kwzh@gnu.org>
parents: 20049
diff changeset
1243 (1+ (point-min)) (point-max) (car fcc-list) t)))
17488
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1244 (and buffer (not dont-write-the-file)
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1245 (with-current-buffer buffer
59a7e3965010 (sendmail-send-it): Use quoted-printable encoding for the From field.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
1246 (set-visited-file-modtime))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1247 (setq fcc-list (cdr fcc-list))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1248 (kill-buffer tembuf)))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1249
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1250 (defun mail-sent-via ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1251 "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
1252 (interactive)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1253 (save-excursion
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1254 ;; put a marker at the end of the header
24622
787f4cefd148 (mail-sent-via): Use copy-marker not make-marker.
Karl Heuer <kwzh@gnu.org>
parents: 24483
diff changeset
1255 (let ((end (copy-marker (mail-header-end)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1256 (case-fold-search t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1257 to-line)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1258 (goto-char (point-min))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1259 ;; search for the To: lines and make Sent-via: lines from them
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1260 ;; search for the next To: line
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1261 (while (re-search-forward "^\\(to\\|cc\\):" end t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1262 ;; Grab this line plus all its continuations, sans the `to:'.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1263 (let ((to-line
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1264 (buffer-substring (point)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1265 (progn
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1266 (if (re-search-forward "^[^ \t\n]" end t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1267 (backward-char 1)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1268 (goto-char end))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1269 (point)))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1270 ;; Insert a copy, with altered header field name.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1271 (insert-before-markers "Sent-via:" to-line))))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1272
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1273 (defun mail-to ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1274 "Move point to end of To-field."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1275 (interactive)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1276 (expand-abbrev)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1277 (mail-position-on-field "To"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1278
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1279 (defun mail-subject ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1280 "Move point to end of Subject-field."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1281 (interactive)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1282 (expand-abbrev)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1283 (mail-position-on-field "Subject"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1284
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1285 (defun mail-cc ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1286 "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
1287 (interactive)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1288 (expand-abbrev)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1289 (or (mail-position-on-field "cc" t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1290 (progn (mail-position-on-field "to")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1291 (insert "\nCC: "))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1292
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1293 (defun mail-bcc ()
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1294 "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
1295 (interactive)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1296 (expand-abbrev)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1297 (or (mail-position-on-field "bcc" t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1298 (progn (mail-position-on-field "to")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1299 (insert "\nBCC: "))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1300
5210
4db0922992a3 (mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents: 5097
diff changeset
1301 (defun mail-fcc (folder)
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 474
diff changeset
1302 "Add a new FCC field, with file name completion."
5210
4db0922992a3 (mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents: 5097
diff changeset
1303 (interactive "FFolder carbon copy: ")
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 474
diff changeset
1304 (expand-abbrev)
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 474
diff changeset
1305 (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
1306 (mail-position-on-field "to"))
5210
4db0922992a3 (mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents: 5097
diff changeset
1307 (insert "\nFCC: " folder))
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 474
diff changeset
1308
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49063
diff changeset
1309 (defun mail-reply-to ()
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1310 "Move point to end of Reply-To-field. Create a Reply-To field if none."
10726
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1311 (interactive)
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1312 (expand-abbrev)
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1313 (mail-position-on-field "Reply-To"))
596c3e2c168d (mail-reply-to): New command, on C-c C-f C-r and in menu.
Richard M. Stallman <rms@gnu.org>
parents: 10624
diff changeset
1314
60691
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1315 (defun mail-mail-reply-to ()
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1316 "Move point to end of Mail-Reply-To field.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1317 Create a Mail-Reply-To field if none."
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1318 (interactive)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1319 (expand-abbrev)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1320 (or (mail-position-on-field "mail-reply-to" t)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1321 (progn (mail-position-on-field "to")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1322 (insert "\nMail-Reply-To: "))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1323
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1324 (defun mail-mail-followup-to ()
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1325 "Move point to end of Mail-Followup-To field.
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1326 Create a Mail-Followup-To field if none."
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1327 (interactive)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1328 (expand-abbrev)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1329 (or (mail-position-on-field "mail-followup-to" t)
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1330 (progn (mail-position-on-field "to")
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1331 (insert "\nMail-Followup-To: "))))
2333319dc01c (sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
1332
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1333 (defun mail-position-on-field (field &optional soft)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1334 (let (end
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1335 (case-fold-search t))
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
1336 (setq end (mail-header-end))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1337 (goto-char (point-min))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1338 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1339 (progn
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1340 (re-search-forward "^[^ \t]" nil 'move)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1341 (beginning-of-line)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1342 (skip-chars-backward "\n")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1343 t)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1344 (or soft
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1345 (progn (goto-char end)
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 584
diff changeset
1346 (insert field ": \n")
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 584
diff changeset
1347 (skip-chars-backward "\n")))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1348 nil)))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1349
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1350 (defun mail-text ()
11857
42dba4f290a0 (mail-mode): Clarify doc string.
Karl Heuer <kwzh@gnu.org>
parents: 11770
diff changeset
1351 "Move point to beginning of message text."
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1352 (interactive)
11866
77f73856e803 (mail-text): Expand abbrev before moving point.
Karl Heuer <kwzh@gnu.org>
parents: 11857
diff changeset
1353 (expand-abbrev)
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
1354 (goto-char (mail-text-start)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1355
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1356 (defun mail-signature (&optional atpoint)
48526
cd3075e04573 (mail-signature): Handle case where
Richard M. Stallman <rms@gnu.org>
parents: 48198
diff changeset
1357 "Sign letter with signature based on `mail-signature-file'.
5839
14c24d764568 (mail-signature): Doc mod.
Karl Heuer <kwzh@gnu.org>
parents: 5731
diff changeset
1358 Prefix arg means put contents at point."
679
046f1a6867e7 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
1359 (interactive "P")
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1360 (save-excursion
679
046f1a6867e7 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
1361 (or atpoint
046f1a6867e7 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
1362 (goto-char (point-max)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1363 (skip-chars-backward " \t\n")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1364 (end-of-line)
679
046f1a6867e7 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
1365 (or atpoint
046f1a6867e7 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
1366 (delete-region (point) (point-max)))
48526
cd3075e04573 (mail-signature): Handle case where
Richard M. Stallman <rms@gnu.org>
parents: 48198
diff changeset
1367 (if (stringp mail-signature)
cd3075e04573 (mail-signature): Handle case where
Richard M. Stallman <rms@gnu.org>
parents: 48198
diff changeset
1368 (insert mail-signature)
cd3075e04573 (mail-signature): Handle case where
Richard M. Stallman <rms@gnu.org>
parents: 48198
diff changeset
1369 (insert "\n\n-- \n")
cd3075e04573 (mail-signature): Handle case where
Richard M. Stallman <rms@gnu.org>
parents: 48198
diff changeset
1370 (insert-file-contents (expand-file-name mail-signature-file)))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1371
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1372 (defun mail-fill-yanked-message (&optional justifyp)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1373 "Fill the paragraphs of a message yanked into this one.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1374 Numeric argument means justify as well."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1375 (interactive "P")
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1376 (save-excursion
21920
eeb4e3a385db (send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21545
diff changeset
1377 (goto-char (mail-text-start))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1378 (fill-individual-paragraphs (point)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1379 (point-max)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1380 justifyp
22747
63b084753ad7 (mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22634
diff changeset
1381 mail-citation-prefix-regexp)))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1382
18909
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1383 (defun mail-indent-citation ()
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
1384 "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
1385 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
1386 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
1387
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
1388 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
1389 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
18909
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1390 (mail-yank-clear-headers (region-beginning) (region-end))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1391 (if (null mail-yank-prefix)
18909
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1392 (indent-rigidly (region-beginning) (region-end)
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1393 mail-indentation-spaces)
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1394 (save-excursion
18909
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1395 (let ((end (set-marker (make-marker) (region-end))))
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1396 (goto-char (region-beginning))
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1397 (while (< (point) end)
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1398 (insert mail-yank-prefix)
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1399 (forward-line 1))))))
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
1400
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1401 (defun mail-yank-original (arg)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1402 "Insert the message being replied to, if any (in rmail).
14373
0d9970f055dd (mail-yank-original): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 14369
diff changeset
1403 Puts point after the text and mark before.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1404 Normally, indents each nonblank line ARG spaces (default 3).
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1405 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
1406
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1407 Just \\[universal-argument] as argument means don't indent, insert no prefix,
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1408 and don't delete any header fields."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1409 (interactive "P")
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1410 (if mail-reply-action
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1411 (let ((start (point))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1412 (original mail-reply-action))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1413 (and (consp original) (eq (car original) 'insert-buffer)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1414 (setq original (nth 1 original)))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1415 (if (consp original)
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1416 (apply (car original) (cdr original))
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1417 ;; If the original message is in another window in the same frame,
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1418 ;; delete that window to save screen space.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1419 ;; t means don't alter other frames.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1420 (delete-windows-on original t)
23976
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
1421 (insert-buffer original)
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
1422 (set-text-properties (point) (mark t) nil))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1423 (if (consp arg)
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1424 nil
3424
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
1425 (goto-char start)
7ccd5b60891d (mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents: 3340
diff changeset
1426 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
19440
797637e1e880 (mail-yank-original): Bind mark-even-if-inactive
Richard M. Stallman <rms@gnu.org>
parents: 19350
diff changeset
1427 mail-indentation-spaces))
22865
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1428 ;; Avoid error in Transient Mark mode
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1429 ;; on account of mark's being inactive.
19440
797637e1e880 (mail-yank-original): Bind mark-even-if-inactive
Richard M. Stallman <rms@gnu.org>
parents: 19350
diff changeset
1430 (mark-even-if-inactive t))
39479
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1431 (cond (mail-citation-hook
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1432 ;; Bind mail-citation-header to the inserted
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1433 ;; message's header.
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1434 (let ((mail-citation-header
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1435 (buffer-substring-no-properties
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1436 start
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1437 (save-excursion
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1438 (save-restriction
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1439 (narrow-to-region start (point-max))
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1440 (goto-char start)
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1441 (rfc822-goto-eoh)
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1442 (point))))))
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1443 (run-hooks 'mail-citation-hook)))
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1444 (mail-yank-hooks
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1445 (run-hooks 'mail-yank-hooks))
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1446 (t
eae96dc1dbb3 (send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39396
diff changeset
1447 (mail-indent-citation)))))
2858
ef942eda3523 (mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents: 2852
diff changeset
1448 ;; 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
1449 ;; 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
1450 ;; 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
1451 (goto-char (prog1 (mark t)
ef942eda3523 (mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents: 2852
diff changeset
1452 (set-marker (mark-marker) (point) (current-buffer))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1453 (if (not (eolp)) (insert ?\n)))))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1454
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1455 (defun mail-yank-clear-headers (start end)
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1456 (if (< end start)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1457 (let (temp)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1458 (setq temp start start end end temp)))
13478
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1459 (if mail-yank-ignored-headers
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1460 (save-excursion
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1461 (goto-char start)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1462 (if (search-forward "\n\n" end t)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1463 (save-restriction
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1464 (narrow-to-region start (point))
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1465 (goto-char start)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1466 (while (let ((case-fold-search t))
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1467 (re-search-forward mail-yank-ignored-headers nil t))
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1468 (beginning-of-line)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1469 (delete-region (point)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1470 (progn (re-search-forward "\n[^ \t]")
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1471 (forward-char -1)
391ce1139d50 (mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 13398
diff changeset
1472 (point)))))))))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1473
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1474 (defun mail-yank-region (arg)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1475 "Insert the selected region from the message being replied to.
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1476 Puts point after the text and mark before.
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1477 Normally, indents each nonblank line ARG spaces (default 3).
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1478 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1479
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1480 Just \\[universal-argument] as argument means don't indent, insert no prefix,
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1481 and don't delete any header fields."
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1482 (interactive "P")
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1483 (and (consp mail-reply-action)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1484 (eq (car mail-reply-action) 'insert-buffer)
23976
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
1485 (with-current-buffer (nth 1 mail-reply-action)
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
1486 (or (mark t)
12c74d5eff80 (mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents: 23845
diff changeset
1487 (error "No mark set: %S" (current-buffer))))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1488 (let ((buffer (nth 1 mail-reply-action))
22865
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1489 (start (point))
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1490 ;; Avoid error in Transient Mark mode
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1491 ;; on account of mark's being inactive.
df59ef00f1e4 (mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents: 22839
diff changeset
1492 (mark-even-if-inactive t))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1493 ;; Insert the citation text.
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1494 (insert (with-current-buffer buffer
22990
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1495 (buffer-substring-no-properties (point) (mark))))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1496 (push-mark start)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1497 ;; Indent or otherwise annotate the citation text.
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1498 (if (consp arg)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1499 nil
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1500 (let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1501 mail-indentation-spaces)))
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1502 (if mail-citation-hook
22990
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1503 ;; Bind mail-citation-hook to the original message's header.
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1504 (let ((mail-citation-header
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1505 (with-current-buffer buffer
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1506 (buffer-substring-no-properties
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1507 (point-min)
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1508 (save-excursion
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1509 (goto-char (point-min))
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1510 (rfc822-goto-eoh)
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1511 (point))))))
491a97002c82 (mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22865
diff changeset
1512 (run-hooks 'mail-citation-hook))
16761
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1513 (if mail-yank-hooks
20f01fd704f7 (mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents: 16760
diff changeset
1514 (run-hooks 'mail-yank-hooks)
18909
e8c770e7f81d (mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18871
diff changeset
1515 (mail-indent-citation))))))))
49033
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1516
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1517 (defun mail-split-line ()
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1518 "Split current line, moving portion beyond point vertically down.
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1519 If the current line has `mail-yank-prefix', insert it on the new line."
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1520 (interactive "*")
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1521 (split-line mail-yank-prefix))
4a660dffff16 (mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents: 48526
diff changeset
1522
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1523
17512
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1524 (defun mail-attach-file (&optional file)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1525 "Insert a file at the end of the buffer, with separator lines around it."
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1526 (interactive "fAttach file: ")
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1527 (save-excursion
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1528 (goto-char (point-max))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1529 (or (bolp) (newline))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1530 (newline)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1531 (let ((start (point))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1532 middle)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1533 (insert (format "===File %s===" file))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1534 (insert-char ?= (max 0 (- 60 (current-column))))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1535 (newline)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1536 (setq middle (point))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1537 (insert "============================================================\n")
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1538 (push-mark)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1539 (goto-char middle)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1540 (insert-file-contents file)
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1541 (or (bolp) (newline))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1542 (goto-char start))))
50ada9a65e3d (mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17488
diff changeset
1543
17596
6deb79521f42 Don't bind C-x m, C-x 4 m, C-x 5 m.
Richard M. Stallman <rms@gnu.org>
parents: 17512
diff changeset
1544 ;; Put these commands last, to reduce chance of lossage from quitting
6deb79521f42 Don't bind C-x m, C-x 4 m, C-x 5 m.
Richard M. Stallman <rms@gnu.org>
parents: 17512
diff changeset
1545 ;; in middle of loading the file.
6deb79521f42 Don't bind C-x m, C-x 4 m, C-x 5 m.
Richard M. Stallman <rms@gnu.org>
parents: 17512
diff changeset
1546
6deb79521f42 Don't bind C-x m, C-x 4 m, C-x 5 m.
Richard M. Stallman <rms@gnu.org>
parents: 17512
diff changeset
1547 ;;;###autoload (add-hook 'same-window-buffer-names "*mail*")
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1548
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1549 ;;;###autoload
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1550 (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
1551 "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
1552 When this function returns, the buffer `*mail*' is selected.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1553 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
1554
13116
61c560010274 (mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13090
diff changeset
1555 Optionally, the signature file `mail-signature-file' can be inserted at the
61c560010274 (mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13090
diff changeset
1556 end; see the variable `mail-signature'.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1557
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1558 \\<mail-mode-map>
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1559 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
1560
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1561 Various special commands starting with C-c are available in sendmail mode
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1562 to move to message header fields:
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1563 \\{mail-mode-map}
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1564
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1565 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
1566 when the message is initialized.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1567
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1568 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
1569 a Reply-to: field with that address is inserted.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1570
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1571 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
1572 is inserted.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1573
12564
3cd5105aeb2b (mail-setup-hook): New defvar.
Karl Heuer <kwzh@gnu.org>
parents: 12473
diff changeset
1574 The normal hook `mail-setup-hook' is run after the message is
3cd5105aeb2b (mail-setup-hook): New defvar.
Karl Heuer <kwzh@gnu.org>
parents: 12473
diff changeset
1575 initialized. It can add more default fields to the message.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1576
9160
21ac199719fc (mail): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9004
diff changeset
1577 When calling from a program, the first argument if non-nil says
21ac199719fc (mail): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9004
diff changeset
1578 not to erase the existing contents of the `*mail*' buffer.
21ac199719fc (mail): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9004
diff changeset
1579
21ac199719fc (mail): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9004
diff changeset
1580 The second through fifth arguments,
21ac199719fc (mail): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9004
diff changeset
1581 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1582 the initial contents of those header fields.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1583 These arguments should not have final newlines.
16634
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1584 The sixth argument REPLYBUFFER is a buffer which contains an
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1585 original message being replied to, or else an action
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1586 of the form (FUNCTION . ARGS) which says how to insert the original.
a076177cfac7 (mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16453
diff changeset
1587 Or it can be nil, if not replying to anything.
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1588 The seventh argument ACTIONS is a list of actions to take
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1589 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1590 when the message is sent, we apply FUNCTION to ARGS.
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1591 This is how Rmail arranges to mark messages `answered'."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1592 (interactive "P")
898
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1593 ;;; 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
1594 ;;; 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
1595 ;;; if you want to have multiple mail buffers.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1596 ;;; And then you can control which messages to save. --rms.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1597 ;;; (let ((index 1)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1598 ;;; buffer)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1599 ;;; ;; 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
1600 ;;; (if noerase
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1601 ;;; (progn
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1602 ;;; (while (and (setq buffer
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1603 ;;; (get-buffer (if (= 1 index) "*mail*"
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1604 ;;; (format "*mail*<%d>" index))))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1605 ;;; (not (buffer-modified-p buffer)))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1606 ;;; (setq index (1+ index)))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1607 ;;; (if buffer (switch-to-buffer buffer)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1608 ;;; ;; If none exists, start a new message.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1609 ;;; ;; This will never re-use an existing unmodified mail buffer
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1610 ;;; ;; (since index is not 1 anymore). Perhaps it should.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1611 ;;; (setq noerase nil))))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1612 ;;; ;; 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
1613 ;;; (if (not noerase)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1614 ;;; (progn
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1615 ;;; ;; Look for existing unmodified mail buffer.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1616 ;;; (while (and (setq buffer
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1617 ;;; (get-buffer (if (= 1 index) "*mail*"
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1618 ;;; (format "*mail*<%d>" index))))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1619 ;;; (buffer-modified-p buffer))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1620 ;;; (setq index (1+ index)))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1621 ;;; ;; If none, make a new one.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1622 ;;; (or buffer
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1623 ;;; (setq buffer (generate-new-buffer "*mail*")))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1624 ;;; ;; Go there and initialize it.
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1625 ;;; (switch-to-buffer buffer)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1626 ;;; (erase-buffer)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1627 ;;; (setq default-directory (expand-file-name "~/"))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1628 ;;; (auto-save-mode auto-save-default)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1629 ;;; (mail-mode)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1630 ;;; (mail-setup to subject in-reply-to cc replybuffer actions)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1631 ;;; (if (and buffer-auto-save-file-name
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1632 ;;; (file-exists-p buffer-auto-save-file-name))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1633 ;;; (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
1634 ;;; t))
11120
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1635 (pop-to-buffer "*mail*")
45423
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1636 ;; Avoid danger that the auto-save file can't be written.
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1637 (let ((dir (expand-file-name
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1638 (file-name-as-directory mail-default-directory))))
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1639 (if (file-exists-p dir)
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1640 (setq default-directory dir)))
22634
0a83ee212349 (mail): Avoid changing auto-save file name.
Richard M. Stallman <rms@gnu.org>
parents: 22410
diff changeset
1641 ;; Only call auto-save-mode if necessary, to avoid changing auto-save file.
0a83ee212349 (mail): Avoid changing auto-save file name.
Richard M. Stallman <rms@gnu.org>
parents: 22410
diff changeset
1642 (if (or (and auto-save-default (not buffer-auto-save-file-name))
0a83ee212349 (mail): Avoid changing auto-save file name.
Richard M. Stallman <rms@gnu.org>
parents: 22410
diff changeset
1643 (and (not auto-save-default) buffer-auto-save-file-name))
0a83ee212349 (mail): Avoid changing auto-save file name.
Richard M. Stallman <rms@gnu.org>
parents: 22410
diff changeset
1644 (auto-save-mode auto-save-default))
898
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1645 (mail-mode)
8144
Michael I. Bushnell <mib@gnu.org>
parents: 8132
diff changeset
1646 ;; Disconnect the buffer from its visited file
Michael I. Bushnell <mib@gnu.org>
parents: 8132
diff changeset
1647 ;; (in case the user has actually visited a file *mail*).
8145
d94fc60e4195 Comment out losing call to set-visited-file-name; this shouldn't hurt
Michael I. Bushnell <mib@gnu.org>
parents: 8144
diff changeset
1648 ; (set-visited-file-name nil)
898
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1649 (let (initialized)
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1650 (and (not noerase)
18955
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1651 (if buffer-file-name
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1652 (if (buffer-modified-p)
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1653 (when (y-or-n-p "Buffer has unsaved changes; reinitialize it and discard them? ")
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1654 (if (y-or-n-p "Disconnect buffer from visited file? ")
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1655 (set-visited-file-name nil))
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1656 t)
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1657 (when (y-or-n-p "Reinitialize buffer, and disconnect it from the visited file? ")
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1658 (set-visited-file-name nil)
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1659 t))
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1660 ;; A non-file-visiting buffer.
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1661 (if (buffer-modified-p)
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1662 (y-or-n-p "Unsent message being composed; erase it? ")
9612d2ae3960 (mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents: 18909
diff changeset
1663 t))
13824
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
1664 (let ((inhibit-read-only t))
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
1665 (erase-buffer)
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
1666 (mail-setup to subject in-reply-to cc replybuffer actions)
88384034a5b4 (mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents: 13738
diff changeset
1667 (setq initialized t)))
898
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1668 (if (and buffer-auto-save-file-name
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1669 (file-exists-p buffer-auto-save-file-name))
d3e136526f22 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
1670 (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
1671 initialized))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1672
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1673 (defun mail-recover-1 ()
42522
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1674 "Pop up a list of auto-saved draft messages so you can recover one of them."
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1675 (interactive)
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1676 (let ((file-name (make-auto-save-file-name))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1677 (ls-lisp-support-shell-wildcards t)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1678 non-random-len wildcard)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1679 ;; Remove the random part from the auto-save-file-name, and
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1680 ;; create a wildcard which matches possible candidates.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1681 ;; Note: this knows that make-auto-save-file-name appends
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1682 ;; "#<RANDOM-STUFF>#" to the buffer name, where RANDOM-STUFF
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1683 ;; is the result of (make-temp-name "").
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1684 (setq non-random-len
44947
e0182b284e42 (mail-recover-1): Decrease non-random-len by 1 for the newly-readded #.
Richard M. Stallman <rms@gnu.org>
parents: 44861
diff changeset
1685 (- (length file-name) (length (make-temp-name "")) 1))
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1686 (setq wildcard (concat (substring file-name 0 non-random-len) "*"))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1687 (if (null (file-expand-wildcards wildcard))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1688 (message "There are no auto-saved drafts to recover")
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1689 ;; Bind dired-trivial-filenames to t because all auto-save file
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1690 ;; names are normally ``trivial'', so Dired will set point after
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1691 ;; all the files, at buffer bottom. We want it on the first
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1692 ;; file instead.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1693 (let ((dired-trivial-filenames t))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1694 (dired-other-window wildcard (concat dired-listing-switches "t")))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1695 (rename-buffer "*Auto-saved Drafts*" t)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1696 (save-excursion
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1697 (goto-char (point-min))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1698 (or (looking-at " Move to the draft file you want to recover,")
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1699 (let ((inhibit-read-only t))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1700 ;; Each line starts with a space so that Font Lock mode
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1701 ;; won't highlight the first character.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1702 (insert "\
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1703 Move to the draft file you want to recover, then type C-c C-c
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1704 to recover text of message whose composition was interrupted.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1705 To browse text of a draft, type v on the draft file's line.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1706
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1707 You can also delete some of these files;
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1708 type d on a line to mark that file for deletion.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1709
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1710 List of possible auto-save files for recovery:
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1711
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1712 "))))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1713 (use-local-map
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1714 (let ((map (make-sparse-keymap)))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1715 (set-keymap-parent map (current-local-map))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1716 map))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1717 (define-key (current-local-map) "v"
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1718 (lambda ()
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1719 (interactive)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1720 (let ((coding-system-for-read 'emacs-mule-unix))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1721 (dired-view-file))))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1722 (define-key (current-local-map) "\C-c\C-c"
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1723 (lambda ()
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1724 (interactive)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1725 (let ((fname (dired-get-filename))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1726 ;; Auto-saved files are written in the internal
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1727 ;; representation, so they should be read accordingly.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1728 (coding-system-for-read 'emacs-mule-unix))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1729 (switch-to-buffer-other-window "*mail*")
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1730 (let ((buffer-read-only nil))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1731 (erase-buffer)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1732 (insert-file-contents fname nil)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1733 ;; insert-file-contents will set buffer-file-coding-system
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1734 ;; to emacs-mule, which is probably not what they want to
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1735 ;; use for sending the message. But we don't know what
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1736 ;; was its value before the buffer was killed or Emacs
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1737 ;; crashed. We therefore reset buffer-file-coding-system
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1738 ;; to the default value, so that either the default does
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1739 ;; TRT, or the user will get prompted for the right
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1740 ;; encoding when they send the message.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1741 (setq buffer-file-coding-system
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1742 default-buffer-file-coding-system))))))))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1743
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1744 (defun mail-recover ()
42522
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1745 "Recover interrupted mail composition from auto-save files.
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1746
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1747 If the mail buffer has a current valid auto-save file,
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1748 the command recovers that file. Otherwise, it displays a
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1749 buffer showing the existing auto-saved draft messages;
bf0d83587878 (mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 42501
diff changeset
1750 you can move to one of them and type C-c C-c to recover that one."
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1751 (interactive)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1752 ;; In case they invoke us from some random buffer...
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1753 (switch-to-buffer "*mail*")
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1754 ;; If *mail* didn't exist, set its directory, so that auto-saved
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1755 ;; drafts will be found.
45423
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1756 (let ((dir (expand-file-name
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1757 (file-name-as-directory mail-default-directory))))
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1758 (if (file-exists-p dir)
9bee1f5d919f (mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents: 45255
diff changeset
1759 (setq default-directory dir)))
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1760 (or (eq major-mode 'mail-mode)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1761 (mail-mode))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1762 (let ((file-name buffer-auto-save-file-name))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1763 (cond ((and file-name (file-exists-p file-name))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1764 (let ((dispbuf
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1765 ;; This used to invoke `ls' via call-process, but
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1766 ;; dired-noselect is more portable to systems where
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1767 ;; `ls' is not a standard program (it will use
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1768 ;; ls-lisp instead).
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1769 (dired-noselect file-name
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1770 (concat dired-listing-switches "t"))))
43683
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1771 (save-selected-window
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1772 (select-window (display-buffer dispbuf t))
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1773 (goto-char (point-min))
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1774 (forward-line 2)
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1775 (dired-move-to-filename)
fc8f970acda0 (mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents: 43054
diff changeset
1776 (setq dispbuf (rename-buffer "*Directory*" t)))
42501
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1777 (if (not (yes-or-no-p
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1778 (format "Recover mail draft from auto save file %s? "
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1779 file-name)))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1780 (error "mail-recover cancelled")
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1781 (let ((buffer-read-only nil)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1782 (buffer-coding buffer-file-coding-system)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1783 ;; Auto-save files are written in internal
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1784 ;; representation of non-ASCII characters.
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1785 (coding-system-for-read 'emacs-mule-unix))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1786 (erase-buffer)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1787 (insert-file-contents file-name nil)
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1788 (setq buffer-file-coding-system buffer-coding)))))
0ae15950ed66 (mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 42383
diff changeset
1789 (t (mail-recover-1)))))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1790
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1791 ;;;###autoload
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1792 (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
1793 "Like `mail' command, but display mail buffer in another window."
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1794 (interactive "P")
11120
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1795 (let ((pop-up-windows t)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1796 (special-display-buffer-names nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1797 (special-display-regexps nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1798 (same-window-buffer-names nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1799 (same-window-regexps nil))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1800 (pop-to-buffer "*mail*"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1801 (mail noerase to subject in-reply-to cc replybuffer sendactions))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1802
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1803 ;;;###autoload
779
c2dbf1fe0506 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 746
diff changeset
1804 (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
1805 "Like `mail' command, but display mail buffer in another frame."
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1806 (interactive "P")
11120
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1807 (let ((pop-up-frames t)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1808 (special-display-buffer-names nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1809 (special-display-regexps nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1810 (same-window-buffer-names nil)
150ac5a4a1fa (mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10894
diff changeset
1811 (same-window-regexps nil))
455
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1812 (pop-to-buffer "*mail*"))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1813 (mail noerase to subject in-reply-to cc replybuffer sendactions))
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1814
12af79cf16ee Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1815 ;;; Do not add anything but external entries on this page.
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1816
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1817 (provide 'sendmail)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1818
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52372
diff changeset
1819 ;;; arch-tag: 48bc1025-d993-4d31-8d81-2a29491f0626
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 604
diff changeset
1820 ;;; sendmail.el ends here