annotate lisp/gnus/message.el @ 7:c153ca296910

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