Mercurial > emacs
annotate lisp/gnus/message.el @ 34497:61a2e6e5ca5f
(Fset_window_point): Declare.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 12 Dec 2000 18:50:49 +0000 |
parents | 072ecdc5d391 |
children | f04f551e94ce |
rev | line source |
---|---|
33375
d7d4bd9d131c
(message-mode) <adaptive-fill-regexp>:
Dave Love <fx@gnu.org>
parents:
33342
diff
changeset
|
1 ;;; message.el --- composing mail and news messages -*- coding: iso-latin-1 -*- |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; Free Software Foundation, Inc. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 6 ;; Keywords: mail, news |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; This mode provides mail-sending facilities from within Emacs. It | |
28 ;; consists mainly of large chunks of code from the sendmail.el, | |
29 ;; gnus-msg.el and rnewspost.el files. | |
30 | |
31 ;;; Code: | |
32 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
33 (eval-when-compile |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
34 (require 'cl) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
35 (defvar gnus-list-identifiers)) ; gnus-sum is required where necessary |
17493 | 36 (require 'mailheader) |
37 (require 'nnheader) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
38 ;; This is apparently necessary even though things are autoloaded: |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
39 (if (featurep 'xemacs) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
40 (require 'mail-abbrevs)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
41 (require 'mail-parse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
42 (require 'mml) |
17493 | 43 |
44 (defgroup message '((user-mail-address custom-variable) | |
45 (user-full-name custom-variable)) | |
46 "Mail and news message composing." | |
47 :link '(custom-manual "(message)Top") | |
48 :group 'mail | |
49 :group 'news) | |
50 | |
51 (put 'user-mail-address 'custom-type 'string) | |
52 (put 'user-full-name 'custom-type 'string) | |
53 | |
54 (defgroup message-various nil | |
55 "Various Message Variables" | |
56 :link '(custom-manual "(message)Various Message Variables") | |
57 :group 'message) | |
58 | |
59 (defgroup message-buffers nil | |
60 "Message Buffers" | |
61 :link '(custom-manual "(message)Message Buffers") | |
62 :group 'message) | |
63 | |
64 (defgroup message-sending nil | |
65 "Message Sending" | |
66 :link '(custom-manual "(message)Sending Variables") | |
67 :group 'message) | |
68 | |
69 (defgroup message-interface nil | |
70 "Message Interface" | |
71 :link '(custom-manual "(message)Interface") | |
72 :group 'message) | |
73 | |
74 (defgroup message-forwarding nil | |
75 "Message Forwarding" | |
76 :link '(custom-manual "(message)Forwarding") | |
77 :group 'message-interface) | |
78 | |
79 (defgroup message-insertion nil | |
80 "Message Insertion" | |
81 :link '(custom-manual "(message)Insertion") | |
82 :group 'message) | |
83 | |
84 (defgroup message-headers nil | |
85 "Message Headers" | |
86 :link '(custom-manual "(message)Message Headers") | |
87 :group 'message) | |
88 | |
89 (defgroup message-news nil | |
90 "Composing News Messages" | |
91 :group 'message) | |
92 | |
93 (defgroup message-mail nil | |
94 "Composing Mail Messages" | |
95 :group 'message) | |
96 | |
97 (defgroup message-faces nil | |
98 "Faces used for message composing." | |
99 :group 'message | |
100 :group 'faces) | |
101 | |
102 (defcustom message-directory "~/Mail/" | |
103 "*Directory from which all other mail file variables are derived." | |
104 :group 'message-various | |
105 :type 'directory) | |
106 | |
107 (defcustom message-max-buffers 10 | |
108 "*How many buffers to keep before starting to kill them off." | |
109 :group 'message-buffers | |
110 :type 'integer) | |
111 | |
112 (defcustom message-send-rename-function nil | |
113 "Function called to rename the buffer after sending it." | |
114 :group 'message-buffers | |
115 :type 'function) | |
116 | |
117 (defcustom message-fcc-handler-function 'message-output | |
118 "*A function called to save outgoing articles. | |
119 This function will be called with the name of the file to store the | |
120 article in. The default function is `message-output' which saves in Unix | |
121 mailbox format." | |
122 :type '(radio (function-item message-output) | |
123 (function :tag "Other")) | |
124 :group 'message-sending) | |
125 | |
126 (defcustom message-courtesy-message | |
127 "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n" | |
128 "*This is inserted at the start of a mailed copy of a posted message. | |
129 If the string contains the format spec \"%s\", the Newsgroups | |
130 the article has been posted to will be inserted there. | |
131 If this variable is nil, no such courtesy message will be added." | |
132 :group 'message-sending | |
133 :type 'string) | |
134 | |
135 (defcustom message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" | |
136 "*Regexp that matches headers to be removed in resent bounced mail." | |
137 :group 'message-interface | |
138 :type 'regexp) | |
139 | |
140 ;;;###autoload | |
141 (defcustom message-from-style 'default | |
142 "*Specifies how \"From\" headers look. | |
143 | |
144 If `nil', they contain just the return address like: | |
145 king@grassland.com | |
146 If `parens', they look like: | |
147 king@grassland.com (Elvis Parsley) | |
148 If `angles', they look like: | |
149 Elvis Parsley <king@grassland.com> | |
150 | |
151 Otherwise, most addresses look like `angles', but they look like | |
152 `parens' if `angles' would need quoting and `parens' would not." | |
153 :type '(choice (const :tag "simple" nil) | |
154 (const parens) | |
155 (const angles) | |
156 (const default)) | |
157 :group 'message-headers) | |
158 | |
159 (defcustom message-syntax-checks nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
160 ;; Guess this one shouldn't be easy to customize... |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
161 "*Controls what syntax checks should not be performed on outgoing posts. |
17493 | 162 To disable checking of long signatures, for instance, add |
163 `(signature . disabled)' to this list. | |
164 | |
165 Don't touch this variable unless you really know what you're doing. | |
166 | |
167 Checks include subject-cmsg multiple-headers sendsys message-id from | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
168 long-lines control-chars size new-text quoting-style |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
169 redirected-followup signature approved sender empty empty-headers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
170 message-id from subject shorten-followup-to existing-newsgroups |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
171 buffer-file-name unchanged newsgroups." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
172 :group 'message-news |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
173 :type '(repeat sexp)) |
17493 | 174 |
175 (defcustom message-required-news-headers | |
176 '(From Newsgroups Subject Date Message-ID | |
177 (optional . Organization) Lines | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
178 (optional . User-Agent)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
179 "*Headers to be generated or prompted for when posting an article. |
17493 | 180 RFC977 and RFC1036 require From, Date, Newsgroups, Subject, |
181 Message-ID. Organization, Lines, In-Reply-To, Expires, and | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
182 User-Agent are optional. If don't you want message to insert some |
17493 | 183 header, remove it from this list." |
184 :group 'message-news | |
185 :group 'message-headers | |
186 :type '(repeat sexp)) | |
187 | |
188 (defcustom message-required-mail-headers | |
189 '(From Subject Date (optional . In-Reply-To) Message-ID Lines | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
190 (optional . User-Agent)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
191 "*Headers to be generated or prompted for when mailing a message. |
17493 | 192 RFC822 required that From, Date, To, Subject and Message-ID be |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
193 included. Organization, Lines and User-Agent are optional." |
17493 | 194 :group 'message-mail |
195 :group 'message-headers | |
196 :type '(repeat sexp)) | |
197 | |
198 (defcustom message-deletable-headers '(Message-ID Date Lines) | |
199 "Headers to be deleted if they already exist and were generated by message previously." | |
200 :group 'message-headers | |
201 :type 'sexp) | |
202 | |
203 (defcustom message-ignored-news-headers | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
204 "^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:" |
17493 | 205 "*Regexp of headers to be removed unconditionally before posting." |
206 :group 'message-news | |
207 :group 'message-headers | |
208 :type 'regexp) | |
209 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
210 (defcustom message-ignored-mail-headers "^[GF]cc:\\|^Resent-Fcc:\\|^Xref:" |
17493 | 211 "*Regexp of headers to be removed unconditionally before mailing." |
212 :group 'message-mail | |
213 :group 'message-headers | |
214 :type 'regexp) | |
215 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
216 (defcustom message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|^X-Trace:\\|^X-Complaints-To:\\|Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|^X-Complaints-To:" |
17493 | 217 "*Header lines matching this regexp will be deleted before posting. |
218 It's best to delete old Path and Date headers before posting to avoid | |
219 any confusion." | |
220 :group 'message-interface | |
221 :type 'regexp) | |
222 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
223 (defcustom message-subject-re-regexp "^[ \t]*\\([Rr][Ee]:[ \t]*\\)*[ \t]*" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
224 "*Regexp matching \"Re: \" in the subject line." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
225 :group 'message-various |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
226 :type 'regexp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
227 |
17493 | 228 ;;;###autoload |
229 (defcustom message-signature-separator "^-- *$" | |
230 "Regexp matching the signature separator." | |
231 :type 'regexp | |
232 :group 'message-various) | |
233 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
234 (defcustom message-elide-ellipsis "\n[...]\n\n" |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
235 "*The string which is inserted for elided text." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
236 :type 'string |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
237 :group 'message-various) |
17493 | 238 |
239 (defcustom message-interactive nil | |
240 "Non-nil means when sending a message wait for and display errors. | |
241 nil means let mailer mail back a message to report errors." | |
242 :group 'message-sending | |
243 :group 'message-mail | |
244 :type 'boolean) | |
245 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
246 (defcustom message-generate-new-buffers 'unique |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
247 "*Non-nil means that a new message buffer will be created whenever `message-setup' is called. |
17493 | 248 If this is a function, call that function with three parameters: The type, |
249 the to address and the group name. (Any of these may be nil.) The function | |
250 should return the new buffer name." | |
251 :group 'message-buffers | |
252 :type '(choice (const :tag "off" nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
253 (const :tag "unique" unique) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
254 (const :tag "unsent" unsent) |
17493 | 255 (function fun))) |
256 | |
257 (defcustom message-kill-buffer-on-exit nil | |
258 "*Non-nil means that the message buffer will be killed after sending a message." | |
259 :group 'message-buffers | |
260 :type 'boolean) | |
261 | |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
262 (eval-when-compile |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
263 (defvar gnus-local-organization)) |
17493 | 264 (defcustom message-user-organization |
265 (or (and (boundp 'gnus-local-organization) | |
266 (stringp gnus-local-organization) | |
267 gnus-local-organization) | |
268 (getenv "ORGANIZATION") | |
269 t) | |
270 "*String to be used as an Organization header. | |
271 If t, use `message-user-organization-file'." | |
272 :group 'message-headers | |
273 :type '(choice string | |
274 (const :tag "consult file" t))) | |
275 | |
276 ;;;###autoload | |
277 (defcustom message-user-organization-file "/usr/lib/news/organization" | |
278 "*Local news organization file." | |
279 :type 'file | |
280 :group 'message-headers) | |
281 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
282 (defcustom message-make-forward-subject-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
283 'message-forward-subject-author-subject |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
284 "*A list of functions that are called to generate a subject header for forwarded messages. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
285 The subject generated by the previous function is passed into each |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
286 successive function. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
287 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
288 The provided functions are: |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
289 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
290 * message-forward-subject-author-subject (Source of article (author or |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
291 newsgroup)), in brackets followed by the subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
292 * message-forward-subject-fwd (Subject of article with 'Fwd:' prepended |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
293 to it." |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
294 :group 'message-forwarding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
295 :type '(radio (function-item message-forward-subject-author-subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
296 (function-item message-forward-subject-fwd))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
297 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
298 (defcustom message-forward-as-mime t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
299 "*If non-nil, forward messages as an inline/rfc822 MIME section. Otherwise, directly inline the old message in the forwarded message." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
300 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
301 :group 'message-forwarding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
302 :type 'boolean) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
303 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
304 (defcustom message-forward-show-mml t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
305 "*If non-nil, forward messages are shown as mml. Otherwise, forward messages are unchanged." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
306 :group 'message-forwarding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
307 :type 'boolean) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
308 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
309 (defcustom message-forward-before-signature t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
310 "*If non-nil, put forwarded message before signature, else after." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
311 :group 'message-forwarding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
312 :type 'boolean) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
313 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
314 (defcustom message-wash-forwarded-subjects nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
315 "*If non-nil, try to remove as much old cruft as possible from the subject of messages before generating the new subject of a forward." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
316 :group 'message-forwarding |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
317 :type 'boolean) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
318 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
319 (defcustom message-ignored-resent-headers "^Return-receipt\\|^X-Gnus\\|^Gnus-Warning:" |
17493 | 320 "*All headers that match this regexp will be deleted when resending a message." |
321 :group 'message-interface | |
322 :type 'regexp) | |
323 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
324 (defcustom message-forward-ignored-headers "^Content-Transfer-Encoding:\\|^X-Gnus" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
325 "*All headers that match this regexp will be deleted when forwarding a message." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
326 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
327 :group 'message-forwarding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
328 :type '(choice (const :tag "None" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
329 regexp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
330 |
17493 | 331 (defcustom message-ignored-cited-headers "." |
332 "*Delete these headers from the messages you yank." | |
333 :group 'message-insertion | |
334 :type 'regexp) | |
335 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
336 (defcustom message-cancel-message "I am canceling my own article.\n" |
17493 | 337 "Message to be inserted in the cancel message." |
338 :group 'message-interface | |
339 :type 'string) | |
340 | |
341 ;; Useful to set in site-init.el | |
342 ;;;###autoload | |
343 (defcustom message-send-mail-function 'message-send-mail-with-sendmail | |
344 "Function to call to send the current buffer as mail. | |
345 The headers should be delimited by a line whose contents match the | |
346 variable `mail-header-separator'. | |
347 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
348 Valid values include `message-send-mail-with-sendmail' (the default), |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
349 `message-send-mail-with-mh', `message-send-mail-with-qmail' and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
350 `smtpmail-send-it'." |
17493 | 351 :type '(radio (function-item message-send-mail-with-sendmail) |
352 (function-item message-send-mail-with-mh) | |
353 (function-item message-send-mail-with-qmail) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
354 (function-item smtpmail-send-it) |
17493 | 355 (function :tag "Other")) |
356 :group 'message-sending | |
357 :group 'message-mail) | |
358 | |
359 (defcustom message-send-news-function 'message-send-news | |
360 "Function to call to send the current buffer as news. | |
361 The headers should be delimited by a line whose contents match the | |
362 variable `mail-header-separator'." | |
363 :group 'message-sending | |
364 :group 'message-news | |
365 :type 'function) | |
366 | |
367 (defcustom message-reply-to-function nil | |
368 "Function that should return a list of headers. | |
369 This function should pick out addresses from the To, Cc, and From headers | |
370 and respond with new To and Cc headers." | |
371 :group 'message-interface | |
372 :type 'function) | |
373 | |
374 (defcustom message-wide-reply-to-function nil | |
375 "Function that should return a list of headers. | |
376 This function should pick out addresses from the To, Cc, and From headers | |
377 and respond with new To and Cc headers." | |
378 :group 'message-interface | |
379 :type 'function) | |
380 | |
381 (defcustom message-followup-to-function nil | |
382 "Function that should return a list of headers. | |
383 This function should pick out addresses from the To, Cc, and From headers | |
384 and respond with new To and Cc headers." | |
385 :group 'message-interface | |
386 :type 'function) | |
387 | |
388 (defcustom message-use-followup-to 'ask | |
389 "*Specifies what to do with Followup-To header. | |
390 If nil, always ignore the header. If it is t, use its value, but | |
391 query before using the \"poster\" value. If it is the symbol `ask', | |
392 always query the user whether to use the value. If it is the symbol | |
393 `use', always use the value." | |
394 :group 'message-interface | |
395 :type '(choice (const :tag "ignore" nil) | |
396 (const use) | |
397 (const ask))) | |
398 | |
399 (defcustom message-sendmail-f-is-evil nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
400 "*Non-nil means that \"-f username\" should not be added to the sendmail command line. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
401 Doing so would be even more evil than leaving it out." |
17493 | 402 :group 'message-sending |
403 :type 'boolean) | |
404 | |
405 ;; qmail-related stuff | |
406 (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject" | |
407 "Location of the qmail-inject program." | |
408 :group 'message-sending | |
409 :type 'file) | |
410 | |
411 (defcustom message-qmail-inject-args nil | |
412 "Arguments passed to qmail-inject programs. | |
413 This should be a list of strings, one string for each argument. | |
414 | |
415 For e.g., if you wish to set the envelope sender address so that bounces | |
416 go to the right place or to deal with listserv's usage of that address, you | |
417 might set this variable to '(\"-f\" \"you@some.where\")." | |
418 :group 'message-sending | |
419 :type '(repeat string)) | |
420 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
421 (defvar message-cater-to-broken-inn t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
422 "Non-nil means Gnus should not fold the `References' header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
423 Folding `References' makes ancient versions of INN create incorrect |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
424 NOV lines.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
425 |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
426 (eval-when-compile |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
427 (defvar gnus-post-method) |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
428 (defvar gnus-select-method)) |
17493 | 429 (defcustom message-post-method |
430 (cond ((and (boundp 'gnus-post-method) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
431 (listp gnus-post-method) |
17493 | 432 gnus-post-method) |
433 gnus-post-method) | |
434 ((boundp 'gnus-select-method) | |
435 gnus-select-method) | |
436 (t '(nnspool ""))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
437 "*Method used to post news. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
438 Note that when posting from inside Gnus, for instance, this |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
439 variable isn't used." |
17493 | 440 :group 'message-news |
441 :group 'message-sending | |
442 ;; This should be the `gnus-select-method' widget, but that might | |
443 ;; create a dependence to `gnus.el'. | |
444 :type 'sexp) | |
445 | |
446 (defcustom message-generate-headers-first nil | |
447 "*If non-nil, generate all possible headers before composing." | |
448 :group 'message-headers | |
449 :type 'boolean) | |
450 | |
451 (defcustom message-setup-hook nil | |
452 "Normal hook, run each time a new outgoing message is initialized. | |
453 The function `message-setup' runs this hook." | |
454 :group 'message-various | |
455 :type 'hook) | |
456 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
457 (defcustom message-cancel-hook nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
458 "Hook run when cancelling articles." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
459 :group 'message-various |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
460 :type 'hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
461 |
17493 | 462 (defcustom message-signature-setup-hook nil |
463 "Normal hook, run each time a new outgoing message is initialized. | |
464 It is run after the headers have been inserted and before | |
465 the signature is inserted." | |
466 :group 'message-various | |
467 :type 'hook) | |
468 | |
469 (defcustom message-mode-hook nil | |
470 "Hook run in message mode buffers." | |
471 :group 'message-various | |
472 :type 'hook) | |
473 | |
474 (defcustom message-header-hook nil | |
475 "Hook run in a message mode buffer narrowed to the headers." | |
476 :group 'message-various | |
477 :type 'hook) | |
478 | |
479 (defcustom message-header-setup-hook nil | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
480 "Hook called narrowed to the headers when setting up a message buffer." |
17493 | 481 :group 'message-various |
482 :type 'hook) | |
483 | |
484 ;;;###autoload | |
485 (defcustom message-citation-line-function 'message-insert-citation-line | |
486 "*Function called to insert the \"Whomever writes:\" line." | |
487 :type 'function | |
488 :group 'message-insertion) | |
489 | |
490 ;;;###autoload | |
491 (defcustom message-yank-prefix "> " | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
492 "*Prefix inserted on the lines of yanked messages." |
17493 | 493 :type 'string |
494 :group 'message-insertion) | |
495 | |
496 (defcustom message-indentation-spaces 3 | |
497 "*Number of spaces to insert at the beginning of each cited line. | |
498 Used by `message-yank-original' via `message-yank-cite'." | |
499 :group 'message-insertion | |
500 :type 'integer) | |
501 | |
502 ;;;###autoload | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
503 (defcustom message-cite-function 'message-cite-original |
22656
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
504 "*Function for citing an original message. |
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
505 Predefined functions include `message-cite-original' and |
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
506 `message-cite-original-without-signature'. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
507 Note that `message-cite-original' uses `mail-citation-hook' if that is non-nil." |
17493 | 508 :type '(radio (function-item message-cite-original) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
509 (function-item message-cite-original-without-signature) |
17493 | 510 (function-item sc-cite-original) |
511 (function :tag "Other")) | |
512 :group 'message-insertion) | |
513 | |
514 ;;;###autoload | |
515 (defcustom message-indent-citation-function 'message-indent-citation | |
516 "*Function for modifying a citation just inserted in the mail buffer. | |
517 This can also be a list of functions. Each function can find the | |
518 citation between (point) and (mark t). And each function should leave | |
519 point and mark around the citation text as modified." | |
520 :type 'function | |
521 :group 'message-insertion) | |
522 | |
523 (defvar message-abbrevs-loaded nil) | |
524 | |
525 ;;;###autoload | |
526 (defcustom message-signature t | |
527 "*String to be inserted at the end of the message buffer. | |
528 If t, the `message-signature-file' file will be inserted instead. | |
529 If a function, the result from the function will be used instead. | |
530 If a form, the result from the form will be used instead." | |
531 :type 'sexp | |
532 :group 'message-insertion) | |
533 | |
534 ;;;###autoload | |
535 (defcustom message-signature-file "~/.signature" | |
536 "*File containing the text inserted at end of message buffer." | |
537 :type 'file | |
538 :group 'message-insertion) | |
539 | |
540 (defcustom message-distribution-function nil | |
541 "*Function called to return a Distribution header." | |
542 :group 'message-news | |
543 :group 'message-headers | |
544 :type 'function) | |
545 | |
546 (defcustom message-expires 14 | |
547 "Number of days before your article expires." | |
548 :group 'message-news | |
549 :group 'message-headers | |
550 :link '(custom-manual "(message)News Headers") | |
551 :type 'integer) | |
552 | |
553 (defcustom message-user-path nil | |
554 "If nil, use the NNTP server name in the Path header. | |
555 If stringp, use this; if non-nil, use no host name (user name only)." | |
556 :group 'message-news | |
557 :group 'message-headers | |
558 :link '(custom-manual "(message)News Headers") | |
559 :type '(choice (const :tag "nntp" nil) | |
560 (string :tag "name") | |
561 (sexp :tag "none" :format "%t" t))) | |
562 | |
563 (defvar message-reply-buffer nil) | |
564 (defvar message-reply-headers nil) | |
565 (defvar message-newsreader nil) | |
566 (defvar message-mailer nil) | |
567 (defvar message-sent-message-via nil) | |
568 (defvar message-checksum nil) | |
569 (defvar message-send-actions nil | |
570 "A list of actions to be performed upon successful sending of a message.") | |
571 (defvar message-exit-actions nil | |
572 "A list of actions to be performed upon exiting after sending a message.") | |
573 (defvar message-kill-actions nil | |
574 "A list of actions to be performed before killing a message buffer.") | |
575 (defvar message-postpone-actions nil | |
576 "A list of actions to be performed after postponing a message.") | |
577 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
578 (define-widget 'message-header-lines 'text |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
579 "All header lines must be LFD terminated." |
33982
ff339ba39162
(message-header-lines): Fontify tag.
Miles Bader <miles@gnu.org>
parents:
33768
diff
changeset
|
580 :format "%{%t%}:%n%v" |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
581 :valid-regexp "^\\'" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
582 :error "All header lines must be newline terminated") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
583 |
17493 | 584 (defcustom message-default-headers "" |
585 "*A string containing header lines to be inserted in outgoing messages. | |
586 It is inserted before you edit the message, so you can edit or delete | |
587 these lines." | |
588 :group 'message-headers | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
589 :type 'message-header-lines) |
17493 | 590 |
591 (defcustom message-default-mail-headers "" | |
592 "*A string of header lines to be inserted in outgoing mails." | |
593 :group 'message-headers | |
594 :group 'message-mail | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
595 :type 'message-header-lines) |
17493 | 596 |
597 (defcustom message-default-news-headers "" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
598 "*A string of header lines to be inserted in outgoing news articles." |
17493 | 599 :group 'message-headers |
600 :group 'message-news | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
601 :type 'message-header-lines) |
17493 | 602 |
603 ;; Note: could use /usr/ucb/mail instead of sendmail; | |
604 ;; options -t, and -v if not interactive. | |
605 (defcustom message-mailer-swallows-blank-line | |
606 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" | |
607 system-configuration) | |
608 (file-readable-p "/etc/sendmail.cf") | |
609 (let ((buffer (get-buffer-create " *temp*"))) | |
610 (unwind-protect | |
611 (save-excursion | |
612 (set-buffer buffer) | |
613 (insert-file-contents "/etc/sendmail.cf") | |
614 (goto-char (point-min)) | |
615 (let ((case-fold-search nil)) | |
616 (re-search-forward "^OR\\>" nil t))) | |
617 (kill-buffer buffer)))) | |
618 ;; According to RFC822, "The field-name must be composed of printable | |
619 ;; ASCII characters (i. e., characters that have decimal values between | |
620 ;; 33 and 126, except colon)", i. e., any chars except ctl chars, | |
621 ;; space, or colon. | |
622 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:")) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
623 "*Set this non-nil if the system's mailer runs the header and body together. |
17493 | 624 \(This problem exists on Sunos 4 when sendmail is run in remote mode.) |
625 The value should be an expression to test whether the problem will | |
626 actually occur." | |
627 :group 'message-sending | |
628 :type 'sexp) | |
629 | |
19481
4d492290e085
(message-user-agent): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
630 ;;;###autoload |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
631 (define-mail-user-agent 'message-user-agent |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
632 'message-mail 'message-send-and-exit |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
633 'message-kill-buffer 'message-send-hook) |
17493 | 634 |
635 (defvar message-mh-deletable-headers '(Message-ID Date Lines Sender) | |
636 "If non-nil, delete the deletable headers before feeding to mh.") | |
637 | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
638 (defvar message-send-method-alist |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
639 '((news message-news-p message-send-via-news) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
640 (mail message-mail-p message-send-via-mail)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
641 "Alist of ways to send outgoing messages. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
642 Each element has the form |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
643 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
644 \(TYPE PREDICATE FUNCTION) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
645 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
646 where TYPE is a symbol that names the method; PREDICATE is a function |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
647 called without any parameters to determine whether the message is |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
648 a message of type TYPE; and FUNCTION is a function to be called if |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
649 PREDICATE returns non-nil. FUNCTION is called with one parameter -- |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
650 the prefix.") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
651 |
34058
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
652 (defcustom message-mail-alias-type 'abbrev |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
653 "*What alias expansion type to use in Message buffers. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
654 The default is `abbrev', which uses mailabbrev. nil switches |
34058
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
655 mail aliases off." |
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
656 :group 'message |
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
657 :link '(custom-manual "(message)Mail Aliases") |
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
658 :type '(choice (const :tag "Use Mailabbrev" abbrev) |
9f5e2364ef2b
(message-mail-alias-type): Customize.
Dave Love <fx@gnu.org>
parents:
34057
diff
changeset
|
659 (const :tag "No expansion" nil))) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
660 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
661 (defcustom message-auto-save-directory |
34057
98bd49d8cf7d
(message-auto-save-directory): Use
Dave Love <fx@gnu.org>
parents:
33982
diff
changeset
|
662 (file-name-as-directory (nnheader-concat message-directory "drafts")) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
663 "*Directory where Message auto-saves buffers if Gnus isn't running. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
664 If nil, Message won't auto-save." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
665 :group 'message-buffers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
666 :type 'directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
667 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
668 (defcustom message-buffer-naming-style 'unique |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
669 "*The way new message buffers are named. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
670 Valid valued are `unique' and `unsent'." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
671 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
672 :group 'message-buffers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
673 :type '(choice (const :tag "unique" unique) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
674 (const :tag "unsent" unsent))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
675 |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
676 (defcustom message-default-charset |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
677 (and (not (mm-multibyte-p)) 'iso-8859-1) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
678 "Default charset used in non-MULE Emacsen. |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
679 If nil, you might be asked to input the charset." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
680 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
681 :group 'message |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
682 :type 'symbol) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
683 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
684 (defcustom message-dont-reply-to-names |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
685 (and (boundp 'rmail-dont-reply-to-names) rmail-dont-reply-to-names) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
686 "*A regexp specifying names to prune when doing wide replies. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
687 A value of nil means exclude your own name only." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
688 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
689 :group 'message |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
690 :type '(choice (const :tag "Yourself" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
691 regexp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
692 |
17493 | 693 ;;; Internal variables. |
694 ;;; Well, not really internal. | |
695 | |
696 (defvar message-mode-syntax-table | |
697 (let ((table (copy-syntax-table text-mode-syntax-table))) | |
698 (modify-syntax-entry ?% ". " table) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
699 (modify-syntax-entry ?> ". " table) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
700 (modify-syntax-entry ?< ". " table) |
17493 | 701 table) |
702 "Syntax table used while in Message mode.") | |
703 | |
704 (defvar message-mode-abbrev-table text-mode-abbrev-table | |
705 "Abbrev table used in Message mode buffers. | |
706 Defaults to `text-mode-abbrev-table'.") | |
707 | |
708 (defface message-header-to-face | |
709 '((((class color) | |
710 (background dark)) | |
711 (:foreground "green2" :bold t)) | |
712 (((class color) | |
713 (background light)) | |
714 (:foreground "MidnightBlue" :bold t)) | |
715 (t | |
716 (:bold t :italic t))) | |
717 "Face used for displaying From headers." | |
718 :group 'message-faces) | |
719 | |
720 (defface message-header-cc-face | |
721 '((((class color) | |
722 (background dark)) | |
723 (:foreground "green4" :bold t)) | |
724 (((class color) | |
725 (background light)) | |
726 (:foreground "MidnightBlue")) | |
727 (t | |
728 (:bold t))) | |
729 "Face used for displaying Cc headers." | |
730 :group 'message-faces) | |
731 | |
732 (defface message-header-subject-face | |
733 '((((class color) | |
734 (background dark)) | |
735 (:foreground "green3")) | |
736 (((class color) | |
737 (background light)) | |
738 (:foreground "navy blue" :bold t)) | |
739 (t | |
740 (:bold t))) | |
741 "Face used for displaying subject headers." | |
742 :group 'message-faces) | |
743 | |
744 (defface message-header-newsgroups-face | |
745 '((((class color) | |
746 (background dark)) | |
747 (:foreground "yellow" :bold t :italic t)) | |
748 (((class color) | |
749 (background light)) | |
750 (:foreground "blue4" :bold t :italic t)) | |
751 (t | |
752 (:bold t :italic t))) | |
753 "Face used for displaying newsgroups headers." | |
754 :group 'message-faces) | |
755 | |
756 (defface message-header-other-face | |
757 '((((class color) | |
758 (background dark)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
759 (:foreground "#b00000")) |
17493 | 760 (((class color) |
761 (background light)) | |
762 (:foreground "steel blue")) | |
763 (t | |
764 (:bold t :italic t))) | |
765 "Face used for displaying newsgroups headers." | |
766 :group 'message-faces) | |
767 | |
768 (defface message-header-name-face | |
769 '((((class color) | |
770 (background dark)) | |
771 (:foreground "DarkGreen")) | |
772 (((class color) | |
773 (background light)) | |
774 (:foreground "cornflower blue")) | |
775 (t | |
776 (:bold t))) | |
777 "Face used for displaying header names." | |
778 :group 'message-faces) | |
779 | |
780 (defface message-header-xheader-face | |
781 '((((class color) | |
782 (background dark)) | |
783 (:foreground "blue")) | |
784 (((class color) | |
785 (background light)) | |
786 (:foreground "blue")) | |
787 (t | |
788 (:bold t))) | |
789 "Face used for displaying X-Header headers." | |
790 :group 'message-faces) | |
791 | |
792 (defface message-separator-face | |
793 '((((class color) | |
794 (background dark)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
795 (:foreground "blue3")) |
17493 | 796 (((class color) |
797 (background light)) | |
798 (:foreground "brown")) | |
799 (t | |
800 (:bold t))) | |
801 "Face used for displaying the separator." | |
802 :group 'message-faces) | |
803 | |
804 (defface message-cited-text-face | |
805 '((((class color) | |
806 (background dark)) | |
807 (:foreground "red")) | |
808 (((class color) | |
809 (background light)) | |
810 (:foreground "red")) | |
811 (t | |
812 (:bold t))) | |
813 "Face used for displaying cited text names." | |
814 :group 'message-faces) | |
815 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
816 (defface message-mml-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
817 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
818 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
819 (:foreground "ForestGreen")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
820 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
821 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
822 (:foreground "ForestGreen")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
823 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
824 (:bold t))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
825 "Face used for displaying MML." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
826 :group 'message-faces) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
827 |
17493 | 828 (defvar message-font-lock-keywords |
33156
e07128cd595f
(message-font-lock-keywords): Use [:alpha:] for
Dave Love <fx@gnu.org>
parents:
32967
diff
changeset
|
829 (let* ((cite-prefix "[:alpha:]") |
17493 | 830 (cite-suffix (concat cite-prefix "0-9_.@-")) |
33199
92f44ab47ab5
(message-font-lock-keywords): Match a final newline
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33156
diff
changeset
|
831 (content "[ \t]*\\(.+\\(\n[ \t].*\\)*\\)\n?")) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
832 `((,(concat "^\\([Tt]o:\\)" content) |
17493 | 833 (1 'message-header-name-face) |
834 (2 'message-header-to-face nil t)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
835 (,(concat "^\\(^[GBF]?[Cc][Cc]:\\|^[Rr]eply-[Tt]o:\\)" content) |
17493 | 836 (1 'message-header-name-face) |
837 (2 'message-header-cc-face nil t)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
838 (,(concat "^\\([Ss]ubject:\\)" content) |
17493 | 839 (1 'message-header-name-face) |
840 (2 'message-header-subject-face nil t)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
841 (,(concat "^\\([Nn]ewsgroups:\\|Followup-[Tt]o:\\)" content) |
17493 | 842 (1 'message-header-name-face) |
843 (2 'message-header-newsgroups-face nil t)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
844 (,(concat "^\\([A-Z][^: \n\t]+:\\)" content) |
17493 | 845 (1 'message-header-name-face) |
846 (2 'message-header-other-face nil t)) | |
847 (,(concat "^\\(X-[A-Za-z0-9-]+\\|In-Reply-To\\):" content) | |
848 (1 'message-header-name-face) | |
849 (2 'message-header-name-face)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
850 ,@(if (and mail-header-separator |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
851 (not (equal mail-header-separator ""))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
852 `((,(concat "^\\(" (regexp-quote mail-header-separator) "\\)$") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
853 1 'message-separator-face)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
854 nil) |
17493 | 855 (,(concat "^[ \t]*" |
856 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?" | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
857 "[:>|}].*") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
858 (0 'message-cited-text-face)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
859 ("<#/?\\(multipart\\|part\\|external\\|mml\\).*>" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
860 (0 'message-mml-face)))) |
17493 | 861 "Additional expressions to highlight in Message mode.") |
862 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
863 ;; XEmacs does it like this. For Emacs, we have to set the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
864 ;; `font-lock-defaults' buffer-local variable. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
865 (put 'message-mode 'font-lock-defaults '(message-font-lock-keywords t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
866 |
17493 | 867 (defvar message-face-alist |
868 '((bold . bold-region) | |
869 (underline . underline-region) | |
870 (default . (lambda (b e) | |
871 (unbold-region b e) | |
872 (ununderline-region b e)))) | |
873 "Alist of mail and news faces for facemenu. | |
874 The cdr of ech entry is a function for applying the face to a region.") | |
875 | |
876 (defcustom message-send-hook nil | |
877 "Hook run before sending messages." | |
878 :group 'message-various | |
879 :options '(ispell-message) | |
880 :type 'hook) | |
881 | |
882 (defcustom message-send-mail-hook nil | |
883 "Hook run before sending mail messages." | |
884 :group 'message-various | |
885 :type 'hook) | |
886 | |
887 (defcustom message-send-news-hook nil | |
888 "Hook run before sending news messages." | |
889 :group 'message-various | |
890 :type 'hook) | |
891 | |
892 (defcustom message-sent-hook nil | |
893 "Hook run after sending messages." | |
894 :group 'message-various | |
895 :type 'hook) | |
896 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
897 (defvar message-send-coding-system 'binary |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
898 "Coding system to encode outgoing mail.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
899 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
900 (defvar message-draft-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
901 mm-auto-save-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
902 "Coding system to compose mail.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
903 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
904 (defcustom message-send-mail-partially-limit 1000000 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
905 "The limitation of messages sent as message/partial. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
906 The lower bound of message size in characters, beyond which the message |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
907 should be sent in several parts. If it is nil, the size is unlimited." |
33400
42c1ba3caf9c
(message-forward-as-mime, message-forward-ignored-headers)
Dave Love <fx@gnu.org>
parents:
33375
diff
changeset
|
908 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
909 :group 'message-buffers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
910 :type '(choice (const :tag "unlimited" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
911 (integer 1000000))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
912 |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
913 (defcustom message-alternative-emails nil |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
914 "A regexp to match the alternative email addresses. |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
915 The first matched address (not primary one) is used in the From field." |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
916 :group 'message-headers |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
917 :type '(choice (const :tag "Always use primary" nil) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
918 regexp)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
919 |
17493 | 920 ;;; Internal variables. |
921 | |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
922 (defvar message-sending-message "Sending...") |
17493 | 923 (defvar message-buffer-list nil) |
924 (defvar message-this-is-news nil) | |
925 (defvar message-this-is-mail nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
926 (defvar message-draft-article nil) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
927 (defvar message-mime-part nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
928 (defvar message-posting-charset nil) |
17493 | 929 |
930 ;; Byte-compiler warning | |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
931 (eval-when-compile |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
932 (defvar gnus-active-hashtb) |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
933 (defvar gnus-read-active-file)) |
17493 | 934 |
935 ;;; Regexp matching the delimiter of messages in UNIX mail format | |
19762
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
936 ;;; (UNIX From lines), minus the initial ^. It should be a copy |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
937 ;;; of rmail.el's rmail-unix-mail-delimiter. |
17493 | 938 (defvar message-unix-mail-delimiter |
939 (let ((time-zone-regexp | |
940 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?" | |
941 "\\|[-+]?[0-9][0-9][0-9][0-9]" | |
942 "\\|" | |
943 "\\) *"))) | |
944 (concat | |
945 "From " | |
946 | |
19762
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
947 ;; Many things can happen to an RFC 822 mailbox before it is put into |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
948 ;; a `From' line. The leading phrase can be stripped, e.g. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
949 ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'. The <> can be stripped, e.g. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
950 ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'. Everything starting with a CRLF |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
951 ;; can be removed, e.g. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
952 ;; From: joe@y.z (Joe K |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
953 ;; User) |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
954 ;; can yield `From joe@y.z (Joe K Fri Mar 22 08:11:15 1996', and |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
955 ;; From: Joe User |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
956 ;; <joe@y.z> |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
957 ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
958 ;; The mailbox can be removed or be replaced by white space, e.g. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
959 ;; From: "Joe User"{space}{tab} |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
960 ;; <joe@y.z> |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
961 ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996', |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
962 ;; where {space} and {tab} represent the Ascii space and tab characters. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
963 ;; We want to match the results of any of these manglings. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
964 ;; The following regexp rejects names whose first characters are |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
965 ;; obviously bogus, but after that anything goes. |
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
966 "\\([^\0-\b\n-\r\^?].*\\)? " |
17493 | 967 |
968 ;; The time the message was sent. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
969 "\\([^\0-\r \^?]+\\) +" ; day of the week |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
970 "\\([^\0-\r \^?]+\\) +" ; month |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
971 "\\([0-3]?[0-9]\\) +" ; day of month |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
972 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day |
17493 | 973 |
974 ;; Perhaps a time zone, specified by an abbreviation, or by a | |
975 ;; numeric offset. | |
976 time-zone-regexp | |
977 | |
978 ;; The year. | |
19762
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
979 " \\([0-9][0-9]+\\) *" |
17493 | 980 |
981 ;; On some systems the time zone can appear after the year, too. | |
982 time-zone-regexp | |
983 | |
984 ;; Old uucp cruft. | |
985 "\\(remote from .*\\)?" | |
986 | |
19762
f6ca32374b0b
(message-unix-mail-delimiter): Initialize
Richard M. Stallman <rms@gnu.org>
parents:
19525
diff
changeset
|
987 "\n")) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
988 "Regexp matching the delimiter of messages in UNIX mail format.") |
17493 | 989 |
990 (defvar message-unsent-separator | |
991 (concat "^ *---+ +Unsent message follows +---+ *$\\|" | |
992 "^ *---+ +Returned message +---+ *$\\|" | |
993 "^Start of returned message$\\|" | |
994 "^ *---+ +Original message +---+ *$\\|" | |
995 "^ *--+ +begin message +--+ *$\\|" | |
996 "^ *---+ +Original message follows +---+ *$\\|" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
997 "^ *---+ +Undelivered message follows +---+ *$\\|" |
17493 | 998 "^|? *---+ +Message text follows: +---+ *|?$") |
999 "A regexp that matches the separator before the text of a failed message.") | |
1000 | |
1001 (defvar message-header-format-alist | |
1002 `((Newsgroups) | |
1003 (To . message-fill-address) | |
1004 (Cc . message-fill-address) | |
1005 (Subject) | |
1006 (In-Reply-To) | |
1007 (Fcc) | |
1008 (Bcc) | |
1009 (Date) | |
1010 (Organization) | |
1011 (Distribution) | |
1012 (Lines) | |
1013 (Expires) | |
1014 (Message-ID) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1015 (References . message-shorten-references) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1016 (User-Agent)) |
17493 | 1017 "Alist used for formatting headers.") |
1018 | |
1019 (eval-and-compile | |
1020 (autoload 'message-setup-toolbar "messagexmas") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1021 (autoload 'mh-new-draft-name "mh-comp") |
17493 | 1022 (autoload 'mh-send-letter "mh-comp") |
1023 (autoload 'gnus-point-at-eol "gnus-util") | |
1024 (autoload 'gnus-point-at-bol "gnus-util") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1025 (autoload 'gnus-output-to-rmail "gnus-util") |
17493 | 1026 (autoload 'gnus-output-to-mail "gnus-util") |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1027 (autoload 'mail-abbrev-in-expansion-header-p "mailabbrev") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1028 (autoload 'nndraft-request-associate-buffer "nndraft") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1029 (autoload 'nndraft-request-expire-articles "nndraft") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1030 (autoload 'gnus-open-server "gnus-int") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1031 (autoload 'gnus-request-post "gnus-int") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1032 (autoload 'gnus-alive-p "gnus-util") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1033 (autoload 'gnus-group-name-charset "gnus-group") |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1034 (autoload 'rmail-output "rmail")) |
17493 | 1035 |
1036 | |
1037 | |
1038 ;;; | |
1039 ;;; Utility functions. | |
1040 ;;; | |
1041 | |
1042 (defmacro message-y-or-n-p (question show &rest text) | |
1043 "Ask QUESTION, displaying the rest of the arguments in a temp. buffer if SHOW" | |
1044 `(message-talkative-question 'y-or-n-p ,question ,show ,@text)) | |
1045 | |
1046 ;; Delete the current line (and the next N lines.); | |
1047 (defmacro message-delete-line (&optional n) | |
1048 `(delete-region (progn (beginning-of-line) (point)) | |
1049 (progn (forward-line ,(or n 1)) (point)))) | |
1050 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1051 (defun message-unquote-tokens (elems) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1052 "Remove double quotes (\") from strings in list." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1053 (mapcar (lambda (item) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1054 (while (string-match "^\\(.*\\)\"\\(.*\\)$" item) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1055 (setq item (concat (match-string 1 item) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1056 (match-string 2 item)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1057 item) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1058 elems)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1059 |
17493 | 1060 (defun message-tokenize-header (header &optional separator) |
1061 "Split HEADER into a list of header elements. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1062 SEPARATOR is a string of characters to be used as separators. \",\" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1063 is used by default." |
17493 | 1064 (if (not header) |
1065 nil | |
1066 (let ((regexp (format "[%s]+" (or separator ","))) | |
1067 (beg 1) | |
1068 (first t) | |
1069 quoted elems paren) | |
1070 (save-excursion | |
1071 (message-set-work-buffer) | |
1072 (insert header) | |
1073 (goto-char (point-min)) | |
1074 (while (not (eobp)) | |
1075 (if first | |
1076 (setq first nil) | |
1077 (forward-char 1)) | |
1078 (cond ((and (> (point) beg) | |
1079 (or (eobp) | |
1080 (and (looking-at regexp) | |
1081 (not quoted) | |
1082 (not paren)))) | |
1083 (push (buffer-substring beg (point)) elems) | |
1084 (setq beg (match-end 0))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1085 ((eq (char-after) ?\") |
17493 | 1086 (setq quoted (not quoted))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1087 ((and (eq (char-after) ?\() |
17493 | 1088 (not quoted)) |
1089 (setq paren t)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1090 ((and (eq (char-after) ?\)) |
17493 | 1091 (not quoted)) |
1092 (setq paren nil)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1093 (nreverse elems))))) |
17493 | 1094 |
1095 (defun message-mail-file-mbox-p (file) | |
1096 "Say whether FILE looks like a Unix mbox file." | |
1097 (when (and (file-exists-p file) | |
1098 (file-readable-p file) | |
1099 (file-regular-p file)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1100 (with-temp-buffer |
17493 | 1101 (nnheader-insert-file-contents file) |
1102 (goto-char (point-min)) | |
1103 (looking-at message-unix-mail-delimiter)))) | |
1104 | |
1105 (defun message-fetch-field (header &optional not-all) | |
1106 "The same as `mail-fetch-field', only remove all newlines." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1107 (let* ((inhibit-point-motion-hooks t) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1108 (case-fold-search t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1109 (value (mail-fetch-field header nil (not not-all)))) |
17493 | 1110 (when value |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1111 (while (string-match "\n[\t ]+" value) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1112 (setq value (replace-match " " t t value))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1113 (set-text-properties 0 (length value) nil value) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1114 value))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1115 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1116 (defun message-narrow-to-field () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1117 "Narrow the buffer to the header on the current line." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1118 (beginning-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1119 (narrow-to-region |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1120 (point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1121 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1122 (forward-line 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1123 (if (re-search-forward "^[^ \n\t]" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1124 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1125 (beginning-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1126 (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1127 (point-max)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1128 (goto-char (point-min))) |
17493 | 1129 |
1130 (defun message-add-header (&rest headers) | |
1131 "Add the HEADERS to the message header, skipping those already present." | |
1132 (while headers | |
1133 (let (hclean) | |
1134 (unless (string-match "^\\([^:]+\\):[ \t]*[^ \t]" (car headers)) | |
1135 (error "Invalid header `%s'" (car headers))) | |
1136 (setq hclean (match-string 1 (car headers))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1137 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1138 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1139 (unless (re-search-forward (concat "^" (regexp-quote hclean) ":") nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1140 (insert (car headers) ?\n)))) |
17493 | 1141 (setq headers (cdr headers)))) |
1142 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1143 |
17493 | 1144 (defun message-fetch-reply-field (header) |
1145 "Fetch FIELD from the message we're replying to." | |
1146 (when (and message-reply-buffer | |
1147 (buffer-name message-reply-buffer)) | |
1148 (save-excursion | |
1149 (set-buffer message-reply-buffer) | |
1150 (message-fetch-field header)))) | |
1151 | |
1152 (defun message-set-work-buffer () | |
1153 (if (get-buffer " *message work*") | |
1154 (progn | |
1155 (set-buffer " *message work*") | |
1156 (erase-buffer)) | |
1157 (set-buffer (get-buffer-create " *message work*")) | |
1158 (kill-all-local-variables) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1159 (mm-enable-multibyte))) |
17493 | 1160 |
1161 (defun message-functionp (form) | |
1162 "Return non-nil if FORM is funcallable." | |
1163 (or (and (symbolp form) (fboundp form)) | |
1164 (and (listp form) (eq (car form) 'lambda)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1165 (byte-code-function-p form))) |
17493 | 1166 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1167 (defun message-strip-list-identifiers (subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1168 "Remove list identifiers in `gnus-list-identifiers'." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1169 (require 'gnus-sum) ; for gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1170 (let ((regexp (if (stringp gnus-list-identifiers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1171 gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1172 (mapconcat 'identity gnus-list-identifiers " *\\|")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1173 (if (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1174 " *\\)\\)+\\(Re: +\\)?\\)") subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1175 (concat (substring subject 0 (match-beginning 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1176 (or (match-string 3 subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1177 (match-string 5 subject)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1178 (substring subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1179 (match-end 1))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1180 subject))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1181 |
17493 | 1182 (defun message-strip-subject-re (subject) |
1183 "Remove \"Re:\" from subject lines." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1184 (if (string-match message-subject-re-regexp subject) |
17493 | 1185 (substring subject (match-end 0)) |
1186 subject)) | |
1187 | |
1188 (defun message-remove-header (header &optional is-regexp first reverse) | |
1189 "Remove HEADER in the narrowed buffer. | |
1190 If REGEXP, HEADER is a regular expression. | |
1191 If FIRST, only remove the first instance of the header. | |
1192 Return the number of headers removed." | |
1193 (goto-char (point-min)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1194 (let ((regexp (if is-regexp header (concat "^" (regexp-quote header) ":"))) |
17493 | 1195 (number 0) |
1196 (case-fold-search t) | |
1197 last) | |
1198 (while (and (not (eobp)) | |
1199 (not last)) | |
1200 (if (if reverse | |
1201 (not (looking-at regexp)) | |
1202 (looking-at regexp)) | |
1203 (progn | |
1204 (incf number) | |
1205 (when first | |
1206 (setq last t)) | |
1207 (delete-region | |
1208 (point) | |
1209 ;; There might be a continuation header, so we have to search | |
1210 ;; until we find a new non-continuation line. | |
1211 (progn | |
1212 (forward-line 1) | |
1213 (if (re-search-forward "^[^ \t]" nil t) | |
1214 (goto-char (match-beginning 0)) | |
1215 (point-max))))) | |
1216 (forward-line 1) | |
1217 (if (re-search-forward "^[^ \t]" nil t) | |
1218 (goto-char (match-beginning 0)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1219 (goto-char (point-max))))) |
17493 | 1220 number)) |
1221 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1222 (defun message-remove-first-header (header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1223 "Remove the first instance of HEADER if there is more than one." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1224 (let ((count 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1225 (regexp (concat "^" (regexp-quote header) ":"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1226 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1227 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1228 (while (re-search-forward regexp nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1229 (incf count))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1230 (while (> count 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1231 (message-remove-header header nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1232 (decf count)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1233 |
17493 | 1234 (defun message-narrow-to-headers () |
1235 "Narrow the buffer to the head of the message." | |
1236 (widen) | |
1237 (narrow-to-region | |
1238 (goto-char (point-min)) | |
1239 (if (re-search-forward | |
1240 (concat "^" (regexp-quote mail-header-separator) "\n") nil t) | |
1241 (match-beginning 0) | |
1242 (point-max))) | |
1243 (goto-char (point-min))) | |
1244 | |
1245 (defun message-narrow-to-head () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1246 "Narrow the buffer to the head of the message. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1247 Point is left at the beginning of the narrowed-to region." |
17493 | 1248 (widen) |
1249 (narrow-to-region | |
1250 (goto-char (point-min)) | |
1251 (if (search-forward "\n\n" nil 1) | |
1252 (1- (point)) | |
1253 (point-max))) | |
1254 (goto-char (point-min))) | |
1255 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1256 (defun message-narrow-to-headers-or-head () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1257 "Narrow the buffer to the head of the message." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1258 (widen) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1259 (narrow-to-region |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1260 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1261 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1262 ((re-search-forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1263 (concat "^" (regexp-quote mail-header-separator) "\n") nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1264 (match-beginning 0)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1265 ((search-forward "\n\n" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1266 (1- (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1267 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1268 (point-max)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1269 (goto-char (point-min))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1270 |
17493 | 1271 (defun message-news-p () |
1272 "Say whether the current buffer contains a news message." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1273 (and (not message-this-is-mail) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1274 (or message-this-is-news |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1275 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1276 (save-restriction |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1277 (message-narrow-to-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1278 (and (message-fetch-field "newsgroups") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1279 (not (message-fetch-field "posted-to")))))))) |
17493 | 1280 |
1281 (defun message-mail-p () | |
1282 "Say whether the current buffer contains a mail message." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1283 (and (not message-this-is-news) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1284 (or message-this-is-mail |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1285 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1286 (save-restriction |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1287 (message-narrow-to-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1288 (or (message-fetch-field "to") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1289 (message-fetch-field "cc") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1290 (message-fetch-field "bcc"))))))) |
17493 | 1291 |
1292 (defun message-next-header () | |
1293 "Go to the beginning of the next header." | |
1294 (beginning-of-line) | |
1295 (or (eobp) (forward-char 1)) | |
1296 (not (if (re-search-forward "^[^ \t]" nil t) | |
1297 (beginning-of-line) | |
1298 (goto-char (point-max))))) | |
1299 | |
1300 (defun message-sort-headers-1 () | |
1301 "Sort the buffer as headers using `message-rank' text props." | |
1302 (goto-char (point-min)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1303 (require 'sort) |
17493 | 1304 (sort-subr |
1305 nil 'message-next-header | |
1306 (lambda () | |
1307 (message-next-header) | |
1308 (unless (bobp) | |
1309 (forward-char -1))) | |
1310 (lambda () | |
1311 (or (get-text-property (point) 'message-rank) | |
1312 10000)))) | |
1313 | |
1314 (defun message-sort-headers () | |
1315 "Sort the headers of the current message according to `message-header-format-alist'." | |
1316 (interactive) | |
1317 (save-excursion | |
1318 (save-restriction | |
1319 (let ((max (1+ (length message-header-format-alist))) | |
1320 rank) | |
1321 (message-narrow-to-headers) | |
1322 (while (re-search-forward "^[^ \n]+:" nil t) | |
1323 (put-text-property | |
1324 (match-beginning 0) (1+ (match-beginning 0)) | |
1325 'message-rank | |
1326 (if (setq rank (length (memq (assq (intern (buffer-substring | |
1327 (match-beginning 0) | |
1328 (1- (match-end 0)))) | |
1329 message-header-format-alist) | |
1330 message-header-format-alist))) | |
1331 (- max rank) | |
1332 (1+ max))))) | |
1333 (message-sort-headers-1)))) | |
1334 | |
1335 | |
1336 | |
1337 ;;; | |
1338 ;;; Message mode | |
1339 ;;; | |
1340 | |
1341 ;;; Set up keymap. | |
1342 | |
1343 (defvar message-mode-map nil) | |
1344 | |
1345 (unless message-mode-map | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1346 (setq message-mode-map (make-keymap)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1347 (set-keymap-parent message-mode-map text-mode-map) |
17493 | 1348 (define-key message-mode-map "\C-c?" 'describe-mode) |
1349 | |
1350 (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to) | |
1351 (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc) | |
1352 (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc) | |
1353 (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc) | |
1354 (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject) | |
1355 (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to) | |
1356 (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups) | |
1357 (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution) | |
1358 (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to) | |
1359 (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords) | |
1360 (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary) | |
1361 (define-key message-mode-map "\C-c\C-b" 'message-goto-body) | |
1362 (define-key message-mode-map "\C-c\C-i" 'message-goto-signature) | |
1363 | |
1364 (define-key message-mode-map "\C-c\C-t" 'message-insert-to) | |
1365 (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups) | |
1366 | |
1367 (define-key message-mode-map "\C-c\C-y" 'message-yank-original) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1368 (define-key message-mode-map "\C-c\M-\C-y" 'message-yank-buffer) |
17493 | 1369 (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message) |
1370 (define-key message-mode-map "\C-c\C-w" 'message-insert-signature) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1371 (define-key message-mode-map "\C-c\M-h" 'message-insert-headers) |
17493 | 1372 (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body) |
1373 (define-key message-mode-map "\C-c\C-o" 'message-sort-headers) | |
1374 (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer) | |
1375 | |
1376 (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit) | |
1377 (define-key message-mode-map "\C-c\C-s" 'message-send) | |
1378 (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer) | |
1379 (define-key message-mode-map "\C-c\C-d" 'message-dont-send) | |
1380 | |
1381 (define-key message-mode-map "\C-c\C-e" 'message-elide-region) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1382 (define-key message-mode-map "\C-c\C-v" 'message-delete-not-region) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1383 (define-key message-mode-map "\C-c\C-z" 'message-kill-to-signature) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1384 (define-key message-mode-map "\M-\r" 'message-newline-and-reformat) |
17493 | 1385 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1386 (define-key message-mode-map "\C-c\C-a" 'mml-attach-file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1387 |
17493 | 1388 (define-key message-mode-map "\t" 'message-tab)) |
1389 | |
1390 (easy-menu-define | |
1391 message-mode-menu message-mode-map "Message Menu." | |
1392 '("Message" | |
1393 ["Sort Headers" message-sort-headers t] | |
1394 ["Yank Original" message-yank-original t] | |
1395 ["Fill Yanked Message" message-fill-yanked-message t] | |
1396 ["Insert Signature" message-insert-signature t] | |
1397 ["Caesar (rot13) Message" message-caesar-buffer-body t] | |
1398 ["Caesar (rot13) Region" message-caesar-region (mark t)] | |
1399 ["Elide Region" message-elide-region (mark t)] | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1400 ["Delete Outside Region" message-delete-not-region (mark t)] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1401 ["Kill To Signature" message-kill-to-signature t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1402 ["Newline and Reformat" message-newline-and-reformat t] |
17493 | 1403 ["Rename buffer" message-rename-buffer t] |
32964
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1404 ["Spellcheck" ispell-message |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1405 :help "Spellcheck this message"] |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1406 ["Attach file as MIME" mml-attach-file |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1407 :help "Attach a file at point"] |
17493 | 1408 "----" |
32964
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1409 ["Send Message" message-send-and-exit |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1410 :help "Send this message"] |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1411 ["Abort Message" message-dont-send |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1412 :help "File this draft message and exit"] |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1413 ["Kill Message" message-kill-buffer |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1414 :help "Delete this message without sending"])) |
17493 | 1415 |
1416 (easy-menu-define | |
1417 message-mode-field-menu message-mode-map "" | |
1418 '("Field" | |
1419 ["Fetch To" message-insert-to t] | |
1420 ["Fetch Newsgroups" message-insert-newsgroups t] | |
1421 "----" | |
1422 ["To" message-goto-to t] | |
1423 ["Subject" message-goto-subject t] | |
1424 ["Cc" message-goto-cc t] | |
1425 ["Reply-To" message-goto-reply-to t] | |
1426 ["Summary" message-goto-summary t] | |
1427 ["Keywords" message-goto-keywords t] | |
1428 ["Newsgroups" message-goto-newsgroups t] | |
1429 ["Followup-To" message-goto-followup-to t] | |
1430 ["Distribution" message-goto-distribution t] | |
1431 ["Body" message-goto-body t] | |
1432 ["Signature" message-goto-signature t])) | |
1433 | |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
1434 (eval-when-compile |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
1435 (defvar facemenu-add-face-function) |
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
1436 (defvar facemenu-remove-face-function)) |
17493 | 1437 |
1438 ;;;###autoload | |
1439 (defun message-mode () | |
1440 "Major mode for editing mail and news to be sent. | |
1441 Like Text Mode but with these additional commands: | |
1442 C-c C-s message-send (send the message) C-c C-c message-send-and-exit | |
34485 | 1443 C-c C-d Postpone sending the message C-c C-k Kill the message |
17493 | 1444 C-c C-f move to a header field (and create it if there isn't): |
1445 C-c C-f C-t move to To C-c C-f C-s move to Subject | |
1446 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc | |
1447 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To | |
1448 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups | |
1449 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution | |
1450 C-c C-f C-f move to Followup-To | |
1451 C-c C-t message-insert-to (add a To header to a news followup) | |
1452 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply) | |
1453 C-c C-b message-goto-body (move to beginning of message text). | |
1454 C-c C-i message-goto-signature (move to the beginning of the signature). | |
1455 C-c C-w message-insert-signature (insert `message-signature-file' file). | |
1456 C-c C-y message-yank-original (insert current message, if any). | |
1457 C-c C-q message-fill-yanked-message (fill what was yanked). | |
1458 C-c C-e message-elide-region (elide the text between point and mark). | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1459 C-c C-v message-delete-not-region (remove the text outside the region). |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1460 C-c C-z message-kill-to-signature (kill the text up to the signature). |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1461 C-c C-r message-caesar-buffer-body (rot13 the message body). |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1462 C-c C-a mml-attach-file (attach a file as MIME). |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1463 M-RET message-newline-and-reformat (break the line and reformat)." |
17493 | 1464 (interactive) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1465 (if (local-variable-p 'mml-buffer-list (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1466 (mml-destroy-buffers)) |
17493 | 1467 (kill-all-local-variables) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1468 (set (make-local-variable 'message-reply-buffer) nil) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1469 (make-local-variable 'message-send-actions) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1470 (make-local-variable 'message-exit-actions) |
17493 | 1471 (make-local-variable 'message-kill-actions) |
1472 (make-local-variable 'message-postpone-actions) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1473 (make-local-variable 'message-draft-article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1474 (make-local-hook 'kill-buffer-hook) |
17493 | 1475 (set-syntax-table message-mode-syntax-table) |
1476 (use-local-map message-mode-map) | |
1477 (setq local-abbrev-table message-mode-abbrev-table) | |
1478 (setq major-mode 'message-mode) | |
1479 (setq mode-name "Message") | |
1480 (setq buffer-offer-save t) | |
1481 (make-local-variable 'facemenu-add-face-function) | |
1482 (make-local-variable 'facemenu-remove-face-function) | |
1483 (setq facemenu-add-face-function | |
1484 (lambda (face end) | |
1485 (let ((face-fun (cdr (assq face message-face-alist)))) | |
1486 (if face-fun | |
1487 (funcall face-fun (point) end) | |
1488 (error "Face %s not configured for %s mode" face mode-name))) | |
1489 "") | |
1490 facemenu-remove-face-function t) | |
1491 (make-local-variable 'message-reply-headers) | |
1492 (setq message-reply-headers nil) | |
1493 (make-local-variable 'message-newsreader) | |
1494 (make-local-variable 'message-mailer) | |
1495 (make-local-variable 'message-post-method) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1496 (set (make-local-variable 'message-sent-message-via) nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1497 (set (make-local-variable 'message-checksum) nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1498 (set (make-local-variable 'message-mime-part) 0) |
33436
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1499 (message-setup-fill-variables) |
17493 | 1500 ;;(when (fboundp 'mail-hist-define-keys) |
1501 ;; (mail-hist-define-keys)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1502 (if (featurep 'xemacs) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1503 (message-setup-toolbar) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1504 (set (make-local-variable 'font-lock-defaults) |
32964
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1505 '(message-font-lock-keywords t)) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1506 (if (boundp 'message-tool-bar-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1507 (set (make-local-variable 'tool-bar-map) message-tool-bar-map))) |
17493 | 1508 (easy-menu-add message-mode-menu message-mode-map) |
1509 (easy-menu-add message-mode-field-menu message-mode-map) | |
1510 ;; Allow mail alias things. | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1511 (when (eq message-mail-alias-type 'abbrev) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1512 (if (fboundp 'mail-abbrevs-setup) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1513 (mail-abbrevs-setup) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1514 (mail-aliases-setup))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1515 (message-set-auto-save-file-name) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1516 (mm-enable-multibyte) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1517 (make-local-variable 'indent-tabs-mode) ;Turn off tabs for indentation. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1518 (setq indent-tabs-mode nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1519 (mml-mode) |
17493 | 1520 (run-hooks 'text-mode-hook 'message-mode-hook)) |
1521 | |
33436
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1522 (defun message-setup-fill-variables () |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1523 "Setup message fill variables." |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1524 (make-local-variable 'paragraph-separate) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1525 (make-local-variable 'paragraph-start) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1526 (make-local-variable 'adaptive-fill-regexp) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1527 (unless (boundp 'adaptive-fill-first-line-regexp) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1528 (setq adaptive-fill-first-line-regexp nil)) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1529 (make-local-variable 'adaptive-fill-first-line-regexp) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1530 (make-local-variable 'auto-fill-inhibit-regexp) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1531 (let ((quote-prefix-regexp |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1532 (concat |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1533 "[ \t]*" ; possible initial space |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1534 "\\(\\(" (regexp-quote message-yank-prefix) "\\|" ; user's prefix |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1535 "\\w+>\\|" ; supercite-style prefix |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1536 "[|:>]" ; standard prefix |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1537 "\\)[ \t]*\\)+"))) ; possible space after each prefix |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1538 (setq paragraph-start |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1539 (concat |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1540 (regexp-quote mail-header-separator) "$\\|" |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1541 "[ \t]*$\\|" ; blank lines |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1542 "-- $\\|" ; signature delimiter |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1543 "---+$\\|" ; delimiters for forwarded messages |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1544 page-delimiter "$\\|" ; spoiler warnings |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1545 ".*wrote:$\\|" ; attribution lines |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1546 quote-prefix-regexp "$")) ; empty lines in quoted text |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1547 (setq paragraph-separate paragraph-start) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1548 (setq adaptive-fill-regexp |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1549 (concat quote-prefix-regexp "\\|" adaptive-fill-regexp)) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1550 (setq adaptive-fill-first-line-regexp |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1551 (concat quote-prefix-regexp "\\|" |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1552 adaptive-fill-first-line-regexp)) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1553 (setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:"))) |
a324254af725
From Emerick Rogul <emerick@csa.bu.edu>.
Dave Love <fx@gnu.org>
parents:
33400
diff
changeset
|
1554 |
17493 | 1555 |
1556 | |
1557 ;;; | |
1558 ;;; Message mode commands | |
1559 ;;; | |
1560 | |
1561 ;;; Movement commands | |
1562 | |
1563 (defun message-goto-to () | |
1564 "Move point to the To header." | |
1565 (interactive) | |
1566 (message-position-on-field "To")) | |
1567 | |
1568 (defun message-goto-subject () | |
1569 "Move point to the Subject header." | |
1570 (interactive) | |
1571 (message-position-on-field "Subject")) | |
1572 | |
1573 (defun message-goto-cc () | |
1574 "Move point to the Cc header." | |
1575 (interactive) | |
1576 (message-position-on-field "Cc" "To")) | |
1577 | |
1578 (defun message-goto-bcc () | |
1579 "Move point to the Bcc header." | |
1580 (interactive) | |
1581 (message-position-on-field "Bcc" "Cc" "To")) | |
1582 | |
1583 (defun message-goto-fcc () | |
1584 "Move point to the Fcc header." | |
1585 (interactive) | |
1586 (message-position-on-field "Fcc" "To" "Newsgroups")) | |
1587 | |
1588 (defun message-goto-reply-to () | |
1589 "Move point to the Reply-To header." | |
1590 (interactive) | |
1591 (message-position-on-field "Reply-To" "Subject")) | |
1592 | |
1593 (defun message-goto-newsgroups () | |
1594 "Move point to the Newsgroups header." | |
1595 (interactive) | |
1596 (message-position-on-field "Newsgroups")) | |
1597 | |
1598 (defun message-goto-distribution () | |
1599 "Move point to the Distribution header." | |
1600 (interactive) | |
1601 (message-position-on-field "Distribution")) | |
1602 | |
1603 (defun message-goto-followup-to () | |
1604 "Move point to the Followup-To header." | |
1605 (interactive) | |
1606 (message-position-on-field "Followup-To" "Newsgroups")) | |
1607 | |
1608 (defun message-goto-keywords () | |
1609 "Move point to the Keywords header." | |
1610 (interactive) | |
1611 (message-position-on-field "Keywords" "Subject")) | |
1612 | |
1613 (defun message-goto-summary () | |
1614 "Move point to the Summary header." | |
1615 (interactive) | |
1616 (message-position-on-field "Summary" "Subject")) | |
1617 | |
1618 (defun message-goto-body () | |
1619 "Move point to the beginning of the message body." | |
1620 (interactive) | |
1621 (if (looking-at "[ \t]*\n") (expand-abbrev)) | |
1622 (goto-char (point-min)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1623 (or (search-forward (concat "\n" mail-header-separator "\n") nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1624 (search-forward "\n\n" nil t))) |
17493 | 1625 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1626 (defun message-goto-eoh () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1627 "Move point to the end of the headers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1628 (interactive) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1629 (message-goto-body) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1630 (forward-line -1)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1631 |
17493 | 1632 (defun message-goto-signature () |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1633 "Move point to the beginning of the message signature. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1634 If there is no signature in the article, go to the end and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1635 return nil." |
17493 | 1636 (interactive) |
1637 (goto-char (point-min)) | |
1638 (if (re-search-forward message-signature-separator nil t) | |
1639 (forward-line 1) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1640 (goto-char (point-max)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1641 nil)) |
17493 | 1642 |
1643 | |
1644 | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1645 (defun message-insert-to (&optional force) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1646 "Insert a To header that points to the author of the article being replied to. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1647 If the original author requested not to be sent mail, the function signals |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1648 an error. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1649 With the prefix argument FORCE, insert the header anyway." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1650 (interactive "P") |
17493 | 1651 (let ((co (message-fetch-reply-field "mail-copies-to"))) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1652 (when (and (null force) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
1653 co |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1654 (or (equal (downcase co) "never") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1655 (equal (downcase co) "nobody"))) |
17493 | 1656 (error "The user has requested not to have copies sent via mail"))) |
1657 (when (and (message-position-on-field "To") | |
1658 (mail-fetch-field "to") | |
1659 (not (string-match "\\` *\\'" (mail-fetch-field "to")))) | |
1660 (insert ", ")) | |
1661 (insert (or (message-fetch-reply-field "reply-to") | |
1662 (message-fetch-reply-field "from") ""))) | |
1663 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1664 (defun message-widen-reply () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1665 "Widen the reply to include maximum recipients." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1666 (interactive) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1667 (let ((follow-to |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1668 (and message-reply-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1669 (buffer-name message-reply-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1670 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1671 (set-buffer message-reply-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1672 (message-get-reply-headers t))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1673 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1674 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1675 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1676 (dolist (elem follow-to) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1677 (message-remove-header (symbol-name (car elem))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1678 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1679 (insert (symbol-name (car elem)) ": " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1680 (cdr elem) "\n")))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1681 |
17493 | 1682 (defun message-insert-newsgroups () |
1683 "Insert the Newsgroups header from the article being replied to." | |
1684 (interactive) | |
1685 (when (and (message-position-on-field "Newsgroups") | |
1686 (mail-fetch-field "newsgroups") | |
1687 (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups")))) | |
1688 (insert ",")) | |
1689 (insert (or (message-fetch-reply-field "newsgroups") ""))) | |
1690 | |
1691 | |
1692 | |
1693 ;;; Various commands | |
1694 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1695 (defun message-delete-not-region (beg end) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1696 "Delete everything in the body of the current message that is outside of the region." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1697 (interactive "r") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1698 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1699 (goto-char end) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1700 (delete-region (point) (if (not (message-goto-signature)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1701 (point) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1702 (forward-line -2) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1703 (point))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1704 (insert "\n") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1705 (goto-char beg) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1706 (delete-region beg (progn (message-goto-body) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1707 (forward-line 2) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1708 (point)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1709 (when (message-goto-signature) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1710 (forward-line -2))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1711 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1712 (defun message-kill-to-signature () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1713 "Deletes all text up to the signature." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1714 (interactive) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1715 (let ((point (point))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1716 (message-goto-signature) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1717 (unless (eobp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1718 (forward-line -2)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1719 (kill-region point (point)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1720 (unless (bolp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1721 (insert "\n")))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1722 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1723 (defun message-newline-and-reformat () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1724 "Insert four newlines, and then reformat if inside quoted text." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1725 (interactive) |
33375
d7d4bd9d131c
(message-mode) <adaptive-fill-regexp>:
Dave Love <fx@gnu.org>
parents:
33342
diff
changeset
|
1726 ;; The Latin-1 angle quote looks pretty dubious. -- fx |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1727 (let ((prefix "[]>»|:}+ \t]*") |
33375
d7d4bd9d131c
(message-mode) <adaptive-fill-regexp>:
Dave Love <fx@gnu.org>
parents:
33342
diff
changeset
|
1728 (supercite-thing "[-._[:alnum:]]*[>]+[ \t]*") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1729 quoted point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1730 (unless (bolp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1731 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1732 (beginning-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1733 (when (looking-at (concat prefix |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1734 supercite-thing)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1735 (setq quoted (match-string 0)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1736 (insert "\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1737 (setq point (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1738 (insert "\n\n\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1739 (delete-region (point) (re-search-forward "[ \t]*")) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1740 (when quoted |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1741 (insert quoted)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1742 (fill-paragraph nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1743 (goto-char point) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1744 (forward-line 1))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1745 |
17493 | 1746 (defun message-insert-signature (&optional force) |
1747 "Insert a signature. See documentation for the `message-signature' variable." | |
1748 (interactive (list 0)) | |
1749 (let* ((signature | |
1750 (cond | |
1751 ((and (null message-signature) | |
1752 (eq force 0)) | |
1753 (save-excursion | |
1754 (goto-char (point-max)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1755 (not (re-search-backward message-signature-separator nil t)))) |
17493 | 1756 ((and (null message-signature) |
1757 force) | |
1758 t) | |
1759 ((message-functionp message-signature) | |
1760 (funcall message-signature)) | |
1761 ((listp message-signature) | |
1762 (eval message-signature)) | |
1763 (t message-signature))) | |
1764 (signature | |
1765 (cond ((stringp signature) | |
1766 signature) | |
1767 ((and (eq t signature) | |
1768 message-signature-file | |
1769 (file-exists-p message-signature-file)) | |
1770 signature)))) | |
1771 (when signature | |
1772 (goto-char (point-max)) | |
1773 ;; Insert the signature. | |
1774 (unless (bolp) | |
1775 (insert "\n")) | |
1776 (insert "\n-- \n") | |
1777 (if (eq signature t) | |
1778 (insert-file-contents message-signature-file) | |
1779 (insert signature)) | |
1780 (goto-char (point-max)) | |
1781 (or (bolp) (insert "\n"))))) | |
1782 | |
1783 (defun message-elide-region (b e) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1784 "Elide the text between point and mark. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1785 An ellipsis (from `message-elide-ellipsis') will be inserted where the |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1786 text was killed." |
17493 | 1787 (interactive "r") |
1788 (kill-region b e) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1789 (insert message-elide-ellipsis)) |
17493 | 1790 |
1791 (defvar message-caesar-translation-table nil) | |
1792 | |
1793 (defun message-caesar-region (b e &optional n) | |
1794 "Caesar rotation of region by N, default 13, for decrypting netnews." | |
1795 (interactive | |
1796 (list | |
1797 (min (point) (or (mark t) (point))) | |
1798 (max (point) (or (mark t) (point))) | |
1799 (when current-prefix-arg | |
1800 (prefix-numeric-value current-prefix-arg)))) | |
1801 | |
1802 (setq n (if (numberp n) (mod n 26) 13)) ;canonize N | |
1803 (unless (or (zerop n) ; no action needed for a rot of 0 | |
1804 (= b e)) ; no region to rotate | |
1805 ;; We build the table, if necessary. | |
1806 (when (or (not message-caesar-translation-table) | |
1807 (/= (aref message-caesar-translation-table ?a) (+ ?a n))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1808 (setq message-caesar-translation-table |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1809 (message-make-caesar-translation-table n))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1810 (translate-region b e message-caesar-translation-table))) |
17493 | 1811 |
1812 (defun message-make-caesar-translation-table (n) | |
1813 "Create a rot table with offset N." | |
1814 (let ((i -1) | |
1815 (table (make-string 256 0))) | |
1816 (while (< (incf i) 256) | |
1817 (aset table i i)) | |
1818 (concat | |
1819 (substring table 0 ?A) | |
1820 (substring table (+ ?A n) (+ ?A n (- 26 n))) | |
1821 (substring table ?A (+ ?A n)) | |
1822 (substring table (+ ?A 26) ?a) | |
1823 (substring table (+ ?a n) (+ ?a n (- 26 n))) | |
1824 (substring table ?a (+ ?a n)) | |
1825 (substring table (+ ?a 26) 255)))) | |
1826 | |
1827 (defun message-caesar-buffer-body (&optional rotnum) | |
1828 "Caesar rotates all letters in the current buffer by 13 places. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1829 Used to encode/decode possiblyun offensive messages (commonly in net.jokes). |
17493 | 1830 With prefix arg, specifies the number of places to rotate each letter forward. |
1831 Mail and USENET news headers are not rotated." | |
1832 (interactive (if current-prefix-arg | |
1833 (list (prefix-numeric-value current-prefix-arg)) | |
1834 (list nil))) | |
1835 (save-excursion | |
1836 (save-restriction | |
1837 (when (message-goto-body) | |
1838 (narrow-to-region (point) (point-max))) | |
1839 (message-caesar-region (point-min) (point-max) rotnum)))) | |
1840 | |
1841 (defun message-pipe-buffer-body (program) | |
1842 "Pipe the message body in the current buffer through PROGRAM." | |
1843 (save-excursion | |
1844 (save-restriction | |
1845 (when (message-goto-body) | |
1846 (narrow-to-region (point) (point-max))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1847 (shell-command-on-region |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1848 (point-min) (point-max) program nil t)))) |
17493 | 1849 |
1850 (defun message-rename-buffer (&optional enter-string) | |
1851 "Rename the *message* buffer to \"*message* RECIPIENT\". | |
1852 If the function is run with a prefix, it will ask for a new buffer | |
1853 name, rather than giving an automatic name." | |
1854 (interactive "Pbuffer name: ") | |
1855 (save-excursion | |
1856 (save-restriction | |
1857 (goto-char (point-min)) | |
1858 (narrow-to-region (point) | |
1859 (search-forward mail-header-separator nil 'end)) | |
1860 (let* ((mail-to (or | |
1861 (if (message-news-p) (message-fetch-field "Newsgroups") | |
1862 (message-fetch-field "To")) | |
1863 "")) | |
1864 (mail-trimmed-to | |
1865 (if (string-match "," mail-to) | |
1866 (concat (substring mail-to 0 (match-beginning 0)) ", ...") | |
1867 mail-to)) | |
1868 (name-default (concat "*message* " mail-trimmed-to)) | |
1869 (name (if enter-string | |
1870 (read-string "New buffer name: " name-default) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1871 name-default))) |
17493 | 1872 (rename-buffer name t))))) |
1873 | |
1874 (defun message-fill-yanked-message (&optional justifyp) | |
1875 "Fill the paragraphs of a message yanked into this one. | |
1876 Numeric argument means justify as well." | |
1877 (interactive "P") | |
1878 (save-excursion | |
1879 (goto-char (point-min)) | |
1880 (search-forward (concat "\n" mail-header-separator "\n") nil t) | |
1881 (let ((fill-prefix message-yank-prefix)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1882 (fill-individual-paragraphs (point) (point-max) justifyp)))) |
17493 | 1883 |
1884 (defun message-indent-citation () | |
1885 "Modify text just inserted from a message to be cited. | |
1886 The inserted text should be the region. | |
1887 When this function returns, the region is again around the modified text. | |
1888 | |
1889 Normally, indent each nonblank line `message-indentation-spaces' spaces. | |
1890 However, if `message-yank-prefix' is non-nil, insert that prefix on each line." | |
1891 (let ((start (point))) | |
1892 ;; Remove unwanted headers. | |
1893 (when message-ignored-cited-headers | |
1894 (let (all-removed) | |
1895 (save-restriction | |
1896 (narrow-to-region | |
1897 (goto-char start) | |
1898 (if (search-forward "\n\n" nil t) | |
1899 (1- (point)) | |
1900 (point))) | |
1901 (message-remove-header message-ignored-cited-headers t) | |
1902 (when (= (point-min) (point-max)) | |
1903 (setq all-removed t)) | |
1904 (goto-char (point-max))) | |
1905 (if all-removed | |
1906 (goto-char start) | |
1907 (forward-line 1)))) | |
1908 ;; Delete blank lines at the start of the buffer. | |
1909 (while (and (point-min) | |
1910 (eolp) | |
1911 (not (eobp))) | |
1912 (message-delete-line)) | |
1913 ;; Delete blank lines at the end of the buffer. | |
1914 (goto-char (point-max)) | |
1915 (unless (eolp) | |
1916 (insert "\n")) | |
1917 (while (and (zerop (forward-line -1)) | |
1918 (looking-at "$")) | |
1919 (message-delete-line)) | |
1920 ;; Do the indentation. | |
1921 (if (null message-yank-prefix) | |
1922 (indent-rigidly start (mark t) message-indentation-spaces) | |
1923 (save-excursion | |
1924 (goto-char start) | |
1925 (while (< (point) (mark t)) | |
1926 (insert message-yank-prefix) | |
1927 (forward-line 1)))) | |
1928 (goto-char start))) | |
1929 | |
1930 (defun message-yank-original (&optional arg) | |
1931 "Insert the message being replied to, if any. | |
1932 Puts point before the text and mark after. | |
1933 Normally indents each nonblank line ARG spaces (default 3). However, | |
1934 if `message-yank-prefix' is non-nil, insert that prefix on each line. | |
1935 | |
1936 This function uses `message-cite-function' to do the actual citing. | |
1937 | |
1938 Just \\[universal-argument] as argument means don't indent, insert no | |
1939 prefix, and don't delete any headers." | |
1940 (interactive "P") | |
1941 (let ((modified (buffer-modified-p))) | |
1942 (when (and message-reply-buffer | |
1943 message-cite-function) | |
1944 (delete-windows-on message-reply-buffer t) | |
1945 (insert-buffer message-reply-buffer) | |
1946 (funcall message-cite-function) | |
1947 (message-exchange-point-and-mark) | |
1948 (unless (bolp) | |
1949 (insert ?\n)) | |
1950 (unless modified | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1951 (setq message-checksum (message-checksum)))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1952 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1953 (defun message-yank-buffer (buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1954 "Insert BUFFER into the current buffer and quote it." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1955 (interactive "bYank buffer: ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1956 (let ((message-reply-buffer buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1957 (save-window-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1958 (message-yank-original)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1959 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1960 (defun message-buffers () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1961 "Return a list of active message buffers." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1962 (let (buffers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1963 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1964 (dolist (buffer (buffer-list t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1965 (set-buffer buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1966 (when (and (eq major-mode 'message-mode) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1967 (null message-sent-message-via)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1968 (push (buffer-name buffer) buffers)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1969 (nreverse buffers))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1970 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1971 (defun message-cite-original-without-signature () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1972 "Cite function in the standard Message manner." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1973 (let ((start (point)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1974 (end (mark t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1975 (functions |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1976 (when message-indent-citation-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1977 (if (listp message-indent-citation-function) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1978 message-indent-citation-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1979 (list message-indent-citation-function))))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1980 (mml-quote-region start end) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1981 ;; Allow undoing. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1982 (undo-boundary) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1983 (goto-char end) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1984 (when (re-search-backward message-signature-separator start t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1985 ;; Also peel off any blank lines before the signature. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1986 (forward-line -1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1987 (while (looking-at "^[ \t]*$") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1988 (forward-line -1)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1989 (forward-line 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1990 (delete-region (point) end)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1991 (goto-char start) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1992 (while functions |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1993 (funcall (pop functions))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1994 (when message-citation-line-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1995 (unless (bolp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1996 (insert "\n")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1997 (funcall message-citation-line-function)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
1998 |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
1999 (eval-when-compile (defvar mail-citation-hook)) ;Compiler directive |
17493 | 2000 (defun message-cite-original () |
2001 "Cite function in the standard Message manner." | |
22656
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2002 (if (and (boundp 'mail-citation-hook) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2003 mail-citation-hook) |
22656
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2004 (run-hooks 'mail-citation-hook) |
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2005 (let ((start (point)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2006 (end (mark t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2007 (functions |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2008 (when message-indent-citation-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2009 (if (listp message-indent-citation-function) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2010 message-indent-citation-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2011 (list message-indent-citation-function))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2012 (mml-quote-region start end) |
22656
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2013 (goto-char start) |
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2014 (while functions |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2015 (funcall (pop functions))) |
22656
e3dc0aa099e5
(message-cite-original): If mail-citation-hook
Richard M. Stallman <rms@gnu.org>
parents:
22378
diff
changeset
|
2016 (when message-citation-line-function |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2017 (unless (bolp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2018 (insert "\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2019 (funcall message-citation-line-function))))) |
17493 | 2020 |
2021 (defun message-insert-citation-line () | |
2022 "Function that inserts a simple citation line." | |
2023 (when message-reply-headers | |
2024 (insert (mail-header-from message-reply-headers) " writes:\n\n"))) | |
2025 | |
2026 (defun message-position-on-field (header &rest afters) | |
2027 (let ((case-fold-search t)) | |
2028 (save-restriction | |
2029 (narrow-to-region | |
2030 (goto-char (point-min)) | |
2031 (progn | |
2032 (re-search-forward | |
2033 (concat "^" (regexp-quote mail-header-separator) "$")) | |
2034 (match-beginning 0))) | |
2035 (goto-char (point-min)) | |
2036 (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t) | |
2037 (progn | |
2038 (re-search-forward "^[^ \t]" nil 'move) | |
2039 (beginning-of-line) | |
2040 (skip-chars-backward "\n") | |
2041 t) | |
2042 (while (and afters | |
2043 (not (re-search-forward | |
2044 (concat "^" (regexp-quote (car afters)) ":") | |
2045 nil t))) | |
2046 (pop afters)) | |
2047 (when afters | |
2048 (re-search-forward "^[^ \t]" nil 'move) | |
2049 (beginning-of-line)) | |
2050 (insert header ": \n") | |
2051 (forward-char -1) | |
2052 nil)))) | |
2053 | |
2054 (defun message-remove-signature () | |
2055 "Remove the signature from the text between point and mark. | |
2056 The text will also be indented the normal way." | |
2057 (save-excursion | |
2058 (let ((start (point)) | |
2059 mark) | |
2060 (if (not (re-search-forward message-signature-separator (mark t) t)) | |
2061 ;; No signature here, so we just indent the cited text. | |
2062 (message-indent-citation) | |
2063 ;; Find the last non-empty line. | |
2064 (forward-line -1) | |
2065 (while (looking-at "[ \t]*$") | |
2066 (forward-line -1)) | |
2067 (forward-line 1) | |
2068 (setq mark (set-marker (make-marker) (point))) | |
2069 (goto-char start) | |
2070 (message-indent-citation) | |
2071 ;; Enable undoing the deletion. | |
2072 (undo-boundary) | |
2073 (delete-region mark (mark t)) | |
2074 (set-marker mark nil))))) | |
2075 | |
2076 | |
2077 | |
2078 ;;; | |
2079 ;;; Sending messages | |
2080 ;;; | |
2081 | |
2082 (defun message-send-and-exit (&optional arg) | |
2083 "Send message like `message-send', then, if no errors, exit from mail buffer." | |
2084 (interactive "P") | |
2085 (let ((buf (current-buffer)) | |
2086 (actions message-exit-actions)) | |
2087 (when (and (message-send arg) | |
2088 (buffer-name buf)) | |
2089 (if message-kill-buffer-on-exit | |
2090 (kill-buffer buf) | |
2091 (bury-buffer buf) | |
2092 (when (eq buf (current-buffer)) | |
2093 (message-bury buf))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2094 (message-do-actions actions) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2095 t))) |
17493 | 2096 |
2097 (defun message-dont-send () | |
2098 "Don't send the message you have been editing." | |
2099 (interactive) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2100 (set-buffer-modified-p t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2101 (save-buffer) |
17493 | 2102 (let ((actions message-postpone-actions)) |
2103 (message-bury (current-buffer)) | |
2104 (message-do-actions actions))) | |
2105 | |
2106 (defun message-kill-buffer () | |
2107 "Kill the current buffer." | |
2108 (interactive) | |
2109 (when (or (not (buffer-modified-p)) | |
2110 (yes-or-no-p "Message modified; kill anyway? ")) | |
2111 (let ((actions message-kill-actions)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2112 (setq buffer-file-name nil) |
17493 | 2113 (kill-buffer (current-buffer)) |
2114 (message-do-actions actions)))) | |
2115 | |
2116 (defun message-bury (buffer) | |
2117 "Bury this mail buffer." | |
2118 (let ((newbuf (other-buffer buffer))) | |
2119 (bury-buffer buffer) | |
2120 (if (and (fboundp 'frame-parameters) | |
2121 (cdr (assq 'dedicated (frame-parameters))) | |
2122 (not (null (delq (selected-frame) (visible-frame-list))))) | |
2123 (delete-frame (selected-frame)) | |
2124 (switch-to-buffer newbuf)))) | |
2125 | |
2126 (defun message-send (&optional arg) | |
2127 "Send the message in the current buffer. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2128 If `message-interactive' is non-nil, wait for success indication or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2129 error messages, and inform user. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2130 Otherwise any failure is reported in a message back to the user from |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2131 the mailer. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2132 The usage of ARG is defined by the instance that called Message. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2133 It should typically alter the sending method in some way or other." |
17493 | 2134 (interactive "P") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2135 ;; Make it possible to undo the coming changes. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2136 (undo-boundary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2137 (let ((inhibit-read-only t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2138 (put-text-property (point-min) (point-max) 'read-only nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2139 (message-fix-before-sending) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2140 (run-hooks 'message-send-hook) |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2141 (message message-sending-message) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2142 (let ((alist message-send-method-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2143 (success t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2144 elem sent) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2145 (while (and success |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2146 (setq elem (pop alist))) |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2147 (when (funcall (cadr elem)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2148 (when (and (or (not (memq (car elem) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2149 message-sent-message-via)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2150 (y-or-n-p |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2151 (format |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2152 "Already sent message via %s; resend? " |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2153 (car elem)))) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2154 (setq success (funcall (caddr elem) arg))) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2155 (setq sent t)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2156 (unless (or sent (not success)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2157 (error "No methods specified to send by")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2158 (when (and success sent) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2159 (message-do-fcc) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2160 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2161 (run-hooks 'message-sent-hook)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2162 (message "Sending...done") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2163 ;; Mark the buffer as unmodified and delete auto-save. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2164 (set-buffer-modified-p nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2165 (delete-auto-save-file-if-necessary t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2166 (message-disassociate-draft) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2167 ;; Delete other mail buffers and stuff. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2168 (message-do-send-housekeeping) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2169 (message-do-actions message-send-actions) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2170 ;; Return success. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2171 t))) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2172 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2173 (defun message-send-via-mail (arg) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2174 "Send the current message via mail." |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2175 (message-send-mail arg)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2176 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2177 (defun message-send-via-news (arg) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2178 "Send the current message via news." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2179 (funcall message-send-news-function arg)) |
17493 | 2180 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2181 (defmacro message-check (type &rest forms) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2182 "Eval FORMS if TYPE is to be checked." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2183 `(or (message-check-element ,type) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2184 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2185 ,@forms))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2186 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2187 (put 'message-check 'lisp-indent-function 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2188 (put 'message-check 'edebug-form-spec '(form body)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2189 |
17493 | 2190 (defun message-fix-before-sending () |
2191 "Do various things to make the message nice before sending it." | |
2192 ;; Make sure there's a newline at the end of the message. | |
2193 (goto-char (point-max)) | |
2194 (unless (bolp) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2195 (insert "\n")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2196 ;; Delete all invisible text. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2197 (message-check 'invisible-text |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2198 (when (text-property-any (point-min) (point-max) 'invisible t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2199 (put-text-property (point-min) (point-max) 'invisible nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2200 (unless (yes-or-no-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2201 "Invisible text found and made visible; continue posting? ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2202 (error "Invisible text found and made visible"))))) |
17493 | 2203 |
2204 (defun message-add-action (action &rest types) | |
2205 "Add ACTION to be performed when doing an exit of type TYPES." | |
2206 (let (var) | |
2207 (while types | |
2208 (set (setq var (intern (format "message-%s-actions" (pop types)))) | |
2209 (nconc (symbol-value var) (list action)))))) | |
2210 | |
2211 (defun message-do-actions (actions) | |
2212 "Perform all actions in ACTIONS." | |
2213 ;; Now perform actions on successful sending. | |
2214 (while actions | |
2215 (ignore-errors | |
2216 (cond | |
2217 ;; A simple function. | |
2218 ((message-functionp (car actions)) | |
2219 (funcall (car actions))) | |
2220 ;; Something to be evaled. | |
2221 (t | |
2222 (eval (car actions))))) | |
2223 (pop actions))) | |
2224 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2225 (defun message-send-mail-partially () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2226 "Sendmail as message/partial." |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2227 ;; replace the header delimiter with a blank line |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2228 (goto-char (point-min)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2229 (re-search-forward |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2230 (concat "^" (regexp-quote mail-header-separator) "\n")) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2231 (replace-match "\n") |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
2232 (run-hooks 'message-send-mail-hook) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2233 (let ((p (goto-char (point-min))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2234 (tembuf (message-generate-new-buffer-clone-locals " message temp")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2235 (curbuf (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2236 (id (message-make-message-id)) (n 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2237 plist total header required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2238 (while (not (eobp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2239 (if (< (point-max) (+ p message-send-mail-partially-limit)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2240 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2241 (goto-char (+ p message-send-mail-partially-limit)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2242 (beginning-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2243 (if (<= (point) p) (forward-line 1))) ;; In case of bad message. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2244 (push p plist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2245 (setq p (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2246 (setq total (length plist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2247 (push (point-max) plist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2248 (setq plist (nreverse plist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2249 (unwind-protect |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2250 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2251 (setq p (pop plist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2252 (while plist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2253 (set-buffer curbuf) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2254 (copy-to-buffer tembuf p (car plist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2255 (set-buffer tembuf) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2256 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2257 (if header |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2258 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2259 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2260 (narrow-to-region (point) (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2261 (insert header)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2262 (message-goto-eoh) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2263 (setq header (buffer-substring (point-min) (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2264 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2265 (narrow-to-region (point) (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2266 (insert header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2267 (message-remove-header "Mime-Version") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2268 (message-remove-header "Content-Type") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2269 (message-remove-header "Content-Transfer-Encoding") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2270 (message-remove-header "Message-ID") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2271 (message-remove-header "Lines") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2272 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2273 (insert "Mime-Version: 1.0\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2274 (setq header (buffer-substring (point-min) (point-max)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2275 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2276 (insert (format "Content-Type: message/partial; id=\"%s\"; number=%d; total=%d\n" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2277 id n total)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2278 (let ((mail-header-separator "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2279 (when (memq 'Message-ID message-required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2280 (insert "Message-ID: " (message-make-message-id) "\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2281 (when (memq 'Lines message-required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2282 (let ((mail-header-separator "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2283 (insert "Lines: " (message-make-lines) "\n"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2284 (message-goto-subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2285 (end-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2286 (insert (format " (%d/%d)" n total)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2287 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2288 (insert "\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2289 (widen) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2290 (mm-with-unibyte-current-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2291 (funcall message-send-mail-function))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2292 (setq n (+ n 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2293 (setq p (pop plist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2294 (erase-buffer))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2295 (kill-buffer tembuf)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2296 |
17493 | 2297 (defun message-send-mail (&optional arg) |
2298 (require 'mail-utils) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2299 (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2300 (case-fold-search nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2301 (news (message-news-p)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2302 (mailbuf (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2303 (message-this-is-mail t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2304 (message-posting-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2305 (if (fboundp 'gnus-setup-posting-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2306 (gnus-setup-posting-charset nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2307 message-posting-charset))) |
17493 | 2308 (save-restriction |
2309 (message-narrow-to-headers) | |
2310 ;; Insert some headers. | |
2311 (let ((message-deletable-headers | |
2312 (if news nil message-deletable-headers))) | |
2313 (message-generate-headers message-required-mail-headers)) | |
2314 ;; Let the user do all of the above. | |
2315 (run-hooks 'message-header-hook)) | |
2316 (unwind-protect | |
2317 (save-excursion | |
2318 (set-buffer tembuf) | |
2319 (erase-buffer) | |
2320 ;; Avoid copying text props. | |
33748
2827e4066e08
* message.el (message-send-mail): Use buffer-substring-no-properties.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
33436
diff
changeset
|
2321 (insert (with-current-buffer mailbuf |
2827e4066e08
* message.el (message-send-mail): Use buffer-substring-no-properties.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
33436
diff
changeset
|
2322 (buffer-substring-no-properties (point-min) (point-max)))) |
17493 | 2323 ;; Remove some headers. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2324 (message-encode-message-body) |
17493 | 2325 (save-restriction |
2326 (message-narrow-to-headers) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2327 ;; We (re)generate the Lines header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2328 (when (memq 'Lines message-required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2329 (message-generate-headers '(Lines))) |
17493 | 2330 ;; Remove some headers. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2331 (message-remove-header message-ignored-mail-headers t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2332 (let ((mail-parse-charset message-default-charset)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2333 (mail-encode-encoded-word-buffer))) |
17493 | 2334 (goto-char (point-max)) |
2335 ;; require one newline at the end. | |
2336 (or (= (preceding-char) ?\n) | |
2337 (insert ?\n)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2338 (when |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2339 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2340 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2341 (and news |
17493 | 2342 (or (message-fetch-field "cc") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2343 (message-fetch-field "to")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2344 (string= "text/plain" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2345 (car |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2346 (mail-header-parse-content-type |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2347 (message-fetch-field "content-type")))))) |
17493 | 2348 (message-insert-courtesy-copy)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2349 (if (or (not message-send-mail-partially-limit) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2350 (< (point-max) message-send-mail-partially-limit) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2351 (not (y-or-n-p "The message size is too large, should it be sent partially?"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2352 (mm-with-unibyte-current-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2353 (funcall message-send-mail-function)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2354 (message-send-mail-partially))) |
17493 | 2355 (kill-buffer tembuf)) |
2356 (set-buffer mailbuf) | |
2357 (push 'mail message-sent-message-via))) | |
2358 | |
2359 (defun message-send-mail-with-sendmail () | |
2360 "Send off the prepared buffer with sendmail." | |
2361 (let ((errbuf (if message-interactive | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2362 (message-generate-new-buffer-clone-locals |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2363 " sendmail errors") |
17493 | 2364 0)) |
2365 resend-to-addresses delimline) | |
2366 (let ((case-fold-search t)) | |
2367 (save-restriction | |
2368 (message-narrow-to-headers) | |
2369 (setq resend-to-addresses (message-fetch-field "resent-to"))) | |
2370 ;; Change header-delimiter to be what sendmail expects. | |
2371 (goto-char (point-min)) | |
2372 (re-search-forward | |
2373 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
2374 (replace-match "\n") | |
2375 (backward-char 1) | |
2376 (setq delimline (point-marker)) | |
2377 (run-hooks 'message-send-mail-hook) | |
2378 ;; Insert an extra newline if we need it to work around | |
2379 ;; Sun's bug that swallows newlines. | |
2380 (goto-char (1+ delimline)) | |
2381 (when (eval message-mailer-swallows-blank-line) | |
2382 (newline)) | |
2383 (when message-interactive | |
2384 (save-excursion | |
2385 (set-buffer errbuf) | |
2386 (erase-buffer)))) | |
23096
e4419c63d4d7
(message-send-mail-with-sendmail): Bind
Kenichi Handa <handa@m17n.org>
parents:
22952
diff
changeset
|
2387 (let ((default-directory "/") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2388 (coding-system-for-write message-send-coding-system)) |
17493 | 2389 (apply 'call-process-region |
2390 (append (list (point-min) (point-max) | |
2391 (if (boundp 'sendmail-program) | |
2392 sendmail-program | |
2393 "/usr/lib/sendmail") | |
2394 nil errbuf nil "-oi") | |
2395 ;; Always specify who from, | |
2396 ;; since some systems have broken sendmails. | |
2397 ;; But some systems are more broken with -f, so | |
2398 ;; we'll let users override this. | |
2399 (if (null message-sendmail-f-is-evil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2400 (list "-f" (message-make-address))) |
17493 | 2401 ;; These mean "report errors by mail" |
2402 ;; and "deliver in background". | |
2403 (if (null message-interactive) '("-oem" "-odb")) | |
2404 ;; Get the addresses from the message | |
2405 ;; unless this is a resend. | |
2406 ;; We must not do that for a resend | |
2407 ;; because we would find the original addresses. | |
2408 ;; For a resend, include the specific addresses. | |
2409 (if resend-to-addresses | |
2410 (list resend-to-addresses) | |
2411 '("-t"))))) | |
2412 (when message-interactive | |
2413 (save-excursion | |
2414 (set-buffer errbuf) | |
2415 (goto-char (point-min)) | |
2416 (while (re-search-forward "\n\n* *" nil t) | |
2417 (replace-match "; ")) | |
2418 (if (not (zerop (buffer-size))) | |
2419 (error "Sending...failed to %s" | |
2420 (buffer-substring (point-min) (point-max))))) | |
2421 (when (bufferp errbuf) | |
2422 (kill-buffer errbuf))))) | |
2423 | |
2424 (defun message-send-mail-with-qmail () | |
2425 "Pass the prepared message buffer to qmail-inject. | |
2426 Refer to the documentation for the variable `message-send-mail-function' | |
2427 to find out how to use this." | |
2428 ;; replace the header delimiter with a blank line | |
2429 (goto-char (point-min)) | |
2430 (re-search-forward | |
2431 (concat "^" (regexp-quote mail-header-separator) "\n")) | |
2432 (replace-match "\n") | |
2433 (run-hooks 'message-send-mail-hook) | |
2434 ;; send the message | |
2435 (case | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2436 (let ((coding-system-for-write message-send-coding-system)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2437 (apply |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2438 'call-process-region 1 (point-max) message-qmail-inject-program |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2439 nil nil nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2440 ;; qmail-inject's default behaviour is to look for addresses on the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2441 ;; command line; if there're none, it scans the headers. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2442 ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2443 ;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2444 ;; in general, ALL of qmail-inject's defaults are perfect for simply |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2445 ;; reading a formatted (i. e., at least a To: or Resent-To header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2446 ;; message from stdin. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2447 ;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2448 ;; qmail also has the advantage of not having been raped by |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2449 ;; various vendors, so we don't have to allow for that, either -- |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2450 ;; compare this with message-send-mail-with-sendmail and weep |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2451 ;; for sendmail's lost innocence. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2452 ;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2453 ;; all this is way cool coz it lets us keep the arguments entirely |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2454 ;; free for -inject-arguments -- a big win for the user and for us |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2455 ;; since we don't have to play that double-guessing game and the user |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2456 ;; gets full control (no gestapo'ish -f's, for instance). --sj |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2457 message-qmail-inject-args)) |
17493 | 2458 ;; qmail-inject doesn't say anything on it's stdout/stderr, |
2459 ;; we have to look at the retval instead | |
2460 (0 nil) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2461 (1 (error "qmail-inject reported permanent failure")) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2462 (111 (error "qmail-inject reported transient failure")) |
17493 | 2463 ;; should never happen |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2464 (t (error "qmail-inject reported unknown failure")))) |
17493 | 2465 |
2466 (defun message-send-mail-with-mh () | |
2467 "Send the prepared message buffer with mh." | |
2468 (let ((mh-previous-window-config nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2469 (name (mh-new-draft-name))) |
17493 | 2470 (setq buffer-file-name name) |
2471 ;; MH wants to generate these headers itself. | |
2472 (when message-mh-deletable-headers | |
2473 (let ((headers message-mh-deletable-headers)) | |
2474 (while headers | |
2475 (goto-char (point-min)) | |
2476 (and (re-search-forward | |
2477 (concat "^" (symbol-name (car headers)) ": *") nil t) | |
2478 (message-delete-line)) | |
2479 (pop headers)))) | |
2480 (run-hooks 'message-send-mail-hook) | |
2481 ;; Pass it on to mh. | |
2482 (mh-send-letter))) | |
2483 | |
2484 (defun message-send-news (&optional arg) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2485 (let* ((tembuf (message-generate-new-buffer-clone-locals " *message temp*")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2486 (case-fold-search nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2487 (method (if (message-functionp message-post-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2488 (funcall message-post-method arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2489 message-post-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2490 (group-name-charset (gnus-group-name-charset method "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2491 (rfc2047-header-encoding-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2492 (if group-name-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2493 (cons (cons "Newsgroups" group-name-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2494 rfc2047-header-encoding-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2495 rfc2047-header-encoding-alist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2496 (messbuf (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2497 (message-syntax-checks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2498 (if arg |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2499 (cons '(existing-newsgroups . disabled) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2500 message-syntax-checks) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2501 message-syntax-checks)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2502 (message-this-is-news t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2503 (message-posting-charset (gnus-setup-posting-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2504 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2505 (message-narrow-to-headers-or-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2506 (message-fetch-field "Newsgroups")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2507 result) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2508 (if (not (message-check-news-body-syntax)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2509 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2510 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2511 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2512 ;; Insert some headers. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2513 (message-generate-headers message-required-news-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2514 ;; Let the user do all of the above. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2515 (run-hooks 'message-header-hook)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2516 (if group-name-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2517 (setq message-syntax-checks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2518 (cons '(valid-newsgroups . disabled) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2519 message-syntax-checks))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2520 (message-cleanup-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2521 (if (not (message-check-news-syntax)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2522 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2523 (unwind-protect |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2524 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2525 (set-buffer tembuf) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2526 (buffer-disable-undo) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2527 (erase-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2528 ;; Avoid copying text props. |
33768
8d6dc71efabb
(message-send-news): Use buffer-substring-no-properties.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
33748
diff
changeset
|
2529 (insert (with-current-buffer messbuf |
8d6dc71efabb
(message-send-news): Use buffer-substring-no-properties.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
33748
diff
changeset
|
2530 (buffer-substring-no-properties |
8d6dc71efabb
(message-send-news): Use buffer-substring-no-properties.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
33748
diff
changeset
|
2531 (point-min) (point-max)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2532 (message-encode-message-body) |
17493 | 2533 ;; Remove some headers. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2534 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2535 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2536 ;; We (re)generate the Lines header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2537 (when (memq 'Lines message-required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2538 (message-generate-headers '(Lines))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2539 ;; Remove some headers. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2540 (message-remove-header message-ignored-news-headers t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2541 (let ((mail-parse-charset message-default-charset)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2542 (mail-encode-encoded-word-buffer))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2543 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2544 ;; require one newline at the end. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2545 (or (= (preceding-char) ?\n) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2546 (insert ?\n)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2547 (let ((case-fold-search t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2548 ;; Remove the delimiter. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2549 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2550 (re-search-forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2551 (concat "^" (regexp-quote mail-header-separator) "\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2552 (replace-match "\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2553 (backward-char 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2554 (run-hooks 'message-send-news-hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2555 (gnus-open-server method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2556 (setq result (let ((mail-header-separator "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2557 (gnus-request-post method)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2558 (kill-buffer tembuf)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2559 (set-buffer messbuf) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2560 (if result |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2561 (push 'news message-sent-message-via) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2562 (message "Couldn't send message via news: %s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2563 (nnheader-get-report (car method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2564 nil))))) |
17493 | 2565 |
2566 ;;; | |
2567 ;;; Header generation & syntax checking. | |
2568 ;;; | |
2569 | |
2570 (defun message-check-element (type) | |
2571 "Returns non-nil if this type is not to be checked." | |
2572 (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me) | |
2573 t | |
2574 (let ((able (assq type message-syntax-checks))) | |
2575 (and (consp able) | |
2576 (eq (cdr able) 'disabled))))) | |
2577 | |
2578 (defun message-check-news-syntax () | |
2579 "Check the syntax of the message." | |
2580 (save-excursion | |
2581 (save-restriction | |
2582 (widen) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2583 ;; We narrow to the headers and check them first. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2584 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2585 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2586 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2587 (message-check-news-header-syntax)))))) |
17493 | 2588 |
2589 (defun message-check-news-header-syntax () | |
2590 (and | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2591 ;; Check Newsgroups header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2592 (message-check 'newsgroups |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2593 (let ((group (message-fetch-field "newsgroups"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2594 (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2595 (and group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2596 (not (string-match "\\`[ \t]*\\'" group))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2597 (ignore |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2598 (message |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2599 "The newsgroups field is empty or missing. Posting is denied."))))) |
17493 | 2600 ;; Check the Subject header. |
2601 (message-check 'subject | |
2602 (let* ((case-fold-search t) | |
2603 (subject (message-fetch-field "subject"))) | |
2604 (or | |
2605 (and subject | |
2606 (not (string-match "\\`[ \t]*\\'" subject))) | |
2607 (ignore | |
2608 (message | |
2609 "The subject field is empty or missing. Posting is denied."))))) | |
2610 ;; Check for commands in Subject. | |
2611 (message-check 'subject-cmsg | |
2612 (if (string-match "^cmsg " (message-fetch-field "subject")) | |
2613 (y-or-n-p | |
2614 "The control code \"cmsg\" is in the subject. Really post? ") | |
2615 t)) | |
2616 ;; Check for multiple identical headers. | |
2617 (message-check 'multiple-headers | |
2618 (let (found) | |
2619 (while (and (not found) | |
2620 (re-search-forward "^[^ \t:]+: " nil t)) | |
2621 (save-excursion | |
2622 (or (re-search-forward | |
2623 (concat "^" | |
2624 (regexp-quote | |
2625 (setq found | |
2626 (buffer-substring | |
2627 (match-beginning 0) (- (match-end 0) 2)))) | |
2628 ":") | |
2629 nil t) | |
2630 (setq found nil)))) | |
2631 (if found | |
2632 (y-or-n-p (format "Multiple %s headers. Really post? " found)) | |
2633 t))) | |
2634 ;; Check for Version and Sendsys. | |
2635 (message-check 'sendsys | |
2636 (if (re-search-forward "^Sendsys:\\|^Version:" nil t) | |
2637 (y-or-n-p | |
2638 (format "The article contains a %s command. Really post? " | |
2639 (buffer-substring (match-beginning 0) | |
2640 (1- (match-end 0))))) | |
2641 t)) | |
2642 ;; See whether we can shorten Followup-To. | |
2643 (message-check 'shorten-followup-to | |
2644 (let ((newsgroups (message-fetch-field "newsgroups")) | |
2645 (followup-to (message-fetch-field "followup-to")) | |
2646 to) | |
2647 (when (and newsgroups | |
2648 (string-match "," newsgroups) | |
2649 (not followup-to) | |
2650 (not | |
2651 (zerop | |
2652 (length | |
2653 (setq to (completing-read | |
2654 "Followups to: (default all groups) " | |
2655 (mapcar (lambda (g) (list g)) | |
2656 (cons "poster" | |
2657 (message-tokenize-header | |
2658 newsgroups))))))))) | |
2659 (goto-char (point-min)) | |
2660 (insert "Followup-To: " to "\n")) | |
2661 t)) | |
2662 ;; Check "Shoot me". | |
2663 (message-check 'shoot | |
2664 (if (re-search-forward | |
2665 "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t) | |
2666 (y-or-n-p "You appear to have a misconfigured system. Really post? ") | |
2667 t)) | |
2668 ;; Check for Approved. | |
2669 (message-check 'approved | |
2670 (if (re-search-forward "^Approved:" nil t) | |
2671 (y-or-n-p "The article contains an Approved header. Really post? ") | |
2672 t)) | |
2673 ;; Check the Message-ID header. | |
2674 (message-check 'message-id | |
2675 (let* ((case-fold-search t) | |
2676 (message-id (message-fetch-field "message-id" t))) | |
2677 (or (not message-id) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2678 ;; Is there an @ in the ID? |
17493 | 2679 (and (string-match "@" message-id) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2680 ;; Is there a dot in the ID? |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2681 (string-match "@[^.]*\\." message-id) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2682 ;; Does the ID end with a dot? |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2683 (not (string-match "\\.>" message-id))) |
17493 | 2684 (y-or-n-p |
2685 (format "The Message-ID looks strange: \"%s\". Really post? " | |
2686 message-id))))) | |
2687 ;; Check the Newsgroups & Followup-To headers. | |
2688 (message-check 'existing-newsgroups | |
2689 (let* ((case-fold-search t) | |
2690 (newsgroups (message-fetch-field "newsgroups")) | |
2691 (followup-to (message-fetch-field "followup-to")) | |
2692 (groups (message-tokenize-header | |
2693 (if followup-to | |
2694 (concat newsgroups "," followup-to) | |
2695 newsgroups))) | |
2696 (hashtb (and (boundp 'gnus-active-hashtb) | |
2697 gnus-active-hashtb)) | |
2698 errors) | |
2699 (if (or (not hashtb) | |
2700 (not (boundp 'gnus-read-active-file)) | |
2701 (not gnus-read-active-file) | |
2702 (eq gnus-read-active-file 'some)) | |
2703 t | |
2704 (while groups | |
2705 (when (and (not (boundp (intern (car groups) hashtb))) | |
2706 (not (equal (car groups) "poster"))) | |
2707 (push (car groups) errors)) | |
2708 (pop groups)) | |
2709 (if (not errors) | |
2710 t | |
2711 (y-or-n-p | |
2712 (format | |
2713 "Really post to %s unknown group%s: %s " | |
2714 (if (= (length errors) 1) "this" "these") | |
2715 (if (= (length errors) 1) "" "s") | |
2716 (mapconcat 'identity errors ", "))))))) | |
2717 ;; Check the Newsgroups & Followup-To headers for syntax errors. | |
2718 (message-check 'valid-newsgroups | |
2719 (let ((case-fold-search t) | |
2720 (headers '("Newsgroups" "Followup-To")) | |
2721 header error) | |
2722 (while (and headers (not error)) | |
2723 (when (setq header (mail-fetch-field (car headers))) | |
2724 (if (or | |
2725 (not | |
2726 (string-match | |
2727 "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'" | |
2728 header)) | |
2729 (memq | |
2730 nil (mapcar | |
2731 (lambda (g) | |
2732 (not (string-match "\\.\\'\\|\\.\\." g))) | |
2733 (message-tokenize-header header ",")))) | |
2734 (setq error t))) | |
2735 (unless error | |
2736 (pop headers))) | |
2737 (if (not error) | |
2738 t | |
2739 (y-or-n-p | |
2740 (format "The %s header looks odd: \"%s\". Really post? " | |
2741 (car headers) header))))) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2742 (message-check 'repeated-newsgroups |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2743 (let ((case-fold-search t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2744 (headers '("Newsgroups" "Followup-To")) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2745 header error groups group) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2746 (while (and headers |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2747 (not error)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2748 (when (setq header (mail-fetch-field (pop headers))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2749 (setq groups (message-tokenize-header header ",")) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2750 (while (setq group (pop groups)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2751 (when (member group groups) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2752 (setq error group |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2753 groups nil))))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2754 (if (not error) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2755 t |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2756 (y-or-n-p |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2757 (format "Group %s is repeated in headers. Really post? " error))))) |
17493 | 2758 ;; Check the From header. |
2759 (message-check 'from | |
2760 (let* ((case-fold-search t) | |
2761 (from (message-fetch-field "from")) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2762 ad) |
17493 | 2763 (cond |
2764 ((not from) | |
2765 (message "There is no From line. Posting is denied.") | |
2766 nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2767 ((or (not (string-match |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2768 "@[^\\.]*\\." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2769 (setq ad (nth 1 (mail-extract-address-components |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2770 from))))) ;larsi@ifi |
17493 | 2771 (string-match "\\.\\." ad) ;larsi@ifi..uio |
2772 (string-match "@\\." ad) ;larsi@.ifi.uio | |
2773 (string-match "\\.$" ad) ;larsi@ifi.uio. | |
2774 (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio | |
2775 (string-match "(.*).*(.*)" from)) ;(lars) (lars) | |
2776 (message | |
2777 "Denied posting -- the From looks strange: \"%s\"." from) | |
2778 nil) | |
2779 (t t)))))) | |
2780 | |
2781 (defun message-check-news-body-syntax () | |
2782 (and | |
2783 ;; Check for long lines. | |
2784 (message-check 'long-lines | |
2785 (goto-char (point-min)) | |
2786 (re-search-forward | |
2787 (concat "^" (regexp-quote mail-header-separator) "$")) | |
2788 (while (and | |
2789 (progn | |
2790 (end-of-line) | |
2791 (< (current-column) 80)) | |
2792 (zerop (forward-line 1)))) | |
2793 (or (bolp) | |
2794 (eobp) | |
2795 (y-or-n-p | |
2796 "You have lines longer than 79 characters. Really post? "))) | |
2797 ;; Check whether the article is empty. | |
2798 (message-check 'empty | |
2799 (goto-char (point-min)) | |
2800 (re-search-forward | |
2801 (concat "^" (regexp-quote mail-header-separator) "$")) | |
2802 (forward-line 1) | |
2803 (let ((b (point))) | |
2804 (goto-char (point-max)) | |
2805 (re-search-backward message-signature-separator nil t) | |
2806 (beginning-of-line) | |
2807 (or (re-search-backward "[^ \n\t]" b t) | |
2808 (y-or-n-p "Empty article. Really post? ")))) | |
2809 ;; Check for control characters. | |
2810 (message-check 'control-chars | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2811 (if (re-search-forward "[\000-\007\013\015-\032\034-\037\200-\237]" nil t) |
17493 | 2812 (y-or-n-p |
2813 "The article contains control characters. Really post? ") | |
2814 t)) | |
2815 ;; Check excessive size. | |
2816 (message-check 'size | |
2817 (if (> (buffer-size) 60000) | |
2818 (y-or-n-p | |
2819 (format "The article is %d octets long. Really post? " | |
2820 (buffer-size))) | |
2821 t)) | |
2822 ;; Check whether any new text has been added. | |
2823 (message-check 'new-text | |
2824 (or | |
2825 (not message-checksum) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2826 (not (eq (message-checksum) message-checksum)) |
17493 | 2827 (y-or-n-p |
2828 "It looks like no new text has been added. Really post? "))) | |
2829 ;; Check the length of the signature. | |
2830 (message-check 'signature | |
2831 (goto-char (point-max)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2832 (if (> (count-lines (point) (point-max)) 5) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2833 (y-or-n-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2834 (format |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2835 "Your .sig is %d lines; it should be max 4. Really post? " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2836 (1- (count-lines (point) (point-max))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2837 t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2838 ;; Ensure that text follows last quoted portion. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2839 (message-check 'quoting-style |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2840 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2841 (let ((no-problem t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2842 (when (search-backward-regexp "^>[^\n]*\n>" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2843 (setq no-problem nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2844 (while (not (eobp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2845 (when (and (not (eolp)) (looking-at "[^> \t]")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2846 (setq no-problem t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2847 (forward-line))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2848 (if no-problem |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2849 t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2850 (y-or-n-p "Your text should follow quoted text. Really post? ")))))) |
17493 | 2851 |
2852 (defun message-checksum () | |
2853 "Return a \"checksum\" for the current buffer." | |
2854 (let ((sum 0)) | |
2855 (save-excursion | |
2856 (goto-char (point-min)) | |
2857 (re-search-forward | |
2858 (concat "^" (regexp-quote mail-header-separator) "$")) | |
2859 (while (not (eobp)) | |
2860 (when (not (looking-at "[ \t\n]")) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2861 (setq sum (logxor (ash sum 1) (if (natnump sum) 0 1) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2862 (char-after)))) |
17493 | 2863 (forward-char 1))) |
2864 sum)) | |
2865 | |
2866 (defun message-do-fcc () | |
2867 "Process Fcc headers in the current buffer." | |
2868 (let ((case-fold-search t) | |
2869 (buf (current-buffer)) | |
2870 list file) | |
2871 (save-excursion | |
2872 (set-buffer (get-buffer-create " *message temp*")) | |
2873 (erase-buffer) | |
2874 (insert-buffer-substring buf) | |
2875 (save-restriction | |
2876 (message-narrow-to-headers) | |
2877 (while (setq file (message-fetch-field "fcc")) | |
2878 (push file list) | |
2879 (message-remove-header "fcc" nil t))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2880 (message-encode-message-body) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2881 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2882 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2883 (let ((mail-parse-charset message-default-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2884 (rfc2047-header-encoding-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2885 (cons '("Newsgroups" . default) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2886 rfc2047-header-encoding-alist))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2887 (mail-encode-encoded-word-buffer))) |
17493 | 2888 (goto-char (point-min)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2889 (when (re-search-forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2890 (concat "^" (regexp-quote mail-header-separator) "$") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2891 nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2892 (replace-match "" t t )) |
17493 | 2893 ;; Process FCC operations. |
2894 (while list | |
2895 (setq file (pop list)) | |
2896 (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file) | |
2897 ;; Pipe the article to the program in question. | |
2898 (call-process-region (point-min) (point-max) shell-file-name | |
2899 nil nil nil shell-command-switch | |
2900 (match-string 1 file)) | |
2901 ;; Save the article. | |
2902 (setq file (expand-file-name file)) | |
2903 (unless (file-exists-p (file-name-directory file)) | |
2904 (make-directory (file-name-directory file) t)) | |
2905 (if (and message-fcc-handler-function | |
2906 (not (eq message-fcc-handler-function 'rmail-output))) | |
2907 (funcall message-fcc-handler-function file) | |
2908 (if (and (file-readable-p file) (mail-file-babyl-p file)) | |
2909 (rmail-output file 1 nil t) | |
2910 (let ((mail-use-rfc822 t)) | |
2911 (rmail-output file 1 t t)))))) | |
2912 (kill-buffer (current-buffer))))) | |
2913 | |
2914 (defun message-output (filename) | |
2915 "Append this article to Unix/babyl mail file.." | |
2916 (if (and (file-readable-p filename) | |
2917 (mail-file-babyl-p filename)) | |
2918 (gnus-output-to-rmail filename t) | |
2919 (gnus-output-to-mail filename t))) | |
2920 | |
2921 (defun message-cleanup-headers () | |
2922 "Do various automatic cleanups of the headers." | |
2923 ;; Remove empty lines in the header. | |
2924 (save-restriction | |
2925 (message-narrow-to-headers) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2926 ;; Remove blank lines. |
17493 | 2927 (while (re-search-forward "^[ \t]*\n" nil t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2928 (replace-match "" t t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2929 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2930 ;; Correct Newsgroups and Followup-To headers: Change sequence of |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2931 ;; spaces to comma and eliminate spaces around commas. Eliminate |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2932 ;; embedded line breaks. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2933 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2934 (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2935 (save-restriction |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2936 (narrow-to-region |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2937 (point) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2938 (if (re-search-forward "^[^ \t]" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2939 (match-beginning 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2940 (forward-line 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2941 (point))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2942 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2943 (while (re-search-forward "\n[ \t]+" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2944 (replace-match " " t t)) ;No line breaks (too confusing) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2945 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2946 (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2947 (replace-match "," t t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2948 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2949 ;; Remove trailing commas. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2950 (when (re-search-forward ",+$" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
2951 (replace-match "" t t)))))) |
17493 | 2952 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2953 (defun message-make-date (&optional now) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2954 "Make a valid data header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2955 If NOW, use that time instead." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2956 (let* ((now (or now (current-time))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2957 (zone (nth 8 (decode-time now))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2958 (sign "+")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2959 (when (< zone 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2960 (setq sign "-") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2961 (setq zone (- zone))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2962 (concat |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2963 (format-time-string "%d" now) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2964 ;; The month name of the %b spec is locale-specific. Pfff. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2965 (format " %s " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2966 (capitalize (car (rassoc (nth 4 (decode-time now)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2967 parse-time-months)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2968 (format-time-string "%Y %H:%M:%S " now) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2969 ;; We do all of this because XEmacs doesn't have the %z spec. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2970 (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60))))) |
17493 | 2971 |
2972 (defun message-make-message-id () | |
2973 "Make a unique Message-ID." | |
2974 (concat "<" (message-unique-id) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2975 (let ((psubject (save-excursion (message-fetch-field "subject"))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2976 (psupersedes |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2977 (save-excursion (message-fetch-field "supersedes")))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2978 (if (or |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2979 (and message-reply-headers |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2980 (mail-header-references message-reply-headers) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2981 (mail-header-subject message-reply-headers) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2982 psubject |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2983 (mail-header-subject message-reply-headers) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2984 (not (string= |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2985 (message-strip-subject-re |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2986 (mail-header-subject message-reply-headers)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2987 (message-strip-subject-re psubject)))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2988 (and psupersedes |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
2989 (string-match "_-_@" psupersedes))) |
17493 | 2990 "_-_" "")) |
2991 "@" (message-make-fqdn) ">")) | |
2992 | |
2993 (defvar message-unique-id-char nil) | |
2994 | |
2995 ;; If you ever change this function, make sure the new version | |
2996 ;; cannot generate IDs that the old version could. | |
2997 ;; You might for example insert a "." somewhere (not next to another dot | |
2998 ;; or string boundary), or modify the "fsf" string. | |
2999 (defun message-unique-id () | |
3000 ;; Don't use microseconds from (current-time), they may be unsupported. | |
3001 ;; Instead we use this randomly inited counter. | |
3002 (setq message-unique-id-char | |
3003 (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20))))) | |
3004 ;; (current-time) returns 16-bit ints, | |
3005 ;; and 2^16*25 just fits into 4 digits i base 36. | |
3006 (* 25 25))) | |
3007 (let ((tm (current-time))) | |
3008 (concat | |
3009 (if (memq system-type '(ms-dos emx vax-vms)) | |
3010 (let ((user (downcase (user-login-name)))) | |
3011 (while (string-match "[^a-z0-9_]" user) | |
3012 (aset user (match-beginning 0) ?_)) | |
3013 user) | |
3014 (message-number-base36 (user-uid) -1)) | |
3015 (message-number-base36 (+ (car tm) | |
3016 (lsh (% message-unique-id-char 25) 16)) 4) | |
3017 (message-number-base36 (+ (nth 1 tm) | |
3018 (lsh (/ message-unique-id-char 25) 16)) 4) | |
3019 ;; Append the newsreader name, because while the generated | |
3020 ;; ID is unique to this newsreader, other newsreaders might | |
3021 ;; otherwise generate the same ID via another algorithm. | |
3022 ".fsf"))) | |
3023 | |
3024 (defun message-number-base36 (num len) | |
3025 (if (if (< len 0) | |
3026 (<= num 0) | |
3027 (= len 0)) | |
3028 "" | |
3029 (concat (message-number-base36 (/ num 36) (1- len)) | |
3030 (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210" | |
3031 (% num 36)))))) | |
3032 | |
3033 (defun message-make-organization () | |
3034 "Make an Organization header." | |
3035 (let* ((organization | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3036 (when message-user-organization |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3037 (if (message-functionp message-user-organization) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3038 (funcall message-user-organization) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3039 message-user-organization)))) |
17493 | 3040 (save-excursion |
3041 (message-set-work-buffer) | |
3042 (cond ((stringp organization) | |
3043 (insert organization)) | |
3044 ((and (eq t organization) | |
3045 message-user-organization-file | |
3046 (file-exists-p message-user-organization-file)) | |
3047 (insert-file-contents message-user-organization-file))) | |
3048 (goto-char (point-min)) | |
3049 (while (re-search-forward "[\t\n]+" nil t) | |
3050 (replace-match "" t t)) | |
3051 (unless (zerop (buffer-size)) | |
3052 (buffer-string))))) | |
3053 | |
3054 (defun message-make-lines () | |
3055 "Count the number of lines and return numeric string." | |
3056 (save-excursion | |
3057 (save-restriction | |
3058 (widen) | |
3059 (goto-char (point-min)) | |
3060 (re-search-forward | |
3061 (concat "^" (regexp-quote mail-header-separator) "$")) | |
3062 (forward-line 1) | |
3063 (int-to-string (count-lines (point) (point-max)))))) | |
3064 | |
3065 (defun message-make-in-reply-to () | |
3066 "Return the In-Reply-To header for this message." | |
3067 (when message-reply-headers | |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
3068 (mail-header-message-id message-reply-headers))) |
17493 | 3069 |
3070 (defun message-make-distribution () | |
3071 "Make a Distribution header." | |
3072 (let ((orig-distribution (message-fetch-reply-field "distribution"))) | |
3073 (cond ((message-functionp message-distribution-function) | |
3074 (funcall message-distribution-function)) | |
3075 (t orig-distribution)))) | |
3076 | |
3077 (defun message-make-expires () | |
3078 "Return an Expires header based on `message-expires'." | |
3079 (let ((current (current-time)) | |
3080 (future (* 1.0 message-expires 60 60 24))) | |
3081 ;; Add the future to current. | |
3082 (setcar current (+ (car current) (round (/ future (expt 2 16))))) | |
3083 (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3084 (message-make-date current))) |
17493 | 3085 |
3086 (defun message-make-path () | |
3087 "Return uucp path." | |
3088 (let ((login-name (user-login-name))) | |
3089 (cond ((null message-user-path) | |
3090 (concat (system-name) "!" login-name)) | |
3091 ((stringp message-user-path) | |
3092 ;; Support GENERICPATH. Suggested by vixie@decwrl.dec.com. | |
3093 (concat message-user-path "!" login-name)) | |
3094 (t login-name)))) | |
3095 | |
3096 (defun message-make-from () | |
3097 "Make a From header." | |
3098 (let* ((style message-from-style) | |
3099 (login (message-make-address)) | |
3100 (fullname | |
3101 (or (and (boundp 'user-full-name) | |
3102 user-full-name) | |
3103 (user-full-name)))) | |
3104 (when (string= fullname "&") | |
3105 (setq fullname (user-login-name))) | |
3106 (save-excursion | |
3107 (message-set-work-buffer) | |
3108 (cond | |
3109 ((or (null style) | |
3110 (equal fullname "")) | |
3111 (insert login)) | |
3112 ((or (eq style 'angles) | |
3113 (and (not (eq style 'parens)) | |
3114 ;; Use angles if no quoting is needed, or if parens would | |
3115 ;; need quoting too. | |
3116 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname)) | |
3117 (let ((tmp (concat fullname nil))) | |
3118 (while (string-match "([^()]*)" tmp) | |
3119 (aset tmp (match-beginning 0) ?-) | |
3120 (aset tmp (1- (match-end 0)) ?-)) | |
3121 (string-match "[\\()]" tmp))))) | |
3122 (insert fullname) | |
3123 (goto-char (point-min)) | |
3124 ;; Look for a character that cannot appear unquoted | |
3125 ;; according to RFC 822. | |
3126 (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1) | |
3127 ;; Quote fullname, escaping specials. | |
3128 (goto-char (point-min)) | |
3129 (insert "\"") | |
3130 (while (re-search-forward "[\"\\]" nil 1) | |
3131 (replace-match "\\\\\\&" t)) | |
3132 (insert "\"")) | |
3133 (insert " <" login ">")) | |
3134 (t ; 'parens or default | |
3135 (insert login " (") | |
3136 (let ((fullname-start (point))) | |
3137 (insert fullname) | |
3138 (goto-char fullname-start) | |
3139 ;; RFC 822 says \ and nonmatching parentheses | |
3140 ;; must be escaped in comments. | |
3141 ;; Escape every instance of ()\ ... | |
3142 (while (re-search-forward "[()\\]" nil 1) | |
3143 (replace-match "\\\\\\&" t)) | |
3144 ;; ... then undo escaping of matching parentheses, | |
3145 ;; including matching nested parentheses. | |
3146 (goto-char fullname-start) | |
3147 (while (re-search-forward | |
3148 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)" | |
3149 nil 1) | |
3150 (replace-match "\\1(\\3)" t) | |
3151 (goto-char fullname-start))) | |
3152 (insert ")"))) | |
3153 (buffer-string)))) | |
3154 | |
3155 (defun message-make-sender () | |
3156 "Return the \"real\" user address. | |
3157 This function tries to ignore all user modifications, and | |
3158 give as trustworthy answer as possible." | |
3159 (concat (user-login-name) "@" (system-name))) | |
3160 | |
3161 (defun message-make-address () | |
3162 "Make the address of the user." | |
3163 (or (message-user-mail-address) | |
3164 (concat (user-login-name) "@" (message-make-domain)))) | |
3165 | |
3166 (defun message-user-mail-address () | |
3167 "Return the pertinent part of `user-mail-address'." | |
3168 (when user-mail-address | |
3169 (if (string-match " " user-mail-address) | |
3170 (nth 1 (mail-extract-address-components user-mail-address)) | |
3171 user-mail-address))) | |
3172 | |
3173 (defun message-make-fqdn () | |
3174 "Return user's fully qualified domain name." | |
3175 (let ((system-name (system-name)) | |
3176 (user-mail (message-user-mail-address))) | |
3177 (cond | |
3178 ((string-match "[^.]\\.[^.]" system-name) | |
3179 ;; `system-name' returned the right result. | |
3180 system-name) | |
3181 ;; Try `mail-host-address'. | |
3182 ((and (boundp 'mail-host-address) | |
3183 (stringp mail-host-address) | |
3184 (string-match "\\." mail-host-address)) | |
3185 mail-host-address) | |
3186 ;; We try `user-mail-address' as a backup. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3187 ((and user-mail |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3188 (string-match "\\." user-mail) |
17493 | 3189 (string-match "@\\(.*\\)\\'" user-mail)) |
3190 (match-string 1 user-mail)) | |
3191 ;; Default to this bogus thing. | |
3192 (t | |
3193 (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me"))))) | |
3194 | |
3195 (defun message-make-host-name () | |
3196 "Return the name of the host." | |
3197 (let ((fqdn (message-make-fqdn))) | |
3198 (string-match "^[^.]+\\." fqdn) | |
3199 (substring fqdn 0 (1- (match-end 0))))) | |
3200 | |
3201 (defun message-make-domain () | |
3202 "Return the domain name." | |
3203 (or mail-host-address | |
3204 (message-make-fqdn))) | |
3205 | |
3206 (defun message-generate-headers (headers) | |
3207 "Prepare article HEADERS. | |
3208 Headers already prepared in the buffer are not modified." | |
3209 (save-restriction | |
3210 (message-narrow-to-headers) | |
3211 (let* ((Date (message-make-date)) | |
3212 (Message-ID (message-make-message-id)) | |
3213 (Organization (message-make-organization)) | |
3214 (From (message-make-from)) | |
3215 (Path (message-make-path)) | |
3216 (Subject nil) | |
3217 (Newsgroups nil) | |
3218 (In-Reply-To (message-make-in-reply-to)) | |
3219 (To nil) | |
3220 (Distribution (message-make-distribution)) | |
3221 (Lines (message-make-lines)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3222 (User-Agent message-newsreader) |
17493 | 3223 (Expires (message-make-expires)) |
3224 (case-fold-search t) | |
3225 header value elem) | |
3226 ;; First we remove any old generated headers. | |
3227 (let ((headers message-deletable-headers)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
3228 (unless (buffer-modified-p) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
3229 (setq headers (delq 'Message-ID (copy-sequence headers)))) |
17493 | 3230 (while headers |
3231 (goto-char (point-min)) | |
3232 (and (re-search-forward | |
3233 (concat "^" (symbol-name (car headers)) ": *") nil t) | |
3234 (get-text-property (1+ (match-beginning 0)) 'message-deletable) | |
3235 (message-delete-line)) | |
3236 (pop headers))) | |
3237 ;; Go through all the required headers and see if they are in the | |
3238 ;; articles already. If they are not, or are empty, they are | |
3239 ;; inserted automatically - except for Subject, Newsgroups and | |
3240 ;; Distribution. | |
3241 (while headers | |
3242 (goto-char (point-min)) | |
3243 (setq elem (pop headers)) | |
3244 (if (consp elem) | |
3245 (if (eq (car elem) 'optional) | |
3246 (setq header (cdr elem)) | |
3247 (setq header (car elem))) | |
3248 (setq header elem)) | |
3249 (when (or (not (re-search-forward | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3250 (concat "^" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3251 (regexp-quote |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3252 (downcase |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3253 (if (stringp header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3254 header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3255 (symbol-name header)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3256 ":") |
17493 | 3257 nil t)) |
3258 (progn | |
3259 ;; The header was found. We insert a space after the | |
3260 ;; colon, if there is none. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3261 (if (/= (char-after) ? ) (insert " ") (forward-char 1)) |
17493 | 3262 ;; Find out whether the header is empty... |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3263 (looking-at "[ \t]*\n[^ \t]"))) |
17493 | 3264 ;; So we find out what value we should insert. |
3265 (setq value | |
3266 (cond | |
3267 ((and (consp elem) (eq (car elem) 'optional)) | |
3268 ;; This is an optional header. If the cdr of this | |
3269 ;; is something that is nil, then we do not insert | |
3270 ;; this header. | |
3271 (setq header (cdr elem)) | |
3272 (or (and (fboundp (cdr elem)) (funcall (cdr elem))) | |
3273 (and (boundp (cdr elem)) (symbol-value (cdr elem))))) | |
3274 ((consp elem) | |
3275 ;; The element is a cons. Either the cdr is a | |
3276 ;; string to be inserted verbatim, or it is a | |
3277 ;; function, and we insert the value returned from | |
3278 ;; this function. | |
3279 (or (and (stringp (cdr elem)) (cdr elem)) | |
3280 (and (fboundp (cdr elem)) (funcall (cdr elem))))) | |
3281 ((and (boundp header) (symbol-value header)) | |
3282 ;; The element is a symbol. We insert the value | |
3283 ;; of this symbol, if any. | |
3284 (symbol-value header)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3285 ((not (message-check-element header)) |
17493 | 3286 ;; We couldn't generate a value for this header, |
3287 ;; so we just ask the user. | |
3288 (read-from-minibuffer | |
3289 (format "Empty header for %s; enter value: " header))))) | |
3290 ;; Finally insert the header. | |
3291 (when (and value | |
3292 (not (equal value ""))) | |
3293 (save-excursion | |
3294 (if (bolp) | |
3295 (progn | |
3296 ;; This header didn't exist, so we insert it. | |
3297 (goto-char (point-max)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3298 (insert (if (stringp header) header (symbol-name header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3299 ": " value "\n") |
17493 | 3300 (forward-line -1)) |
3301 ;; The value of this header was empty, so we clear | |
3302 ;; totally and insert the new value. | |
3303 (delete-region (point) (gnus-point-at-eol)) | |
3304 (insert value)) | |
3305 ;; Add the deletable property to the headers that require it. | |
3306 (and (memq header message-deletable-headers) | |
3307 (progn (beginning-of-line) (looking-at "[^:]+: ")) | |
3308 (add-text-properties | |
3309 (point) (match-end 0) | |
3310 '(message-deletable t face italic) (current-buffer))))))) | |
3311 ;; Insert new Sender if the From is strange. | |
3312 (let ((from (message-fetch-field "from")) | |
3313 (sender (message-fetch-field "sender")) | |
3314 (secure-sender (message-make-sender))) | |
3315 (when (and from | |
3316 (not (message-check-element 'sender)) | |
3317 (not (string= | |
3318 (downcase | |
3319 (cadr (mail-extract-address-components from))) | |
3320 (downcase secure-sender))) | |
3321 (or (null sender) | |
3322 (not | |
3323 (string= | |
3324 (downcase | |
3325 (cadr (mail-extract-address-components sender))) | |
3326 (downcase secure-sender))))) | |
3327 (goto-char (point-min)) | |
3328 ;; Rename any old Sender headers to Original-Sender. | |
3329 (when (re-search-forward "^\\(Original-\\)*Sender:" nil t) | |
3330 (beginning-of-line) | |
3331 (insert "Original-") | |
3332 (beginning-of-line)) | |
3333 (when (or (message-news-p) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3334 (string-match "@.+\\.." secure-sender)) |
17493 | 3335 (insert "Sender: " secure-sender "\n"))))))) |
3336 | |
3337 (defun message-insert-courtesy-copy () | |
3338 "Insert a courtesy message in mail copies of combined messages." | |
3339 (let (newsgroups) | |
3340 (save-excursion | |
3341 (save-restriction | |
3342 (message-narrow-to-headers) | |
3343 (when (setq newsgroups (message-fetch-field "newsgroups")) | |
3344 (goto-char (point-max)) | |
3345 (insert "Posted-To: " newsgroups "\n"))) | |
3346 (forward-line 1) | |
3347 (when message-courtesy-message | |
3348 (cond | |
3349 ((string-match "%s" message-courtesy-message) | |
3350 (insert (format message-courtesy-message newsgroups))) | |
3351 (t | |
3352 (insert message-courtesy-message))))))) | |
3353 | |
3354 ;;; | |
3355 ;;; Setting up a message buffer | |
3356 ;;; | |
3357 | |
3358 (defun message-fill-address (header value) | |
3359 (save-restriction | |
3360 (narrow-to-region (point) (point)) | |
3361 (insert (capitalize (symbol-name header)) | |
3362 ": " | |
3363 (if (consp value) (car value) value) | |
3364 "\n") | |
3365 (narrow-to-region (point-min) (1- (point-max))) | |
3366 (let (quoted last) | |
3367 (goto-char (point-min)) | |
3368 (while (not (eobp)) | |
3369 (skip-chars-forward "^,\"" (point-max)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3370 (if (or (eq (char-after) ?,) |
17493 | 3371 (eobp)) |
3372 (when (not quoted) | |
3373 (if (and (> (current-column) 78) | |
3374 last) | |
3375 (progn | |
3376 (save-excursion | |
3377 (goto-char last) | |
3378 (insert "\n\t")) | |
3379 (setq last (1+ (point)))) | |
3380 (setq last (1+ (point))))) | |
3381 (setq quoted (not quoted))) | |
3382 (unless (eobp) | |
3383 (forward-char 1)))) | |
3384 (goto-char (point-max)) | |
3385 (widen) | |
3386 (forward-line 1))) | |
3387 | |
3388 (defun message-fill-header (header value) | |
3389 (let ((begin (point)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3390 (fill-column 78) |
17493 | 3391 (fill-prefix "\t")) |
3392 (insert (capitalize (symbol-name header)) | |
3393 ": " | |
3394 (if (consp value) (car value) value) | |
3395 "\n") | |
3396 (save-restriction | |
3397 (narrow-to-region begin (point)) | |
3398 (fill-region-as-paragraph begin (point)) | |
3399 ;; Tapdance around looong Message-IDs. | |
3400 (forward-line -1) | |
3401 (when (looking-at "[ \t]*$") | |
3402 (message-delete-line)) | |
3403 (goto-char begin) | |
3404 (re-search-forward ":" nil t) | |
3405 (when (looking-at "\n[ \t]+") | |
3406 (replace-match " " t t)) | |
3407 (goto-char (point-max))))) | |
3408 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3409 (defun message-shorten-1 (list cut surplus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3410 ;; Cut SURPLUS elements out of LIST, beginning with CUTth one. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3411 (setcdr (nthcdr (- cut 2) list) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3412 (nthcdr (+ (- cut 2) surplus 1) list))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3413 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3414 (defun message-shorten-references (header references) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3415 "Trim REFERENCES to be less than 31 Message-ID long, and fold them. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3416 If folding is disallowed, also check that the REFERENCES are less |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3417 than 988 characters long, and if they are not, trim them until they are." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3418 (let ((maxcount 31) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3419 (count 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3420 (cut 6) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3421 refs) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3422 (with-temp-buffer |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3423 (insert references) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3424 (goto-char (point-min)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3425 ;; Cons a list of valid references. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3426 (while (re-search-forward "<[^>]+>" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3427 (push (match-string 0) refs)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3428 (setq refs (nreverse refs) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3429 count (length refs))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3430 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3431 ;; If the list has more than MAXCOUNT elements, trim it by |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3432 ;; removing the CUTth element and the required number of |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3433 ;; elements that follow. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3434 (when (> count maxcount) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3435 (let ((surplus (- count maxcount))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3436 (message-shorten-1 refs cut surplus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3437 (decf count surplus))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3438 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3439 ;; If folding is disallowed, make sure the total length (including |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3440 ;; the spaces between) will be less than MAXSIZE characters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3441 ;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3442 ;; Only disallow folding for News messages. At this point the headers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3443 ;; have not been generated, thus we use message-this-is-news directly. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3444 (when (and message-this-is-news message-cater-to-broken-inn) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3445 (let ((maxsize 988) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3446 (totalsize (+ (apply #'+ (mapcar #'length refs)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3447 (1- count))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3448 (surplus 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3449 (ptr (nthcdr (1- cut) refs))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3450 ;; Decide how many elements to cut off... |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3451 (while (> totalsize maxsize) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3452 (decf totalsize (1+ (length (car ptr)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3453 (incf surplus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3454 (setq ptr (cdr ptr))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3455 ;; ...and do it. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3456 (when (> surplus 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3457 (message-shorten-1 refs cut surplus)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3458 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3459 ;; Finally, collect the references back into a string and insert |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3460 ;; it into the buffer. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3461 (let ((refstring (mapconcat #'identity refs " "))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3462 (if (and message-this-is-news message-cater-to-broken-inn) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3463 (insert (capitalize (symbol-name header)) ": " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3464 refstring "\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3465 (message-fill-header header refstring))))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3466 |
17493 | 3467 (defun message-position-point () |
3468 "Move point to where the user probably wants to find it." | |
3469 (message-narrow-to-headers) | |
3470 (cond | |
3471 ((re-search-forward "^[^:]+:[ \t]*$" nil t) | |
3472 (search-backward ":" ) | |
3473 (widen) | |
3474 (forward-char 1) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3475 (if (eq (char-after) ? ) |
17493 | 3476 (forward-char 1) |
3477 (insert " "))) | |
3478 (t | |
3479 (goto-char (point-max)) | |
3480 (widen) | |
3481 (forward-line 1) | |
3482 (unless (looking-at "$") | |
3483 (forward-line 2))) | |
3484 (sit-for 0))) | |
3485 | |
3486 (defun message-buffer-name (type &optional to group) | |
3487 "Return a new (unique) buffer name based on TYPE and TO." | |
3488 (cond | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3489 ;; Generate a new buffer name The Message Way. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3490 ((eq message-generate-new-buffers 'unique) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3491 (generate-new-buffer-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3492 (concat "*" type |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3493 (if to |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3494 (concat " to " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3495 (or (car (mail-extract-address-components to)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3496 to) "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3497 "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3498 (if (and group (not (string= group ""))) (concat " on " group) "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3499 "*"))) |
17493 | 3500 ;; Check whether `message-generate-new-buffers' is a function, |
3501 ;; and if so, call it. | |
3502 ((message-functionp message-generate-new-buffers) | |
3503 (funcall message-generate-new-buffers type to group)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3504 ((eq message-generate-new-buffers 'unsent) |
17493 | 3505 (generate-new-buffer-name |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3506 (concat "*unsent " type |
17493 | 3507 (if to |
3508 (concat " to " | |
3509 (or (car (mail-extract-address-components to)) | |
3510 to) "") | |
3511 "") | |
3512 (if (and group (not (string= group ""))) (concat " on " group) "") | |
3513 "*"))) | |
3514 ;; Use standard name. | |
3515 (t | |
3516 (format "*%s message*" type)))) | |
3517 | |
3518 (defun message-pop-to-buffer (name) | |
3519 "Pop to buffer NAME, and warn if it already exists and is modified." | |
3520 (let ((buffer (get-buffer name))) | |
3521 (if (and buffer | |
3522 (buffer-name buffer)) | |
3523 (progn | |
3524 (set-buffer (pop-to-buffer buffer)) | |
3525 (when (and (buffer-modified-p) | |
3526 (not (y-or-n-p | |
3527 "Message already being composed; erase? "))) | |
3528 (error "Message being composed"))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3529 (set-buffer (pop-to-buffer name))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3530 (erase-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3531 (message-mode))) |
17493 | 3532 |
3533 (defun message-do-send-housekeeping () | |
3534 "Kill old message buffers." | |
3535 ;; We might have sent this buffer already. Delete it from the | |
3536 ;; list of buffers. | |
3537 (setq message-buffer-list (delq (current-buffer) message-buffer-list)) | |
3538 (while (and message-max-buffers | |
3539 message-buffer-list | |
3540 (>= (length message-buffer-list) message-max-buffers)) | |
3541 ;; Kill the oldest buffer -- unless it has been changed. | |
3542 (let ((buffer (pop message-buffer-list))) | |
3543 (when (and (buffer-name buffer) | |
3544 (not (buffer-modified-p buffer))) | |
3545 (kill-buffer buffer)))) | |
3546 ;; Rename the buffer. | |
3547 (if message-send-rename-function | |
3548 (funcall message-send-rename-function) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3549 (when (string-match "\\`\\*\\(unsent \\)?" (buffer-name)) |
17493 | 3550 (rename-buffer |
3551 (concat "*sent " (substring (buffer-name) (match-end 0))) t))) | |
3552 ;; Push the current buffer onto the list. | |
3553 (when message-max-buffers | |
3554 (setq message-buffer-list | |
3555 (nconc message-buffer-list (list (current-buffer)))))) | |
3556 | |
33301
c1c373a70748
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33199
diff
changeset
|
3557 (eval-when-compile (defvar mc-modes-alist)) |
17493 | 3558 (defun message-setup (headers &optional replybuffer actions) |
3559 (when (and (boundp 'mc-modes-alist) | |
3560 (not (assq 'message-mode mc-modes-alist))) | |
3561 (push '(message-mode (encrypt . mc-encrypt-message) | |
3562 (sign . mc-sign-message)) | |
3563 mc-modes-alist)) | |
3564 (when actions | |
3565 (setq message-send-actions actions)) | |
3566 (setq message-reply-buffer replybuffer) | |
3567 (goto-char (point-min)) | |
3568 ;; Insert all the headers. | |
3569 (mail-header-format | |
3570 (let ((h headers) | |
3571 (alist message-header-format-alist)) | |
3572 (while h | |
3573 (unless (assq (caar h) message-header-format-alist) | |
3574 (push (list (caar h)) alist)) | |
3575 (pop h)) | |
3576 alist) | |
3577 headers) | |
3578 (delete-region (point) (progn (forward-line -1) (point))) | |
3579 (when message-default-headers | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3580 (insert message-default-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3581 (or (bolp) (insert ?\n))) |
17493 | 3582 (put-text-property |
3583 (point) | |
3584 (progn | |
3585 (insert mail-header-separator "\n") | |
3586 (1- (point))) | |
3587 'read-only nil) | |
3588 (forward-line -1) | |
3589 (when (message-news-p) | |
3590 (when message-default-news-headers | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3591 (insert message-default-news-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3592 (or (bolp) (insert ?\n))) |
17493 | 3593 (when message-generate-headers-first |
3594 (message-generate-headers | |
3595 (delq 'Lines | |
3596 (delq 'Subject | |
3597 (copy-sequence message-required-news-headers)))))) | |
3598 (when (message-mail-p) | |
3599 (when message-default-mail-headers | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3600 (insert message-default-mail-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3601 (or (bolp) (insert ?\n))) |
17493 | 3602 (when message-generate-headers-first |
3603 (message-generate-headers | |
3604 (delq 'Lines | |
3605 (delq 'Subject | |
3606 (copy-sequence message-required-mail-headers)))))) | |
3607 (run-hooks 'message-signature-setup-hook) | |
3608 (message-insert-signature) | |
3609 (save-restriction | |
3610 (message-narrow-to-headers) | |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
3611 (if message-alternative-emails |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
3612 (message-use-alternative-email-as-from)) |
17493 | 3613 (run-hooks 'message-header-setup-hook)) |
3614 (set-buffer-modified-p nil) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
3615 (setq buffer-undo-list nil) |
17493 | 3616 (run-hooks 'message-setup-hook) |
3617 (message-position-point) | |
3618 (undo-boundary)) | |
3619 | |
3620 (defun message-set-auto-save-file-name () | |
3621 "Associate the message buffer with a file in the drafts directory." | |
23379
cfa9bc8ed327
(message-auto-save-directory): Renamed from
Karl Heuer <kwzh@gnu.org>
parents:
23096
diff
changeset
|
3622 (when message-auto-save-directory |
34057
98bd49d8cf7d
(message-auto-save-directory): Use
Dave Love <fx@gnu.org>
parents:
33982
diff
changeset
|
3623 (unless (file-directory-p |
98bd49d8cf7d
(message-auto-save-directory): Use
Dave Love <fx@gnu.org>
parents:
33982
diff
changeset
|
3624 (directory-file-name message-auto-save-directory)) |
34059
c40dbebdad05
(message-set-auto-save-file-name): Use gnus-make-directory.
Dave Love <fx@gnu.org>
parents:
34058
diff
changeset
|
3625 (gnus-make-directory message-auto-save-directory)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3626 (if (gnus-alive-p) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3627 (setq message-draft-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3628 (nndraft-request-associate-buffer "drafts")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3629 (setq buffer-file-name (expand-file-name "*message*" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3630 message-auto-save-directory)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3631 (setq buffer-auto-save-file-name (make-auto-save-file-name))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3632 (clear-visited-file-modtime) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3633 (setq buffer-file-coding-system message-draft-coding-system))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3634 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3635 (defun message-disassociate-draft () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3636 "Disassociate the message buffer from the drafts directory." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3637 (when message-draft-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3638 (nndraft-request-expire-articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3639 (list message-draft-article) "drafts" nil t))) |
17493 | 3640 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3641 (defun message-insert-headers () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3642 "Generate the headers for the article." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3643 (interactive) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3644 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3645 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3646 (message-narrow-to-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3647 (when (message-news-p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3648 (message-generate-headers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3649 (delq 'Lines |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3650 (delq 'Subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3651 (copy-sequence message-required-news-headers))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3652 (when (message-mail-p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3653 (message-generate-headers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3654 (delq 'Lines |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3655 (delq 'Subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3656 (copy-sequence message-required-mail-headers)))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3657 |
17493 | 3658 |
3659 | |
3660 ;;; | |
3661 ;;; Commands for interfacing with message | |
3662 ;;; | |
3663 | |
3664 ;;;###autoload | |
3665 (defun message-mail (&optional to subject | |
3666 other-headers continue switch-function | |
3667 yank-action send-actions) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3668 "Start editing a mail message to be sent. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3669 OTHER-HEADERS is an alist of header/value pairs." |
17493 | 3670 (interactive) |
3671 (let ((message-this-is-mail t)) | |
3672 (message-pop-to-buffer (message-buffer-name "mail" to)) | |
3673 (message-setup | |
3674 (nconc | |
3675 `((To . ,(or to "")) (Subject . ,(or subject ""))) | |
3676 (when other-headers other-headers))))) | |
3677 | |
3678 ;;;###autoload | |
3679 (defun message-news (&optional newsgroups subject) | |
3680 "Start editing a news article to be sent." | |
3681 (interactive) | |
3682 (let ((message-this-is-news t)) | |
3683 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)) | |
3684 (message-setup `((Newsgroups . ,(or newsgroups "")) | |
3685 (Subject . ,(or subject "")))))) | |
3686 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3687 (defun message-get-reply-headers (wide &optional to-address) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3688 (let (follow-to mct never-mct from to cc reply-to ccalist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3689 ;; Find all relevant headers we need. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3690 (setq from (message-fetch-field "from") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3691 to (message-fetch-field "to") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3692 cc (message-fetch-field "cc") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3693 mct (message-fetch-field "mail-copies-to") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3694 reply-to (message-fetch-field "reply-to")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3695 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3696 ;; Handle special values of Mail-Copies-To. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3697 (when mct |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3698 (cond ((or (equal (downcase mct) "never") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3699 (equal (downcase mct) "nobody")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3700 (setq never-mct t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3701 (setq mct nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3702 ((or (equal (downcase mct) "always") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3703 (equal (downcase mct) "poster")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3704 (setq mct (or reply-to from))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3705 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3706 (if (or (not wide) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3707 to-address) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3708 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3709 (setq follow-to (list (cons 'To (or to-address reply-to from)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3710 (when (and wide mct) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3711 (push (cons 'Cc mct) follow-to))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3712 (let (ccalist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3713 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3714 (message-set-work-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3715 (unless never-mct |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3716 (insert (or reply-to from ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3717 (insert (if to (concat (if (bolp) "" ", ") to "") "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3718 (insert (if mct (concat (if (bolp) "" ", ") mct) "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3719 (insert (if cc (concat (if (bolp) "" ", ") cc) "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3720 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3721 (while (re-search-forward "[ \t]+" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3722 (replace-match " " t t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3723 ;; Remove addresses that match `rmail-dont-reply-to-names'. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3724 (let ((rmail-dont-reply-to-names message-dont-reply-to-names)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3725 (insert (prog1 (rmail-dont-reply-to (buffer-string)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3726 (erase-buffer)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3727 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3728 ;; Perhaps "Mail-Copies-To: never" removed the only address? |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3729 (when (eobp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3730 (insert (or reply-to from ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3731 (setq ccalist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3732 (mapcar |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3733 (lambda (addr) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3734 (cons (mail-strip-quoted-names addr) addr)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3735 (message-tokenize-header (buffer-string)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3736 (let ((s ccalist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3737 (while s |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3738 (setq ccalist (delq (assoc (car (pop s)) s) ccalist))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3739 (setq follow-to (list (cons 'To (cdr (pop ccalist))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3740 (when ccalist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3741 (let ((ccs (cons 'Cc (mapconcat |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3742 (lambda (addr) (cdr addr)) ccalist ", ")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3743 (when (string-match "^ +" (cdr ccs)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3744 (setcdr ccs (substring (cdr ccs) (match-end 0)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3745 (push ccs follow-to))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3746 follow-to)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3747 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3748 |
17493 | 3749 ;;;###autoload |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3750 (defun message-reply (&optional to-address wide) |
17493 | 3751 "Start editing a reply to the article in the current buffer." |
3752 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3753 (require 'gnus-sum) ; for gnus-list-identifiers |
17493 | 3754 (let ((cur (current-buffer)) |
3755 from subject date reply-to to cc | |
3756 references message-id follow-to | |
3757 (inhibit-point-motion-hooks t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3758 (message-this-is-mail t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3759 gnus-warning) |
17493 | 3760 (save-restriction |
3761 (message-narrow-to-head) | |
3762 ;; Allow customizations to have their say. | |
3763 (if (not wide) | |
3764 ;; This is a regular reply. | |
3765 (if (message-functionp message-reply-to-function) | |
3766 (setq follow-to (funcall message-reply-to-function))) | |
3767 ;; This is a followup. | |
3768 (if (message-functionp message-wide-reply-to-function) | |
3769 (save-excursion | |
3770 (setq follow-to | |
3771 (funcall message-wide-reply-to-function))))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3772 (setq message-id (message-fetch-field "message-id" t) |
17493 | 3773 references (message-fetch-field "references") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3774 date (message-fetch-field "date") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3775 from (message-fetch-field "from") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3776 subject (or (message-fetch-field "subject") "none")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3777 (if gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3778 (setq subject (message-strip-list-identifiers subject))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3779 (setq subject (concat "Re: " (message-strip-subject-re subject))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3780 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3781 (when (and (setq gnus-warning (message-fetch-field "gnus-warning")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3782 (string-match "<[^>]+>" gnus-warning)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3783 (setq message-id (match-string 0 gnus-warning))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3784 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3785 (unless follow-to |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3786 (setq follow-to (message-get-reply-headers wide to-address)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3787 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3788 (message-pop-to-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3789 (message-buffer-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3790 (if wide "wide reply" "reply") from |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3791 (if wide to-address nil))) |
17493 | 3792 |
3793 (setq message-reply-headers | |
3794 (vector 0 subject from date message-id references 0 0 "")) | |
3795 | |
3796 (message-setup | |
3797 `((Subject . ,subject) | |
3798 ,@follow-to | |
3799 ,@(if (or references message-id) | |
3800 `((References . ,(concat (or references "") (and references " ") | |
3801 (or message-id "")))) | |
3802 nil)) | |
3803 cur))) | |
3804 | |
3805 ;;;###autoload | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3806 (defun message-wide-reply (&optional to-address) |
17493 | 3807 "Make a \"wide\" reply to the message in the current buffer." |
3808 (interactive) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3809 (message-reply to-address t)) |
17493 | 3810 |
3811 ;;;###autoload | |
3812 (defun message-followup (&optional to-newsgroups) | |
3813 "Follow up to the message in the current buffer. | |
3814 If TO-NEWSGROUPS, use that as the new Newsgroups line." | |
3815 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3816 (require 'gnus-sum) ; for gnus-list-identifiers |
17493 | 3817 (let ((cur (current-buffer)) |
3818 from subject date reply-to mct | |
3819 references message-id follow-to | |
3820 (inhibit-point-motion-hooks t) | |
3821 (message-this-is-news t) | |
3822 followup-to distribution newsgroups gnus-warning posted-to) | |
3823 (save-restriction | |
3824 (narrow-to-region | |
3825 (goto-char (point-min)) | |
3826 (if (search-forward "\n\n" nil t) | |
3827 (1- (point)) | |
3828 (point-max))) | |
3829 (when (message-functionp message-followup-to-function) | |
3830 (setq follow-to | |
3831 (funcall message-followup-to-function))) | |
3832 (setq from (message-fetch-field "from") | |
3833 date (message-fetch-field "date") | |
3834 subject (or (message-fetch-field "subject") "none") | |
3835 references (message-fetch-field "references") | |
3836 message-id (message-fetch-field "message-id" t) | |
3837 followup-to (message-fetch-field "followup-to") | |
3838 newsgroups (message-fetch-field "newsgroups") | |
3839 posted-to (message-fetch-field "posted-to") | |
3840 reply-to (message-fetch-field "reply-to") | |
3841 distribution (message-fetch-field "distribution") | |
3842 mct (message-fetch-field "mail-copies-to")) | |
3843 (when (and (setq gnus-warning (message-fetch-field "gnus-warning")) | |
3844 (string-match "<[^>]+>" gnus-warning)) | |
3845 (setq message-id (match-string 0 gnus-warning))) | |
3846 ;; Remove bogus distribution. | |
3847 (when (and (stringp distribution) | |
3848 (let ((case-fold-search t)) | |
3849 (string-match "world" distribution))) | |
3850 (setq distribution nil)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3851 (if gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3852 (setq subject (message-strip-list-identifiers subject))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3853 (setq subject (concat "Re: " (message-strip-subject-re subject))) |
17493 | 3854 (widen)) |
3855 | |
3856 (message-pop-to-buffer (message-buffer-name "followup" from newsgroups)) | |
3857 | |
3858 (message-setup | |
3859 `((Subject . ,subject) | |
3860 ,@(cond | |
3861 (to-newsgroups | |
3862 (list (cons 'Newsgroups to-newsgroups))) | |
3863 (follow-to follow-to) | |
3864 ((and followup-to message-use-followup-to) | |
3865 (list | |
3866 (cond | |
3867 ((equal (downcase followup-to) "poster") | |
3868 (if (or (eq message-use-followup-to 'use) | |
3869 (message-y-or-n-p "Obey Followup-To: poster? " t "\ | |
3870 You should normally obey the Followup-To: header. | |
3871 | |
3872 `Followup-To: poster' sends your response via e-mail instead of news. | |
3873 | |
3874 A typical situation where `Followup-To: poster' is used is when the poster | |
3875 does not read the newsgroup, so he wouldn't see any replies sent to it.")) | |
3876 (progn | |
3877 (setq message-this-is-news nil) | |
3878 (cons 'To (or reply-to from ""))) | |
3879 (cons 'Newsgroups newsgroups))) | |
3880 (t | |
3881 (if (or (equal followup-to newsgroups) | |
3882 (not (eq message-use-followup-to 'ask)) | |
3883 (message-y-or-n-p | |
3884 (concat "Obey Followup-To: " followup-to "? ") t "\ | |
3885 You should normally obey the Followup-To: header. | |
3886 | |
3887 `Followup-To: " followup-to "' | |
3888 directs your response to " (if (string-match "," followup-to) | |
3889 "the specified newsgroups" | |
3890 "that newsgroup only") ". | |
3891 | |
3892 If a message is posted to several newsgroups, Followup-To is often | |
3893 used to direct the following discussion to one newsgroup only, | |
3894 because discussions that are spread over several newsgroup tend to | |
3895 be fragmented and very difficult to follow. | |
3896 | |
3897 Also, some source/announcement newsgroups are not indented for discussion; | |
3898 responses here are directed to other newsgroups.")) | |
3899 (cons 'Newsgroups followup-to) | |
3900 (cons 'Newsgroups newsgroups)))))) | |
3901 (posted-to | |
3902 `((Newsgroups . ,posted-to))) | |
3903 (t | |
3904 `((Newsgroups . ,newsgroups)))) | |
3905 ,@(and distribution (list (cons 'Distribution distribution))) | |
3906 ,@(if (or references message-id) | |
3907 `((References . ,(concat (or references "") (and references " ") | |
3908 (or message-id ""))))) | |
3909 ,@(when (and mct | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3910 (not (or (equal (downcase mct) "never") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3911 (equal (downcase mct) "nobody")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3912 (list (cons 'Cc (if (or (equal (downcase mct) "always") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3913 (equal (downcase mct) "poster")) |
17493 | 3914 (or reply-to from "") |
3915 mct))))) | |
3916 | |
3917 cur) | |
3918 | |
3919 (setq message-reply-headers | |
3920 (vector 0 subject from date message-id references 0 0 "")))) | |
3921 | |
3922 | |
3923 ;;;###autoload | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3924 (defun message-cancel-news (&optional arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3925 "Cancel an article you posted. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3926 If ARG, allow editing of the cancellation message." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3927 (interactive "P") |
17493 | 3928 (unless (message-news-p) |
3929 (error "This is not a news article; canceling is impossible")) | |
3930 (when (yes-or-no-p "Do you really want to cancel this article? ") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3931 (let (from newsgroups message-id distribution buf sender) |
17493 | 3932 (save-excursion |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3933 ;; Get header info from original article. |
17493 | 3934 (save-restriction |
3935 (message-narrow-to-head) | |
3936 (setq from (message-fetch-field "from") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3937 sender (message-fetch-field "sender") |
17493 | 3938 newsgroups (message-fetch-field "newsgroups") |
3939 message-id (message-fetch-field "message-id" t) | |
3940 distribution (message-fetch-field "distribution"))) | |
3941 ;; Make sure that this article was written by the user. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3942 (unless (or (and sender |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3943 (string-equal |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3944 (downcase sender) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3945 (downcase (message-make-sender)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3946 (string-equal |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3947 (downcase (cadr (mail-extract-address-components from))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3948 (downcase (cadr (mail-extract-address-components |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3949 (message-make-from)))))) |
17493 | 3950 (error "This article is not yours")) |
3951 ;; Make control message. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3952 (if arg |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3953 (message-news) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3954 (setq buf (set-buffer (get-buffer-create " *message cancel*")))) |
17493 | 3955 (erase-buffer) |
3956 (insert "Newsgroups: " newsgroups "\n" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3957 "From: " from "\n" |
17493 | 3958 "Subject: cmsg cancel " message-id "\n" |
3959 "Control: cancel " message-id "\n" | |
3960 (if distribution | |
3961 (concat "Distribution: " distribution "\n") | |
3962 "") | |
3963 mail-header-separator "\n" | |
3964 message-cancel-message) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3965 (run-hooks 'message-cancel-hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3966 (unless arg |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3967 (message "Canceling your article...") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3968 (if (let ((message-syntax-checks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3969 'dont-check-for-anything-just-trust-me)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3970 (funcall message-send-news-function)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3971 (message "Canceling your article...done")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3972 (kill-buffer buf)))))) |
17493 | 3973 |
3974 ;;;###autoload | |
3975 (defun message-supersede () | |
3976 "Start composing a message to supersede the current message. | |
3977 This is done simply by taking the old article and adding a Supersedes | |
3978 header line with the old Message-ID." | |
3979 (interactive) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3980 (let ((cur (current-buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3981 (sender (message-fetch-field "sender")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3982 (from (message-fetch-field "from"))) |
17493 | 3983 ;; Check whether the user owns the article that is to be superseded. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3984 (unless (or (and sender |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3985 (string-equal |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3986 (downcase sender) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3987 (downcase (message-make-sender)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3988 (string-equal |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3989 (downcase (cadr (mail-extract-address-components from))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3990 (downcase (cadr (mail-extract-address-components |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
3991 (message-make-from)))))) |
17493 | 3992 (error "This article is not yours")) |
3993 ;; Get a normal message buffer. | |
3994 (message-pop-to-buffer (message-buffer-name "supersede")) | |
3995 (insert-buffer-substring cur) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3996 (mime-to-mml) |
17493 | 3997 (message-narrow-to-head) |
3998 ;; Remove unwanted headers. | |
3999 (when message-ignored-supersedes-headers | |
4000 (message-remove-header message-ignored-supersedes-headers t)) | |
4001 (goto-char (point-min)) | |
4002 (if (not (re-search-forward "^Message-ID: " nil t)) | |
4003 (error "No Message-ID in this article") | |
4004 (replace-match "Supersedes: " t t)) | |
4005 (goto-char (point-max)) | |
4006 (insert mail-header-separator) | |
4007 (widen) | |
4008 (forward-line 1))) | |
4009 | |
4010 ;;;###autoload | |
4011 (defun message-recover () | |
4012 "Reread contents of current buffer from its last auto-save file." | |
4013 (interactive) | |
4014 (let ((file-name (make-auto-save-file-name))) | |
4015 (cond ((save-window-excursion | |
4016 (if (not (eq system-type 'vax-vms)) | |
4017 (with-output-to-temp-buffer "*Directory*" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4018 (with-current-buffer standard-output |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4019 (fundamental-mode)) ; for Emacs 20.4+ |
17493 | 4020 (buffer-disable-undo standard-output) |
4021 (let ((default-directory "/")) | |
4022 (call-process | |
4023 "ls" nil standard-output nil "-l" file-name)))) | |
4024 (yes-or-no-p (format "Recover auto save file %s? " file-name))) | |
4025 (let ((buffer-read-only nil)) | |
4026 (erase-buffer) | |
4027 (insert-file-contents file-name nil))) | |
4028 (t (error "message-recover cancelled"))))) | |
4029 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4030 ;;; Washing Subject: |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4031 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4032 (defun message-wash-subject (subject) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4033 "Remove junk like \"Re:\", \"(fwd)\", etc. that was added to the subject by previous forwarders, replyers, etc." |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4034 (with-temp-buffer |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4035 (insert-string subject) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4036 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4037 ;; strip Re/Fwd stuff off the beginning |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4038 (while (re-search-forward |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4039 "\\([Rr][Ee]:\\|[Ff][Ww][Dd]\\(\\[[0-9]*\\]\\)?:\\|[Ff][Ww]:\\)" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4040 (replace-match "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4041 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4042 ;; and gnus-style forwards [foo@bar.com] subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4043 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4044 (while (re-search-forward "\\[[^ \t]*\\(@\\|\\.\\)[^ \t]*\\]" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4045 (replace-match "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4046 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4047 ;; and off the end |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4048 (goto-char (point-max)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4049 (while (re-search-backward "([Ff][Ww][Dd])" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4050 (replace-match "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4051 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4052 ;; and finally, any whitespace that was left-over |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4053 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4054 (while (re-search-forward "^[ \t]+" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4055 (replace-match "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4056 (goto-char (point-max)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4057 (while (re-search-backward "[ \t]+$" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4058 (replace-match "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4059 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4060 (buffer-string))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4061 |
17493 | 4062 ;;; Forwarding messages. |
4063 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4064 (defun message-forward-subject-author-subject (subject) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4065 "Generate a subject for a forwarded message. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4066 The form is: [Source] Subject, where if the original message was mail, |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4067 Source is the sender, and if the original message was news, Source is |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4068 the list of newsgroups is was posted to." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4069 (concat "[" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4070 (or (message-fetch-field |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4071 (if (message-news-p) "newsgroups" "from")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4072 "(nowhere)") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4073 "] " subject)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4074 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4075 (defun message-forward-subject-fwd (subject) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4076 "Generate a subject for a forwarded message. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4077 The form is: Fwd: Subject, where Subject is the original subject of |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4078 the message." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4079 (concat "Fwd: " subject)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4080 |
17493 | 4081 (defun message-make-forward-subject () |
4082 "Return a Subject header suitable for the message in the current buffer." | |
4083 (save-excursion | |
4084 (save-restriction | |
4085 (current-buffer) | |
4086 (message-narrow-to-head) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4087 (let ((funcs message-make-forward-subject-function) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4088 (subject (if message-wash-forwarded-subjects |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4089 (message-wash-subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4090 (or (message-fetch-field "Subject") "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4091 (or (message-fetch-field "Subject") "")))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4092 ;; Make sure funcs is a list. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4093 (and funcs |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4094 (not (listp funcs)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4095 (setq funcs (list funcs))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4096 ;; Apply funcs in order, passing subject generated by previous |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4097 ;; func to the next one. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4098 (while funcs |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4099 (when (message-functionp (car funcs)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4100 (setq subject (funcall (car funcs) subject))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4101 (setq funcs (cdr funcs))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4102 subject)))) |
17493 | 4103 |
4104 ;;;###autoload | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4105 (defun message-forward (&optional news digest) |
17493 | 4106 "Forward the current message via mail. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4107 Optional NEWS will use news to forward instead of mail. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4108 Optional DIGEST will use digest to forward." |
17493 | 4109 (interactive "P") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4110 (let* ((cur (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4111 (subject (if message-forward-show-mml |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4112 (message-make-forward-subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4113 (mail-decode-encoded-word-string |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4114 (message-make-forward-subject)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4115 art-beg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4116 (if news |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4117 (message-news nil subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4118 (message-mail nil subject)) |
17493 | 4119 ;; Put point where we want it before inserting the forwarded |
4120 ;; message. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4121 (if message-forward-before-signature |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4122 (message-goto-body) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4123 (goto-char (point-max))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4124 (if message-forward-as-mime |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4125 (if digest |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4126 (insert "\n<#multipart type=digest>\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4127 (if message-forward-show-mml |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4128 (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4129 (insert "\n\n<#part type=message/rfc822 disposition=inline raw=t>\n"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4130 (insert "\n-------------------- Start of forwarded message --------------------\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4131 (let ((b (point)) e) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4132 (if digest |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4133 (if message-forward-as-mime |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4134 (insert-buffer-substring cur) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4135 (mml-insert-buffer cur)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4136 (if message-forward-show-mml |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4137 (insert-buffer-substring cur) |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4138 (mml-insert-buffer cur))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4139 (setq e (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4140 (if message-forward-as-mime |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4141 (if digest |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4142 (insert "<#/multipart>\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4143 (if message-forward-show-mml |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4144 (insert "<#/mml>\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4145 (insert "<#/part>\n"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4146 (insert "\n-------------------- End of forwarded message --------------------\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4147 (if (and digest message-forward-as-mime) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4148 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4149 (narrow-to-region b e) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4150 (goto-char b) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4151 (narrow-to-region (point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4152 (or (search-forward "\n\n" nil t) (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4153 (delete-region (point-min) (point-max))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4154 (when (and (not current-prefix-arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4155 message-forward-ignored-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4156 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4157 (narrow-to-region b e) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4158 (goto-char b) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4159 (narrow-to-region (point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4160 (or (search-forward "\n\n" nil t) (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4161 (message-remove-header message-forward-ignored-headers t))))) |
17493 | 4162 (message-position-point))) |
4163 | |
4164 ;;;###autoload | |
4165 (defun message-resend (address) | |
4166 "Resend the current article to ADDRESS." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4167 (interactive |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4168 (list (message-read-from-minibuffer "Resend message to: "))) |
17493 | 4169 (message "Resending message to %s..." address) |
4170 (save-excursion | |
4171 (let ((cur (current-buffer)) | |
4172 beg) | |
4173 ;; We first set up a normal mail buffer. | |
4174 (set-buffer (get-buffer-create " *message resend*")) | |
4175 (erase-buffer) | |
4176 (message-setup `((To . ,address))) | |
4177 ;; Insert our usual headers. | |
4178 (message-generate-headers '(From Date To)) | |
4179 (message-narrow-to-headers) | |
4180 ;; Rename them all to "Resent-*". | |
4181 (while (re-search-forward "^[A-Za-z]" nil t) | |
4182 (forward-char -1) | |
4183 (insert "Resent-")) | |
4184 (widen) | |
4185 (forward-line) | |
4186 (delete-region (point) (point-max)) | |
4187 (setq beg (point)) | |
4188 ;; Insert the message to be resent. | |
4189 (insert-buffer-substring cur) | |
4190 (goto-char (point-min)) | |
4191 (search-forward "\n\n") | |
4192 (forward-char -1) | |
4193 (save-restriction | |
4194 (narrow-to-region beg (point)) | |
4195 (message-remove-header message-ignored-resent-headers t) | |
4196 (goto-char (point-max))) | |
4197 (insert mail-header-separator) | |
4198 ;; Rename all old ("Also-")Resent headers. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4199 (while (re-search-backward "^\\(Also-\\)*Resent-" beg t) |
17493 | 4200 (beginning-of-line) |
4201 (insert "Also-")) | |
4202 ;; Quote any "From " lines at the beginning. | |
4203 (goto-char beg) | |
4204 (when (looking-at "From ") | |
4205 (replace-match "X-From-Line: ")) | |
4206 ;; Send it. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4207 (let ((message-inhibit-body-encoding t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4208 message-required-mail-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4209 (message-send-mail)) |
17493 | 4210 (kill-buffer (current-buffer))) |
4211 (message "Resending message to %s...done" address))) | |
4212 | |
4213 ;;;###autoload | |
4214 (defun message-bounce () | |
4215 "Re-mail the current message. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4216 This only makes sense if the current message is a bounce message that |
17493 | 4217 contains some mail you have written which has been bounced back to |
4218 you." | |
4219 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4220 (let ((handles (mm-dissect-buffer t)) |
17493 | 4221 boundary) |
4222 (message-pop-to-buffer (message-buffer-name "bounce")) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4223 (if (stringp (car handles)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4224 ;; This is a MIME bounce. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4225 (mm-insert-part (car (last handles))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4226 ;; This is a non-MIME bounce, so we try to remove things |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4227 ;; manually. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4228 (mm-insert-part handles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4229 (undo-boundary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4230 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4231 (search-forward "\n\n" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4232 (or (and (re-search-forward message-unsent-separator nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4233 (forward-line 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4234 (re-search-forward "^Return-Path:.*\n" nil t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4235 ;; We remove everything before the bounced mail. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4236 (delete-region |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4237 (point-min) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4238 (if (re-search-forward "^[^ \n\t]+:" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4239 (match-beginning 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4240 (point)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4241 (mm-enable-multibyte) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4242 (mime-to-mml) |
17493 | 4243 (save-restriction |
4244 (message-narrow-to-head) | |
4245 (message-remove-header message-ignored-bounced-headers t) | |
4246 (goto-char (point-max)) | |
4247 (insert mail-header-separator)) | |
4248 (message-position-point))) | |
4249 | |
4250 ;;; | |
4251 ;;; Interactive entry points for new message buffers. | |
4252 ;;; | |
4253 | |
4254 ;;;###autoload | |
4255 (defun message-mail-other-window (&optional to subject) | |
4256 "Like `message-mail' command, but display mail buffer in another window." | |
4257 (interactive) | |
4258 (let ((pop-up-windows t) | |
4259 (special-display-buffer-names nil) | |
4260 (special-display-regexps nil) | |
4261 (same-window-buffer-names nil) | |
4262 (same-window-regexps nil)) | |
4263 (message-pop-to-buffer (message-buffer-name "mail" to))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4264 (let ((message-this-is-mail t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4265 (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))) |
17493 | 4266 |
4267 ;;;###autoload | |
4268 (defun message-mail-other-frame (&optional to subject) | |
4269 "Like `message-mail' command, but display mail buffer in another frame." | |
4270 (interactive) | |
4271 (let ((pop-up-frames t) | |
4272 (special-display-buffer-names nil) | |
4273 (special-display-regexps nil) | |
4274 (same-window-buffer-names nil) | |
4275 (same-window-regexps nil)) | |
4276 (message-pop-to-buffer (message-buffer-name "mail" to))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4277 (let ((message-this-is-mail t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4278 (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))) |
17493 | 4279 |
4280 ;;;###autoload | |
4281 (defun message-news-other-window (&optional newsgroups subject) | |
4282 "Start editing a news article to be sent." | |
4283 (interactive) | |
4284 (let ((pop-up-windows t) | |
4285 (special-display-buffer-names nil) | |
4286 (special-display-regexps nil) | |
4287 (same-window-buffer-names nil) | |
4288 (same-window-regexps nil)) | |
4289 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4290 (let ((message-this-is-news t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4291 (message-setup `((Newsgroups . ,(or newsgroups "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4292 (Subject . ,(or subject "")))))) |
17493 | 4293 |
4294 ;;;###autoload | |
4295 (defun message-news-other-frame (&optional newsgroups subject) | |
4296 "Start editing a news article to be sent." | |
4297 (interactive) | |
4298 (let ((pop-up-frames t) | |
4299 (special-display-buffer-names nil) | |
4300 (special-display-regexps nil) | |
4301 (same-window-buffer-names nil) | |
4302 (same-window-regexps nil)) | |
4303 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4304 (let ((message-this-is-news t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4305 (message-setup `((Newsgroups . ,(or newsgroups "")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4306 (Subject . ,(or subject "")))))) |
17493 | 4307 |
4308 ;;; underline.el | |
4309 | |
4310 ;; This code should be moved to underline.el (from which it is stolen). | |
4311 | |
4312 ;;;###autoload | |
4313 (defun bold-region (start end) | |
4314 "Bold all nonblank characters in the region. | |
4315 Works by overstriking characters. | |
4316 Called from program, takes two arguments START and END | |
4317 which specify the range to operate on." | |
4318 (interactive "r") | |
4319 (save-excursion | |
4320 (let ((end1 (make-marker))) | |
4321 (move-marker end1 (max start end)) | |
4322 (goto-char (min start end)) | |
4323 (while (< (point) end1) | |
4324 (or (looking-at "[_\^@- ]") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4325 (insert (char-after) "\b")) |
17493 | 4326 (forward-char 1))))) |
4327 | |
4328 ;;;###autoload | |
4329 (defun unbold-region (start end) | |
4330 "Remove all boldness (overstruck characters) in the region. | |
4331 Called from program, takes two arguments START and END | |
4332 which specify the range to operate on." | |
4333 (interactive "r") | |
4334 (save-excursion | |
4335 (let ((end1 (make-marker))) | |
4336 (move-marker end1 (max start end)) | |
4337 (goto-char (min start end)) | |
4338 (while (re-search-forward "\b" end1 t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4339 (if (eq (char-after) (char-after (- (point) 2))) |
17493 | 4340 (delete-char -2)))))) |
4341 | |
4342 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark) | |
4343 | |
4344 ;; Support for toolbar | |
33335
3fcf9bc886b8
(tool-bar-map): Defvar when compiling.
Dave Love <fx@gnu.org>
parents:
33301
diff
changeset
|
4345 (eval-when-compile (defvar tool-bar-map)) |
32964
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4346 (if (featurep 'xemacs) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4347 (require 'messagexmas) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4348 (when (and (fboundp 'tool-bar-add-item-from-menu) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4349 tool-bar-mode) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4350 (defvar message-tool-bar-map |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4351 (let ((tool-bar-map (copy-keymap tool-bar-map))) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4352 ;; Zap some items which aren't so relevant and take up space. |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4353 (dolist (key '(print-buffer kill-buffer save-buffer write-file |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4354 dired open-file)) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4355 (define-key tool-bar-map (vector key) nil)) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4356 |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4357 (tool-bar-add-item-from-menu |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4358 'message-send-and-exit "mail_send" message-mode-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4359 (tool-bar-add-item-from-menu |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4360 'message-kill-buffer "close" message-mode-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4361 (tool-bar-add-item-from-menu |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4362 'message-dont-send "cancel" message-mode-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4363 (tool-bar-add-item-from-menu |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4364 'mml-attach-file "attach" message-mode-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4365 (tool-bar-add-item-from-menu |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4366 'ispell-message "spell" message-mode-map) |
352449d35643
(message-mode-menu): Add some :help strings.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
4367 tool-bar-map)))) |
17493 | 4368 |
4369 ;;; Group name completion. | |
4370 | |
4371 (defvar message-newgroups-header-regexp | |
4372 "^\\(Newsgroups\\|Followup-To\\|Posted-To\\|Gcc\\):" | |
4373 "Regexp that match headers that lists groups.") | |
4374 | |
4375 (defun message-tab () | |
4376 "Expand group names in Newsgroups and Followup-To headers. | |
4377 Do a `tab-to-tab-stop' if not in those headers." | |
4378 (interactive) | |
4379 (if (let ((mail-abbrev-mode-regexp message-newgroups-header-regexp)) | |
4380 (mail-abbrev-in-expansion-header-p)) | |
4381 (message-expand-group) | |
4382 (tab-to-tab-stop))) | |
4383 | |
4384 (defun message-expand-group () | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4385 "Expand the group name under point." |
17493 | 4386 (let* ((b (save-excursion |
4387 (save-restriction | |
4388 (narrow-to-region | |
4389 (save-excursion | |
4390 (beginning-of-line) | |
4391 (skip-chars-forward "^:") | |
4392 (1+ (point))) | |
4393 (point)) | |
4394 (skip-chars-backward "^, \t\n") (point)))) | |
4395 (completion-ignore-case t) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4396 (string (buffer-substring b (progn (skip-chars-forward "^,\t\n ") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4397 (point)))) |
17493 | 4398 (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb)) |
4399 (completions (all-completions string hashtb)) | |
4400 comp) | |
4401 (delete-region b (point)) | |
4402 (cond | |
4403 ((= (length completions) 1) | |
4404 (if (string= (car completions) string) | |
4405 (progn | |
4406 (insert string) | |
4407 (message "Only matching group")) | |
4408 (insert (car completions)))) | |
4409 ((and (setq comp (try-completion string hashtb)) | |
4410 (not (string= comp string))) | |
4411 (insert comp)) | |
4412 (t | |
4413 (insert string) | |
4414 (if (not comp) | |
4415 (message "No matching groups") | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4416 (save-selected-window |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4417 (pop-to-buffer "*Completions*") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4418 (buffer-disable-undo) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4419 (let ((buffer-read-only nil)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4420 (erase-buffer) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4421 (let ((standard-output (current-buffer))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4422 (display-completion-list (sort completions 'string<))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4423 (goto-char (point-min)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4424 (delete-region (point) (progn (forward-line 3) (point)))))))))) |
17493 | 4425 |
4426 ;;; Help stuff. | |
4427 | |
4428 (defun message-talkative-question (ask question show &rest text) | |
19525
59026d8478f7
Require cl only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
19481
diff
changeset
|
4429 "Call FUNCTION with argument QUESTION; optionally display TEXT... args. |
59026d8478f7
Require cl only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
19481
diff
changeset
|
4430 If SHOW is non-nil, the arguments TEXT... are displayed in a temp buffer. |
17493 | 4431 The following arguments may contain lists of values." |
4432 (if (and show | |
4433 (setq text (message-flatten-list text))) | |
4434 (save-window-excursion | |
4435 (save-excursion | |
4436 (with-output-to-temp-buffer " *MESSAGE information message*" | |
4437 (set-buffer " *MESSAGE information message*") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4438 (fundamental-mode) ; for Emacs 20.4+ |
17493 | 4439 (mapcar 'princ text) |
4440 (goto-char (point-min)))) | |
4441 (funcall ask question)) | |
4442 (funcall ask question))) | |
4443 | |
4444 (defun message-flatten-list (list) | |
4445 "Return a new, flat list that contains all elements of LIST. | |
4446 | |
4447 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7)) | |
4448 => (1 2 3 4 5 6 7)" | |
4449 (cond ((consp list) | |
4450 (apply 'append (mapcar 'message-flatten-list list))) | |
4451 (list | |
4452 (list list)))) | |
4453 | |
4454 (defun message-generate-new-buffer-clone-locals (name &optional varstr) | |
4455 "Create and return a buffer with a name based on NAME using generate-new-buffer. | |
4456 Then clone the local variables and values from the old buffer to the | |
4457 new one, cloning only the locals having a substring matching the | |
4458 regexp varstr." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4459 (let ((oldbuf (current-buffer))) |
17493 | 4460 (save-excursion |
4461 (set-buffer (generate-new-buffer name)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4462 (message-clone-locals oldbuf varstr) |
17493 | 4463 (current-buffer)))) |
4464 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4465 (defun message-clone-locals (buffer &optional varstr) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4466 "Clone the local variables from BUFFER to the current buffer." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4467 (let ((locals (save-excursion |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4468 (set-buffer buffer) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4469 (buffer-local-variables))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4470 (regexp "^gnus\\|^nn\\|^message\\|^user-mail-address")) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4471 (mapcar |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4472 (lambda (local) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4473 (when (and (consp local) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4474 (car local) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4475 (string-match regexp (symbol-name (car local))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4476 (or (null varstr) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4477 (string-match varstr (symbol-name (car local))))) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4478 (ignore-errors |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4479 (set (make-local-variable (car local)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4480 (cdr local))))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4481 locals))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19762
diff
changeset
|
4482 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4483 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4484 ;;; MIME functions |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4485 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4486 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4487 (defvar message-inhibit-body-encoding nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4488 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4489 (defun message-encode-message-body () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4490 (unless message-inhibit-body-encoding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4491 (let ((mail-parse-charset (or mail-parse-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4492 message-default-charset)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4493 (case-fold-search t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4494 lines content-type-p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4495 (message-goto-body) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4496 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4497 (narrow-to-region (point) (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4498 (let ((new (mml-generate-mime))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4499 (when new |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4500 (delete-region (point-min) (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4501 (insert new) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4502 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4503 (if (eq (aref new 0) ?\n) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4504 (delete-char 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4505 (search-forward "\n\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4506 (setq lines (buffer-substring (point-min) (1- (point)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4507 (delete-region (point-min) (point)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4508 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4509 (message-narrow-to-headers-or-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4510 (message-remove-header "Mime-Version") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4511 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4512 (insert "MIME-Version: 1.0\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4513 (when lines |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4514 (insert lines)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4515 (setq content-type-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4516 (re-search-backward "^Content-Type:" nil t))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4517 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4518 (message-narrow-to-headers-or-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4519 (message-remove-first-header "Content-Type") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4520 (message-remove-first-header "Content-Transfer-Encoding")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4521 ;; We always make sure that the message has a Content-Type header. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4522 ;; This is because some broken MTAs and MUAs get awfully confused |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4523 ;; when confronted with a message with a MIME-Version header and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4524 ;; without a Content-Type header. For instance, Solaris' |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4525 ;; /usr/bin/mail. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4526 (unless content-type-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4527 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4528 (re-search-forward "^MIME-Version:") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4529 (forward-line 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4530 (insert "Content-Type: text/plain; charset=us-ascii\n"))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4531 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4532 (defun message-read-from-minibuffer (prompt) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4533 "Read from the minibuffer while providing abbrev expansion." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4534 (if (fboundp 'mail-abbrevs-setup) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4535 (let ((mail-abbrev-mode-regexp "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4536 (minibuffer-setup-hook 'mail-abbrevs-setup)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4537 (read-from-minibuffer prompt)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4538 (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4539 (read-string prompt)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4540 |
32967
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4541 (defun message-use-alternative-email-as-from () |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4542 (require 'mail-utils) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4543 (let* ((fields '("To" "Cc")) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4544 (emails |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4545 (split-string |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4546 (mail-strip-quoted-names |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4547 (mapconcat 'message-fetch-reply-field fields ",")) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4548 "[ \f\t\n\r\v,]+")) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4549 email) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4550 (while emails |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4551 (if (string-match message-alternative-emails (car emails)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4552 (setq email (car emails) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4553 emails nil)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4554 (pop emails)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4555 (unless (or (not email) (equal email user-mail-address)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4556 (goto-char (point-max)) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4557 (insert "From: " email "\n")))) |
7625203dacf3
2000-10-27 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
32964
diff
changeset
|
4558 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4559 (provide 'message) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23743
diff
changeset
|
4560 |
17493 | 4561 (run-hooks 'message-load-hook) |
4562 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4563 ;; Local Variables: |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4564 ;; coding: iso-8859-1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4565 ;; End: |
17493 | 4566 |
4567 ;;; message.el ends here |