annotate lisp/gnus/message.el @ 22:8fc7fe29b841 r19-15b94

Import from CVS: tag r19-15b94
author cvs
date Mon, 13 Aug 2007 08:50:29 +0200
parents d95e72db5c07
children 4103f0995bd7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; message.el --- composing mail and news messages
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: mail, news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; This mode provides mail-sending facilities from within Emacs. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; consists mainly of large chunks of code from the sendmail.el,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; gnus-msg.el and rnewspost.el files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (require 'cl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (require 'mailheader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (require 'rmail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (require 'nnheader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (require 'timezone)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (require 'easymenu)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
39 (require 'custom)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (if (string-match "XEmacs\\|Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (require 'mail-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (require 'mailabbrev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
44 (defgroup message '((user-mail-address custom-variable)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
45 (user-full-name custom-variable))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
46 "Mail and news message composing."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
47 :link '(custom-manual "(message)Top")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
48 :group 'emacs)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
49
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
50 (put 'user-mail-address 'custom-type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
51 (put 'user-full-name 'custom-type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
52
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
53 (defgroup message-various nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
54 "Various Message Variables"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
55 :link '(custom-manual "(message)Various Message Variables")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
56 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
57
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
58 (defgroup message-buffers nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
59 "Message Buffers"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
60 :link '(custom-manual "(message)Message Buffers")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
61 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
62
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
63 (defgroup message-sending nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
64 "Message Sending"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
65 :link '(custom-manual "(message)Sending Variables")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
66 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
67
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
68 (defgroup message-interface nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
69 "Message Interface"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
70 :link '(custom-manual "(message)Interface")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
71 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
72
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
73 (defgroup message-forwarding nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
74 "Message Forwarding"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
75 :link '(custom-manual "(message)Forwarding")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
76 :group 'message-interface)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
77
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
78 (defgroup message-insertion nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
79 "Message Insertion"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
80 :link '(custom-manual "(message)Insertion")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
81 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
82
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
83 (defgroup message-headers nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
84 "Message Headers"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
85 :link '(custom-manual "(message)Message Headers")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
86 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
87
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
88 (defgroup message-news nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
89 "Composing News Messages"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
90 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
91
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
92 (defgroup message-mail nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
93 "Composing Mail Messages"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
94 :group 'message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
95
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
96 (defcustom message-directory "~/Mail/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
97 "*Directory from which all other mail file variables are derived."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
98 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
99 :type 'directory)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
100
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
101 (defcustom message-max-buffers 10
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
102 "*How many buffers to keep before starting to kill them off."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
103 :group 'message-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
104 :type 'integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
105
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
106 (defcustom message-send-rename-function nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
107 "Function called to rename the buffer after sending it."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
108 :group 'message-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
109 :type 'function)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
112 (defcustom message-fcc-handler-function 'message-output
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 "*A function called to save outgoing articles.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 This function will be called with the name of the file to store the
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
115 article in. The default function is `message-output' which saves in Unix
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
116 mailbox format."
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
117 :type '(radio (function-item message-output)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
118 (function :tag "Other"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
119 :group 'message-sending)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
120
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
121 (defcustom message-courtesy-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
122 "The following message is a courtesy copy of an article\nthat has been posted to %s as well.\n\n"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
123 "*This is inserted at the start of a mailed copy of a posted message.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
124 If the string contains the format spec \"%s\", the Newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
125 the article has been posted to will be inserted there.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
126 If this variable is nil, no such courtesy message will be added."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
127 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
128 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
129
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
130 (defcustom message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
131 "*Regexp that matches headers to be removed in resent bounced mail."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
132 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
133 :type 'regexp)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
136 (defcustom message-from-style 'default
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 "*Specifies how \"From\" headers look.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 If `nil', they contain just the return address like:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 king@grassland.com
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 If `parens', they look like:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 king@grassland.com (Elvis Parsley)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 If `angles', they look like:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Elvis Parsley <king@grassland.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Otherwise, most addresses look like `angles', but they look like
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
147 `parens' if `angles' would need quoting and `parens' would not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
148 :type '(choice (const :tag "simple" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
149 (const parens)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
150 (const angles)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
151 (const default))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
152 :group 'message-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
153
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
154 (defcustom message-syntax-checks nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
155 ;; Guess this one shouldn't be easy to customize...
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 "Controls what syntax checks should not be performed on outgoing posts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 To disable checking of long signatures, for instance, add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 `(signature . disabled)' to this list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 Don't touch this variable unless you really know what you're doing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 Checks include subject-cmsg multiple-headers sendsys message-id from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 long-lines control-chars size new-text redirected-followup signature
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
164 approved sender empty empty-headers message-id from subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
165 shorten-followup-to existing-newsgroups."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
166 :group 'message-news)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
167
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
168 (defcustom message-required-news-headers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 '(From Newsgroups Subject Date Message-ID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (optional . Organization) Lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (optional . X-Newsreader))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
172 "Headers to be generated or prompted for when posting an article.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 Message-ID. Organization, Lines, In-Reply-To, Expires, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 X-Newsreader are optional. If don't you want message to insert some
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
176 header, remove it from this list."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
177 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
178 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
179 :type '(repeat sexp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
180
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
181 (defcustom message-required-mail-headers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 '(From Subject Date (optional . In-Reply-To) Message-ID Lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (optional . X-Mailer))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
184 "Headers to be generated or prompted for when mailing a message.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 RFC822 required that From, Date, To, Subject and Message-ID be
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
186 included. Organization, Lines and X-Mailer are optional."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
187 :group 'message-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
188 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
189 :type '(repeat sexp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
190
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
191 (defcustom message-deletable-headers '(Message-ID Date Lines)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
192 "Headers to be deleted if they already exist and were generated by message previously."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
193 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
194 :type 'sexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
195
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
196 (defcustom message-ignored-news-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
197 "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
198 "*Regexp of headers to be removed unconditionally before posting."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
199 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
200 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
201 :type 'regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
202
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
203 (defcustom message-ignored-mail-headers "^Gcc:\\|^Fcc:\\|^Resent-Fcc:"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
204 "*Regexp of headers to be removed unconditionally before mailing."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
205 :group 'message-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
206 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
207 :type 'regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
208
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
209 (defcustom message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
210 "*Header lines matching this regexp will be deleted before posting.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
211 It's best to delete old Path and Date headers before posting to avoid
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
212 any confusion."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
213 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
214 :type 'regexp)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
217 (defcustom message-signature-separator "^-- *$"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
218 "Regexp matching the signature separator."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
219 :type 'regexp
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
220 :group 'message-various)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
221
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
222 (defcustom message-elide-elipsis "\n[...]\n\n"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
223 "*The string which is inserted for elided text.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
224
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
225 (defcustom message-interactive nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 "Non-nil means when sending a message wait for and display errors.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
227 nil means let mailer mail back a message to report errors."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
228 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
229 :group 'message-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
230 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
231
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
232 (defcustom message-generate-new-buffers t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 "*Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 If this is a function, call that function with three parameters: The type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 the to address and the group name. (Any of these may be nil.) The function
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
236 should return the new buffer name."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
237 :group 'message-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
238 :type '(choice (const :tag "off" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
239 (const :tag "on" t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
240 (function fun)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
241
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
242 (defcustom message-kill-buffer-on-exit nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
243 "*Non-nil means that the message buffer will be killed after sending a message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
244 :group 'message-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
245 :type 'boolean)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (defvar gnus-local-organization)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
248 (defcustom message-user-organization
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (or (and (boundp 'gnus-local-organization)
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
250 (stringp gnus-local-organization)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 gnus-local-organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (getenv "ORGANIZATION")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 "*String to be used as an Organization header.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
255 If t, use `message-user-organization-file'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
256 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
257 :type '(choice string
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
258 (const :tag "consult file" t)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
261 (defcustom message-user-organization-file "/usr/lib/news/organization"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
262 "*Local news organization file."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
263 :type 'file
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
264 :group 'message-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
265
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
266 (defcustom message-autosave-directory "~/"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
267 ; (concat (file-name-as-directory message-directory) "drafts/")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 "*Directory where message autosaves buffers.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
269 If nil, message won't autosave."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
270 :group 'message-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
271 :type 'directory)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
272
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
273 (defcustom message-forward-start-separator
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 "------- Start of forwarded message -------\n"
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
275 "*Delimiter inserted before forwarded messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
276 :group 'message-forwarding
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
277 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
278
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
279 (defcustom message-forward-end-separator
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 "------- End of forwarded message -------\n"
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
281 "*Delimiter inserted after forwarded messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
282 :group 'message-forwarding
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
283 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
284
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
285 (defcustom message-signature-before-forwarded-message t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
286 "*If non-nil, put the signature before any included forwarded message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
287 :group 'message-forwarding
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
288 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
289
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
290 (defcustom message-included-forward-headers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:"
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
292 "*Regexp matching headers to be included in forwarded messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
293 :group 'message-forwarding
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
294 :type 'regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
295
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
296 (defcustom message-ignored-resent-headers "^Return-receipt"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
297 "*All headers that match this regexp will be deleted when resending a message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
298 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
299 :type 'regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
300
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
301 (defcustom message-ignored-cited-headers "."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
302 "*Delete these headers from the messages you yank."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
303 :group 'message-insertion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
304 :type 'regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
305
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
306 (defcustom message-cancel-message "I am canceling my own article."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
307 "Message to be inserted in the cancel message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
308 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
309 :type 'string)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 ;; Useful to set in site-init.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
313 (defcustom message-send-mail-function 'message-send-mail-with-sendmail
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 "Function to call to send the current buffer as mail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 The headers should be delimited by a line whose contents match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 variable `mail-header-separator'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
318 Legal values include `message-send-mail-with-sendmail' (the default),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
319 `message-send-mail-with-mh' and `message-send-mail-with-qmail'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
320 :type '(radio (function-item message-send-mail-with-sendmail)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
321 (function-item message-send-mail-with-mh)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
322 (function-item message-send-mail-with-qmail)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
323 (function :tag "Other"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
324 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
325 :group 'message-mail)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
326
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
327 (defcustom message-send-news-function 'message-send-news
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 "Function to call to send the current buffer as news.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 The headers should be delimited by a line whose contents match the
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
330 variable `mail-header-separator'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
331 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
332 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
333 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
334
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
335 (defcustom message-reply-to-function nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
336 "Function that should return a list of headers.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
337 This function should pick out addresses from the To, Cc, and From headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
338 and respond with new To and Cc headers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
339 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
340 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
341
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
342 (defcustom message-wide-reply-to-function nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
343 "Function that should return a list of headers.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
344 This function should pick out addresses from the To, Cc, and From headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
345 and respond with new To and Cc headers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
346 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
347 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
348
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
349 (defcustom message-followup-to-function nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 "Function that should return a list of headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 This function should pick out addresses from the To, Cc, and From headers
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
352 and respond with new To and Cc headers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
353 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
354 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
355
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
356 (defcustom message-use-followup-to 'ask
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 "*Specifies what to do with Followup-To header.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
358 If nil, always ignore the header. If it is t, use its value, but
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
359 query before using the \"poster\" value. If it is the symbol `ask',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
360 always query the user whether to use the value. If it is the symbol
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
361 `use', always use the value."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
362 :group 'message-interface
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
363 :type '(choice (const :tag "ignore" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
364 (const use)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
365 (const ask)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
366
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
367 ;; stuff relating to broken sendmail in MMDF
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
368 (defcustom message-sendmail-f-is-evil nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
369 "*Non-nil means that \"-f username\" should not be added to the sendmail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
370 command line, because it is even more evil than leaving it out."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
371 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
372 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
373
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
374 ;; qmail-related stuff
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
375 (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
376 "Location of the qmail-inject program."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
377 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
378 :type 'file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
379
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
380 (defcustom message-qmail-inject-args nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
381 "Arguments passed to qmail-inject programs.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
382 This should be a list of strings, one string for each argument.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
383
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
384 For e.g., if you wish to set the envelope sender address so that bounces
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
385 go to the right place or to deal with listserv's usage of that address, you
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
386 might set this variable to '(\"-f\" \"you@some.where\")."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
387 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
388 :type '(repeat string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (defvar gnus-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (defvar gnus-select-method)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
392 (defcustom message-post-method
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (cond ((and (boundp 'gnus-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 gnus-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 gnus-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 ((boundp 'gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (t '(nnspool "")))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
399 "Method used to post news."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
400 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
401 :group 'mesage-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
402 ;; This should be the `gnus-select-method' widget, but that might
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
403 ;; create a dependence to `gnus.el'.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
404 :type 'sexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
405
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
406 (defcustom message-generate-headers-first nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
407 "*If non-nil, generate all possible headers before composing."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
408 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
409 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
410
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
411 (defcustom message-setup-hook nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 "Normal hook, run each time a new outgoing message is initialized.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
413 The function `message-setup' runs this hook."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
414 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
415 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
416
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
417 (defcustom message-signature-setup-hook nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 "Normal hook, run each time a new outgoing message is initialized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 It is run after the headers have been inserted and before
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
420 the signature is inserted."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
421 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
422 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
423
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
424 (defcustom message-mode-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
425 "Hook run in message mode buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
426 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
427 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
428
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
429 (defcustom message-header-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
430 "Hook run in a message mode buffer narrowed to the headers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
431 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
432 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
433
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
434 (defcustom message-header-setup-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
435 "Hook called narrowed to the headers when setting up a message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
436 buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
437 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
438 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
439
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
440 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
441 (defcustom message-citation-line-function 'message-insert-citation-line
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
442 "*Function called to insert the \"Whomever writes:\" line."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
443 :type 'function
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
444 :group 'message-insertion)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
447 (defcustom message-yank-prefix "> "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
448 "*Prefix inserted on the lines of yanked messages.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
449 nil means use indentation."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
450 :type 'string
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
451 :group 'message-insertion)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
452
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
453 (defcustom message-indentation-spaces 3
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
454 "*Number of spaces to insert at the beginning of each cited line.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
455 Used by `message-yank-original' via `message-yank-cite'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
456 :group 'message-insertion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
457 :type 'integer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
460 (defcustom message-cite-function
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
461 (if (and (boundp 'mail-citation-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
462 mail-citation-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
463 mail-citation-hook
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
464 'message-cite-original)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
465 "*Function for citing an original message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
466 :type '(radio (function-item message-cite-original)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
467 (function-item sc-cite-original)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
468 (function :tag "Other"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
469 :group 'message-insertion)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
472 (defcustom message-indent-citation-function 'message-indent-citation
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 "*Function for modifying a citation just inserted in the mail buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 This can also be a list of functions. Each function can find the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 citation between (point) and (mark t). And each function should leave
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
476 point and mark around the citation text as modified."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
477 :type 'function
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
478 :group 'message-insertion)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (defvar message-abbrevs-loaded nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
483 (defcustom message-signature t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 "*String to be inserted at the end of the message buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 If t, the `message-signature-file' file will be inserted instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 If a function, the result from the function will be used instead.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
487 If a form, the result from the form will be used instead."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
488 :type 'sexp
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
489 :group 'message-insertion)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
492 (defcustom message-signature-file "~/.signature"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
493 "*File containing the text inserted at end of message buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
494 :type 'file
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
495 :group 'message-insertion)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
496
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
497 (defcustom message-distribution-function nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
498 "*Function called to return a Distribution header."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
499 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
500 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
501 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
502
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
503 (defcustom message-expires 14
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
504 "Number of days before your article expires."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
505 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
506 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
507 :link '(custom-manual "(message)News Headers")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
508 :type 'integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
509
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
510 (defcustom message-user-path nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 "If nil, use the NNTP server name in the Path header.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
512 If stringp, use this; if non-nil, use no host name (user name only)."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
513 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
514 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
515 :link '(custom-manual "(message)News Headers")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
516 :type '(choice (const :tag "nntp" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
517 (string :tag "name")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
518 (sexp :tag "none" :format "%t" t)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (defvar message-reply-buffer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (defvar message-reply-headers nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (defvar message-newsreader nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (defvar message-mailer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (defvar message-sent-message-via nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (defvar message-checksum nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (defvar message-send-actions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 "A list of actions to be performed upon successful sending of a message.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (defvar message-exit-actions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 "A list of actions to be performed upon exiting after sending a message.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (defvar message-kill-actions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 "A list of actions to be performed before killing a message buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (defvar message-postpone-actions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 "A list of actions to be performed after postponing a message.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
535 (defcustom message-default-headers ""
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 "*A string containing header lines to be inserted in outgoing messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 It is inserted before you edit the message, so you can edit or delete
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
538 these lines."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
539 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
540 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
541
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
542 (defcustom message-default-mail-headers ""
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
543 "*A string of header lines to be inserted in outgoing mails."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
544 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
545 :group 'message-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
546 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
547
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
548 (defcustom message-default-news-headers ""
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
549 "*A string of header lines to be inserted in outgoing news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
550 articles."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
551 :group 'message-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
552 :group 'message-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
553 :type 'string)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 ;; Note: could use /usr/ucb/mail instead of sendmail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 ;; options -t, and -v if not interactive.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
557 (defcustom message-mailer-swallows-blank-line
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 system-configuration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (file-readable-p "/etc/sendmail.cf")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (let ((buffer (get-buffer-create " *temp*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (insert-file-contents "/etc/sendmail.cf")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (let ((case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (re-search-forward "^OR\\>" nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (kill-buffer buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 ;; According to RFC822, "The field-name must be composed of printable
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
571 ;; ASCII characters (i. e., characters that have decimal values between
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
572 ;; 33 and 126, except colon)", i. e., any chars except ctl chars,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 ;; space, or colon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 '(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 "Set this non-nil if the system's mailer runs the header and body together.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 \(This problem exists on Sunos 4 when sendmail is run in remote mode.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 The value should be an expression to test whether the problem will
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
578 actually occur."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
579 :group 'message-sending
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
580 :type 'sexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
581
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
582 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
583 (define-mail-user-agent 'message-user-agent
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
584 'message-mail 'message-send-and-exit
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
585 'message-kill-buffer 'message-send-hook))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
586
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
587 (defvar message-mh-deletable-headers '(Message-ID Date Lines Sender)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
588 "If non-nil, delete the deletable headers before feeding to mh.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
589
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
590 ;;; Internal variables.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
591 ;;; Well, not really internal.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (defvar message-mode-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (let ((table (copy-syntax-table text-mode-syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (modify-syntax-entry ?% ". " table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 "Syntax table used while in Message mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
599 (defvar message-mode-abbrev-table text-mode-abbrev-table
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
600 "Abbrev table used in Message mode buffers.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
601 Defaults to `text-mode-abbrev-table'.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
602
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (defvar message-font-lock-keywords
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (list '("^To:" . font-lock-function-name-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 '("^[GBF]?[Cc][Cc]:\\|^Reply-To:" . font-lock-keyword-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (1 font-lock-comment-face) (2 font-lock-type-face nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (list (concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 1 'font-lock-comment-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (cons (concat "^[ \t]*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 "[>|}].*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 'font-lock-reference-face)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
615 '("^\\(X-[A-Za-z0-9-]+\\|In-Reply-To\\):.*"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 . font-lock-string-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 "Additional expressions to highlight in Message mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (defvar message-face-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 '((bold . bold-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (underline . underline-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (default . (lambda (b e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (unbold-region b e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (ununderline-region b e))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 "Alist of mail and news faces for facemenu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 The cdr of ech entry is a function for applying the face to a region.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
628 (defcustom message-send-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
629 "Hook run before sending messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
630 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
631 :options '(ispell-message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
632 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
633
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
634 (defcustom message-send-mail-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
635 "Hook run before sending mail messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
636 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
637 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
638
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
639 (defcustom message-send-news-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
640 "Hook run before sending news messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
641 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
642 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
643
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
644 (defcustom message-sent-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
645 "Hook run after sending messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
646 :group 'message-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
647 :type 'hook)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 ;;; Internal variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (defvar message-buffer-list nil)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
652 (defvar message-this-is-news nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
653 (defvar message-this-is-mail nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
654
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
655 ;; Byte-compiler warning
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
656 (defvar gnus-active-hashtb)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
657 (defvar gnus-read-active-file)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;;; Regexp matching the delimiter of messages in UNIX mail format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 ;;; (UNIX From lines), minus the initial ^.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (defvar message-unix-mail-delimiter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (let ((time-zone-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 "\\|[-+]?[0-9][0-9][0-9][0-9]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 "\\) *")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 "From "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 ;; Username, perhaps with a quoted section that can contain spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 "\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 "[^ \n]*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 "\\(\\|\".*\"[^ \n]*\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 "\\|<[^<>\n]+>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 "\\) ?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ;; The time the message was sent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 "\\([^ \n]*\\) *" ; day of the week
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 "\\([^ ]*\\) *" ; month
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 "\\([0-9]*\\) *" ; day of month
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 "\\([0-9:]*\\) *" ; time of day
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 ;; Perhaps a time zone, specified by an abbreviation, or by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 ;; numeric offset.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 time-zone-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 ;; The year.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 " [0-9][0-9]\\([0-9]*\\) *"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 ;; On some systems the time zone can appear after the year, too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 time-zone-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 ;; Old uucp cruft.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 "\\(remote from .*\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (defvar message-unsent-separator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 "^ *---+ +Returned message +---+ *$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 "^Start of returned message$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 "^ *---+ +Original message +---+ *$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 "^ *--+ +begin message +--+ *$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 "^ *---+ +Original message follows +---+ *$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 "^|? *---+ +Message text follows: +---+ *|?$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 "A regexp that matches the separator before the text of a failed message.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (defvar message-header-format-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 `((Newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (To . message-fill-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (Cc . message-fill-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (Subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (In-Reply-To)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (Fcc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (Bcc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (Date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (Organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (Distribution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (Lines)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (Expires)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (Message-ID)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
722 (References)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (X-Mailer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (X-Newsreader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 "Alist used for formatting headers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (autoload 'message-setup-toolbar "messagexmas")
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
729 (autoload 'mh-send-letter "mh-comp")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
730 (autoload 'gnus-output-to-mail "gnus-util")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
731 (autoload 'gnus-output-to-rmail "gnus-util"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 ;;; Utility functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (defun message-point-at-bol ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 "Return point at the beginning of the line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (let ((p (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (goto-char p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (defun message-point-at-eol ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 "Return point at the end of the line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (let ((p (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (goto-char p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
755 (defmacro message-y-or-n-p (question show &rest text)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
756 "Ask QUESTION, displaying the rest of the arguments in a temp. buffer if SHOW"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
757 `(message-talkative-question 'y-or-n-p ,question ,show ,@text))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
758
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 ;; Delete the current line (and the next N lines.);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (defmacro message-delete-line (&optional n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 `(delete-region (progn (beginning-of-line) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (progn (forward-line ,(or n 1)) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (defun message-tokenize-header (header &optional separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 "Split HEADER into a list of header elements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 \",\" is used as the separator."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
767 (if (not header)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
768 nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
769 (let ((regexp (format "[%s]+" (or separator ",")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
770 (beg 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
771 (first t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
772 quoted elems paren)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
773 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
774 (message-set-work-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
775 (insert header)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
776 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
777 (while (not (eobp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
778 (if first
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
779 (setq first nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
780 (forward-char 1))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
781 (cond ((and (> (point) beg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
782 (or (eobp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
783 (and (looking-at regexp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
784 (not quoted)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
785 (not paren))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
786 (push (buffer-substring beg (point)) elems)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
787 (setq beg (match-end 0)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
788 ((= (following-char) ?\")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
789 (setq quoted (not quoted)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
790 ((and (= (following-char) ?\()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
791 (not quoted))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
792 (setq paren t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
793 ((and (= (following-char) ?\))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
794 (not quoted))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
795 (setq paren nil))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
796 (nreverse elems)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
798 (defun message-fetch-field (header &optional not-all)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 "The same as `mail-fetch-field', only remove all newlines."
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
800 (let ((value (mail-fetch-field header nil (not not-all))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (when value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (nnheader-replace-chars-in-string value ?\n ? ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (defun message-fetch-reply-field (header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 "Fetch FIELD from the message we're replying to."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (when (and message-reply-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (buffer-name message-reply-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (set-buffer message-reply-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (message-fetch-field header))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (defun message-set-work-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (if (get-buffer " *message work*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (set-buffer " *message work*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (set-buffer (get-buffer-create " *message work*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (buffer-disable-undo (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (defun message-functionp (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 "Return non-nil if FORM is funcallable."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (or (and (symbolp form) (fboundp form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (and (listp form) (eq (car form) 'lambda))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (defun message-strip-subject-re (subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 "Remove \"Re:\" from subject lines."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (if (string-match "^[Rr][Ee]: *" subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (substring subject (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 subject))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (defun message-remove-header (header &optional is-regexp first reverse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 "Remove HEADER in the narrowed buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 If REGEXP, HEADER is a regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 If FIRST, only remove the first instance of the header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 Return the number of headers removed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (let ((regexp (if is-regexp header (concat "^" header ":")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (number 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (while (and (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (not last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (if (if reverse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 (not (looking-at regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (looking-at regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 (incf number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (when first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (setq last t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (delete-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 ;; There might be a continuation header, so we have to search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 ;; until we find a new non-continuation line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (if (re-search-forward "^[^ \t]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (goto-char (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (if (re-search-forward "^[^ \t]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (goto-char (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 number))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (defun message-narrow-to-headers ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 "Narrow the buffer to the head of the message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (if (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (concat "^" (regexp-quote mail-header-separator) "\n") nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (defun message-narrow-to-head ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 "Narrow the buffer to the head of the message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (if (search-forward "\n\n" nil 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (1- (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (defun message-news-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 "Say whether the current buffer contains a news message."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
889 (or message-this-is-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
890 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
891 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
892 (message-narrow-to-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
893 (message-fetch-field "newsgroups")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (defun message-mail-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 "Say whether the current buffer contains a mail message."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
897 (or message-this-is-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
898 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
899 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
900 (message-narrow-to-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
901 (or (message-fetch-field "to")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
902 (message-fetch-field "cc")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
903 (message-fetch-field "bcc"))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (defun message-next-header ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 "Go to the beginning of the next header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (or (eobp) (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (not (if (re-search-forward "^[^ \t]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (goto-char (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (defun message-sort-headers-1 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 "Sort the buffer as headers using `message-rank' text props."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (sort-subr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 nil 'message-next-header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (message-next-header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (unless (bobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (forward-char -1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (or (get-text-property (point) 'message-rank)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
924 10000))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (defun message-sort-headers ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 "Sort the headers of the current message according to `message-header-format-alist'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (let ((max (1+ (length message-header-format-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 rank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 (while (re-search-forward "^[^ \n]+:" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (put-text-property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 (match-beginning 0) (1+ (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 'message-rank
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (if (setq rank (length (memq (assq (intern (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (1- (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 message-header-format-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 message-header-format-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (- max rank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (1+ max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (message-sort-headers-1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 ;;; Message mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 ;;; Set up keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 (defvar message-mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (unless message-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (setq message-mode-map (copy-keymap text-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (define-key message-mode-map "\C-c?" 'describe-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (define-key message-mode-map "\C-c\C-f\C-t" 'message-goto-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (define-key message-mode-map "\C-c\C-f\C-b" 'message-goto-bcc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (define-key message-mode-map "\C-c\C-f\C-w" 'message-goto-fcc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (define-key message-mode-map "\C-c\C-f\C-c" 'message-goto-cc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (define-key message-mode-map "\C-c\C-f\C-s" 'message-goto-subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (define-key message-mode-map "\C-c\C-f\C-r" 'message-goto-reply-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (define-key message-mode-map "\C-c\C-f\C-n" 'message-goto-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (define-key message-mode-map "\C-c\C-f\C-d" 'message-goto-distribution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (define-key message-mode-map "\C-c\C-f\C-f" 'message-goto-followup-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (define-key message-mode-map "\C-c\C-f\C-k" 'message-goto-keywords)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (define-key message-mode-map "\C-c\C-f\C-u" 'message-goto-summary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (define-key message-mode-map "\C-c\C-b" 'message-goto-body)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 (define-key message-mode-map "\C-c\C-i" 'message-goto-signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (define-key message-mode-map "\C-c\C-t" 'message-insert-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (define-key message-mode-map "\C-c\C-n" 'message-insert-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (define-key message-mode-map "\C-c\C-y" 'message-yank-original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (define-key message-mode-map "\C-c\C-q" 'message-fill-yanked-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (define-key message-mode-map "\C-c\C-w" 'message-insert-signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (define-key message-mode-map "\C-c\C-r" 'message-caesar-buffer-body)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (define-key message-mode-map "\C-c\C-o" 'message-sort-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (define-key message-mode-map "\C-c\M-r" 'message-rename-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (define-key message-mode-map "\C-c\C-c" 'message-send-and-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (define-key message-mode-map "\C-c\C-s" 'message-send)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (define-key message-mode-map "\C-c\C-k" 'message-kill-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (define-key message-mode-map "\C-c\C-d" 'message-dont-send)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
990 (define-key message-mode-map "\C-c\C-e" 'message-elide-region)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
991
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (define-key message-mode-map "\t" 'message-tab))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
994 (easy-menu-define
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
995 message-mode-menu message-mode-map "Message Menu."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
996 '("Message"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
997 ["Sort Headers" message-sort-headers t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
998 ["Yank Original" message-yank-original t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
999 ["Fill Yanked Message" message-fill-yanked-message t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1000 ["Insert Signature" message-insert-signature t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1001 ["Caesar (rot13) Message" message-caesar-buffer-body t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1002 ["Caesar (rot13) Region" message-caesar-region (mark t)]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1003 ["Elide Region" message-elide-region (mark t)]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1004 ["Rename buffer" message-rename-buffer t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1005 ["Spellcheck" ispell-message t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1006 "----"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1007 ["Send Message" message-send-and-exit t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1008 ["Abort Message" message-dont-send t]))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1009
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1010 (easy-menu-define
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1011 message-mode-field-menu message-mode-map ""
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1012 '("Field"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1013 ["Fetch To" message-insert-to t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1014 ["Fetch Newsgroups" message-insert-newsgroups t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1015 "----"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1016 ["To" message-goto-to t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1017 ["Subject" message-goto-subject t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1018 ["Cc" message-goto-cc t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1019 ["Reply-To" message-goto-reply-to t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1020 ["Summary" message-goto-summary t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1021 ["Keywords" message-goto-keywords t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1022 ["Newsgroups" message-goto-newsgroups t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1023 ["Followup-To" message-goto-followup-to t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1024 ["Distribution" message-goto-distribution t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1025 ["Body" message-goto-body t]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1026 ["Signature" message-goto-signature t]))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (defvar facemenu-add-face-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (defvar facemenu-remove-face-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (defun message-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 "Major mode for editing mail and news to be sent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 Like Text Mode but with these additional commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 C-c C-s message-send (send the message) C-c C-c message-send-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 C-c C-f move to a header field (and create it if there isn't):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 C-c C-f C-t move to To C-c C-f C-s move to Subject
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1039 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1042 C-c C-f C-f move to Followup-To
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 C-c C-t message-insert-to (add a To header to a news followup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 C-c C-b message-goto-body (move to beginning of message text).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 C-c C-i message-goto-signature (move to the beginning of the signature).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 C-c C-w message-insert-signature (insert `message-signature-file' file).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 C-c C-y message-yank-original (insert current message, if any).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 C-c C-q message-fill-yanked-message (fill what was yanked).
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1050 C-c C-e message-elide-region (elide the text between point and mark).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1051 C-c C-r message-caesar-buffer-body (rot13 the message body)."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (make-local-variable 'message-reply-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (setq message-reply-buffer nil)
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1056 (set (make-local-variable 'message-send-actions) nil)
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1057 (set (make-local-variable 'message-exit-actions) nil)
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1058 (set (make-local-variable 'message-kill-actions) nil)
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1059 (set (make-local-variable 'message-postpone-actions) nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (set-syntax-table message-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (use-local-map message-mode-map)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1062 (setq local-abbrev-table message-mode-abbrev-table)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (setq major-mode 'message-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (setq mode-name "Message")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 (setq buffer-offer-save t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (make-local-variable 'font-lock-defaults)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (setq font-lock-defaults '(message-font-lock-keywords t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (make-local-variable 'facemenu-add-face-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (make-local-variable 'facemenu-remove-face-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (setq facemenu-add-face-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 (lambda (face end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (let ((face-fun (cdr (assq face message-face-alist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (if face-fun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (funcall face-fun (point) end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (error "Face %s not configured for %s mode" face mode-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 facemenu-remove-face-function t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 (make-local-variable 'paragraph-separate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (make-local-variable 'paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (setq paragraph-start (concat (regexp-quote mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 "$\\|[ \t]*[-_][-_][-_]+$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 "-- $\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 paragraph-start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (setq paragraph-separate (concat (regexp-quote mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 "$\\|[ \t]*[-_][-_][-_]+$\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 "-- $\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 paragraph-separate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (make-local-variable 'message-reply-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (setq message-reply-headers nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (make-local-variable 'message-newsreader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (make-local-variable 'message-mailer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (make-local-variable 'message-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (make-local-variable 'message-sent-message-via)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (setq message-sent-message-via nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (make-local-variable 'message-checksum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (setq message-checksum nil)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1097 ;;(when (fboundp 'mail-hist-define-keys)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1098 ;; (mail-hist-define-keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (when (string-match "XEmacs\\|Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (message-setup-toolbar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (easy-menu-add message-mode-menu message-mode-map)
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
1102 (easy-menu-add message-mode-field-menu message-mode-map)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 ;; Allow mail alias things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (if (fboundp 'mail-abbrevs-setup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (mail-abbrevs-setup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (funcall (intern "mail-aliases-setup")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (run-hooks 'text-mode-hook 'message-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 ;;; Message mode commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 ;;; Movement commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (defun message-goto-to ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 "Move point to the To header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (message-position-on-field "To"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (defun message-goto-subject ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 "Move point to the Subject header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (message-position-on-field "Subject"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (defun message-goto-cc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 "Move point to the Cc header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (message-position-on-field "Cc" "To"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 (defun message-goto-bcc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 "Move point to the Bcc header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 (message-position-on-field "Bcc" "Cc" "To"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (defun message-goto-fcc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 "Move point to the Fcc header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (message-position-on-field "Fcc" "To" "Newsgroups"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (defun message-goto-reply-to ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 "Move point to the Reply-To header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (message-position-on-field "Reply-To" "Subject"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (defun message-goto-newsgroups ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 "Move point to the Newsgroups header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (message-position-on-field "Newsgroups"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (defun message-goto-distribution ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 "Move point to the Distribution header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (message-position-on-field "Distribution"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 (defun message-goto-followup-to ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 "Move point to the Followup-To header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 (message-position-on-field "Followup-To" "Newsgroups"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (defun message-goto-keywords ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 "Move point to the Keywords header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 (message-position-on-field "Keywords" "Subject"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (defun message-goto-summary ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 "Move point to the Summary header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (message-position-on-field "Summary" "Subject"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 (defun message-goto-body ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 "Move point to the beginning of the message body."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 (if (looking-at "[ \t]*\n") (expand-abbrev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (search-forward (concat "\n" mail-header-separator "\n") nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (defun message-goto-signature ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 "Move point to the beginning of the message signature."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 (goto-char (point-min))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1183 (if (re-search-forward message-signature-separator nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1184 (forward-line 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1185 (goto-char (point-max))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 (defun message-insert-to ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 "Insert a To header that points to the author of the article being replied to."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (interactive)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1192 (let ((co (message-fetch-field "courtesy-copies-to")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1193 (when (and co
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1194 (equal (downcase co) "never"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1195 (error "The user has requested not to have copies sent via mail")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 (when (and (message-position-on-field "To")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (mail-fetch-field "to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (not (string-match "\\` *\\'" (mail-fetch-field "to"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (insert ", "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (insert (or (message-fetch-reply-field "reply-to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (message-fetch-reply-field "from") "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (defun message-insert-newsgroups ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 "Insert the Newsgroups header from the article being replied to."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (when (and (message-position-on-field "Newsgroups")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (mail-fetch-field "newsgroups")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (not (string-match "\\` *\\'" (mail-fetch-field "newsgroups"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (insert ","))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (insert (or (message-fetch-reply-field "newsgroups") "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 ;;; Various commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (defun message-insert-signature (&optional force)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 "Insert a signature. See documentation for the `message-signature' variable."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (interactive (list 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (let* ((signature
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1220 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1221 ((and (null message-signature)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1222 (eq force 0))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1223 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1224 (goto-char (point-max))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1225 (not (re-search-backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1226 message-signature-separator nil t))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1227 ((and (null message-signature)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1228 force)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1229 t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1230 ((message-functionp message-signature)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1231 (funcall message-signature))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1232 ((listp message-signature)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1233 (eval message-signature))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1234 (t message-signature)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (signature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (cond ((stringp signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ((and (eq t signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 message-signature-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 (file-exists-p message-signature-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 signature))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (when signature
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1243 (goto-char (point-max))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1244 ;; Insert the signature.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 (unless (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (insert "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (insert "\n-- \n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (if (eq signature t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 (insert-file-contents message-signature-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 (insert signature))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (or (bolp) (insert "\n")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1254 (defun message-elide-region (b e)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1255 "Elide the text between point and mark. An ellipsis (from
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1256 message-elide-elipsis) will be inserted where the text was killed."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1257 (interactive "r")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1258 (kill-region b e)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1259 (unless (bolp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1260 (insert "\n"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1261 (insert message-elide-elipsis))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1262
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (defvar message-caesar-translation-table nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (defun message-caesar-region (b e &optional n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 "Caesar rotation of region by N, default 13, for decrypting netnews."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 (min (point) (or (mark t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 (max (point) (or (mark t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 (when current-prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (prefix-numeric-value current-prefix-arg))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 (setq n (if (numberp n) (mod n 26) 13)) ;canonize N
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 (unless (or (zerop n) ; no action needed for a rot of 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 (= b e)) ; no region to rotate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 ;; We build the table, if necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (when (or (not message-caesar-translation-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 (/= (aref message-caesar-translation-table ?a) (+ ?a n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (let ((i -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 (table (make-string 256 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (while (< (incf i) 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 (aset table i i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 (setq table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 (substring table 0 ?A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 (substring table (+ ?A n) (+ ?A n (- 26 n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 (substring table ?A (+ ?A n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 (substring table (+ ?A 26) ?a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 (substring table (+ ?a n) (+ ?a n (- 26 n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (substring table ?a (+ ?a n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (substring table (+ ?a 26) 255)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 (setq message-caesar-translation-table table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 ;; Then we translate the region. Do it this way to retain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 ;; text properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 (while (< b e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (subst-char-in-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 b (1+ b) (char-after b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 (aref message-caesar-translation-table (char-after b)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (incf b))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (defun message-caesar-buffer-body (&optional rotnum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 "Caesar rotates all letters in the current buffer by 13 places.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 Used to encode/decode possibly offensive messages (commonly in net.jokes).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 With prefix arg, specifies the number of places to rotate each letter forward.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 Mail and USENET news headers are not rotated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (interactive (if current-prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (list (prefix-numeric-value current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 (list nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (when (message-goto-body)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (narrow-to-region (point) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (message-caesar-region (point-min) (point-max) rotnum))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1316 (defun message-pipe-buffer-body (program)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1317 "Pipe the message body in the current buffer through PROGRAM."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1318 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1319 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1320 (when (message-goto-body)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1321 (narrow-to-region (point) (point-max)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1322 (let ((body (buffer-substring (point-min) (point-max))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1323 (unless (equal 0 (call-process-region
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1324 (point-min) (point-max) program t t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1325 (insert body)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1326 (gnus-message 1 "%s failed." program))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1327
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 (defun message-rename-buffer (&optional enter-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 "Rename the *message* buffer to \"*message* RECIPIENT\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 If the function is run with a prefix, it will ask for a new buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 name, rather than giving an automatic name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 (interactive "Pbuffer name: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 (narrow-to-region (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 (search-forward mail-header-separator nil 'end))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1338 (let* ((mail-to (or
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1339 (if (message-news-p) (message-fetch-field "Newsgroups")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1340 (message-fetch-field "To"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1341 ""))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 (mail-trimmed-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 (if (string-match "," mail-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 (concat (substring mail-to 0 (match-beginning 0)) ", ...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 mail-to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (name-default (concat "*message* " mail-trimmed-to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (name (if enter-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (read-string "New buffer name: " name-default)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1349 name-default))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1350 (default-directory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1351 (file-name-as-directory message-autosave-directory)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1352 (rename-buffer name t)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 (defun message-fill-yanked-message (&optional justifyp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 "Fill the paragraphs of a message yanked into this one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 Numeric argument means justify as well."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 (search-forward (concat "\n" mail-header-separator "\n") nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 (let ((fill-prefix message-yank-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (fill-individual-paragraphs (point) (point-max) justifyp t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (defun message-indent-citation ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 "Modify text just inserted from a message to be cited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 The inserted text should be the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 When this function returns, the region is again around the modified text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 Normally, indent each nonblank line `message-indentation-spaces' spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 (let ((start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 ;; Remove unwanted headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (when message-ignored-cited-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 (if (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 (1- (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (point)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1380 (message-remove-header message-ignored-cited-headers t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1381 (goto-char (point-max))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1382 ;; Delete blank lines at the start of the buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1383 (while (and (point-min)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1384 (eolp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1385 (not (eobp)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1386 (message-delete-line))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1387 ;; Delete blank lines at the end of the buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1388 (goto-char (point-max))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1389 (unless (eolp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1390 (insert "\n"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1391 (while (and (zerop (forward-line -1))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1392 (looking-at "$"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1393 (message-delete-line))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 ;; Do the indentation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 (if (null message-yank-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (indent-rigidly start (mark t) message-indentation-spaces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 (while (< (point) (mark t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (insert message-yank-prefix)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1401 (forward-line 1))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1402 (goto-char start)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 (defun message-yank-original (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 "Insert the message being replied to, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 Puts point before the text and mark after.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 Normally indents each nonblank line ARG spaces (default 3). However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 if `message-yank-prefix' is non-nil, insert that prefix on each line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1410 This function uses `message-cite-function' to do the actual citing.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1411
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 Just \\[universal-argument] as argument means don't indent, insert no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 prefix, and don't delete any headers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 (let ((modified (buffer-modified-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (when (and message-reply-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 message-cite-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (delete-windows-on message-reply-buffer t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (insert-buffer message-reply-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (funcall message-cite-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 (message-exchange-point-and-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 (unless (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (unless modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (setq message-checksum (cons (message-checksum) (buffer-size)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1427 (defun message-cite-original ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1428 "Cite function in the standard Message manner."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 (when message-indent-citation-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (if (listp message-indent-citation-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 message-indent-citation-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 (list message-indent-citation-function)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 (while functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (funcall (pop functions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 (when message-citation-line-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 (unless (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (insert "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (funcall message-citation-line-function))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (defun message-insert-citation-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 "Function that inserts a simple citation line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (when message-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 (insert (mail-header-from message-reply-headers) " writes:\n\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (defun message-position-on-field (header &rest afters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (let ((case-fold-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 (concat "^" (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 (if (re-search-forward (concat "^" (regexp-quote header) ":") nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 (re-search-forward "^[^ \t]" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (skip-chars-backward "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (while (and afters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 (not (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 (concat "^" (regexp-quote (car afters)) ":")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 (pop afters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 (when afters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (re-search-forward "^[^ \t]" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (beginning-of-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 (insert header ": \n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (defun message-remove-signature ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 "Remove the signature from the text between point and mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 The text will also be indented the normal way."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 mark)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1482 (if (not (re-search-forward message-signature-separator (mark t) t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1483 ;; No signature here, so we just indent the cited text.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1484 (message-indent-citation)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1485 ;; Find the last non-empty line.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1486 (forward-line -1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1487 (while (looking-at "[ \t]*$")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1488 (forward-line -1))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1489 (forward-line 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1490 (setq mark (set-marker (make-marker) (point)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1491 (goto-char start)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (message-indent-citation)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1493 ;; Enable undoing the deletion.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1494 (undo-boundary)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1495 (delete-region mark (mark t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1496 (set-marker mark nil)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 ;;; Sending messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 (defun message-send-and-exit (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 "Send message like `message-send', then, if no errors, exit from mail buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (let ((buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (actions message-exit-actions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 (when (and (message-send arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (buffer-name buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 (if message-kill-buffer-on-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 (kill-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 (bury-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 (when (eq buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 (message-bury buf)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (message-do-actions actions))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 (defun message-dont-send ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 "Don't send the message you have been editing."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 (interactive)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1521 (let ((actions message-postpone-actions))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1522 (message-bury (current-buffer))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1523 (message-do-actions actions)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 (defun message-kill-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 "Kill the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (let ((actions message-kill-actions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (kill-buffer (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (message-do-actions actions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 (defun message-bury (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 "Bury this mail buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (let ((newbuf (other-buffer buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 (bury-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (if (and (fboundp 'frame-parameters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 (cdr (assq 'dedicated (frame-parameters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (not (null (delq (selected-frame) (visible-frame-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (delete-frame (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 (switch-to-buffer newbuf))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 (defun message-send (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 "Send the message in the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 If `message-interactive' is non-nil, wait for success indication
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 or error messages, and inform user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 Otherwise any failure is reported in a message back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 the user from the mailer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (when (if buffer-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 (y-or-n-p (format "Send buffer contents as %s message? "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 (if (message-mail-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 (if (message-news-p) "mail and news" "mail")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 "news")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 (or (buffer-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 (y-or-n-p "No changes in the buffer; really send? ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 ;; Make it possible to undo the coming changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (undo-boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (let ((inhibit-read-only t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 (put-text-property (point-min) (point-max) 'read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (message-fix-before-sending)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 (run-hooks 'message-send-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (message "Sending...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (when (and (or (not (message-news-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (and (or (not (memq 'news message-sent-message-via))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (y-or-n-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 "Already sent message via news; resend? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (funcall message-send-news-function arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (or (not (message-mail-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 (and (or (not (memq 'mail message-sent-message-via))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 (y-or-n-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 "Already sent message via mail; resend? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 (message-send-mail arg))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (message-do-fcc)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1574 ;;(when (fboundp 'mail-hist-put-headers-into-history)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1575 ;; (mail-hist-put-headers-into-history))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 (run-hooks 'message-sent-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 (message "Sending...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 ;; If buffer has no file, mark it as unmodified and delete autosave.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (unless buffer-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (set-buffer-modified-p nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (delete-auto-save-file-if-necessary t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 ;; Delete other mail buffers and stuff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (message-do-send-housekeeping)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (message-do-actions message-send-actions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 ;; Return success.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 (defun message-fix-before-sending ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 "Do various things to make the message nice before sending it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 ;; Make sure there's a newline at the end of the message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (unless (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (insert "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 (defun message-add-action (action &rest types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 "Add ACTION to be performed when doing an exit of type TYPES."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 (let (var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 (while types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (set (setq var (intern (format "message-%s-actions" (pop types))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (nconc (symbol-value var) (list action))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (defun message-do-actions (actions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 "Perform all actions in ACTIONS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 ;; Now perform actions on successful sending.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (while actions
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1606 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1607 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1608 ;; A simple function.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1609 ((message-functionp (car actions))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1610 (funcall (car actions)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1611 ;; Something to be evaled.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1612 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1613 (eval (car actions)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 (pop actions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 (defun message-send-mail (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (require 'mail-utils)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1618 (let ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 (news (message-news-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 (mailbuf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 ;; Insert some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (let ((message-deletable-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (if news nil message-deletable-headers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (message-generate-headers message-required-mail-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 ;; Let the user do all of the above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 (run-hooks 'message-header-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (set-buffer tembuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 (erase-buffer)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1634 ;; Avoid copying text props.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1635 (insert (format
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1636 "%s" (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1637 (set-buffer mailbuf)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1638 (buffer-string))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 ;; Remove some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 ;; Remove some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 (message-remove-header message-ignored-mail-headers t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 ;; require one newline at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 (or (= (preceding-char) ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 (when (and news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 (or (message-fetch-field "cc")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (message-fetch-field "to")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 (message-insert-courtesy-copy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 (funcall message-send-mail-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 (kill-buffer tembuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (set-buffer mailbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 (push 'mail message-sent-message-via)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (defun message-send-mail-with-sendmail ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 "Send off the prepared buffer with sendmail."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 (let ((errbuf (if message-interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 (generate-new-buffer " sendmail errors")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 resend-to-addresses delimline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 (let ((case-fold-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 (setq resend-to-addresses (message-fetch-field "resent-to")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 ;; Change header-delimiter to be what sendmail expects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 (concat "^" (regexp-quote mail-header-separator) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 (replace-match "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 (setq delimline (point-marker))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1674 (run-hooks 'message-send-mail-hook)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 ;; Insert an extra newline if we need it to work around
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 ;; Sun's bug that swallows newlines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 (goto-char (1+ delimline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 (when (eval message-mailer-swallows-blank-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (newline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 (when message-interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 (set-buffer errbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (erase-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (let ((default-directory "/"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 (apply 'call-process-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 (append (list (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (if (boundp 'sendmail-program)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 sendmail-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 "/usr/lib/sendmail")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 nil errbuf nil "-oi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 ;; Always specify who from,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 ;; since some systems have broken sendmails.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1693 ;; But some systems are more broken with -f, so
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1694 ;; we'll let users override this.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1695 (if (null message-sendmail-f-is-evil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1696 (list "-f" (user-login-name)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 ;; These mean "report errors by mail"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 ;; and "deliver in background".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 (if (null message-interactive) '("-oem" "-odb"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 ;; Get the addresses from the message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 ;; unless this is a resend.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 ;; We must not do that for a resend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 ;; because we would find the original addresses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 ;; For a resend, include the specific addresses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (if resend-to-addresses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 (list resend-to-addresses)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 '("-t")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (when message-interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 (set-buffer errbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (while (re-search-forward "\n\n* *" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 (replace-match "; "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (if (not (zerop (buffer-size)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 (error "Sending...failed to %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (buffer-substring (point-min) (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (when (bufferp errbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 (kill-buffer errbuf)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1720 (defun message-send-mail-with-qmail ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1721 "Pass the prepared message buffer to qmail-inject.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1722 Refer to the documentation for the variable `message-send-mail-function'
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1723 to find out how to use this."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1724 ;; replace the header delimiter with a blank line
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1725 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1726 (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1727 (concat "^" (regexp-quote mail-header-separator) "\n"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1728 (replace-match "\n")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1729 (run-hooks 'message-send-mail-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1730 ;; send the message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1731 (case
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1732 (apply
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1733 'call-process-region 1 (point-max) message-qmail-inject-program
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1734 nil nil nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1735 ;; qmail-inject's default behaviour is to look for addresses on the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1736 ;; command line; if there're none, it scans the headers.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1737 ;; yes, it does The Right Thing w.r.t. Resent-To and it's kin.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1738 ;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1739 ;; in general, ALL of qmail-inject's defaults are perfect for simply
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1740 ;; reading a formatted (i. e., at least a To: or Resent-To header)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1741 ;; message from stdin.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1742 ;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1743 ;; qmail also has the advantage of not having been raped by
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1744 ;; various vendors, so we don't have to allow for that, either --
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1745 ;; compare this with message-send-mail-with-sendmail and weep
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1746 ;; for sendmail's lost innocence.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1747 ;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1748 ;; all this is way cool coz it lets us keep the arguments entirely
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1749 ;; free for -inject-arguments -- a big win for the user and for us
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1750 ;; since we don't have to play that double-guessing game and the user
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1751 ;; gets full control (no gestapo'ish -f's, for instance). --sj
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1752 message-qmail-inject-args)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1753 ;; qmail-inject doesn't say anything on it's stdout/stderr,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1754 ;; we have to look at the retval instead
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1755 (0 nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1756 (1 (error "qmail-inject reported permanent failure."))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1757 (111 (error "qmail-inject reported transient failure."))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1758 ;; should never happen
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1759 (t (error "qmail-inject reported unknown failure."))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1760
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 (defun message-send-mail-with-mh ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 "Send the prepared message buffer with mh."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 (let ((mh-previous-window-config nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (name (make-temp-name
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1765 (concat (file-name-as-directory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1766 (expand-file-name message-autosave-directory))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 "msg."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 (setq buffer-file-name name)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1769 ;; MH wants to generate these headers itself.
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1770 (when message-mh-deletable-headers
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1771 (let ((headers message-mh-deletable-headers))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1772 (while headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1773 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1774 (and (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1775 (concat "^" (symbol-name (car headers)) ": *") nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1776 (message-delete-line))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1777 (pop headers))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1778 (run-hooks 'message-send-mail-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1779 ;; Pass it on to mh.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1780 (mh-send-letter)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 (defun message-send-news (&optional arg)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1783 (let ((tembuf (message-generate-new-buffer-clone-locals " *message temp*"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 (method (if (message-functionp message-post-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (funcall message-post-method arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 message-post-method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 (messbuf (current-buffer))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1789 (message-syntax-checks
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1790 (if arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1791 (cons '(existing-newsgroups . disabled)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1792 message-syntax-checks)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1793 message-syntax-checks))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 ;; Insert some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (message-generate-headers message-required-news-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 ;; Let the user do all of the above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 (run-hooks 'message-header-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 (message-cleanup-headers)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1802 (if (not (message-check-news-syntax))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1803 (progn
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1804 ;;(message "Posting not performed")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1805 nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (set-buffer tembuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (erase-buffer)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1811 ;; Avoid copying text props.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1812 (insert (format
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1813 "%s" (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1814 (set-buffer messbuf)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1815 (buffer-string))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 ;; Remove some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 ;; Remove some headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (message-remove-header message-ignored-news-headers t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 ;; require one newline at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (or (= (preceding-char) ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (let ((case-fold-search t))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1826 ;; Remove the delimiter.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 (concat "^" (regexp-quote mail-header-separator) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 (replace-match "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 (backward-char 1))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1832 (run-hooks 'message-send-news-hook)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (require (car method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (funcall (intern (format "%s-open-server" (car method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (cadr method) (cddr method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (setq result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (funcall (intern (format "%s-request-post" (car method))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 (kill-buffer tembuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (set-buffer messbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 (if result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 (push 'news message-sent-message-via)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (message "Couldn't send message via news: %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 (nnheader-get-report (car method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 ;;; Header generation & syntax checking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1850 (defmacro message-check (type &rest forms)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1851 "Eval FORMS if TYPE is to be checked."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1852 `(or (message-check-element ,type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 (save-excursion
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1854 ,@forms)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1855
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1856 (put 'message-check 'lisp-indent-function 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1857 (put 'message-check 'edebug-form-spec '(form body))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 (defun message-check-element (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 "Returns non-nil if this type is not to be checked."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 (let ((able (assq type message-syntax-checks)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 (and (consp able)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 (eq (cdr able) 'disabled)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1867 (defun message-check-news-syntax ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1868 "Check the syntax of the message."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1869 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1870 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1871 (widen)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1872 (and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1873 ;; We narrow to the headers and check them first.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1874 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1875 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1876 (message-narrow-to-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1877 (message-check-news-header-syntax)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1878 ;; Check the body.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1879 (message-check-news-body-syntax)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1880
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1881 (defun message-check-news-header-syntax ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1882 (and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1883 ;; Check for commands in Subject.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1884 (message-check 'subject-cmsg
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1885 (if (string-match "^cmsg " (message-fetch-field "subject"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1886 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1887 "The control code \"cmsg\" is in the subject. Really post? ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1888 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1889 ;; Check for multiple identical headers.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1890 (message-check 'multiple-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1891 (let (found)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1892 (while (and (not found)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1893 (re-search-forward "^[^ \t:]+: " nil t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1894 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1895 (or (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1896 (concat "^"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1897 (regexp-quote
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1898 (setq found
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1899 (buffer-substring
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1900 (match-beginning 0) (- (match-end 0) 2))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1901 ":")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1902 nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1903 (setq found nil))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1904 (if found
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1905 (y-or-n-p (format "Multiple %s headers. Really post? " found))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1906 t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1907 ;; Check for Version and Sendsys.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1908 (message-check 'sendsys
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1909 (if (re-search-forward "^Sendsys:\\|^Version:" nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1910 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1911 (format "The article contains a %s command. Really post? "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1912 (buffer-substring (match-beginning 0)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1913 (1- (match-end 0)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1914 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1915 ;; See whether we can shorten Followup-To.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1916 (message-check 'shorten-followup-to
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1917 (let ((newsgroups (message-fetch-field "newsgroups"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1918 (followup-to (message-fetch-field "followup-to"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1919 to)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1920 (when (and newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1921 (string-match "," newsgroups)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1922 (not followup-to)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1923 (not
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1924 (zerop
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1925 (length
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1926 (setq to (completing-read
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1927 "Followups to: (default all groups) "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1928 (mapcar (lambda (g) (list g))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1929 (cons "poster"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1930 (message-tokenize-header
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1931 newsgroups)))))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1932 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1933 (insert "Followup-To: " to "\n"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1934 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1935 ;; Check "Shoot me".
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1936 (message-check 'shoot
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1937 (if (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1938 "Message-ID.*.i-did-not-set--mail-host-address--so-shoot-me" nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1939 (y-or-n-p "You appear to have a misconfigured system. Really post? ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1940 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1941 ;; Check for Approved.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1942 (message-check 'approved
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1943 (if (re-search-forward "^Approved:" nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1944 (y-or-n-p "The article contains an Approved header. Really post? ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1945 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1946 ;; Check the Message-ID header.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1947 (message-check 'message-id
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1948 (let* ((case-fold-search t)
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
1949 (message-id (message-fetch-field "message-id" t)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1950 (or (not message-id)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1951 (and (string-match "@" message-id)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1952 (string-match "@[^\\.]*\\." message-id))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1953 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1954 (format "The Message-ID looks strange: \"%s\". Really post? "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1955 message-id)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1956 ;; Check the Subject header.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1957 (message-check 'subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1958 (let* ((case-fold-search t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1959 (subject (message-fetch-field "subject")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1960 (or
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1961 (and subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1962 (not (string-match "\\`[ \t]*\\'" subject)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1963 (ignore
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1964 (message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1965 "The subject field is empty or missing. Posting is denied.")))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1966 ;; Check the Newsgroups & Followup-To headers.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1967 (message-check 'existing-newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1968 (let* ((case-fold-search t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1969 (newsgroups (message-fetch-field "newsgroups"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1970 (followup-to (message-fetch-field "followup-to"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1971 (groups (message-tokenize-header
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1972 (if followup-to
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1973 (concat newsgroups "," followup-to)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1974 newsgroups)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1975 (hashtb (and (boundp 'gnus-active-hashtb)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1976 gnus-active-hashtb))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1977 errors)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1978 (if (or (not hashtb)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1979 (not (boundp 'gnus-read-active-file))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1980 (not gnus-read-active-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1981 (eq gnus-read-active-file 'some))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1982 t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1983 (while groups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1984 (when (and (not (boundp (intern (car groups) hashtb)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1985 (not (equal (car groups) "poster")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1986 (push (car groups) errors))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1987 (pop groups))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1988 (if (not errors)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1989 t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1990 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1991 (format
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1992 "Really post to %s unknown group%s: %s "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1993 (if (= (length errors) 1) "this" "these")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1994 (if (= (length errors) 1) "" "s")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1995 (mapconcat 'identity errors ", ")))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1996 ;; Check the Newsgroups & Followup-To headers for syntax errors.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1997 (message-check 'valid-newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1998 (let ((case-fold-search t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1999 (headers '("Newsgroups" "Followup-To"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2000 header error)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2001 (while (and headers (not error))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2002 (when (setq header (mail-fetch-field (car headers)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2003 (if (or
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2004 (not
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2005 (string-match
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2006 "\\`\\([-+_&.a-zA-Z0-9]+\\)?\\(,[-+_&.a-zA-Z0-9]+\\)*\\'"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2007 header))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2008 (memq
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2009 nil (mapcar
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2010 (lambda (g)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2011 (not (string-match "\\.\\'\\|\\.\\." g)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2012 (message-tokenize-header header ","))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2013 (setq error t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2014 (unless error
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2015 (pop headers)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2016 (if (not error)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2017 t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2018 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2019 (format "The %s header looks odd: \"%s\". Really post? "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2020 (car headers) header)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2021 ;; Check the From header.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2022 (message-check 'from
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2023 (let* ((case-fold-search t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2024 (from (message-fetch-field "from"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2025 (ad (nth 1 (mail-extract-address-components from))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2026 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2027 ((not from)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2028 (message "There is no From line. Posting is denied.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2029 nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2030 ((or (not (string-match "@[^\\.]*\\." ad)) ;larsi@ifi
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2031 (string-match "\\.\\." ad) ;larsi@ifi..uio
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2032 (string-match "@\\." ad) ;larsi@.ifi.uio
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2033 (string-match "\\.$" ad) ;larsi@ifi.uio.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2034 (not (string-match "^[^@]+@[^@]+$" ad)) ;larsi.ifi.uio
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2035 (string-match "(.*).*(.*)" from)) ;(lars) (lars)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2036 (message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2037 "Denied posting -- the From looks strange: \"%s\"." from)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2038 nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2039 (t t))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2040
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2041 (defun message-check-news-body-syntax ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2042 (and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2043 ;; Check for long lines.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2044 (message-check 'long-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2045 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2046 (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2047 (concat "^" (regexp-quote mail-header-separator) "$"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2048 (while (and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2049 (progn
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2050 (end-of-line)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2051 (< (current-column) 80))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2052 (zerop (forward-line 1))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2053 (or (bolp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2054 (eobp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2055 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2056 "You have lines longer than 79 characters. Really post? ")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2057 ;; Check whether the article is empty.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2058 (message-check 'empty
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2059 (goto-char (point-min))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2060 (re-search-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2061 (concat "^" (regexp-quote mail-header-separator) "$"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2062 (forward-line 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2063 (let ((b (point)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2064 (goto-char (point-max))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2065 (re-search-backward message-signature-separator nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2066 (beginning-of-line)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2067 (or (re-search-backward "[^ \n\t]" b t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2068 (y-or-n-p "Empty article. Really post? "))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2069 ;; Check for control characters.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2070 (message-check 'control-chars
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2071 (if (re-search-forward "[\000-\007\013\015-\037\200-\237]" nil t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2072 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2073 "The article contains control characters. Really post? ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2074 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2075 ;; Check excessive size.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2076 (message-check 'size
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2077 (if (> (buffer-size) 60000)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2078 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2079 (format "The article is %d octets long. Really post? "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2080 (buffer-size)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2081 t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2082 ;; Check whether any new text has been added.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2083 (message-check 'new-text
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2084 (or
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2085 (not message-checksum)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2086 (not (and (eq (message-checksum) (car message-checksum))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2087 (eq (buffer-size) (cdr message-checksum))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2088 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2089 "It looks like no new text has been added. Really post? ")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2090 ;; Check the length of the signature.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2091 (message-check 'signature
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2092 (goto-char (point-max))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2093 (if (or (not (re-search-backward message-signature-separator nil t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2094 (search-forward message-forward-end-separator nil t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2095 t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2096 (if (> (count-lines (point) (point-max)) 5)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2097 (y-or-n-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2098 (format
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2099 "Your .sig is %d lines; it should be max 4. Really post? "
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2100 (1- (count-lines (point) (point-max)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2101 t)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2102
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 (defun message-checksum ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 "Return a \"checksum\" for the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 (let ((sum 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 (concat "^" (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 (when (not (looking-at "[ \t\n]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 (setq sum (logxor (ash sum 1) (following-char))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 (forward-char 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 sum))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 (defun message-do-fcc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 "Process Fcc headers in the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 (let ((case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 (buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 list file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 (set-buffer (get-buffer-create " *message temp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 (insert-buffer-substring buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 (while (setq file (message-fetch-field "fcc"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 (push file list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 (message-remove-header "fcc" nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 (replace-match "" t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 ;; Process FCC operations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 (while list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 (setq file (pop list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 (if (string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 ;; Pipe the article to the program in question.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 (call-process-region (point-min) (point-max) shell-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 nil nil nil shell-command-switch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 (match-string 1 file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 ;; Save the article.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 (setq file (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 (unless (file-exists-p (file-name-directory file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 (make-directory (file-name-directory file) t))
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2146 (if (and message-fcc-handler-function
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2147 (not (eq message-fcc-handler-function 'rmail-output)))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2148 (funcall message-fcc-handler-function file)
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2149 (if (and (file-readable-p file) (mail-file-babyl-p file))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2150 (rmail-output file 1 nil t)
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2151 (let ((mail-use-rfc822 t))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2152 (rmail-output file 1 t t))))))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2153
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 (kill-buffer (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2156 (defun message-output (filename)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2157 "Append this article to Unix/babyl mail file.."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2158 (if (and (file-readable-p filename)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2159 (mail-file-babyl-p filename))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2160 (gnus-output-to-rmail filename t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2161 (gnus-output-to-mail filename t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2162
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 (defun message-cleanup-headers ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 "Do various automatic cleanups of the headers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 ;; Remove empty lines in the header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 (while (re-search-forward "^[ \t]*\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 (replace-match "" t t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 ;; Correct Newsgroups and Followup-To headers: change sequence of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 ;; spaces to comma and eliminate spaces around commas. Eliminate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 ;; embedded line breaks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 (while (re-search-forward "^\\(Newsgroups\\|Followup-To\\): +" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 (if (re-search-forward "^[^ \t]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 (while (re-search-forward "\n[ \t]+" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 (replace-match " " t t)) ;No line breaks (too confusing)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 (while (re-search-forward "[ \t\n]*,[ \t\n]*\\|[ \t]+" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 (replace-match "," t t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 ;; Remove trailing commas.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 (when (re-search-forward ",+$" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 (replace-match "" t t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 (defun message-make-date ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 "Make a valid data header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 (let ((now (current-time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (timezone-make-date-arpa-standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 (current-time-string now) (current-time-zone now))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 (defun message-make-message-id ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 "Make a unique Message-ID."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 (concat "<" (message-unique-id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 (let ((psubject (save-excursion (message-fetch-field "subject"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 (if (and message-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 (mail-header-references message-reply-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 (mail-header-subject message-reply-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 psubject
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 (mail-header-subject message-reply-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 (not (string=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 (message-strip-subject-re
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 (mail-header-subject message-reply-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 (message-strip-subject-re psubject))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 "_-_" ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 "@" (message-make-fqdn) ">"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 (defvar message-unique-id-char nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 ;; If you ever change this function, make sure the new version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 ;; cannot generate IDs that the old version could.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 ;; You might for example insert a "." somewhere (not next to another dot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 ;; or string boundary), or modify the "fsf" string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 (defun message-unique-id ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 ;; Don't use microseconds from (current-time), they may be unsupported.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 ;; Instead we use this randomly inited counter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 (setq message-unique-id-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 ;; (current-time) returns 16-bit ints,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 ;; and 2^16*25 just fits into 4 digits i base 36.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 (* 25 25)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 (let ((tm (current-time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 (if (memq system-type '(ms-dos emx vax-vms))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 (let ((user (downcase (user-login-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 (while (string-match "[^a-z0-9_]" user)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (aset user (match-beginning 0) ?_))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 user)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 (message-number-base36 (user-uid) -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (message-number-base36 (+ (car tm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 (lsh (% message-unique-id-char 25) 16)) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (message-number-base36 (+ (nth 1 tm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 (lsh (/ message-unique-id-char 25) 16)) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 ;; Append the newsreader name, because while the generated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 ;; ID is unique to this newsreader, other newsreaders might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 ;; otherwise generate the same ID via another algorithm.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 ".fsf")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 (defun message-number-base36 (num len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 (if (if (< len 0) (<= num 0) (= len 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 (concat (message-number-base36 (/ num 36) (1- len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (% num 36))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 (defun message-make-organization ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 "Make an Organization header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 (let* ((organization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 (or (getenv "ORGANIZATION")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 (when message-user-organization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 (if (message-functionp message-user-organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 (funcall message-user-organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 message-user-organization)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (message-set-work-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 (cond ((stringp organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (insert organization))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 ((and (eq t organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 message-user-organization-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 (file-exists-p message-user-organization-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 (insert-file-contents message-user-organization-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 (while (re-search-forward "[\t\n]+" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 (replace-match "" t t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 (unless (zerop (buffer-size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 (buffer-string)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (defun message-make-lines ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 "Count the number of lines and return numeric string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 (concat "^" (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 (int-to-string (count-lines (point) (point-max))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 (defun message-make-in-reply-to ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 "Return the In-Reply-To header for this message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 (when message-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 (let ((from (mail-header-from message-reply-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (date (mail-header-date message-reply-headers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 (when from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 (let ((stop-pos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 (string-match " *at \\| *@ \\| *(\\| *<" from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 (concat (if stop-pos (substring from 0 stop-pos) from)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 "'s message of "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 (if (or (not date) (string= date ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 "(unknown date)" date)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 (defun message-make-distribution ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 "Make a Distribution header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 (let ((orig-distribution (message-fetch-reply-field "distribution")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 (cond ((message-functionp message-distribution-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 (funcall message-distribution-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 (t orig-distribution))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 (defun message-make-expires ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 "Return an Expires header based on `message-expires'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 (let ((current (current-time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 (future (* 1.0 message-expires 60 60 24)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 ;; Add the future to current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 (setcar current (+ (car current) (round (/ future (expt 2 16)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 (setcar (cdr current) (+ (nth 1 current) (% (round future) (expt 2 16))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 ;; Return the date in the future in UT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (timezone-make-date-arpa-standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 (current-time-string current) (current-time-zone current) '(0 "UT"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (defun message-make-path ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 "Return uucp path."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 (let ((login-name (user-login-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (cond ((null message-user-path)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (concat (system-name) "!" login-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 ((stringp message-user-path)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 ;; Support GENERICPATH. Suggested by vixie@decwrl.dec.com.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 (concat message-user-path "!" login-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 (t login-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 (defun message-make-from ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 "Make a From header."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 (let* ((login (message-make-address))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 (fullname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 (or (and (boundp 'user-full-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 user-full-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 (user-full-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 (when (string= fullname "&")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 (setq fullname (user-login-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 (message-set-work-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 ((or (null message-from-style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 (equal fullname ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 (insert login))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 ((or (eq message-from-style 'angles)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 (and (not (eq message-from-style 'parens))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 ;; Use angles if no quoting is needed, or if parens would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 ;; need quoting too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 (or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 (let ((tmp (concat fullname nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 (while (string-match "([^()]*)" tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 (aset tmp (match-beginning 0) ?-)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 (aset tmp (1- (match-end 0)) ?-))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 (string-match "[\\()]" tmp)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 (insert fullname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 ;; Look for a character that cannot appear unquoted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 ;; according to RFC 822.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 (when (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]" nil 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 ;; Quote fullname, escaping specials.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 (insert "\"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 (while (re-search-forward "[\"\\]" nil 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 (replace-match "\\\\\\&" t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 (insert "\""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 (insert " <" login ">"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 (t ; 'parens or default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 (insert login " (")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 (let ((fullname-start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 (insert fullname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 (goto-char fullname-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 ;; RFC 822 says \ and nonmatching parentheses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 ;; must be escaped in comments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 ;; Escape every instance of ()\ ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 (while (re-search-forward "[()\\]" nil 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 (replace-match "\\\\\\&" t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 ;; ... then undo escaping of matching parentheses,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 ;; including matching nested parentheses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (goto-char fullname-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 (while (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2380 nil 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 (replace-match "\\1(\\3)" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 (goto-char fullname-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 (insert ")")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 (buffer-string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (defun message-make-sender ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 "Return the \"real\" user address.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 This function tries to ignore all user modifications, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 give as trustworthy answer as possible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (concat (user-login-name) "@" (system-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (defun message-make-address ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 "Make the address of the user."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 (or (message-user-mail-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 (concat (user-login-name) "@" (message-make-domain))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (defun message-user-mail-address ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 "Return the pertinent part of `user-mail-address'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 (when user-mail-address
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2400 (if (string-match " " user-mail-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2401 (nth 1 (mail-extract-address-components user-mail-address))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2402 user-mail-address)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 (defun message-make-fqdn ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 "Return user's fully qualified domain name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 (let ((system-name (system-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (user-mail (message-user-mail-address)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 ((string-match "[^.]\\.[^.]" system-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 ;; `system-name' returned the right result.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 system-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 ;; Try `mail-host-address'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 ((and (boundp 'mail-host-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 (stringp mail-host-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 (string-match "\\." mail-host-address))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 mail-host-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 ;; We try `user-mail-address' as a backup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 ((and (string-match "\\." user-mail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 (string-match "@\\(.*\\)\\'" user-mail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 (match-string 1 user-mail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 ;; Default to this bogus thing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 (t
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2423 (concat system-name ".i-did-not-set--mail-host-address--so-shoot-me")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 (defun message-make-host-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 "Return the name of the host."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 (let ((fqdn (message-make-fqdn)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 (string-match "^[^.]+\\." fqdn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 (substring fqdn 0 (1- (match-end 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 (defun message-make-domain ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 "Return the domain name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 (or mail-host-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 (message-make-fqdn)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 (defun message-generate-headers (headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 "Prepare article HEADERS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 Headers already prepared in the buffer are not modified."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 (let* ((Date (message-make-date))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 (Message-ID (message-make-message-id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 (Organization (message-make-organization))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 (From (message-make-from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 (Path (message-make-path))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 (Subject nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 (Newsgroups nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 (In-Reply-To (message-make-in-reply-to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 (To nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 (Distribution (message-make-distribution))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 (Lines (message-make-lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 (X-Newsreader message-newsreader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 (X-Mailer (and (not (message-fetch-field "X-Newsreader"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 message-mailer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 (Expires (message-make-expires))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 header value elem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 ;; First we remove any old generated headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 (let ((headers message-deletable-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 (while headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 (and (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 (concat "^" (symbol-name (car headers)) ": *") nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 (get-text-property (1+ (match-beginning 0)) 'message-deletable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 (message-delete-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 (pop headers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 ;; Go through all the required headers and see if they are in the
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2468 ;; articles already. If they are not, or are empty, they are
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 ;; inserted automatically - except for Subject, Newsgroups and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 ;; Distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 (while headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 (setq elem (pop headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 (if (consp elem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 (if (eq (car elem) 'optional)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 (setq header (cdr elem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 (setq header (car elem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 (setq header elem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 (when (or (not (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 (concat "^" (downcase (symbol-name header)) ":")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 (progn
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2483 ;; The header was found. We insert a space after the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 ;; colon, if there is none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 (if (/= (following-char) ? ) (insert " ") (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 ;; Find out whether the header is empty...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 (looking-at "[ \t]*$")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 ;; So we find out what value we should insert.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 (setq value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 ((and (consp elem) (eq (car elem) 'optional))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 ;; This is an optional header. If the cdr of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 ;; is something that is nil, then we do not insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 ;; this header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 (setq header (cdr elem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 (or (and (fboundp (cdr elem)) (funcall (cdr elem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 (and (boundp (cdr elem)) (symbol-value (cdr elem)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 ((consp elem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 ;; The element is a cons. Either the cdr is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 ;; string to be inserted verbatim, or it is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 ;; function, and we insert the value returned from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 ;; this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 (or (and (stringp (cdr elem)) (cdr elem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 (and (fboundp (cdr elem)) (funcall (cdr elem)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 ((and (boundp header) (symbol-value header))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 ;; The element is a symbol. We insert the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 ;; of this symbol, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 (symbol-value header))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 ;; We couldn't generate a value for this header,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 ;; so we just ask the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 (read-from-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 (format "Empty header for %s; enter value: " header)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 ;; Finally insert the header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 (when (and value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 (not (equal value "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 (if (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 ;; This header didn't exist, so we insert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 (insert (symbol-name header) ": " value "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 (forward-line -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 ;; The value of this header was empty, so we clear
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 ;; totally and insert the new value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 (delete-region (point) (message-point-at-eol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 (insert value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 ;; Add the deletable property to the headers that require it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 (and (memq header message-deletable-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 (progn (beginning-of-line) (looking-at "[^:]+: "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 (add-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 (point) (match-end 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 '(message-deletable t face italic) (current-buffer)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 ;; Insert new Sender if the From is strange.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 (let ((from (message-fetch-field "from"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 (sender (message-fetch-field "sender"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 (secure-sender (message-make-sender)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 (when (and from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 (not (message-check-element 'sender))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 (not (string=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 (downcase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 (cadr (mail-extract-address-components from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 (downcase secure-sender)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 (or (null sender)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 (not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 (string=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 (downcase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 (cadr (mail-extract-address-components sender)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 (downcase secure-sender)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 ;; Rename any old Sender headers to Original-Sender.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2552 (when (re-search-forward "^\\(Original-\\)*Sender:" nil t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 (insert "Original-")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 (beginning-of-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 (insert "Sender: " secure-sender "\n"))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 (defun message-insert-courtesy-copy ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 "Insert a courtesy message in mail copies of combined messages."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2560 (let (newsgroups)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2561 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2562 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2563 (message-narrow-to-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2564 (when (setq newsgroups (message-fetch-field "newsgroups"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 (goto-char (point-max))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2566 (insert "Posted-To: " newsgroups "\n")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2567 (forward-line 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2568 (when message-courtesy-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2569 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2570 ((string-match "%s" message-courtesy-message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2571 (insert (format message-courtesy-message newsgroups)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2572 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2573 (insert message-courtesy-message)))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 ;;; Setting up a message buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 (defun message-fill-address (header value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 (narrow-to-region (point) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 (insert (capitalize (symbol-name header))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 ": "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 (if (consp value) (car value) value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 (narrow-to-region (point-min) (1- (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 (let (quoted last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 (skip-chars-forward "^,\"" (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 (if (or (= (following-char) ?,)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 (when (not quoted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 (if (and (> (current-column) 78)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 (goto-char last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 (insert "\n\t"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 (setq last (1+ (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 (setq last (1+ (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 (setq quoted (not quoted)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 (unless (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 (forward-char 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 (defun message-fill-header (header value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 (let ((begin (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 (fill-column 78)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 (fill-prefix "\t"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 (insert (capitalize (symbol-name header))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 ": "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 (if (consp value) (car value) value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 (narrow-to-region begin (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 (fill-region-as-paragraph begin (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 ;; Tapdance around looong Message-IDs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 (when (looking-at "[ \t]*$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 (message-delete-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 (goto-char begin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 (re-search-forward ":" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 (when (looking-at "\n[ \t]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 (replace-match " " t t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 (goto-char (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 (defun message-position-point ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 "Move point to where the user probably wants to find it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 ((re-search-forward "^[^:]+:[ \t]*$" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 (search-backward ":" )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 (if (= (following-char) ? )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 (insert " ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 (unless (looking-at "$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 (forward-line 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 (sit-for 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 (defun message-buffer-name (type &optional to group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 "Return a new (unique) buffer name based on TYPE and TO."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 ;; Check whether `message-generate-new-buffers' is a function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 ;; and if so, call it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 ((message-functionp message-generate-new-buffers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 (funcall message-generate-new-buffers type to group))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 ;; Generate a new buffer name The Message Way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 (message-generate-new-buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 (generate-new-buffer-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 (concat "*" type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 (if to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 (concat " to "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 (or (car (mail-extract-address-components to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 to) "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 (if (and group (not (string= group ""))) (concat " on " group) "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 "*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 ;; Use standard name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 (format "*%s message*" type))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 (defun message-pop-to-buffer (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 "Pop to buffer NAME, and warn if it already exists and is modified."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 (let ((buffer (get-buffer name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 (if (and buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 (buffer-name buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 (set-buffer (pop-to-buffer buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 (when (and (buffer-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 (not (y-or-n-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 "Message already being composed; erase? ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 (error "Message being composed")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 (set-buffer (pop-to-buffer name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 (message-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 (defun message-do-send-housekeeping ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 "Kill old message buffers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 ;; We might have sent this buffer already. Delete it from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 ;; list of buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 (setq message-buffer-list (delq (current-buffer) message-buffer-list))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2691 (while (and message-max-buffers
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2692 message-buffer-list
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2693 (>= (length message-buffer-list) message-max-buffers))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 ;; Kill the oldest buffer -- unless it has been changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 (let ((buffer (pop message-buffer-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 (when (and (buffer-name buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 (not (buffer-modified-p buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 (kill-buffer buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 ;; Rename the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 (if message-send-rename-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 (funcall message-send-rename-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 (when (string-match "\\`\\*" (buffer-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 (rename-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 (concat "*sent " (substring (buffer-name) (match-end 0))) t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 ;; Push the current buffer onto the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 (when message-max-buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 (setq message-buffer-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 (nconc message-buffer-list (list (current-buffer))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 (defvar mc-modes-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 (defun message-setup (headers &optional replybuffer actions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 (when (and (boundp 'mc-modes-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 (not (assq 'message-mode mc-modes-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 (push '(message-mode (encrypt . mc-encrypt-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 (sign . mc-sign-message))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 mc-modes-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 (when actions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 (setq message-send-actions actions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 (setq message-reply-buffer replybuffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 ;; Insert all the headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 (mail-header-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 (let ((h headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 (alist message-header-format-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 (while h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 (unless (assq (caar h) message-header-format-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 (push (list (caar h)) alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 (pop h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 (delete-region (point) (progn (forward-line -1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 (when message-default-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 (insert message-default-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 (put-text-property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 (insert mail-header-separator "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 (1- (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 'read-only nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 (when (message-news-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 (when message-default-news-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 (insert message-default-news-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 (when message-generate-headers-first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 (message-generate-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 (delq 'Lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 (delq 'Subject
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 (copy-sequence message-required-news-headers))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 (when (message-mail-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 (when message-default-mail-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 (insert message-default-mail-headers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 (when message-generate-headers-first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 (message-generate-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 (delq 'Lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 (delq 'Subject
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 (copy-sequence message-required-mail-headers))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 (run-hooks 'message-signature-setup-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 (message-insert-signature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 (message-set-auto-save-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 (run-hooks 'message-header-setup-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 (set-buffer-modified-p nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 (run-hooks 'message-setup-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 (message-position-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 (undo-boundary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 (defun message-set-auto-save-file-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 "Associate the message buffer with a file in the drafts directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 (when message-autosave-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 (unless (file-exists-p message-autosave-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 (make-directory message-autosave-directory t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 (let ((name (make-temp-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 (concat (file-name-as-directory message-autosave-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 "msg."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 (setq buffer-auto-save-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 (prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 (set-buffer (get-buffer-create " *draft tmp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 (setq buffer-file-name name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 (make-auto-save-file-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 (kill-buffer (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 (clear-visited-file-modtime))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 ;;; Commands for interfacing with message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2793 (defun message-mail (&optional to subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2794 other-headers continue switch-function
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2795 yank-action send-actions)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 "Start editing a mail message to be sent."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 (interactive)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2798 (let ((message-this-is-mail t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2799 (message-pop-to-buffer (message-buffer-name "mail" to))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2800 (message-setup
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2801 (nconc
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2802 `((To . ,(or to "")) (Subject . ,(or subject "")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2803 (when other-headers (list other-headers))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 (defun message-news (&optional newsgroups subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 "Start editing a news article to be sent."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 (interactive)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2809 (let ((message-this-is-news t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2810 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2811 (message-setup `((Newsgroups . ,(or newsgroups ""))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2812 (Subject . ,(or subject ""))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 (defun message-reply (&optional to-address wide ignore-reply-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 "Start editing a reply to the article in the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 (let ((cur (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 from subject date reply-to to cc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 references message-id follow-to
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2821 (inhibit-point-motion-hooks t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 mct never-mct gnus-warning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 (save-restriction
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2824 (message-narrow-to-head)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 ;; Allow customizations to have their say.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 (if (not wide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 ;; This is a regular reply.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 (if (message-functionp message-reply-to-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 (setq follow-to (funcall message-reply-to-function)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 ;; This is a followup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 (if (message-functionp message-wide-reply-to-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 (setq follow-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 (funcall message-wide-reply-to-function)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 ;; Find all relevant headers we need.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 (setq from (message-fetch-field "from")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 date (message-fetch-field "date")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 subject (or (message-fetch-field "subject") "none")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 to (message-fetch-field "to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 cc (message-fetch-field "cc")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 mct (message-fetch-field "mail-copies-to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 reply-to (unless ignore-reply-to (message-fetch-field "reply-to"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 references (message-fetch-field "references")
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
2844 message-id (message-fetch-field "message-id" t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 ;; Remove any (buggy) Re:'s that are present and make a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 ;; proper one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 (setq subject (substring subject (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 (setq subject (concat "Re: " subject))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 (string-match "<[^>]+>" gnus-warning))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 (setq message-id (match-string 0 gnus-warning)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 ;; Handle special values of Mail-Copies-To.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 (when mct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 (cond ((equal (downcase mct) "never")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 (setq never-mct t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 (setq mct nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 ((equal (downcase mct) "always")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 (setq mct (or reply-to from)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 (unless follow-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 (if (or (not wide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 to-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 (setq follow-to (list (cons 'To (or to-address reply-to from))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 (let (ccalist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 (message-set-work-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 (unless never-mct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 (insert (or reply-to from "")))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2872 (insert (if (bolp) "" ", ") (or to ""))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2873 (insert (if mct (concat (if (bolp) "" ", ") mct) ""))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2874 (insert (if cc (concat (if (bolp) "" ", ") cc) ""))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 ;; Remove addresses that match `rmail-dont-reply-to-names'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 (insert (prog1 (rmail-dont-reply-to (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 (erase-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 (goto-char (point-min))
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
2879 ;; Perhaps Mail-Copies-To: never removed the only address?
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
2880 (when (eobp)
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
2881 (insert (or reply-to from "")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 (setq ccalist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 (lambda (addr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 (cons (mail-strip-quoted-names addr) addr))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2886 (message-tokenize-header (buffer-string))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 (let ((s ccalist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 (while s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 (setq ccalist (delq (assoc (car (pop s)) s) ccalist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 (setq follow-to (list (cons 'To (cdr (pop ccalist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 (when ccalist
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2892 (let ((ccs (cons 'Cc (mapconcat
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2893 (lambda (addr) (cdr addr)) ccalist ", "))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2894 (when (string-match "^ +" (cdr ccs))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2895 (setcdr ccs (substring (cdr ccs) (match-end 0))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2896 (push ccs follow-to))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 (widen))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2899 (message-pop-to-buffer (message-buffer-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2900 (if wide "wide reply" "reply") from
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2901 (if wide to-address nil)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 (setq message-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 (vector 0 subject from date message-id references 0 0 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 (message-setup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 `((Subject . ,subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 ,@follow-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 ,@(if (or references message-id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 `((References . ,(concat (or references "") (and references " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 (or message-id ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 cur)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 (defun message-wide-reply (&optional to-address)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2917 "Make a \"wide\" reply to the message in the current buffer."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 (message-reply to-address t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 ;;;###autoload
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2922 (defun message-followup (&optional to-newsgroups)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2923 "Follow up to the message in the current buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2924 If TO-NEWSGROUPS, use that as the new Newsgroups line."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 (let ((cur (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 from subject date reply-to mct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 references message-id follow-to
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2929 (inhibit-point-motion-hooks t)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2930 (message-this-is-news t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 followup-to distribution newsgroups gnus-warning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 (narrow-to-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 (if (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 (1- (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 (when (message-functionp message-followup-to-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 (setq follow-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 (funcall message-followup-to-function)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 (setq from (message-fetch-field "from")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 date (message-fetch-field "date")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 subject (or (message-fetch-field "subject") "none")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 references (message-fetch-field "references")
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
2945 message-id (message-fetch-field "message-id" t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 followup-to (message-fetch-field "followup-to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 newsgroups (message-fetch-field "newsgroups")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 reply-to (message-fetch-field "reply-to")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 distribution (message-fetch-field "distribution")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 mct (message-fetch-field "mail-copies-to"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 (when (and (setq gnus-warning (message-fetch-field "gnus-warning"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 (string-match "<[^>]+>" gnus-warning))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 (setq message-id (match-string 0 gnus-warning)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 ;; Remove bogus distribution.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2955 (when (and (stringp distribution)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2956 (let ((case-fold-search t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2957 (string-match "world" distribution)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2958 (setq distribution nil))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 ;; Remove any (buggy) Re:'s that are present and make a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 ;; proper one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 (when (string-match "^[ \t]*[Rr][Ee]:[ \t]*" subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 (setq subject (substring subject (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 (setq subject (concat "Re: " subject))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 (widen))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 (message-pop-to-buffer (message-buffer-name "followup" from newsgroups))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 (message-setup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 `((Subject . ,subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 ,@(cond
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2971 (to-newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2972 (list (cons 'Newsgroups to-newsgroups)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 (follow-to follow-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 ((and followup-to message-use-followup-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 ((equal (downcase followup-to) "poster")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 (if (or (eq message-use-followup-to 'use)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 (message-y-or-n-p "Obey Followup-To: poster? " t "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 You should normally obey the Followup-To: header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 `Followup-To: poster' sends your response via e-mail instead of news.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 A typical situation where `Followup-To: poster' is used is when the poster
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 does not read the newsgroup, so he wouldn't see any replies sent to it."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 (cons 'To (or reply-to from ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 (cons 'Newsgroups newsgroups)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 (if (or (equal followup-to newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 (not (eq message-use-followup-to 'ask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 (message-y-or-n-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 (concat "Obey Followup-To: " followup-to "? ") t "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 You should normally obey the Followup-To: header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 `Followup-To: " followup-to "'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 directs your response to " (if (string-match "," followup-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 "the specified newsgroups"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 "that newsgroup only") ".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 If a message is posted to several newsgroups, Followup-To is often
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 used to direct the following discussion to one newsgroup only,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 because discussions that are spread over several newsgroup tend to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 be fragmented and very difficult to follow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3005 Also, some source/announcement newsgroups are not indented for discussion;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 responses here are directed to other newsgroups."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 (cons 'Newsgroups followup-to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 (cons 'Newsgroups newsgroups))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 `((Newsgroups . ,newsgroups))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 ,@(and distribution (list (cons 'Distribution distribution)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3012 ,@(if (or references message-id)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3013 `((References . ,(concat (or references "") (and references " ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3014 (or message-id "")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 ,@(when (and mct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 (not (equal (downcase mct) "never")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 (list (cons 'Cc (if (equal (downcase mct) "always")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 (or reply-to from "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 mct)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 (setq message-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 (vector 0 subject from date message-id references 0 0 ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 (defun message-cancel-news ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 "Cancel an article you posted."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 (unless (message-news-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 (error "This is not a news article; canceling is impossible"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 (when (yes-or-no-p "Do you really want to cancel this article? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 (let (from newsgroups message-id distribution buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 ;; Get header info. from original article.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 (message-narrow-to-head)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 (setq from (message-fetch-field "from")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 newsgroups (message-fetch-field "newsgroups")
22
8fc7fe29b841 Import from CVS: tag r19-15b94
cvs
parents: 18
diff changeset
3041 message-id (message-fetch-field "message-id" t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 distribution (message-fetch-field "distribution")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 ;; Make sure that this article was written by the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 (unless (string-equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 (downcase (cadr (mail-extract-address-components from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 (downcase (message-make-address)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 (error "This article is not yours"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 ;; Make control message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 (setq buf (set-buffer (get-buffer-create " *message cancel*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 (insert "Newsgroups: " newsgroups "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 "From: " (message-make-from) "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 "Subject: cmsg cancel " message-id "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 "Control: cancel " message-id "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 (if distribution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 (concat "Distribution: " distribution "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 mail-header-separator "\n"
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3060 message-cancel-message)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 (message "Canceling your article...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 (let ((message-syntax-checks 'dont-check-for-anything-just-trust-me))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 (funcall message-send-news-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 (message "Canceling your article...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 (kill-buffer buf)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 (defun message-supersede ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 "Start composing a message to supersede the current message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 This is done simply by taking the old article and adding a Supersedes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 header line with the old Message-ID."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 (let ((cur (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 ;; Check whether the user owns the article that is to be superseded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 (unless (string-equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 (downcase (cadr (mail-extract-address-components
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 (message-fetch-field "from"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 (downcase (message-make-address)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 (error "This article is not yours"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 ;; Get a normal message buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 (message-pop-to-buffer (message-buffer-name "supersede"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 (insert-buffer-substring cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 (message-narrow-to-head)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 ;; Remove unwanted headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 (when message-ignored-supersedes-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 (message-remove-header message-ignored-supersedes-headers t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 (if (not (re-search-forward "^Message-ID: " nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 (error "No Message-ID in this article")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 (replace-match "Supersedes: " t t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 (insert mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 (defun message-recover ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 "Reread contents of current buffer from its last auto-save file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 (let ((file-name (make-auto-save-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 (cond ((save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 (if (not (eq system-type 'vax-vms))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 (with-output-to-temp-buffer "*Directory*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 (buffer-disable-undo standard-output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 (let ((default-directory "/"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 (call-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 "ls" nil standard-output nil "-l" file-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 (insert-file-contents file-name nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 (t (error "message-recover cancelled")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 ;;; Forwarding messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 (defun message-make-forward-subject ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 "Return a Subject header suitable for the message in the current buffer."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3118 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3119 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3120 (current-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3121 (message-narrow-to-head)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3122 (concat "[" (or (message-fetch-field
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3123 (if (message-news-p) "newsgroups" "from"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3124 "(nowhere)")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3125 "] " (or (message-fetch-field "Subject") "")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 (defun message-forward (&optional news)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 "Forward the current message via mail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 Optional NEWS will use news to forward instead of mail."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 (let ((cur (current-buffer))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3133 (subject (message-make-forward-subject))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3134 art-beg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 (if news (message-news nil subject) (message-mail nil subject))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 ;; Put point where we want it before inserting the forwarded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 ;; message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 (if message-signature-before-forwarded-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 (message-goto-body))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 ;; Make sure we're at the start of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 (unless (eolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 (insert "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 ;; Narrow to the area we are to insert.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 (narrow-to-region (point) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 ;; Insert the separators and the forwarded buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 (insert message-forward-start-separator)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3148 (setq art-beg (point))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 (insert-buffer-substring cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 (insert message-forward-end-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 (set-text-properties (point-min) (point-max) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 ;; Remove all unwanted headers.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3154 (goto-char art-beg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 (narrow-to-region (point) (if (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 (1- (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 (message-remove-header message-included-forward-headers t nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 (message-position-point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 (defun message-resend (address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 "Resend the current article to ADDRESS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 (interactive "sResend message to: ")
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3167 (message "Resending message to %s..." address)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 (let ((cur (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 ;; We first set up a normal mail buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 (set-buffer (get-buffer-create " *message resend*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 (message-setup `((To . ,address)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 ;; Insert our usual headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 (message-generate-headers '(From Date To))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 (message-narrow-to-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 ;; Rename them all to "Resent-*".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 (while (re-search-forward "^[A-Za-z]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 (insert "Resent-"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 (forward-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 (delete-region (point) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 (setq beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 ;; Insert the message to be resent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 (insert-buffer-substring cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 (search-forward "\n\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 (narrow-to-region beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 (message-remove-header message-ignored-resent-headers t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 (goto-char (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 (insert mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 ;; Rename all old ("Also-")Resent headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 (while (re-search-backward "^\\(Also-\\)?Resent-" beg t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 (insert "Also-"))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3201 ;; Quote any "From " lines at the beginning.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3202 (goto-char beg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3203 (when (looking-at "From ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3204 (replace-match "X-From-Line: "))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 ;; Send it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 (message-send-mail)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3207 (kill-buffer (current-buffer)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3208 (message "Resending message to %s...done" address)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 (defun message-bounce ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 "Re-mail the current message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 This only makes sense if the current message is a bounce message than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 contains some mail you have written which has been bounced back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 you."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 (let ((cur (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 (message-pop-to-buffer (message-buffer-name "bounce"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 (insert-buffer-substring cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 (undo-boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 (message-narrow-to-head)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 (if (and (message-fetch-field "Mime-Version")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 (setq boundary (message-fetch-field "Content-Type")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 (if (string-match "boundary=\"\\([^\"]+\\)\"" boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 (setq boundary (concat (match-string 1 boundary) " *\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 "Content-Type: message/rfc822"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 (setq boundary nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 (or (and boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 (re-search-forward boundary nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 (forward-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 (and (re-search-forward message-unsent-separator nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 (and (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 (re-search-forward "^Return-Path:.*\n" nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 ;; We remove everything before the bounced mail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 (delete-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 (point-min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 (if (re-search-forward "^[^ \n\t]+:" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 (message-narrow-to-head)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 (message-remove-header message-ignored-bounced-headers t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 (insert mail-header-separator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 (message-position-point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 ;;; Interactive entry points for new message buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 (defun message-mail-other-window (&optional to subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 "Like `message-mail' command, but display mail buffer in another window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 (let ((pop-up-windows t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 (special-display-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 (special-display-regexps nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 (same-window-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 (same-window-regexps nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 (message-pop-to-buffer (message-buffer-name "mail" to)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 (defun message-mail-other-frame (&optional to subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 "Like `message-mail' command, but display mail buffer in another frame."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 (let ((pop-up-frames t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 (special-display-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 (special-display-regexps nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 (same-window-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 (same-window-regexps nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 (message-pop-to-buffer (message-buffer-name "mail" to)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 (message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 (defun message-news-other-window (&optional newsgroups subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 "Start editing a news article to be sent."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 (let ((pop-up-windows t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 (special-display-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 (special-display-regexps nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 (same-window-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 (same-window-regexps nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 (message-setup `((Newsgroups . ,(or newsgroups ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 (Subject . ,(or subject "")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 (defun message-news-other-frame (&optional newsgroups subject)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 "Start editing a news article to be sent."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 (let ((pop-up-frames t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 (special-display-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 (special-display-regexps nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 (same-window-buffer-names nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 (same-window-regexps nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 (message-pop-to-buffer (message-buffer-name "news" nil newsgroups)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 (message-setup `((Newsgroups . ,(or newsgroups ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 (Subject . ,(or subject "")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 ;;; underline.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 ;; This code should be moved to underline.el (from which it is stolen).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 (defun bold-region (start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 "Bold all nonblank characters in the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 Works by overstriking characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 Called from program, takes two arguments START and END
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 which specify the range to operate on."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 (save-excursion
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3318 (let ((end1 (make-marker)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3319 (move-marker end1 (max start end))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3320 (goto-char (min start end))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3321 (while (< (point) end1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3322 (or (looking-at "[_\^@- ]")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3323 (insert (following-char) "\b"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3324 (forward-char 1)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 (defun unbold-region (start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 "Remove all boldness (overstruck characters) in the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 Called from program, takes two arguments START and END
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 which specify the range to operate on."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 (save-excursion
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3333 (let ((end1 (make-marker)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3334 (move-marker end1 (max start end))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3335 (goto-char (min start end))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3336 (while (re-search-forward "\b" end1 t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3337 (if (eq (following-char) (char-after (- (point) 2)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3338 (delete-char -2))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3340 (defalias 'message-exchange-point-and-mark 'exchange-point-and-mark)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 ;; Support for toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 (when (string-match "XEmacs\\|Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 (require 'messagexmas))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 ;;; Group name completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 (defvar message-newgroups-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 "^\\(Newsgroups\\|Followup-To\\|Posted-To\\):"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 "Regexp that match headers that lists groups.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 (defun message-tab ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 "Expand group names in Newsgroups and Followup-To headers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 Do a `tab-to-tab-stop' if not in those headers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 (if (let ((mail-abbrev-mode-regexp message-newgroups-header-regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 (mail-abbrev-in-expansion-header-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 (message-expand-group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 (tab-to-tab-stop)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 (defvar gnus-active-hashtb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 (defun message-expand-group ()
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3363 (let* ((b (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3364 (save-restriction
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3365 (narrow-to-region
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3366 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3367 (beginning-of-line)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3368 (skip-chars-forward "^:")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3369 (1+ (point)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3370 (point))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3371 (skip-chars-backward "^, \t\n") (point))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 (completion-ignore-case t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 (string (buffer-substring b (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 (completions (all-completions string hashtb))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 (cur (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 comp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 (delete-region b (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 ((= (length completions) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 (if (string= (car completions) string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 (insert string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 (message "Only matching group"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 (insert (car completions))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 ((and (setq comp (try-completion string hashtb))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 (not (string= comp string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 (insert comp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 (insert string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 (if (not comp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 (message "No matching groups")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 (pop-to-buffer "*Completions*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 (let ((standard-output (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 (display-completion-list (sort completions 'string<)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 (pop-to-buffer cur)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 ;;; Help stuff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 (defun message-talkative-question (ask question show &rest text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 "Call FUNCTION with argument QUESTION, displaying the rest of the arguments in a temporary buffer if SHOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 The following arguments may contain lists of values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 (if (and show
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 (setq text (message-flatten-list text)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 (with-output-to-temp-buffer " *MESSAGE information message*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 (set-buffer " *MESSAGE information message*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 (mapcar 'princ text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 (goto-char (point-min))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 (funcall ask question))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 (funcall ask question)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3418 (defun message-flatten-list (list)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3419 "Return a new, flat list that contains all elements of LIST.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3420
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3421 \(message-flatten-list '(1 (2 3 (4 5 (6))) 7))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3422 => (1 2 3 4 5 6 7)"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 (cond ((consp list)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3424 (apply 'append (mapcar 'message-flatten-list list)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 (list list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3428 (defun message-generate-new-buffer-clone-locals (name &optional varstr)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3429 "Create and return a buffer with a name based on NAME using generate-new-buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3430 Then clone the local variables and values from the old buffer to the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3431 new one, cloning only the locals having a substring matching the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3432 regexp varstr."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3433 (let ((oldlocals (buffer-local-variables)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3434 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3435 (set-buffer (generate-new-buffer name))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3436 (mapcar (lambda (dude)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3437 (when (and (car dude)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3438 (or (not varstr)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3439 (string-match varstr (symbol-name (car dude)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3440 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3441 (set (make-local-variable (car dude))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3442 (cdr dude)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3443 oldlocals)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3444 (current-buffer))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3445
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 (run-hooks 'message-load-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 (provide 'message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 ;;; message.el ends here