annotate lisp/gnus/message.el @ 16:0293115a14e9 r19-15b91

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