Mercurial > emacs
annotate lisp/mail/sendmail.el @ 112425:9f7614f1a892
Merge from emacs-23
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 22 Jan 2011 11:36:45 -0800 |
parents | 417b1e4d63cd |
children |
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 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992, 1993, 1994, 1995, 1996, 1998, 2000, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
107688
diff
changeset
|
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 |
95625
ca7011bae7f9
(mail-interactive): Add :version.
Glenn Morris <rgm@gnu.org>
parents:
95595
diff
changeset
|
5 ;; Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
825
diff
changeset
|
6 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
7 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
9 |
455 | 10 ;; This file is part of GNU Emacs. |
11 | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
455 | 13 ;; it under the terms of the GNU General Public License as published by |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
15 ;; (at your option) any later version. |
455 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
455 | 24 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
26 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
27 ;; This mode provides mail-sending facilities from within Emacs. It is |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
28 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1843
diff
changeset
|
29 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
30 ;;; Code: |
111961 | 31 (require 'mail-utils) |
27245
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
32 |
35615 | 33 (autoload 'rfc2047-encode-string "rfc2047") |
34 | |
20962 | 35 (defgroup sendmail nil |
36 "Mail sending commands for Emacs." | |
37 :prefix "mail-" | |
38 :group 'mail) | |
455 | 39 |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
40 (defcustom mail-setup-with-from t |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
41 "Non-nil means insert `From:' field when setting up the message." |
63714
6679826cccf2
(mail-setup-with-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
63553
diff
changeset
|
42 :type 'boolean |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
43 :group 'sendmail |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
44 :version "22.1") |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
45 |
72635
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
46 (defcustom sendmail-program |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
47 (cond |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
48 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
49 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
50 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
51 (t "fakemail")) ;In ../etc, to interface to /bin/mail. |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
52 "Program used to send messages." |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
53 :group 'mail |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
54 :type 'file) |
e4183d5068ec
* mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
Chong Yidong <cyd@stupidchicken.com>
parents:
71349
diff
changeset
|
55 |
455 | 56 ;;;###autoload |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
57 (defcustom mail-from-style 'default |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
58 "Specifies how \"From:\" fields look. |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
59 |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
60 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
|
61 king@grassland.com |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
62 If `parens', they look like: |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
63 king@grassland.com (Elvis Parsley) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
64 If `angles', they look like: |
22275
54bd3424441d
(mail-from-style): New alternative, `default'.
Richard M. Stallman <rms@gnu.org>
parents:
22273
diff
changeset
|
65 Elvis Parsley <king@grassland.com> |
25238
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
66 |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
67 Otherwise, most addresses look like `angles', but they look like |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
68 `parens' if `angles' would need quoting and `parens' would not." |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
69 ;; The value `system-default' is now deprecated. |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
70 :type '(choice (const :tag "simple" nil) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
71 (const parens) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
72 (const angles) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
73 (const default)) |
22276
17b123f15a22
(mail-from-style): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
22275
diff
changeset
|
74 :version "20.3" |
20962 | 75 :group 'sendmail) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
76 |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
77 ;;;###autoload |
29631
d91cfeea29c6
(mail-specify-envelope-from): Initialize to
Gerd Moellmann <gerd@gnu.org>
parents:
28750
diff
changeset
|
78 (defcustom mail-specify-envelope-from nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
79 "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
|
80 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
|
81 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
|
82 |
51718
5a6a8c32b90b
(mail-specify-envelope-from, mail-envelope-from): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
51082
diff
changeset
|
83 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
|
84 privileged operation. This variable affects sendmail and |
af0e45b62c3e
(mail-specify-envelope-from): Doc change.
Glenn Morris <rgm@gnu.org>
parents:
51718
diff
changeset
|
85 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
|
86 variable `feedmail-deduce-envelope-from'." |
25238
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
87 :version "21.1" |
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
88 :type 'boolean |
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
89 :group 'sendmail) |
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
90 |
38308
2ec4983f57eb
(mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
38285
diff
changeset
|
91 (defcustom mail-envelope-from nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
92 "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
|
93 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
|
94 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
|
95 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
|
96 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
|
97 `user-mail-address' is used)." |
38308
2ec4983f57eb
(mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
38285
diff
changeset
|
98 :version "21.1" |
42383
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
99 :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
|
100 (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
|
101 (const :tag "Use `user-mail-address'" nil)) |
38308
2ec4983f57eb
(mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
38285
diff
changeset
|
102 :group 'sendmail) |
2ec4983f57eb
(mail-specify-envelope-from): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
38285
diff
changeset
|
103 |
25238
401a07be3a35
(sendmail-send-it): Let mail-specify-envelope-from
Karl Heuer <kwzh@gnu.org>
parents:
25142
diff
changeset
|
104 ;;;###autoload |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
105 (defcustom mail-self-blind nil |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
106 "Non-nil means insert BCC to self in messages to be sent. |
455 | 107 This is done when the message is initialized, |
20962 | 108 so you can remove or alter the BCC field to override the default." |
109 :type 'boolean | |
110 :group 'sendmail) | |
455 | 111 |
112 ;;;###autoload | |
95595
3adf48743a99
(mail-interactive): Change default.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94674
diff
changeset
|
113 (defcustom mail-interactive t |
3adf48743a99
(mail-interactive): Change default.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94674
diff
changeset
|
114 ;; We used to use a default of nil rather than t, but nowadays it is very |
3adf48743a99
(mail-interactive): Change default.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94674
diff
changeset
|
115 ;; common for sendmail to be misconfigured, so one cannot rely on the |
3adf48743a99
(mail-interactive): Change default.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94674
diff
changeset
|
116 ;; bounce message to be delivered anywhere, least of all to the |
3adf48743a99
(mail-interactive): Change default.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94674
diff
changeset
|
117 ;; user's mailbox. |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
118 "Non-nil means when sending a message wait for and display errors. |
102557 | 119 Otherwise, let mailer send back a message to report errors." |
20962 | 120 :type 'boolean |
95625
ca7011bae7f9
(mail-interactive): Add :version.
Glenn Morris <rgm@gnu.org>
parents:
95595
diff
changeset
|
121 :version "23.1" ; changed from nil to t |
20962 | 122 :group 'sendmail) |
455 | 123 |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
124 (defcustom mail-yank-ignored-headers |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
125 (concat "^" |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
126 (regexp-opt '("via" "mail-from" "origin" "status" "remailed" |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
127 "received" "message-id" "summary-line" "to" "subject" |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
128 "in-reply-to" "return-path" "mail-reply-to" |
102557 | 129 ;; Should really be rmail-attribute-header and |
130 ;; rmail-keyword-header, but this file does not | |
131 ;; require rmail (at run time). | |
132 "x-rmail-attributes" "x-rmail-keywords" | |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
133 "mail-followup-to") "\\(?:") |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
134 ":") |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
135 "Delete these headers from old message when it's inserted in a reply." |
20962 | 136 :type 'regexp |
102557 | 137 :group 'sendmail |
138 :version "23.1") | |
455 | 139 |
67879
e05d92c19248
(send-mail-function): Fix typo in comment.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67877
diff
changeset
|
140 ;; Prevent problems with `window-system' not having the correct value |
67877
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
141 ;; when loaddefs.el is loaded. `custom-reevaluate-setting' needs the |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
142 ;; standard value. |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
143 ;;;###autoload |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
144 (put 'send-mail-function 'standard-value |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
145 '((if (and window-system (memq system-type '(darwin windows-nt))) |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
146 'mailclient-send-it |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
147 'sendmail-send-it))) |
2ea40935bde1
(send-mail-function): Autoload the standard-value.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67435
diff
changeset
|
148 |
455 | 149 ;; Useful to set in site-init.el |
150 ;;;###autoload | |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
151 (defcustom send-mail-function |
66126
5aebfc4d20d5
(send-mail-function): Use mailclient-send-it
Richard M. Stallman <rms@gnu.org>
parents:
65482
diff
changeset
|
152 (if (and window-system (memq system-type '(darwin windows-nt))) |
5aebfc4d20d5
(send-mail-function): Use mailclient-send-it
Richard M. Stallman <rms@gnu.org>
parents:
65482
diff
changeset
|
153 'mailclient-send-it |
5aebfc4d20d5
(send-mail-function): Use mailclient-send-it
Richard M. Stallman <rms@gnu.org>
parents:
65482
diff
changeset
|
154 'sendmail-send-it) |
35615 | 155 "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
|
156 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
|
157 not a valid RFC822 header or continuation line, |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
158 that matches the variable `mail-header-separator'. |
35615 | 159 This is used by the default mail-sending commands. See also |
160 `message-send-mail-function' for use with the Message package." | |
34681 | 161 :type '(radio (function-item sendmail-send-it :tag "Use Sendmail package") |
162 (function-item smtpmail-send-it :tag "Use SMTPmail package") | |
163 (function-item feedmail-send-it :tag "Use Feedmail package") | |
65381
85a1acb45695
(send-mail-function): Add Mailclient alternative.
Richard M. Stallman <rms@gnu.org>
parents:
64807
diff
changeset
|
164 (function-item mailclient-send-it :tag "Use Mailclient package") |
34678 | 165 function) |
104990
f0794252d960
* mail/sendmail.el (send-mail-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104823
diff
changeset
|
166 :initialize 'custom-initialize-delay |
34678 | 167 :group 'sendmail) |
455 | 168 |
107233
548e079ffb49
Fix initialization of send-mail-function option.
Glenn Morris <rgm@gnu.org>
parents:
106891
diff
changeset
|
169 ;;;###autoload(custom-initialize-delay 'send-mail-function nil) |
548e079ffb49
Fix initialization of send-mail-function option.
Glenn Morris <rgm@gnu.org>
parents:
106891
diff
changeset
|
170 |
455 | 171 ;;;###autoload |
105765
db5e4a5897ec
* textmodes/tex-mode.el (tex-dvi-view-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105372
diff
changeset
|
172 (defcustom mail-header-separator (purecopy "--text follows this line--") |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
173 "Line used to separate headers from text in messages being composed." |
20962 | 174 :type 'string |
175 :group 'sendmail) | |
455 | 176 |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
177 ;; 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
|
178 (put 'mail-header-separator 'rear-nonsticky '(category)) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
179 ;; This was a nice idea, for preventing accidental modification of |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
180 ;; the separator. But I found it also prevented or obstructed |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
181 ;; certain deliberate operations, such as copying the separator line |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
182 ;; up to the top to send myself a copy of an already sent outgoing message |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
183 ;; and other things. So I turned it off. --rms. |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
184 ;;(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
|
185 |
455 | 186 ;;;###autoload |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
187 (defcustom mail-archive-file-name nil |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
188 "Name of file to write all outgoing messages in, or nil for none. |
102469
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
189 This is normally an mbox file, but for backwards compatibility may also |
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
190 be a Babyl file." |
20962 | 191 :type '(choice file (const nil)) |
192 :group 'sendmail) | |
455 | 193 |
5261
50406a868f05
(mail-default-reply-to): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
5210
diff
changeset
|
194 ;;;###autoload |
20962 | 195 (defcustom mail-default-reply-to nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
196 "Address to insert as default Reply-to field of outgoing messages. |
12607
498ce026e14b
(mail-default-reply-to): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12564
diff
changeset
|
197 If nil, it will be initialized from the REPLYTO environment variable |
20962 | 198 when you first send mail." |
199 :type '(choice (const nil) string) | |
200 :group 'sendmail) | |
455 | 201 |
20962 | 202 (defcustom mail-alias-file nil |
111961 | 203 "If non-nil, the name of a file to use instead of the sendmail default. |
455 | 204 This file defines aliases to be expanded by the mailer; this is a different |
205 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
111961 | 206 This variable has no effect unless your system uses sendmail as its mailer. |
207 The default file is defined in sendmail's configuration file, e.g. | |
208 `/etc/aliases'." | |
209 :type '(choice (const :tag "Sendmail default" nil) file) | |
20962 | 210 :group 'sendmail) |
455 | 211 |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
212 ;;;###autoload |
105765
db5e4a5897ec
* textmodes/tex-mode.el (tex-dvi-view-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105372
diff
changeset
|
213 (defcustom mail-personal-alias-file (purecopy "~/.mailrc") |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
214 "If non-nil, the name of the user's personal mail alias file. |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
215 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
|
216 the `Mail' or `mailx' program. |
20962 | 217 This file need not actually exist." |
218 :type '(choice (const nil) file) | |
219 :group 'sendmail) | |
10326
627063d29d25
(mail-personal-alias-file): New variable.
Noah Friedman <friedman@splode.com>
parents:
10174
diff
changeset
|
220 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
221 ;;;###autoload |
20962 | 222 (defcustom mail-setup-hook nil |
106353
dec940ff2ab6
* mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
Chong Yidong <cyd@stupidchicken.com>
parents:
106119
diff
changeset
|
223 "Normal hook, run each time a new outgoing message is initialized." |
20962 | 224 :type 'hook |
32295
a25a7ebfcb34
Byte-compile-dynamic since it gets loaded by
Dave Love <fx@gnu.org>
parents:
31568
diff
changeset
|
225 :options '(fortune-to-signature spook mail-abbrevs-setup) |
20962 | 226 :group 'sendmail) |
12564 | 227 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
228 ;;;###autoload |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
229 (defvar mail-aliases t |
1468
01e760e7de34
(mail-aliases): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1431
diff
changeset
|
230 "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
|
231 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
|
232 \(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
|
233 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
|
234 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
|
235 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
|
236 |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
237 (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
|
238 "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
|
239 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
240 ;;;###autoload |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
241 (defcustom mail-yank-prefix "> " |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
242 "Prefix insert on lines of yanked message being replied to. |
102587 | 243 If this is nil, use indentation, as specified by `mail-indentation-spaces'." |
20962 | 244 :type '(choice (const nil) string) |
245 :group 'sendmail) | |
246 | |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
247 ;;;###autoload |
20962 | 248 (defcustom mail-indentation-spaces 3 |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
249 "Number of spaces to insert at the beginning of each cited line. |
20962 | 250 Used by `mail-yank-original' via `mail-indent-citation'." |
251 :type 'integer | |
252 :group 'sendmail) | |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
253 |
102557 | 254 ;; FIXME make it really obsolete. |
4418
fdbbde0d4f24
(mail-yank-hooks): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4342
diff
changeset
|
255 (defvar mail-yank-hooks nil |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
256 "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
|
257 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
|
258 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
|
259 text as modified. |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
260 |
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
261 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
|
262 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
|
263 |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
264 ;;;###autoload |
20962 | 265 (defcustom mail-citation-hook nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
266 "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
|
267 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
|
268 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
|
269 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
|
270 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
|
271 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
|
272 |
3816
231b935db22c
(mail-citation-hook): New hook var.
Richard M. Stallman <rms@gnu.org>
parents:
3513
diff
changeset
|
273 If this hook is entirely empty (nil), a default action is taken |
20962 | 274 instead of no action." |
275 :type 'hook | |
276 :group 'sendmail) | |
455 | 277 |
22990
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
278 (defvar mail-citation-header nil |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
279 "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
|
280 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
|
281 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
|
282 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
283 ;;;###autoload |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
284 (defcustom mail-citation-prefix-regexp |
110629
531fc2a3b1cc
Fix message-* user options that differ from Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110439
diff
changeset
|
285 (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[]>|]\\)+") |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
286 "Regular expression to match a citation prefix plus whitespace. |
22747
63b084753ad7
(mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22634
diff
changeset
|
287 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
|
288 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
|
289 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
|
290 :type 'regexp |
63b084753ad7
(mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22634
diff
changeset
|
291 :group 'sendmail |
110629
531fc2a3b1cc
Fix message-* user options that differ from Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110439
diff
changeset
|
292 :version "24.1") |
22747
63b084753ad7
(mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22634
diff
changeset
|
293 |
455 | 294 (defvar mail-abbrevs-loaded nil) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
295 (defvar mail-mode-map |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
296 (let ((map (make-sparse-keymap))) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
297 (define-key map "\M-\t" 'mail-complete) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
298 (define-key map "\C-c?" 'describe-mode) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
299 (define-key map "\C-c\C-f\C-t" 'mail-to) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
300 (define-key map "\C-c\C-f\C-b" 'mail-bcc) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
301 (define-key map "\C-c\C-f\C-f" 'mail-fcc) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
302 (define-key map "\C-c\C-f\C-c" 'mail-cc) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
303 (define-key map "\C-c\C-f\C-s" 'mail-subject) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
304 (define-key map "\C-c\C-f\C-r" 'mail-reply-to) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
305 (define-key map "\C-c\C-f\C-a" 'mail-mail-reply-to) ; author |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
306 (define-key map "\C-c\C-f\C-l" 'mail-mail-followup-to) ; list |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
307 (define-key map "\C-c\C-t" 'mail-text) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
308 (define-key map "\C-c\C-y" 'mail-yank-original) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
309 (define-key map "\C-c\C-r" 'mail-yank-region) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
310 (define-key map [remap split-line] 'mail-split-line) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
311 (define-key map "\C-c\C-q" 'mail-fill-yanked-message) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
312 (define-key map "\C-c\C-w" 'mail-signature) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
313 (define-key map "\C-c\C-v" 'mail-sent-via) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
314 (define-key map "\C-c\C-c" 'mail-send-and-exit) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
315 (define-key map "\C-c\C-s" 'mail-send) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
316 (define-key map "\C-c\C-i" 'mail-attach-file) |
102587 | 317 ;; FIXME add this? "b" = bury buffer. It's in the menu-bar. |
318 ;;; (define-key map "\C-c\C-b" 'mail-dont-send) | |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
319 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
320 (define-key map [menu-bar mail] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
321 (cons "Mail" (make-sparse-keymap "Mail"))) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
322 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
323 (define-key map [menu-bar mail fill] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
324 '("Fill Citation" . mail-fill-yanked-message)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
325 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
326 (define-key map [menu-bar mail yank] |
102587 | 327 '(menu-item "Cite Original" mail-yank-original :enable mail-reply-action)) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
328 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
329 (define-key map [menu-bar mail signature] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
330 '("Insert Signature" . mail-signature)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
331 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
332 (define-key map [menu-bar mail mail-sep] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
333 '("--")) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
334 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
335 (define-key map [menu-bar mail cancel] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
336 '("Cancel" . mail-dont-send)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
337 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
338 (define-key map [menu-bar mail send-stay] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
339 '("Send, Keep Editing" . mail-send)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
340 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
341 (define-key map [menu-bar mail send] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
342 '("Send Message" . mail-send-and-exit)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
343 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
344 (define-key map [menu-bar headers] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
345 (cons "Headers" (make-sparse-keymap "Move to Header"))) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
346 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
347 (define-key map [menu-bar headers text] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
348 '("Text" . mail-text)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
349 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
350 (define-key map [menu-bar headers expand-aliases] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
351 '("Expand Aliases" . expand-mail-aliases)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
352 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
353 (define-key map [menu-bar headers sent-via] |
102587 | 354 '("Sent-Via" . mail-sent-via)) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
355 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
356 (define-key map [menu-bar headers mail-reply-to] |
102587 | 357 '("Mail-Reply-To" . mail-mail-reply-to)) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
358 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
359 (define-key map [menu-bar headers mail-followup-to] |
102587 | 360 '("Mail-Followup-To" . mail-mail-followup-to)) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
361 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
362 (define-key map [menu-bar headers reply-to] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
363 '("Reply-To" . mail-reply-to)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
364 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
365 (define-key map [menu-bar headers bcc] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
366 '("Bcc" . mail-bcc)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
367 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
368 (define-key map [menu-bar headers fcc] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
369 '("Fcc" . mail-fcc)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
370 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
371 (define-key map [menu-bar headers cc] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
372 '("Cc" . mail-cc)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
373 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
374 (define-key map [menu-bar headers subject] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
375 '("Subject" . mail-subject)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
376 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
377 (define-key map [menu-bar headers to] |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
378 '("To" . mail-to)) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
379 |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
380 map)) |
455 | 381 |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
382 (autoload 'build-mail-aliases "mailalias" |
111741 | 383 "Read mail aliases from personal aliases file and set `mail-aliases'. |
111959
4db798bcd48b
Make build-mail-aliases an interactive command.
Glenn Morris <rgm@gnu.org>
parents:
111958
diff
changeset
|
384 By default, this is the file specified by `mail-personal-alias-file'." t) |
1431
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
385 |
999 | 386 ;;;###autoload |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
387 (defcustom mail-signature t |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
388 "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
|
389 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
|
390 If a string, that string is inserted. |
863230e3e248
(mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents:
21920
diff
changeset
|
391 (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
|
392 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
|
393 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
|
394 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
|
395 :type '(choice (const :tag "None" nil) |
22005
863230e3e248
(mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents:
21920
diff
changeset
|
396 (const :tag "Use `.signature' file" t) |
863230e3e248
(mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents:
21920
diff
changeset
|
397 (string :tag "String to insert") |
863230e3e248
(mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents:
21920
diff
changeset
|
398 (sexp :tag "Expression to evaluate")) |
20962 | 399 :group 'sendmail) |
22005
863230e3e248
(mail-signature): Allow expression as value.
Richard M. Stallman <rms@gnu.org>
parents:
21920
diff
changeset
|
400 (put 'mail-signature 'risky-local-variable t) |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
401 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
402 ;;;###autoload |
105870
26baacb565b0
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
403 (defcustom mail-signature-file (purecopy "~/.signature") |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
404 "File containing the text inserted at end of mail buffer." |
20962 | 405 :type 'file |
406 :group 'sendmail) | |
455 | 407 |
45423
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
408 ;;;###autoload |
105870
26baacb565b0
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
409 (defcustom mail-default-directory (purecopy "~/") |
107688
e8c910cab06d
* mail/sendmail.el (mail-default-directory): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
107233
diff
changeset
|
410 "Value of `default-directory' for Mail mode buffers. |
e8c910cab06d
* mail/sendmail.el (mail-default-directory): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
107233
diff
changeset
|
411 This directory is used for auto-save files of Mail mode buffers. |
e8c910cab06d
* mail/sendmail.el (mail-default-directory): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
107233
diff
changeset
|
412 |
e8c910cab06d
* mail/sendmail.el (mail-default-directory): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
107233
diff
changeset
|
413 Note that Message mode does not use this variable; it auto-saves |
e8c910cab06d
* mail/sendmail.el (mail-default-directory): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
107233
diff
changeset
|
414 in `message-auto-save-directory'." |
45423
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
415 :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
|
416 :group 'sendmail |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
55115
diff
changeset
|
417 :version "22.1") |
45423
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
418 |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
419 (defvar mail-reply-action nil) |
455 | 420 (defvar mail-send-actions nil |
421 "A list of actions to be performed upon successful sending of a message.") | |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
422 (defvar mail-return-action nil) |
455 | 423 |
66228
69f47ed7d25d
(mail-setup-hook, mail-aliases)
Eli Zaretskii <eliz@gnu.org>
parents:
66126
diff
changeset
|
424 ;;;###autoload |
20962 | 425 (defcustom mail-default-headers nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
426 "A string containing header lines, to be inserted in outgoing messages. |
102469
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
427 It can contain newlines, and should end in one. It is inserted |
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
428 before you edit the message, so you can edit or delete the lines." |
20962 | 429 :type '(choice (const nil) string) |
430 :group 'sendmail) | |
455 | 431 |
20962 | 432 (defcustom mail-bury-selects-summary t |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
433 "If non-nil, try to show Rmail summary buffer after returning from mail. |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
434 The functions \\[mail-send-on-exit] or \\[mail-dont-send] select |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
435 the Rmail summary buffer before returning, if it exists and this variable |
20962 | 436 is non-nil." |
437 :type 'boolean | |
438 :group 'sendmail) | |
8955
14951db9444a
(mail-bury-selects-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8802
diff
changeset
|
439 |
28031
4b1aa29ef006
(mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents:
27548
diff
changeset
|
440 (defcustom mail-send-nonascii 'mime |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
441 "Specify whether to allow sending non-ASCII characters in mail. |
19350
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
442 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
|
443 `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
|
444 `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
|
445 The default is `mime'. |
19350
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
446 Including non-ASCII characters in a mail message can be problematical |
20962 | 447 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
|
448 :type '(choice (const t) (const nil) (const query) (const mime)) |
20962 | 449 :group 'sendmail) |
19350
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
450 |
44861
de1bcec6e403
(mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents:
43683
diff
changeset
|
451 (defcustom mail-use-dsn nil |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
452 "Ask MTA for notification of failed, delayed or successful delivery. |
44861
de1bcec6e403
(mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents:
43683
diff
changeset
|
453 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
|
454 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
|
455 :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
|
456 :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
|
457 (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
|
458 (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
|
459 :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
|
460 |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
461 ;; 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
|
462 ;; options -t, and -v if not interactive. |
111961 | 463 (defvar mail-mailer-swallows-blank-line nil |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
464 "Set this non-nil if the system's mailer runs the header and body together. |
111961 | 465 The actual value should be an expression to evaluate that returns |
466 non-nil if the problem will actually occur. | |
467 \(As far as we know, this is not an issue on any system still supported | |
468 by Emacs.)") | |
469 | |
470 (put 'mail-mailer-swallows-blank-line 'risky-local-variable t) ; gets evalled | |
471 (make-obsolete-variable 'mail-mailer-swallows-blank-line | |
472 "no need to set this on any modern system." "24.1") | |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
473 |
40383
cfc82f90a7d4
(mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39479
diff
changeset
|
474 (defvar mail-mode-syntax-table |
102557 | 475 ;; define-derived-mode will make it inherit from text-mode-syntax-table. |
40383
cfc82f90a7d4
(mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39479
diff
changeset
|
476 (let ((st (make-syntax-table))) |
102557 | 477 ;; FIXME this is probably very obsolete now ("percent hack"). |
478 ;; sending.texi used to say: | |
479 ;; Mail mode defines the character `%' as a word separator; this | |
480 ;; is helpful for using the word commands to edit mail addresses. | |
40383
cfc82f90a7d4
(mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39479
diff
changeset
|
481 (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
|
482 st) |
cfc82f90a7d4
(mail-mode-syntax-table): Let it inherit from text-mode-syntax-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39479
diff
changeset
|
483 "Syntax table used while in `mail-mode'.") |
455 | 484 |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
485 (defvar mail-font-lock-keywords |
14364
64be2e6b8094
Use `eval' in mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
486 (eval-when-compile |
16453
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
487 (let* ((cite-chars "[>|}]") |
33415
49906cfa5179
(mail-font-lock-keywords): Use [:alpha:], not
Dave Love <fx@gnu.org>
parents:
32295
diff
changeset
|
488 (cite-prefix "[:alpha:]") |
16453
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
489 (cite-suffix (concat cite-prefix "0-9_.@-`'\""))) |
17164 | 490 (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
|
491 '("^\\(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
|
492 '("^\\(Subject:\\)[ \t]*\\(.+\\)?" |
61597
bebf790f4c99
(mail-font-lock-keywords): Don't fontify subject text.
Richard M. Stallman <rms@gnu.org>
parents:
60691
diff
changeset
|
493 (1 font-lock-comment-face) |
bebf790f4c99
(mail-font-lock-keywords): Don't fontify subject text.
Richard M. Stallman <rms@gnu.org>
parents:
60691
diff
changeset
|
494 ;; (2 font-lock-type-face nil t) |
bebf790f4c99
(mail-font-lock-keywords): Don't fontify subject text.
Richard M. Stallman <rms@gnu.org>
parents:
60691
diff
changeset
|
495 ) |
16453
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
496 ;; Use EVAL to delay in case `mail-header-separator' gets changed. |
17164 | 497 '(eval . |
21284
1d971e4f4645
check length of mail-header-separator before using in font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
20962
diff
changeset
|
498 (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
|
499 " \\`\\' " |
21284
1d971e4f4645
check length of mail-header-separator before using in font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
20962
diff
changeset
|
500 (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
|
501 (cons (concat "^" separator "$") 'font-lock-warning-face))) |
16453
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
502 ;; 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
|
503 `(,cite-chars |
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
504 (,(concat "\\=[ \t]*" |
61815
3e72302e1d5a
(mail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61761
diff
changeset
|
505 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" |
3e72302e1d5a
(mail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61761
diff
changeset
|
506 "\\(" cite-chars "[ \t]*\\)\\)+\\)" |
17164 | 507 "\\(.*\\)") |
16453
90a2c2aebc37
Tweak mail-font-lock-keywords.
Simon Marshall <simon@gnu.org>
parents:
15962
diff
changeset
|
508 (beginning-of-line) (end-of-line) |
61815
3e72302e1d5a
(mail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61761
diff
changeset
|
509 (1 font-lock-comment-delimiter-face nil t) |
3e72302e1d5a
(mail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61761
diff
changeset
|
510 (5 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
|
511 '("^\\(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
|
512 . font-lock-string-face)))) |
9381
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
513 "Additional expressions to highlight in Mail mode.") |
535197b3fc42
(mail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9160
diff
changeset
|
514 |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
515 |
13950
e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents:
13928
diff
changeset
|
516 (defun sendmail-sync-aliases () |
52372
02e7333fda5d
(sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents:
52320
diff
changeset
|
517 (when mail-personal-alias-file |
02e7333fda5d
(sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents:
52320
diff
changeset
|
518 (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
|
519 (or (equal mail-alias-modtime modtime) |
02e7333fda5d
(sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents:
52320
diff
changeset
|
520 (setq mail-alias-modtime modtime |
02e7333fda5d
(sendmail-sync-aliases, mail-setup):
Richard M. Stallman <rms@gnu.org>
parents:
52320
diff
changeset
|
521 mail-aliases t))))) |
8802
7fcda87193a3
(mail-alias-modtime): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8488
diff
changeset
|
522 |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
523 |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
524 ;;;###autoload |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
525 (define-mail-user-agent 'sendmail-user-agent |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
526 'sendmail-user-agent-compose |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
527 'mail-send-and-exit) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
528 |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
529 ;;;###autoload |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
530 (defun sendmail-user-agent-compose (&optional to subject other-headers |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
531 continue switch-function yank-action |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
532 send-actions return-action |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
533 &rest ignored) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
534 (if switch-function |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
535 (let ((special-display-buffer-names nil) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
536 (special-display-regexps nil) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
537 (same-window-buffer-names nil) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
538 (same-window-regexps nil)) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
539 (funcall switch-function "*mail*"))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
540 (let ((cc (cdr (assoc-string "cc" other-headers t))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
541 (in-reply-to (cdr (assoc-string "in-reply-to" other-headers t))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
542 (body (cdr (assoc-string "body" other-headers t)))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
543 (or (mail continue to subject in-reply-to cc yank-action |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
544 send-actions return-action) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
545 continue |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
546 (error "Message aborted")) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
547 (save-excursion |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
548 (rfc822-goto-eoh) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
549 (while other-headers |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
550 (unless (member-ignore-case (car (car other-headers)) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
551 '("in-reply-to" "cc" "body")) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
552 (insert (car (car other-headers)) ": " |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
553 (cdr (car other-headers)) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
554 (if use-hard-newlines hard-newline "\n"))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
555 (setq other-headers (cdr other-headers))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
556 (when body |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
557 (forward-line 1) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
558 (insert body)) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
559 t))) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
560 |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
561 (defun mail-setup (to subject in-reply-to cc replybuffer |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
562 actions return-action) |
12473
4472a461ab1c
(mail-default-reply-to): Initialize to nil.
Richard M. Stallman <rms@gnu.org>
parents:
12458
diff
changeset
|
563 (or mail-default-reply-to |
8972
ad8f1cea49cc
(mail-default-reply-to): Initialize to t.
Richard M. Stallman <rms@gnu.org>
parents:
8955
diff
changeset
|
564 (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
|
565 (sendmail-sync-aliases) |
111961 | 566 (when (eq mail-aliases t) |
567 (setq mail-aliases nil) | |
568 (and mail-personal-alias-file | |
569 (file-exists-p mail-personal-alias-file) | |
570 (build-mail-aliases))) | |
18130
ea43e3ebc47a
(mail-setup): Clear out buffer-file-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
17796
diff
changeset
|
571 ;; 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
|
572 (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
|
573 ;; 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
|
574 ;; (kill-local-variable 'enable-multibyte-characters) |
104823
68150c643e2e
Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents:
104664
diff
changeset
|
575 (set-buffer-multibyte (default-value 'enable-multibyte-characters)) |
18794
631776603b13
(mail-setup): Kill the local binding of enable-multibyte-characters.
Kenichi Handa <handa@m17n.org>
parents:
18704
diff
changeset
|
576 (if current-input-method |
631776603b13
(mail-setup): Kill the local binding of enable-multibyte-characters.
Kenichi Handa <handa@m17n.org>
parents:
18704
diff
changeset
|
577 (inactivate-input-method)) |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
578 |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
579 ;; Local variables for Mail mode. |
455 | 580 (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
|
581 (setq mail-reply-action replybuffer) |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
582 (setq mail-return-action return-action) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
583 |
455 | 584 (goto-char (point-min)) |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
585 (if mail-setup-with-from |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
586 (mail-insert-from-field)) |
455 | 587 (insert "To: ") |
588 (save-excursion | |
589 (if to | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
590 ;; 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
|
591 ;; 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
|
592 ;; 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
|
593 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
594 (address-start (point))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
595 (insert to "\n") |
22997
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
596 (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
|
597 (goto-char (point-max)) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
598 (unless (bolp) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
599 (newline))) |
455 | 600 (newline)) |
601 (if cc | |
1843
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
602 (let ((fill-prefix "\t") |
2d5caf3fd862
(mail-setup): Use fill-region-as-paragraph
Richard M. Stallman <rms@gnu.org>
parents:
1835
diff
changeset
|
603 (address-start (progn (insert "CC: ") (point)))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
604 (insert cc "\n") |
22997
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
605 (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
|
606 (goto-char (point-max)) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
607 (unless (bolp) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
608 (newline)))) |
455 | 609 (if in-reply-to |
22997
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
610 (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
|
611 (fill-column 78) |
9663
8bd05e79e0bd
(mail-setup): Fill in-reply-to field properly.
Richard M. Stallman <rms@gnu.org>
parents:
9647
diff
changeset
|
612 (address-start (point))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
613 (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
|
614 (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
|
615 (goto-char (point-max)) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
616 (unless (bolp) |
7be798773f85
(mail-setup): After using `fill-region-as-paragraph'
Richard M. Stallman <rms@gnu.org>
parents:
22990
diff
changeset
|
617 (newline)))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
618 (insert "Subject: " (or subject "") "\n") |
455 | 619 (if mail-default-headers |
620 (insert mail-default-headers)) | |
621 (if mail-default-reply-to | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
622 (insert "Reply-to: " mail-default-reply-to "\n")) |
455 | 623 (if mail-self-blind |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
624 (insert "BCC: " user-mail-address "\n")) |
455 | 625 (if mail-archive-file-name |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
626 (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
|
627 (put-text-property (point) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
628 (progn |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
629 (insert mail-header-separator "\n") |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
630 (1- (point))) |
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
631 'category 'mail-header-separator) |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
632 ;; 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
|
633 (if to (setq to (point))) |
102557 | 634 (if mail-signature (mail-signature t)) |
455 | 635 (goto-char (point-max)) |
636 (or (bolp) (newline))) | |
2852
e80e6e533533
(mail-setup): Leave point before signature, not after.
Richard M. Stallman <rms@gnu.org>
parents:
2701
diff
changeset
|
637 (if to (goto-char to)) |
455 | 638 (or to subject in-reply-to |
639 (set-buffer-modified-p nil)) | |
640 (run-hooks 'mail-setup-hook)) | |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
641 |
27245
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
642 (defcustom mail-mode-hook nil |
102559 | 643 "Hook run by Mail mode. |
644 When composing a mail, this runs immediately after creating, or | |
645 switching to, the `*mail*' buffer. See also `mail-setup-hook'." | |
27245
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
646 :group 'sendmail |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
647 :type 'hook |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
648 :options '(footnote-mode)) |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
649 |
47206
49fb7a41adff
(mail-mode): Don't set local-abbrev-table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45423
diff
changeset
|
650 (defvar mail-mode-abbrev-table text-mode-abbrev-table) |
455 | 651 ;;;###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
|
652 (define-derived-mode mail-mode text-mode "Mail" |
455 | 653 "Major mode for editing mail to be sent. |
654 Like Text Mode but with these additional commands: | |
67435
f245bb6e08da
* files.el (save-buffer):
Reiner Steib <Reiner.Steib@gmx.de>
parents:
67324
diff
changeset
|
655 |
f245bb6e08da
* files.el (save-buffer):
Reiner Steib <Reiner.Steib@gmx.de>
parents:
67324
diff
changeset
|
656 \\[mail-send] mail-send (send the message) |
f245bb6e08da
* files.el (save-buffer):
Reiner Steib <Reiner.Steib@gmx.de>
parents:
67324
diff
changeset
|
657 \\[mail-send-and-exit] mail-send-and-exit (send the message and exit) |
f245bb6e08da
* files.el (save-buffer):
Reiner Steib <Reiner.Steib@gmx.de>
parents:
67324
diff
changeset
|
658 |
21545 | 659 Here are commands that move to a header field (and create it if there isn't): |
76971
f1b843dae8ab
(mail-text, mail-mode): Revert extant pieces of 1995-05-19 doc
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
660 \\[mail-to] move to To: \\[mail-subject] move to Subj: |
f1b843dae8ab
(mail-text, mail-mode): Revert extant pieces of 1995-05-19 doc
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
661 \\[mail-bcc] move to BCC: \\[mail-cc] move to CC: |
39396
8c3457d1371c
(mail-mode): Doc fix. From Simon Josefsson <jas@extundo.com>.
Eli Zaretskii <eliz@gnu.org>
parents:
39224
diff
changeset
|
662 \\[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
|
663 \\[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
|
664 \\[mail-mail-followup-to] move to Mail-Followup-To: |
76971
f1b843dae8ab
(mail-text, mail-mode): Revert extant pieces of 1995-05-19 doc
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
665 \\[mail-text] move to message text. |
21545 | 666 \\[mail-signature] mail-signature (insert `mail-signature-file' file). |
667 \\[mail-yank-original] mail-yank-original (insert current message, in Rmail). | |
668 \\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked). | |
76971
f1b843dae8ab
(mail-text, mail-mode): Revert extant pieces of 1995-05-19 doc
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
669 \\[mail-sent-via] mail-sent-via (add a sent-via field for each To or CC). |
35115 | 670 Turning on Mail mode runs the normal hooks `text-mode-hook' and |
671 `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
|
672 (make-local-variable 'mail-reply-action) |
455 | 673 (make-local-variable 'mail-send-actions) |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
674 (make-local-variable 'mail-return-action) |
455 | 675 (setq buffer-offer-save t) |
9483
a8f745eaee5c
* sendmail.el: (mail-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9470
diff
changeset
|
676 (make-local-variable 'font-lock-defaults) |
36887
854351f92bfe
(mail-mode): Activate case-folding in
Gerd Moellmann <gerd@gnu.org>
parents:
35615
diff
changeset
|
677 (setq font-lock-defaults '(mail-font-lock-keywords t t)) |
455 | 678 (make-local-variable 'paragraph-separate) |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
679 (make-local-variable 'normal-auto-fill-function) |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
680 (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
|
681 (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
|
682 (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
|
683 ;; 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
|
684 ;; 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
|
685 (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
|
686 (if mail-yank-prefix |
1395db493830
(mail-mode): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54278
diff
changeset
|
687 (set (make-local-variable 'comment-start-skip) |
1395db493830
(mail-mode): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54278
diff
changeset
|
688 (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
|
689 (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
|
690 (setq adaptive-fill-regexp |
42915
4c65aa6c1046
(mail-mode): ">" is not a supercite-style prefix
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42522
diff
changeset
|
691 (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
|
692 adaptive-fill-regexp)) |
19000
f5d103332d9e
(mail-mode): Make adaptive-fill-regexp
Richard M. Stallman <rms@gnu.org>
parents:
18955
diff
changeset
|
693 (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
|
694 (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
|
695 (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
|
696 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
|
697 ;; `-- ' 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
|
698 ;; lines that delimit forwarded messages. |
a16fd1b9abb5
(mail-mode): Line starting with ---- is a separator.
Richard M. Stallman <rms@gnu.org>
parents:
14926
diff
changeset
|
699 ;; 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
|
700 ;; 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
|
701 (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
|
702 "$\\|\t*\\([-|#;>* ]\\|(?[0-9]+[.)]\\)+$" |
33415
49906cfa5179
(mail-font-lock-keywords): Use [:alpha:], not
Dave Love <fx@gnu.org>
parents:
32295
diff
changeset
|
703 "\\|[ \t]*[[:alnum:]]*>+[ \t]*$\\|[ \t]*$\\|" |
51082
af63282f9b8e
(mail-mode): Don't bother setting paragraph-start.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50787
diff
changeset
|
704 "--\\( \\|-+\\)$\\|" |
af63282f9b8e
(mail-mode): Don't bother setting paragraph-start.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50787
diff
changeset
|
705 page-delimiter))) |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
706 |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
707 |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
708 (defun mail-header-end () |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
709 "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
|
710 (save-restriction |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
711 (widen) |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
712 (save-excursion |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
713 (rfc822-goto-eoh) |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
714 (point)))) |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
715 |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
716 (defun mail-text-start () |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
717 "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
|
718 (save-restriction |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
719 (widen) |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
720 (save-excursion |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
721 (rfc822-goto-eoh) |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
722 (forward-line 1) |
6c20dbaac61e
(mail-header-end): Widen.
Richard M. Stallman <rms@gnu.org>
parents:
22379
diff
changeset
|
723 (point)))) |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
724 |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
725 (defun mail-sendmail-delimit-header () |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
726 "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
|
727 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
|
728 (rfc822-goto-eoh) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
729 (insert mail-header-separator) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
730 (point)) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
731 |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
732 (defun mail-sendmail-undelimit-header () |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
733 "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
|
734 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
|
735 (rfc822-goto-eoh) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
736 (delete-region (point) (progn (end-of-line) (point)))) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
737 |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
738 (defun mail-mode-auto-fill () |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
739 "Carry out Auto Fill for Mail mode. |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
740 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
|
741 (if (< (point) (mail-header-end)) |
111429
249a1455856a
Use line-end-position rather than end-of-line, etc.
Glenn Morris <rgm@gnu.org>
parents:
110629
diff
changeset
|
742 (let ((old-line-start (line-beginning-position))) |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
743 (if (do-auto-fill) |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
744 (save-excursion |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
745 (beginning-of-line) |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
746 (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
|
747 ;; 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
|
748 ;; 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
|
749 (insert-before-markers " ") |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
750 (forward-line -1)) |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
751 t))) |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
752 (do-auto-fill))) |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
753 |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
754 (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
|
755 ;; 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
|
756 (if (< (point) (mail-header-end)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49063
diff
changeset
|
757 (let (beg end fieldname) |
31568
d0dfc12963ef
(mail-mode-fill-paragraph): Do not get the
Gerd Moellmann <gerd@gnu.org>
parents:
30774
diff
changeset
|
758 (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
|
759 (setq beg (point))) |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
760 (setq fieldname |
31568
d0dfc12963ef
(mail-mode-fill-paragraph): Do not get the
Gerd Moellmann <gerd@gnu.org>
parents:
30774
diff
changeset
|
761 (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
|
762 (forward-line 1) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
763 ;; 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
|
764 (while (looking-at "[ \t]") |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
765 (delete-horizontal-space) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
766 (forward-line 1)) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
767 (setq end (point-marker)) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
768 (goto-char beg) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
769 ;; If this field contains addresses, |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
770 ;; 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
|
771 (if (member fieldname |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
772 '("to" "cc" "bcc" "from" "reply-to" |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
773 "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
|
774 "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
|
775 "resent-from" "resent-reply-to")) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
776 (while (search-forward "," end t) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
777 (or (looking-at "[ \t]") |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
778 (insert " ")))) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
779 (fill-region-as-paragraph beg end arg) |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
780 ;; 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
|
781 (goto-char beg) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
782 (forward-line 1) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
783 (while (< (point) end) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
784 (insert " ") |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
785 (forward-line 1)) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
786 (move-marker end nil) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
787 t))) |
3859
7e2410ba8e41
(mail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3816
diff
changeset
|
788 |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
789 ;; User-level commands for sending. |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
790 |
50688
5c18ceba3ad8
(mail-send-and-exit): Make arg optional.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
791 (defun mail-send-and-exit (&optional arg) |
1539 | 792 "Send message like `mail-send', then, if no errors, exit from mail buffer. |
455 | 793 Prefix arg means don't delete this window." |
794 (interactive "P") | |
795 (mail-send) | |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
796 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
797 |
50787
3d35ca8a190d
(mail-dont-send, mail-bury): Make ARG optional.
Richard M. Stallman <rms@gnu.org>
parents:
50688
diff
changeset
|
798 (defun mail-dont-send (&optional arg) |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
799 "Don't send the message you have been editing. |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
800 Prefix arg means don't delete this window." |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
801 (interactive "P") |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
802 (mail-bury arg)) |
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
803 |
50787
3d35ca8a190d
(mail-dont-send, mail-bury): Make ARG optional.
Richard M. Stallman <rms@gnu.org>
parents:
50688
diff
changeset
|
804 (defun mail-bury (&optional arg) |
4074
daf4ba204fe5
(mail-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4021
diff
changeset
|
805 "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
|
806 (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
|
807 (bury-buffer (current-buffer)) |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
808 (if (and (null arg) mail-return-action) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
809 (apply (car mail-return-action) (cdr mail-return-action)) |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
810 (switch-to-buffer newbuf)))) |
455 | 811 |
27245
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
812 (defcustom mail-send-hook nil |
106353
dec940ff2ab6
* mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
Chong Yidong <cyd@stupidchicken.com>
parents:
106119
diff
changeset
|
813 "Hook run just before sending a message." |
27245
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
814 :type 'hook |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
815 :options '(flyspell-mode-off) |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
816 :group 'sendmail) |
7958d9720d8f
Require rmail, mailalias when compiling.
Dave Love <fx@gnu.org>
parents:
25240
diff
changeset
|
817 |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
818 ;;;###autoload |
102469
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
819 (defcustom mail-mailing-lists nil |
11f6dbbc28a8
(mail-archive-file-name, mail-default-headers): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
102277
diff
changeset
|
820 "List of mailing list addresses the user is subscribed to. |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
821 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
|
822 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
|
823 :type '(repeat string) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
824 :group 'sendmail) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
825 |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
826 |
455 | 827 (defun mail-send () |
828 "Send the message in the current buffer. | |
829 If `mail-interactive' is non-nil, wait for success indication | |
830 or error messages, and inform user. | |
831 Otherwise any failure is reported in a message back to | |
832 the user from the mailer." | |
833 (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
|
834 (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
|
835 (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
|
836 (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
|
837 (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
|
838 (let ((inhibit-read-only t) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
839 (opoint (point)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
840 (ml (when mail-mailing-lists |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
841 ;; The surrounding regexp assumes the use of |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
842 ;; `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
|
843 ;; 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
|
844 ;; unlikely to be problematic. |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
845 (concat "\\(?:[[:space:];,]\\|\\`\\)" |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
846 (regexp-opt mail-mailing-lists t) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
847 "\\(?:[[:space:];,]\\|\\'\\)")))) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
848 ;; If there are mailing lists defined |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
849 (when ml |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
850 (save-excursion |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
851 (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
|
852 (cc (mail-fetch-field "cc" nil t)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
853 (new-header-values ; To: and Cc: |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
854 (mail-strip-quoted-names |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
855 (concat to (when cc (concat ", " cc)))))) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
856 ;; If message goes to known mailing list ... |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
857 (when (string-match ml new-header-values) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
858 ;; Add Mail-Followup-To if none yet |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
859 (unless (mail-fetch-field "mail-followup-to") |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
860 (goto-char (mail-header-end)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
861 (insert "Mail-Followup-To: " |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
862 (let ((l)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
863 (mapc |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
864 ;; remove duplicates |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
865 '(lambda (e) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
866 (unless (member e l) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
867 (push e l))) |
62580
cc4bd3fe9a9d
(mail-send): Use [[:space:]] instead of a literal blank
Eli Zaretskii <eliz@gnu.org>
parents:
61815
diff
changeset
|
868 (split-string new-header-values |
cc4bd3fe9a9d
(mail-send): Use [[:space:]] instead of a literal blank
Eli Zaretskii <eliz@gnu.org>
parents:
61815
diff
changeset
|
869 ",[[:space:]]+" t)) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
870 (mapconcat 'identity l ", ")) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
871 "\n")) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
872 ;; Add Mail-Reply-To if none yet |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
873 (unless (mail-fetch-field "mail-reply-to") |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
874 (goto-char (mail-header-end)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
875 (insert "Mail-Reply-To: " |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
876 (or (mail-fetch-field "reply-to") |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
877 user-mail-address) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
878 "\n")))))) |
39224
cd06bcf39556
(mail-send): Obey mail-send-nonascii when
Gerd Moellmann <gerd@gnu.org>
parents:
38965
diff
changeset
|
879 (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
|
880 (goto-char (point-min)) |
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
881 (skip-chars-forward "\0-\177") |
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
882 (or (= (point) (point-max)) |
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
883 (if (eq mail-send-nonascii 'query) |
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
884 (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
|
885 (error "Aborted")) |
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
886 (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
|
887 ;; Complain about any invalid line. |
3be882bc0211
(mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents:
19440
diff
changeset
|
888 (goto-char (point-min)) |
71349
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
889 (re-search-forward (regexp-quote mail-header-separator) (point-max) t) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
890 (let ((header-end (or (match-beginning 0) (point-max)))) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
891 (goto-char (point-min)) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
892 (while (< (point) header-end) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
893 (unless (looking-at "[ \t]\\|.*:\\|$") |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
894 (push-mark opoint) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
895 (error "Invalid header line (maybe a continuation line lacks initial whitespace)")) |
424b1f91f07b
* mail/sendmail.el (mail-send): Search explicitly for
Chong Yidong <cyd@stupidchicken.com>
parents:
68648
diff
changeset
|
896 (forward-line 1))) |
19350
d7ecbd12ecef
(mail-send): Ask for confirmation if
Richard M. Stallman <rms@gnu.org>
parents:
19202
diff
changeset
|
897 (goto-char opoint) |
7917
7967c371644f
(mail-send-hook): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
7858
diff
changeset
|
898 (run-hooks 'mail-send-hook) |
455 | 899 (message "Sending...") |
900 (funcall send-mail-function) | |
901 ;; Now perform actions on successful sending. | |
902 (while mail-send-actions | |
903 (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
|
904 (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
|
905 (cdr (car mail-send-actions))) |
455 | 906 (error)) |
907 (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
|
908 (message "Sending...done") |
23382 | 909 ;; 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
|
910 (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
|
911 (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
|
912 (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
|
913 (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
|
914 |
b9705a05fa60
* mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents:
47579
diff
changeset
|
915 (defun mail-envelope-from () |
b9705a05fa60
* mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents:
47579
diff
changeset
|
916 "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
|
917 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
|
918 (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
|
919 (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
|
920 (mail-fetch-field "From"))) |
b9705a05fa60
* mail/sendmail.el (mail-envelope-from): New option `header' to
Simon Josefsson <jas@extundo.com>
parents:
47579
diff
changeset
|
921 mail-envelope-from)) |
15962
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
922 |
37baba8d7fbc
(mail-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15951
diff
changeset
|
923 ;; 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
|
924 ;; It is called via the variable send-mail-function. |
455 | 925 |
17097
c3c90aba16f9
(sendmail-coding-system): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
17013
diff
changeset
|
926 ;;;###autoload |
c3c90aba16f9
(sendmail-coding-system): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
17013
diff
changeset
|
927 (defvar sendmail-coding-system nil |
23086
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
928 "*Coding system for encoding the outgoing mail. |
104664
50fdf250e26b
* mh-e/mh-comp.el (mh-send-letter):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104181
diff
changeset
|
929 This has higher priority than the default `buffer-file-coding-system' |
23086
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
930 and `default-sendmail-coding-system', |
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
931 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
|
932 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
|
933 |
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
934 ;;;###autoload |
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
935 (defvar default-sendmail-coding-system 'iso-latin-1 |
23581 | 936 "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
|
937 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
|
938 |
65395
e5827c5f0d2a
(default-sendmail-coding-system): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
65381
diff
changeset
|
939 This variable is set/changed by the command `set-language-environment'. |
23086
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
940 User should not set this variable manually, |
65395
e5827c5f0d2a
(default-sendmail-coding-system): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
65381
diff
changeset
|
941 instead use `sendmail-coding-system' to get a constant encoding |
23086
baea0ab6d015
(sendmail-coding-system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
23020
diff
changeset
|
942 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
|
943 See also the function `select-message-coding-system'.") |
17013
d6ce795e84da
(sendmail-coding-system): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16761
diff
changeset
|
944 |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
945 (defun mail-insert-from-field () |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
946 (let* ((login user-mail-address) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
947 (fullname (user-full-name)) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
948 (quote-fullname nil)) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
949 (if (string-match "[^\0-\177]" fullname) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
950 (setq fullname (rfc2047-encode-string fullname) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
951 quote-fullname t)) |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
952 (cond ((null mail-from-style) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
953 (insert "From: " login "\n")) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
954 ;; This is deprecated. |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
955 ((eq mail-from-style 'system-default) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
956 nil) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
957 ((or (eq mail-from-style 'angles) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
958 (and (not (eq mail-from-style 'parens)) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
959 ;; Use angles if no quoting is needed, or if |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
960 ;; parens would need quoting too. |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
961 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname)) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
962 (let ((tmp (concat fullname nil))) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
963 (while (string-match "([^()]*)" tmp) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
964 (aset tmp (match-beginning 0) ?-) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
965 (aset tmp (1- (match-end 0)) ?-)) |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
966 (string-match "[\\()]" tmp))))) |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
967 (insert "From: " fullname) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
968 (let ((fullname-start (+ (point-min) 6)) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
969 (fullname-end (point-marker))) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
970 (goto-char fullname-start) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
971 ;; Look for a character that cannot appear unquoted |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
972 ;; according to RFC 822. |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
973 (if (or (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
974 fullname-end 1) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
975 quote-fullname) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
976 (progn |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
977 ;; Quote fullname, escaping specials. |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
978 (goto-char fullname-start) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
979 (insert "\"") |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
980 (while (re-search-forward "[\"\\]" |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
981 fullname-end 1) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
982 (replace-match "\\\\\\&" t)) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
983 (insert "\"")))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
984 (insert " <" login ">\n")) |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
985 ;; 'parens or default |
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
986 (t |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
987 (insert "From: " login " (") |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
988 (let ((fullname-start (point))) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
989 (if quote-fullname |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
990 (insert "\"")) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
991 (insert fullname) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
992 (if quote-fullname |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
993 (insert "\"")) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
994 (let ((fullname-end (point-marker))) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
995 (goto-char fullname-start) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
996 ;; RFC 822 says \ and nonmatching parentheses |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
997 ;; must be escaped in comments. |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
998 ;; Escape every instance of ()\ ... |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
999 (while (re-search-forward "[()\\]" fullname-end 1) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1000 (replace-match "\\\\\\&" t)) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1001 ;; ... then undo escaping of matching parentheses, |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1002 ;; including matching nested parentheses. |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1003 (goto-char fullname-start) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1004 (while (re-search-forward |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1005 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)" |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1006 fullname-end 1) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1007 (replace-match "\\1(\\3)" t) |
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1008 (goto-char fullname-start)))) |
106119
471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
Chong Yidong <cyd@stupidchicken.com>
parents:
105870
diff
changeset
|
1009 (insert ")\n"))))) |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1010 |
85316
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1011 ;; Normally you will not need to modify these options unless you are |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1012 ;; using some non-genuine substitute for sendmail which does not |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1013 ;; implement each and every option that the original supports. |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1014 ;; E.g., ssmtp does not support "-odb", so, if your site uses it, |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1015 ;; you will need to modify `sendmail-error-reporting-non-interactive' |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1016 ;; in your site-init.el. |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1017 (defvar sendmail-error-reporting-interactive |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1018 ;; These mean "report errors to terminal" and "deliver interactively" |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1019 '("-oep" "-odi")) |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1020 (defvar sendmail-error-reporting-non-interactive |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1021 ;; These mean "report errors by mail" and "deliver in background". |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1022 '("-oem" "-odb")) |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1023 |
455 | 1024 (defun sendmail-send-it () |
35615 | 1025 "Send the current mail buffer using the Sendmail package. |
1026 This is a suitable value for `send-mail-function'. It sends using the | |
1027 external program defined by `sendmail-program'." | |
13056
c1ce3b4556f2
(mail-file-babyl-p): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12980
diff
changeset
|
1028 (require 'mail-utils) |
455 | 1029 (let ((errbuf (if mail-interactive |
1030 (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
|
1031 0)) |
455 | 1032 (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
|
1033 (multibyte enable-multibyte-characters) |
455 | 1034 (case-fold-search nil) |
47887 | 1035 (selected-coding (select-message-coding-system)) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1036 resend-to-addresses |
455 | 1037 delimline |
16700
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1038 fcc-was-found |
38285
b7db38e7d28d
(sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents:
36913
diff
changeset
|
1039 (mailbuf (current-buffer)) |
b7db38e7d28d
(sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents:
36913
diff
changeset
|
1040 (program (if (boundp 'sendmail-program) |
b7db38e7d28d
(sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents:
36913
diff
changeset
|
1041 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
|
1042 "/usr/lib/sendmail")) |
42383
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
1043 ;; Examine these variables now, so that |
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
1044 ;; 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
|
1045 (envelope-from |
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
1046 (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
|
1047 (or (mail-envelope-from) user-mail-address)))) |
455 | 1048 (unwind-protect |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1049 (with-current-buffer tembuf |
455 | 1050 (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
|
1051 (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
|
1052 (set-buffer-multibyte nil)) |
455 | 1053 (insert-buffer-substring mailbuf) |
1054 (goto-char (point-max)) | |
1055 ;; require one newline at the end. | |
1056 (or (= (preceding-char) ?\n) | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1057 (insert ?\n)) |
455 | 1058 ;; 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
|
1059 (goto-char (mail-header-end)) |
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
1060 (delete-region (point) (progn (end-of-line) (point))) |
455 | 1061 (setq delimline (point-marker)) |
13950
e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
Karl Heuer <kwzh@gnu.org>
parents:
13928
diff
changeset
|
1062 (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
|
1063 (if mail-aliases |
240d5fe38595
(mail-setup): Call build-mail-aliases, not mail-abbrev-setup.
Richard M. Stallman <rms@gnu.org>
parents:
1269
diff
changeset
|
1064 (expand-mail-aliases (point-min) delimline)) |
455 | 1065 (goto-char (point-min)) |
19628
3be882bc0211
(mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents:
19440
diff
changeset
|
1066 ;; Ignore any blank lines in the header |
455 | 1067 (while (and (re-search-forward "\n\n\n*" delimline t) |
1068 (< (point) delimline)) | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1069 (replace-match "\n")) |
19628
3be882bc0211
(mail-send): Complain about invalid header line.
Richard M. Stallman <rms@gnu.org>
parents:
19440
diff
changeset
|
1070 (goto-char (point-min)) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1071 ;; Look for Resent- headers. They require sending |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1072 ;; the message specially. |
455 | 1073 (let ((case-fold-search t)) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1074 (goto-char (point-min)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1075 (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
|
1076 ;; 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
|
1077 (setq resend-to-addresses |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1078 (save-restriction |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1079 (narrow-to-region (point) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1080 (save-excursion |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1081 (forward-line 1) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1082 (while (looking-at "^[ \t]") |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1083 (forward-line 1)) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1084 (point))) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1085 (append (mail-parse-comma-list) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1086 resend-to-addresses))) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1087 ;; Delete Resent-BCC ourselves |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1088 (if (save-excursion (beginning-of-line) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1089 (looking-at "resent-bcc")) |
110439
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1090 (delete-region (line-beginning-position) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1091 (line-beginning-position 2)))) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1092 ;; Apparently this causes a duplicate Sender. |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1093 ;; ;; If the From is different than current user, insert Sender. |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1094 ;; (goto-char (point-min)) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1095 ;; (and (re-search-forward "^From:" delimline t) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1096 ;; (progn |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1097 ;; (require 'mail-utils) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1098 ;; (not (string-equal |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1099 ;; (mail-strip-quoted-names |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1100 ;; (save-restriction |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1101 ;; (narrow-to-region (point-min) delimline) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1102 ;; (mail-fetch-field "From"))) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1103 ;; (user-login-name)))) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1104 ;; (progn |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1105 ;; (forward-line 1) |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1106 ;; (insert "Sender: " (user-login-name) "\n"))) |
455 | 1107 ;; Don't send out a blank subject line |
1108 (goto-char (point-min)) | |
11709
03f977d9a240
(sendmail-send-it): Check continuation lines
Richard M. Stallman <rms@gnu.org>
parents:
11551
diff
changeset
|
1109 (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
|
1110 (replace-match "") |
30b732ff2de2
(sendmail-send-it): Make deletion of empty subject line work reliably.
Richard M. Stallman <rms@gnu.org>
parents:
13824
diff
changeset
|
1111 ;; 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
|
1112 (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
|
1113 (= (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
|
1114 (replace-match ""))) |
10097
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
1115 ;; 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
|
1116 ;; they put one in themselves. |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
1117 (goto-char (point-min)) |
429eda63a32c
(sendmail-send-it): Add `From:' header.
Karl Heuer <kwzh@gnu.org>
parents:
10013
diff
changeset
|
1118 (if (not (re-search-forward "^From:" delimline t)) |
63553
5026b9fcbb0c
(mail-setup-with-from): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
62580
diff
changeset
|
1119 (mail-insert-from-field)) |
28031
4b1aa29ef006
(mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents:
27548
diff
changeset
|
1120 ;; Possibly add a MIME header for the current coding system |
102909
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1121 (let (charset where-content-type) |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1122 (goto-char (point-min)) |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1123 (setq where-content-type |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1124 (re-search-forward "^Content-type:" delimline t)) |
28031
4b1aa29ef006
(mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents:
27548
diff
changeset
|
1125 (goto-char (point-min)) |
4b1aa29ef006
(mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents:
27548
diff
changeset
|
1126 (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
|
1127 (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
|
1128 (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
|
1129 (/= (point) (point-max))) |
47887 | 1130 selected-coding |
28031
4b1aa29ef006
(mail-send-nonascii): Add a new value 'mime and use
Gerd Moellmann <gerd@gnu.org>
parents:
27548
diff
changeset
|
1131 (setq charset |
88514
18cd065b6b87
(sendmail-send-it): Use :mime-charset, not
Dave Love <fx@gnu.org>
parents:
43054
diff
changeset
|
1132 (coding-system-get selected-coding :mime-charset)) |
102909
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1133 (progn |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1134 (goto-char delimline) |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1135 (insert "MIME-version: 1.0\n" |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1136 "Content-type: text/plain; charset=" |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1137 (symbol-name charset) |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1138 "\nContent-Transfer-Encoding: 8bit\n") |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1139 ;; The character set we will actually use |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1140 ;; should override any specified in the message itself. |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1141 (when where-content-type |
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1142 (goto-char where-content-type) |
111445
56b71cddc9c5
Replace still more end-of-line etc with line-end-position, etc.
Glenn Morris <rgm@gnu.org>
parents:
111429
diff
changeset
|
1143 (delete-region (point-at-bol) |
102909
64294c07cca6
* mail/sendmail.el (sendmail-send-it): Replace any
Richard M. Stallman <rms@gnu.org>
parents:
102587
diff
changeset
|
1144 (progn (forward-line 1) (point))))))) |
5667
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
1145 ;; 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
|
1146 ;; Sun's bug that swallows newlines. |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
1147 (goto-char (1+ delimline)) |
03c03462bca3
(mail-mailer-swallows-blank-line): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5261
diff
changeset
|
1148 (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
|
1149 (newline)) |
13090
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
1150 ;; 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
|
1151 (goto-char (point-min)) |
b9cc587a5d8b
(sendmail-send-it): Handle FCC after all text changes.
Richard M. Stallman <rms@gnu.org>
parents:
13062
diff
changeset
|
1152 (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
|
1153 (progn |
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1154 (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
|
1155 (mail-do-fcc delimline))) |
455 | 1156 (if mail-interactive |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1157 (with-current-buffer errbuf |
455 | 1158 (erase-buffer)))) |
16700
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1159 (goto-char (point-min)) |
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1160 (if (let ((case-fold-search t)) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1161 (or resend-to-addresses |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1162 (re-search-forward "^To:\\|^cc:\\|^bcc:" |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1163 delimline t))) |
23645
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1164 (let* ((default-directory "/") |
47887 | 1165 (coding-system-for-write selected-coding) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49063
diff
changeset
|
1166 (args |
23645
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1167 (append (list (point-min) (point-max) |
38285
b7db38e7d28d
(sendmail-send-it): Look at `sendmail-program'
Gerd Moellmann <gerd@gnu.org>
parents:
36913
diff
changeset
|
1168 program |
23645
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1169 nil errbuf nil "-oi") |
42383
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
1170 (and envelope-from |
4d7337b920e3
(mail-envelope-from): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
42370
diff
changeset
|
1171 (list "-f" envelope-from)) |
110439
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1172 ;; ;; Don't say "from root" if running under su. |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1173 ;; (and (equal (user-real-login-name) "root") |
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1174 ;; (list "-f" (user-login-name))) |
23645
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1175 (and mail-alias-file |
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1176 (list (concat "-oA" mail-alias-file))) |
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1177 (if mail-interactive |
85316
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1178 sendmail-error-reporting-interactive |
a1fff6d65046
(sendmail-error-reporting-interactive)
Sam Steingold <sds@gnu.org>
parents:
84814
diff
changeset
|
1179 sendmail-error-reporting-non-interactive) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1180 ;; Get the addresses from the message |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1181 ;; unless this is a resend. |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1182 ;; 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
|
1183 ;; because we would find the original addresses. |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1184 ;; For a resend, include the specific addresses. |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1185 (or resend-to-addresses |
36913
5474d22888af
(sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents:
36887
diff
changeset
|
1186 '("-t") |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1187 ) |
44861
de1bcec6e403
(mail-use-dsn): New variable to request delivery status notification from MTA.
Richard M. Stallman <rms@gnu.org>
parents:
43683
diff
changeset
|
1188 (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
|
1189 (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
|
1190 mail-use-dsn ","))) |
36913
5474d22888af
(sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents:
36887
diff
changeset
|
1191 ) |
5474d22888af
(sendmail-send-it): Don't parse Resent-*
Gerd Moellmann <gerd@gnu.org>
parents:
36887
diff
changeset
|
1192 ) |
23645
2717722f5c32
(sendmail-send-it): Check for failure.
Karl Heuer <kwzh@gnu.org>
parents:
23581
diff
changeset
|
1193 (exit-value (apply 'call-process-region args))) |
102277
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1194 (cond ((or (null exit-value) (eq 0 exit-value))) |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1195 ((numberp exit-value) |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1196 (error "Sending...failed with exit value %d" exit-value)) |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1197 ((stringp exit-value) |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1198 (error "Sending...terminated by signal: %s" exit-value)) |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1199 (t |
ac468e2eb03e
Tobias C. Rittweiler <tcr at freebits.de> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
101840
diff
changeset
|
1200 (error "SENDMAIL-SEND-IT -- fall through: %S" exit-value)))) |
16700
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1201 (or fcc-was-found |
0ecab43a0f69
(sendmail-send-it): If no recipients, don't run
Richard M. Stallman <rms@gnu.org>
parents:
16634
diff
changeset
|
1202 (error "No recipients"))) |
455 | 1203 (if mail-interactive |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1204 (with-current-buffer errbuf |
455 | 1205 (goto-char (point-min)) |
1206 (while (re-search-forward "\n\n* *" nil t) | |
1207 (replace-match "; ")) | |
1208 (if (not (zerop (buffer-size))) | |
1209 (error "Sending...failed to %s" | |
1210 (buffer-substring (point-min) (point-max))))))) | |
1211 (kill-buffer tembuf) | |
1212 (if (bufferp errbuf) | |
1213 (kill-buffer errbuf))))) | |
1214 | |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1215 (autoload 'rmail-output-to-rmail-buffer "rmailout") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1216 |
455 | 1217 (defun mail-do-fcc (header-end) |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1218 "Find and act on any FCC: headers in the current message before HEADER-END. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1219 If a buffer is visiting the FCC file, append to it before |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1220 offering to save it, if it was modified initially. If this is an |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1221 Rmail buffer, update Rmail as needed. If there is no buffer, |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1222 just append to the file, in Babyl format if necessary." |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1223 (unless (markerp header-end) |
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1224 (error "Value of `header-end' must be a marker")) |
455 | 1225 (let (fcc-list |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1226 (mailbuf (current-buffer)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1227 (time (current-time))) |
455 | 1228 (save-excursion |
1229 (goto-char (point-min)) | |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1230 (let ((case-fold-search t)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1231 (while (re-search-forward "^FCC:[ \t]*" header-end t) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1232 (push (buffer-substring (point) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1233 (progn |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1234 (end-of-line) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1235 (skip-chars-backward " \t") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1236 (point))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1237 fcc-list) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1238 (delete-region (match-beginning 0) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1239 (progn (forward-line 1) (point))))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1240 (with-temp-buffer |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1241 ;; This initial newline is not written out if we create a new |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1242 ;; file (see below). |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1243 (insert "\nFrom " (user-login-name) " " (current-time-string time) "\n") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1244 ;; Insert the time zone before the year. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1245 (forward-char -1) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1246 (forward-word -1) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1247 (require 'mail-utils) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1248 (insert (mail-rfc822-time-zone time) " ") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1249 (goto-char (point-max)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1250 (insert-buffer-substring mailbuf) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1251 ;; Make sure messages are separated. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1252 (goto-char (point-max)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1253 (insert ?\n) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1254 (goto-char 2) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1255 ;; ``Quote'' "^From " as ">From " |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1256 ;; (note that this isn't really quoting, as there is no requirement |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1257 ;; that "^[>]+From " be quoted in the same transparent way.) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1258 (let ((case-fold-search nil)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1259 (while (search-forward "\nFrom " nil t) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1260 (forward-char -5) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1261 (insert ?>))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1262 (dolist (fcc fcc-list) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1263 (let* ((buffer (find-buffer-visiting fcc)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1264 (curbuf (current-buffer)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1265 dont-write-the-file |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1266 buffer-matches-file |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1267 (beg (point-min)) ; the initial blank line |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1268 (end (point-max)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1269 ;; After the ^From line. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1270 (beg2 (save-excursion (goto-char (point-min)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1271 (forward-line 2) (point)))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1272 (if buffer |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1273 ;; File is present in a buffer => append to that buffer. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1274 (with-current-buffer buffer |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1275 (setq buffer-matches-file |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1276 (and (not (buffer-modified-p)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1277 (verify-visited-file-modtime buffer))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1278 (let ((msg (bound-and-true-p rmail-current-message)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1279 (buffer-read-only nil)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1280 ;; If MSG is non-nil, buffer is in Rmail mode. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1281 (if msg |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1282 (let ((buff (generate-new-buffer " *mail-do-fcc"))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1283 (unwind-protect |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1284 (progn |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1285 (with-current-buffer buff |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1286 (insert-buffer-substring curbuf (1+ beg) end)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1287 (rmail-output-to-rmail-buffer buff msg)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1288 (kill-buffer buff))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1289 ;; Output file not in Rmail mode => just insert |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1290 ;; at the end. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1291 (save-restriction |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1292 (widen) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1293 (goto-char (point-max)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1294 (insert-buffer-substring curbuf beg end))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1295 ;; Offer to save the buffer if it was modified |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1296 ;; before we started. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1297 (unless buffer-matches-file |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1298 (if (y-or-n-p (format "Save file %s? " fcc)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1299 (save-buffer)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1300 (setq dont-write-the-file t))))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1301 ;; Append to the file directly, unless we've already taken |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1302 ;; care of it. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1303 (unless dont-write-the-file |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1304 (if (and (file-exists-p fcc) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1305 (mail-file-babyl-p fcc)) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1306 ;; If the file is a Babyl file, convert the message to |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1307 ;; Babyl format. Even though Rmail no longer uses |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1308 ;; Babyl, this code can remain for the time being, on |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1309 ;; the off-chance one FCCs to a Babyl file that has |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1310 ;; not yet been converted to mbox. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1311 (let ((coding-system-for-write |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1312 (or rmail-file-coding-system 'emacs-mule))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1313 (with-temp-buffer |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1314 (insert "\C-l\n0, unseen,,\n*** EOOH ***\nDate: " |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1315 (mail-rfc822-date) "\n") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1316 (insert-buffer-substring curbuf beg2 end) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1317 (insert "\n\C-_") |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1318 (write-region (point-min) (point-max) fcc t))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1319 ;; Ensure there is a blank line between messages, but |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1320 ;; not at the very start of the file. |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1321 (write-region (if (file-exists-p fcc) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1322 (point-min) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1323 (1+ (point-min))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1324 (point-max) fcc t))) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1325 (and buffer (not dont-write-the-file) |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1326 (with-current-buffer buffer |
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1327 (set-visited-file-modtime))))))))) |
455 | 1328 |
1329 (defun mail-sent-via () | |
1330 "Make a Sent-via header line from each To or CC header line." | |
1331 (interactive) | |
1332 (save-excursion | |
1333 ;; 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
|
1334 (let ((end (copy-marker (mail-header-end))) |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1335 (case-fold-search t)) |
455 | 1336 (goto-char (point-min)) |
1337 ;; search for the To: lines and make Sent-via: lines from them | |
1338 ;; search for the next To: line | |
1339 (while (re-search-forward "^\\(to\\|cc\\):" end t) | |
1340 ;; Grab this line plus all its continuations, sans the `to:'. | |
1341 (let ((to-line | |
1342 (buffer-substring (point) | |
1343 (progn | |
1344 (if (re-search-forward "^[^ \t\n]" end t) | |
1345 (backward-char 1) | |
1346 (goto-char end)) | |
1347 (point))))) | |
1348 ;; Insert a copy, with altered header field name. | |
1349 (insert-before-markers "Sent-via:" to-line)))))) | |
1350 | |
1351 (defun mail-to () | |
102557 | 1352 "Move point to end of To field, creating it if necessary." |
455 | 1353 (interactive) |
1354 (expand-abbrev) | |
1355 (mail-position-on-field "To")) | |
1356 | |
1357 (defun mail-subject () | |
102557 | 1358 "Move point to end of Subject field, creating it if necessary." |
455 | 1359 (interactive) |
1360 (expand-abbrev) | |
1361 (mail-position-on-field "Subject")) | |
1362 | |
1363 (defun mail-cc () | |
102557 | 1364 "Move point to end of CC field, creating it if necessary." |
455 | 1365 (interactive) |
1366 (expand-abbrev) | |
1367 (or (mail-position-on-field "cc" t) | |
1368 (progn (mail-position-on-field "to") | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1369 (insert "\nCC: ")))) |
455 | 1370 |
1371 (defun mail-bcc () | |
102557 | 1372 "Move point to end of BCC field, creating it if necessary." |
455 | 1373 (interactive) |
1374 (expand-abbrev) | |
1375 (or (mail-position-on-field "bcc" t) | |
1376 (progn (mail-position-on-field "to") | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1377 (insert "\nBCC: ")))) |
455 | 1378 |
5210
4db0922992a3
(mail-fcc): Take argument and use interactive spec to prompt, rather than
Roland McGrath <roland@gnu.org>
parents:
5097
diff
changeset
|
1379 (defun mail-fcc (folder) |
573 | 1380 "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
|
1381 (interactive "FFolder carbon copy: ") |
573 | 1382 (expand-abbrev) |
1383 (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC. | |
1384 (mail-position-on-field "to")) | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1385 (insert "\nFCC: " folder)) |
573 | 1386 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49063
diff
changeset
|
1387 (defun mail-reply-to () |
102557 | 1388 "Move point to end of Reply-To field, creating it if necessary." |
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
|
1389 (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
|
1390 (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
|
1391 (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
|
1392 |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1393 (defun mail-mail-reply-to () |
102557 | 1394 "Move point to end of Mail-Reply-To field, creating it if necessary." |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1395 (interactive) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1396 (expand-abbrev) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1397 (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
|
1398 (progn (mail-position-on-field "to") |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1399 (insert "\nMail-Reply-To: ")))) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1400 |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1401 (defun mail-mail-followup-to () |
102557 | 1402 "Move point to end of Mail-Followup-To field, creating it if necessary." |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1403 (interactive) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1404 (expand-abbrev) |
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1405 (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
|
1406 (progn (mail-position-on-field "to") |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1407 (insert "\nMail-Followup-To: ")))) |
60691
2333319dc01c
(sendmail-send-it): Reenaable the code
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
1408 |
455 | 1409 (defun mail-position-on-field (field &optional soft) |
1410 (let (end | |
1411 (case-fold-search t)) | |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
1412 (setq end (mail-header-end)) |
455 | 1413 (goto-char (point-min)) |
1414 (if (re-search-forward (concat "^" (regexp-quote field) ":") end t) | |
1415 (progn | |
1416 (re-search-forward "^[^ \t]" nil 'move) | |
1417 (beginning-of-line) | |
1418 (skip-chars-backward "\n") | |
1419 t) | |
1420 (or soft | |
1421 (progn (goto-char end) | |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1422 (insert field ": \n") |
604 | 1423 (skip-chars-backward "\n"))) |
455 | 1424 nil))) |
1425 | |
1426 (defun mail-text () | |
76971
f1b843dae8ab
(mail-text, mail-mode): Revert extant pieces of 1995-05-19 doc
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1427 "Move point to beginning of text field." |
455 | 1428 (interactive) |
11866
77f73856e803
(mail-text): Expand abbrev before moving point.
Karl Heuer <kwzh@gnu.org>
parents:
11857
diff
changeset
|
1429 (expand-abbrev) |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
1430 (goto-char (mail-text-start))) |
455 | 1431 |
39479
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1432 (defun mail-signature (&optional atpoint) |
102557 | 1433 "Sign letter with signature. |
1434 If the variable `mail-signature' is a string, inserts it. | |
1435 If it is t or nil, inserts the contents of the file `mail-signature-file'. | |
1436 Otherwise, evals `mail-signature'. | |
1437 Prefix argument ATPOINT means insert at point rather than the end." | |
1438 (interactive "*P") | |
1439 ;; Test for an unreadable file here, before we delete trailing | |
1440 ;; whitespace, so that we don't modify the buffer needlessly. | |
1441 (if (and (memq mail-signature '(t nil)) | |
1442 (not (file-readable-p mail-signature-file))) | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
104990
diff
changeset
|
1443 (if (called-interactively-p 'interactive) |
102557 | 1444 (message "The signature file `%s' could not be read" |
1445 mail-signature-file)) | |
1446 (save-excursion | |
1447 (unless atpoint | |
1448 (goto-char (point-max)) | |
1449 ;; Delete trailing whitespace and blank lines. | |
1450 (skip-chars-backward " \t\n") | |
1451 (end-of-line) | |
679
046f1a6867e7
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
1452 (delete-region (point) (point-max))) |
102557 | 1453 (cond ((stringp mail-signature) |
1454 (insert mail-signature)) | |
1455 ((memq mail-signature '(t nil)) | |
1456 (insert "\n\n-- \n") | |
1457 (insert-file-contents (expand-file-name mail-signature-file))) | |
1458 (t | |
1459 ;; FIXME add condition-case error handling? | |
1460 (eval mail-signature)))))) | |
455 | 1461 |
1462 (defun mail-fill-yanked-message (&optional justifyp) | |
1463 "Fill the paragraphs of a message yanked into this one. | |
1464 Numeric argument means justify as well." | |
1465 (interactive "P") | |
1466 (save-excursion | |
21920
eeb4e3a385db
(send-mail-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21545
diff
changeset
|
1467 (goto-char (mail-text-start)) |
455 | 1468 (fill-individual-paragraphs (point) |
1469 (point-max) | |
1470 justifyp | |
22747
63b084753ad7
(mail-citation-prefix-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22634
diff
changeset
|
1471 mail-citation-prefix-regexp))) |
455 | 1472 |
18909
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1473 (defun mail-indent-citation () |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
1474 "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
|
1475 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
|
1476 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
|
1477 |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
1478 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
|
1479 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
|
1480 (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
|
1481 (if (null mail-yank-prefix) |
18909
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1482 (indent-rigidly (region-beginning) (region-end) |
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1483 mail-indentation-spaces) |
16761
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1484 (save-excursion |
18909
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1485 (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
|
1486 (goto-char (region-beginning)) |
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1487 (while (< (point) end) |
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1488 (insert mail-yank-prefix) |
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1489 (forward-line 1)))))) |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
1490 |
455 | 1491 (defun mail-yank-original (arg) |
101840
0d6b005df475
(mail-bury-selects-summary, mail-yank-original): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
101395
diff
changeset
|
1492 "Insert the message being replied to, if any (in Rmail). |
14373 | 1493 Puts point after the text and mark before. |
455 | 1494 Normally, indents each nonblank line ARG spaces (default 3). |
1495 However, if `mail-yank-prefix' is non-nil, insert that prefix on each line. | |
1496 | |
1497 Just \\[universal-argument] as argument means don't indent, insert no prefix, | |
1498 and don't delete any header fields." | |
1499 (interactive "P") | |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
1500 (if mail-reply-action |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
1501 (let ((start (point)) |
106891
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1502 (original mail-reply-action) |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1503 (omark (mark t))) |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
1504 (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
|
1505 (setq original (nth 1 original))) |
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
1506 (if (consp original) |
106891
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1507 (progn |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1508 ;; Call yank function, and set the mark if it doesn't. |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1509 (apply (car original) (cdr original)) |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1510 (if (eq omark (mark t)) |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1511 (push-mark (point)))) |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1512 ;; If the original message is in another window in the same |
bcf8645ca619
Fix handling of arbitrary YANK-ACTION functions from compose-mail.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
1513 ;; frame, delete that window to save space. |
16634
a076177cfac7
(mail-reply-action): Renamed from mail-reply-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16453
diff
changeset
|
1514 (delete-windows-on original t) |
64807
ece90261ed42
(mail-yank-original): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
1515 (with-no-warnings |
ece90261ed42
(mail-yank-original): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
1516 ;; We really want this to set mark. |
104181
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1517 (insert-buffer original) |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1518 ;; If they yank the original text, the encoding of the |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1519 ;; original message is a better default than |
104664
50fdf250e26b
* mh-e/mh-comp.el (mh-send-letter):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104181
diff
changeset
|
1520 ;; the default buffer-file-coding-system. |
104181
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1521 (and (coding-system-equal |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1522 (default-value 'buffer-file-coding-system) |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1523 buffer-file-coding-system) |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1524 (setq buffer-file-coding-system |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1525 (coding-system-change-text-conversion |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1526 buffer-file-coding-system |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1527 (coding-system-base |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1528 (with-current-buffer original |
09b0d63f50d1
(mail-yank-original): Set buffer-file-coding-system from the one used
Eli Zaretskii <eliz@gnu.org>
parents:
102909
diff
changeset
|
1529 buffer-file-coding-system)))))) |
23976
12c74d5eff80
(mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
23845
diff
changeset
|
1530 (set-text-properties (point) (mark t) nil)) |
455 | 1531 (if (consp arg) |
1532 nil | |
3424
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
1533 (goto-char start) |
7ccd5b60891d
(mail-signature): Do not insert a line with `--'.
Richard M. Stallman <rms@gnu.org>
parents:
3340
diff
changeset
|
1534 (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
|
1535 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
|
1536 ;; 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
|
1537 ;; 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
|
1538 (mark-even-if-inactive t)) |
39479
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1539 (cond (mail-citation-hook |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1540 ;; Bind mail-citation-header to the inserted |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1541 ;; message's header. |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1542 (let ((mail-citation-header |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1543 (buffer-substring-no-properties |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1544 start |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1545 (save-excursion |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1546 (save-restriction |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1547 (narrow-to-region start (point-max)) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1548 (goto-char start) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1549 (rfc822-goto-eoh) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1550 (point)))))) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1551 (run-hooks 'mail-citation-hook))) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1552 (mail-yank-hooks |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1553 (run-hooks 'mail-yank-hooks)) |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1554 (t |
eae96dc1dbb3
(send-mail-function): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
39396
diff
changeset
|
1555 (mail-indent-citation))))) |
2858
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
1556 ;; 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
|
1557 ;; 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
|
1558 ;; 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
|
1559 (goto-char (prog1 (mark t) |
ef942eda3523
(mail-yank-original): In Transient Mark mode,
Richard M. Stallman <rms@gnu.org>
parents:
2852
diff
changeset
|
1560 (set-marker (mark-marker) (point) (current-buffer)))) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1561 (if (not (eolp)) (insert ?\n))))) |
455 | 1562 |
1563 (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
|
1564 (if (< end start) |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1565 (let (temp) |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1566 (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
|
1567 (if mail-yank-ignored-headers |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1568 (save-excursion |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1569 (goto-char start) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1570 (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
|
1571 (save-restriction |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1572 (narrow-to-region start (point)) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1573 (goto-char start) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1574 (while (let ((case-fold-search t)) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1575 (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
|
1576 (beginning-of-line) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1577 (delete-region (point) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1578 (progn (re-search-forward "\n[^ \t]") |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1579 (forward-char -1) |
391ce1139d50
(mail-yank-clear-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
13398
diff
changeset
|
1580 (point))))))))) |
16761
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1581 |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1582 (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
|
1583 "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
|
1584 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
|
1585 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
|
1586 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
|
1587 |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1588 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
|
1589 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
|
1590 (interactive "P") |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1591 (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
|
1592 (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
|
1593 (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
|
1594 (or (mark t) |
12c74d5eff80
(mail-mode): Eliminate ambiguous match from paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
23845
diff
changeset
|
1595 (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
|
1596 (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
|
1597 (start (point)) |
df59ef00f1e4
(mail-yank-region): Bind mark-even-if-inactive to t.
Richard M. Stallman <rms@gnu.org>
parents:
22839
diff
changeset
|
1598 ;; 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
|
1599 ;; 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
|
1600 (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
|
1601 ;; Insert the citation text. |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1602 (insert (with-current-buffer buffer |
22990
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1603 (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
|
1604 (push-mark start) |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1605 ;; 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
|
1606 (if (consp arg) |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1607 nil |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1608 (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
|
1609 mail-indentation-spaces))) |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1610 (if mail-citation-hook |
97965
0226898fa3f5
(mail-yank-region): Fix comment.
John Paul Wallington <jpw@pobox.com>
parents:
95625
diff
changeset
|
1611 ;; Bind mail-citation-header to the original message's header. |
22990
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1612 (let ((mail-citation-header |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1613 (with-current-buffer buffer |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1614 (buffer-substring-no-properties |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1615 (point-min) |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1616 (save-excursion |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1617 (goto-char (point-min)) |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1618 (rfc822-goto-eoh) |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1619 (point)))))) |
491a97002c82
(mail-citation-header): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22865
diff
changeset
|
1620 (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
|
1621 (if mail-yank-hooks |
20f01fd704f7
(mail-yank-clear-headers): Handle case of end < start.
Richard M. Stallman <rms@gnu.org>
parents:
16760
diff
changeset
|
1622 (run-hooks 'mail-yank-hooks) |
18909
e8c770e7f81d
(mail-indent-citation): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18871
diff
changeset
|
1623 (mail-indent-citation)))))))) |
49033
4a660dffff16
(mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents:
48526
diff
changeset
|
1624 |
4a660dffff16
(mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents:
48526
diff
changeset
|
1625 (defun mail-split-line () |
4a660dffff16
(mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents:
48526
diff
changeset
|
1626 "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
|
1627 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
|
1628 (interactive "*") |
4a660dffff16
(mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents:
48526
diff
changeset
|
1629 (split-line mail-yank-prefix)) |
4a660dffff16
(mail-split-line): New function.
Kim F. Storm <storm@cua.dk>
parents:
48526
diff
changeset
|
1630 |
455 | 1631 |
17512
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1632 (defun mail-attach-file (&optional file) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1633 "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
|
1634 (interactive "fAttach file: ") |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1635 (save-excursion |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1636 (goto-char (point-max)) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1637 (or (bolp) (newline)) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1638 (newline) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1639 (let ((start (point)) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1640 middle) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1641 (insert (format "===File %s===" file)) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1642 (insert-char ?= (max 0 (- 60 (current-column)))) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1643 (newline) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1644 (setq middle (point)) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
66965
diff
changeset
|
1645 (insert "============================================================\n") |
17512
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1646 (push-mark) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1647 (goto-char middle) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1648 (insert-file-contents file) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1649 (or (bolp) (newline)) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1650 (goto-char start)))) |
50ada9a65e3d
(mail-attach-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
17488
diff
changeset
|
1651 |
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
|
1652 ;; 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
|
1653 ;; 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
|
1654 |
105798
0ad1fc06bfc8
* puresize.h (BASE_PURESIZE): Increase to 1470000.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105765
diff
changeset
|
1655 ;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*mail*")) |
110382
987c8fd5107f
* mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
Chong Yidong <cyd@stupidchicken.com>
parents:
107688
diff
changeset
|
1656 ;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*unsent mail*")) |
455 | 1657 |
1658 ;;;###autoload | |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
1659 (defun mail (&optional noerase to subject in-reply-to cc replybuffer |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
1660 actions return-action) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1661 "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
|
1662 When this function returns, the buffer `*mail*' is selected. |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1663 The value is t if the message was newly initialized; otherwise, nil. |
455 | 1664 |
13116
61c560010274
(mail-signature-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13090
diff
changeset
|
1665 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
|
1666 end; see the variable `mail-signature'. |
455 | 1667 |
1668 \\<mail-mode-map> | |
1669 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
1670 | |
1671 Various special commands starting with C-c are available in sendmail mode | |
1672 to move to message header fields: | |
1673 \\{mail-mode-map} | |
1674 | |
1675 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
1676 when the message is initialized. | |
1677 | |
1678 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
1679 a Reply-to: field with that address is inserted. | |
1680 | |
1681 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
1682 is inserted. | |
1683 | |
12564 | 1684 The normal hook `mail-setup-hook' is run after the message is |
1685 initialized. It can add more default fields to the message. | |
455 | 1686 |
65479
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1687 The first argument, NOERASE, determines what to do when there is |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1688 an existing modified `*mail*' buffer. If NOERASE is nil, the |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1689 existing mail buffer is used, and the user is prompted whether to |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1690 keep the old contents or to erase them. If NOERASE has the value |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1691 `new', a new mail buffer will be created instead of using the old |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1692 one. Any other non-nil value means to always select the old |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1693 buffer without erasing the contents. |
9160 | 1694 |
1695 The second through fifth arguments, | |
1696 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
455 | 1697 the initial contents of those header fields. |
1698 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
|
1699 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
|
1700 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
|
1701 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
|
1702 Or it can be nil, if not replying to anything. |
455 | 1703 The seventh argument ACTIONS is a list of actions to take |
1704 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
1705 when the message is sent, we apply FUNCTION to ARGS. | |
1706 This is how Rmail arranges to mark messages `answered'." | |
1707 (interactive "P") | |
65479
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1708 (if (eq noerase 'new) |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1709 (pop-to-buffer (generate-new-buffer "*mail*")) |
65482
b7611654bd5e
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65479
diff
changeset
|
1710 (and noerase |
b7611654bd5e
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65479
diff
changeset
|
1711 (not (get-buffer "*mail*")) |
b7611654bd5e
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65479
diff
changeset
|
1712 (setq noerase nil)) |
65479
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1713 (pop-to-buffer "*mail*")) |
2cbd801671c4
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65395
diff
changeset
|
1714 |
45423
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1715 ;; 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
|
1716 (let ((dir (expand-file-name |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1717 (file-name-as-directory mail-default-directory)))) |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1718 (if (file-exists-p dir) |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1719 (setq default-directory dir))) |
22634
0a83ee212349
(mail): Avoid changing auto-save file name.
Richard M. Stallman <rms@gnu.org>
parents:
22410
diff
changeset
|
1720 ;; 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
|
1721 (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
|
1722 (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
|
1723 (auto-save-mode auto-save-default)) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1724 (mail-mode) |
8144 | 1725 ;; Disconnect the buffer from its visited file |
1726 ;; (in case the user has actually visited a file *mail*). | |
110439
c1e130042fa1
* lisp/mail/sendmail.el: Fix commenting convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110382
diff
changeset
|
1727 ;; (set-visited-file-name nil) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1728 (let (initialized) |
65482
b7611654bd5e
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65479
diff
changeset
|
1729 (and (not (and noerase |
b7611654bd5e
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65479
diff
changeset
|
1730 (not (eq noerase 'new)))) |
18955
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1731 (if buffer-file-name |
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1732 (if (buffer-modified-p) |
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1733 (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
|
1734 (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
|
1735 (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
|
1736 t) |
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1737 (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
|
1738 (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
|
1739 t)) |
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1740 ;; 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
|
1741 (if (buffer-modified-p) |
9612d2ae3960
(mail): Improve confirmation questions for file-visiting mail buffers.
Richard M. Stallman <rms@gnu.org>
parents:
18909
diff
changeset
|
1742 (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
|
1743 t)) |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1744 (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
|
1745 (erase-buffer) |
112199
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
1746 (mail-setup to subject in-reply-to cc replybuffer actions |
6c6130ccdefd
New arg RETURN-ACTION for compose-mail, and related functions.
Chong Yidong <cyd@stupidchicken.com>
parents:
111961
diff
changeset
|
1747 return-action) |
13824
88384034a5b4
(mail-setup): Put text property on mail-header-separator.
Richard M. Stallman <rms@gnu.org>
parents:
13738
diff
changeset
|
1748 (setq initialized t))) |
898
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1749 (if (and buffer-auto-save-file-name |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1750 (file-exists-p buffer-auto-save-file-name)) |
d3e136526f22
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1751 (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
|
1752 initialized)) |
455 | 1753 |
86503
2c08ad76fc1f
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86440
diff
changeset
|
1754 (declare-function dired-view-file "dired" ()) |
2c08ad76fc1f
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86440
diff
changeset
|
1755 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep)) |
2c08ad76fc1f
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86440
diff
changeset
|
1756 |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1757 (defun mail-recover-1 () |
42522
bf0d83587878
(mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
42501
diff
changeset
|
1758 "Pop up a list of auto-saved draft messages so you can recover one of them." |
455 | 1759 (interactive) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1760 (let ((file-name (make-auto-save-file-name)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1761 (ls-lisp-support-shell-wildcards t) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1762 non-random-len wildcard) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1763 ;; 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
|
1764 ;; create a wildcard which matches possible candidates. |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1765 ;; 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
|
1766 ;; "#<RANDOM-STUFF>#" to the buffer name, where RANDOM-STUFF |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1767 ;; is the result of (make-temp-name ""). |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1768 (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
|
1769 (- (length file-name) (length (make-temp-name "")) 1)) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1770 (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
|
1771 (if (null (file-expand-wildcards wildcard)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1772 (message "There are no auto-saved drafts to recover") |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1773 ;; 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
|
1774 ;; 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
|
1775 ;; 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
|
1776 ;; file instead. |
111958
707b726cfaed
Remove some dired.el autoload cookies on defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
111741
diff
changeset
|
1777 ;; Require dired so that dired-trivial-filenames does not get |
707b726cfaed
Remove some dired.el autoload cookies on defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
111741
diff
changeset
|
1778 ;; unbound on exit from the let. |
707b726cfaed
Remove some dired.el autoload cookies on defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
111741
diff
changeset
|
1779 (require 'dired) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1780 (let ((dired-trivial-filenames t)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1781 (dired-other-window wildcard (concat dired-listing-switches "t"))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1782 (rename-buffer "*Auto-saved Drafts*" t) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1783 (save-excursion |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1784 (goto-char (point-min)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1785 (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
|
1786 (let ((inhibit-read-only t)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1787 ;; 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
|
1788 ;; won't highlight the first character. |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1789 (insert "\ |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1790 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
|
1791 to recover text of message whose composition was interrupted. |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1792 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
|
1793 |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1794 You can also delete some of these files; |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1795 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
|
1796 |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1797 List of possible auto-save files for recovery: |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1798 |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1799 ")))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1800 (use-local-map |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1801 (let ((map (make-sparse-keymap))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1802 (set-keymap-parent map (current-local-map)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1803 map)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1804 (define-key (current-local-map) "v" |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1805 (lambda () |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1806 (interactive) |
88657
df76808e99c0
(mail-recover-1, mail-recover): Use utf-8-emacs
Dave Love <fx@gnu.org>
parents:
88514
diff
changeset
|
1807 (let ((coding-system-for-read 'utf-8-emacs-unix)) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1808 (dired-view-file)))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1809 (define-key (current-local-map) "\C-c\C-c" |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1810 (lambda () |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1811 (interactive) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1812 (let ((fname (dired-get-filename)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1813 ;; Auto-saved files are written in the internal |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1814 ;; representation, so they should be read accordingly. |
88657
df76808e99c0
(mail-recover-1, mail-recover): Use utf-8-emacs
Dave Love <fx@gnu.org>
parents:
88514
diff
changeset
|
1815 (coding-system-for-read 'utf-8-emacs-unix)) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1816 (switch-to-buffer-other-window "*mail*") |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1817 (let ((buffer-read-only nil)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1818 (erase-buffer) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1819 (insert-file-contents fname nil) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1820 ;; insert-file-contents will set buffer-file-coding-system |
88657
df76808e99c0
(mail-recover-1, mail-recover): Use utf-8-emacs
Dave Love <fx@gnu.org>
parents:
88514
diff
changeset
|
1821 ;; to utf-8-emacs, which is probably not what they want to |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1822 ;; 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
|
1823 ;; 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
|
1824 ;; crashed. We therefore reset buffer-file-coding-system |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1825 ;; 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
|
1826 ;; 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
|
1827 ;; encoding when they send the message. |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1828 (setq buffer-file-coding-system |
104664
50fdf250e26b
* mh-e/mh-comp.el (mh-send-letter):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104181
diff
changeset
|
1829 (default-value 'buffer-file-coding-system))))))))) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1830 |
86440
4aedd218aad1
* mail/mspools.el (rmail-get-new-mail):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85316
diff
changeset
|
1831 (declare-function dired-move-to-filename "dired" (&optional raise-error eol)) |
4aedd218aad1
* mail/mspools.el (rmail-get-new-mail):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85316
diff
changeset
|
1832 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep)) |
4aedd218aad1
* mail/mspools.el (rmail-get-new-mail):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85316
diff
changeset
|
1833 (declare-function dired-view-file "dired" ()) |
4aedd218aad1
* mail/mspools.el (rmail-get-new-mail):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85316
diff
changeset
|
1834 |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1835 (defun mail-recover () |
42522
bf0d83587878
(mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
42501
diff
changeset
|
1836 "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
|
1837 |
bf0d83587878
(mail-recover-1, mail-recover): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
42501
diff
changeset
|
1838 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
|
1839 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
|
1840 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
|
1841 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
|
1842 (interactive) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1843 ;; In case they invoke us from some random buffer... |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1844 (switch-to-buffer "*mail*") |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1845 ;; 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
|
1846 ;; drafts will be found. |
45423
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1847 (let ((dir (expand-file-name |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1848 (file-name-as-directory mail-default-directory)))) |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1849 (if (file-exists-p dir) |
9bee1f5d919f
(mail-recover-1): Remove (debug).
Markus Rost <rost@math.uni-bielefeld.de>
parents:
45255
diff
changeset
|
1850 (setq default-directory dir))) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1851 (or (eq major-mode 'mail-mode) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1852 (mail-mode)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1853 (let ((file-name buffer-auto-save-file-name)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1854 (cond ((and file-name (file-exists-p file-name)) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1855 (let ((dispbuf |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1856 ;; This used to invoke `ls' via call-process, but |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1857 ;; dired-noselect is more portable to systems where |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1858 ;; `ls' is not a standard program (it will use |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1859 ;; ls-lisp instead). |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1860 (dired-noselect file-name |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1861 (concat dired-listing-switches "t")))) |
43683
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1862 (save-selected-window |
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1863 (select-window (display-buffer dispbuf t)) |
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1864 (goto-char (point-min)) |
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1865 (forward-line 2) |
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1866 (dired-move-to-filename) |
fc8f970acda0
(mail-recover-1): Increase non-random-len
Richard M. Stallman <rms@gnu.org>
parents:
43054
diff
changeset
|
1867 (setq dispbuf (rename-buffer "*Directory*" t))) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1868 (if (not (yes-or-no-p |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1869 (format "Recover mail draft from auto save file %s? " |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1870 file-name))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1871 (error "mail-recover cancelled") |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1872 (let ((buffer-read-only nil) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1873 (buffer-coding buffer-file-coding-system) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1874 ;; Auto-save files are written in internal |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1875 ;; representation of non-ASCII characters. |
88657
df76808e99c0
(mail-recover-1, mail-recover): Use utf-8-emacs
Dave Love <fx@gnu.org>
parents:
88514
diff
changeset
|
1876 (coding-system-for-read 'utf-8-emacs-unix)) |
42501
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1877 (erase-buffer) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1878 (insert-file-contents file-name nil) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1879 (setq buffer-file-coding-system buffer-coding))))) |
0ae15950ed66
(mail-recover-1): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42383
diff
changeset
|
1880 (t (mail-recover-1))))) |
455 | 1881 |
1882 ;;;###autoload | |
1883 (defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions) | |
1884 "Like `mail' command, but display mail buffer in another window." | |
1885 (interactive "P") | |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1886 (let ((pop-up-windows t) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1887 (special-display-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1888 (special-display-regexps nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1889 (same-window-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1890 (same-window-regexps nil)) |
455 | 1891 (pop-to-buffer "*mail*")) |
1892 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
1893 | |
1894 ;;;###autoload | |
779 | 1895 (defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) |
1896 "Like `mail' command, but display mail buffer in another frame." | |
455 | 1897 (interactive "P") |
11120
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1898 (let ((pop-up-frames t) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1899 (special-display-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1900 (special-display-regexps nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1901 (same-window-buffer-names nil) |
150ac5a4a1fa
(mail): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10894
diff
changeset
|
1902 (same-window-regexps nil)) |
455 | 1903 (pop-to-buffer "*mail*")) |
1904 (mail noerase to subject in-reply-to cc replybuffer sendactions)) | |
1905 | |
67322
505d047aa503
Remove unnecessary leading-star in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67213
diff
changeset
|
1906 ;; Do not add anything but external entries on this page. |
584 | 1907 |
1908 (provide 'sendmail) | |
1909 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
604
diff
changeset
|
1910 ;;; sendmail.el ends here |