Mercurial > emacs
annotate lisp/mail/uce.el @ 42811:cf0c0ef57504
*** empty log message ***
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Thu, 17 Jan 2002 19:29:24 +0000 |
| parents | 64d8d90d180d |
| children | 858e5cbf508c |
| rev | line source |
|---|---|
| 17450 | 1 ;;; uce.el --- facilitate reply to unsolicited commercial email |
| 2 | |
|
31224
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
3 ;; Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc. |
| 17450 | 4 |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
5 ;; Author: stanislav shalunov <shalunov@mccme.ru> |
| 17450 | 6 ;; Created: 10 Dec 1996 |
| 7 ;; Keywords: uce, unsolicited commercial email | |
| 8 | |
| 9 ;; This file is part of GNU Emacs. | |
| 10 | |
| 38401 | 11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 12 ;; it under the terms of the GNU General Public License as published by | |
| 13 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 14 ;; any later version. | |
| 17450 | 15 |
| 38401 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
| 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 ;; GNU General Public License for more details. | |
| 17450 | 20 |
| 21 ;; You should have received a copy of the GNU General Public License | |
| 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 ;; Boston, MA 02111-1307, USA. | |
| 25 | |
| 26 ;;; Commentary: | |
| 27 | |
| 28 ;; Code in this file provides semi-automatic means of replying to | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
29 ;; UCE's you might get. It works currently only with Rmail and Gnus. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
30 ;; If you would like to make it work with other mail readers, |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
31 ;; Rmail-specific section is marked below. If you want to play with |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
32 ;; code, please let me know about your changes so I can incorporate |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
33 ;; them. I'd appreciate it. |
| 17450 | 34 |
| 35 ;; Function uce-reply-to-uce, if called when current message in RMAIL | |
| 36 ;; buffer is a UCE, will setup *mail* buffer in the following way: it | |
| 37 ;; scans full headers of message for 1) normal return address of | |
| 38 ;; sender (From, Reply-To lines); and puts these addresses into To: | |
| 39 ;; header, it also puts abuse@offenders.host address there 2) mailhub | |
| 40 ;; that first saw this message; and puts address of its postmaster | |
| 41 ;; into To: header 3) finally, it looks at Message-Id and adds | |
| 42 ;; posmaster of that host to the list of addresses. | |
| 43 | |
| 44 ;; Then, we add "Errors-To: nobody@localhost" header, so that if some | |
| 45 ;; of these addresses are not actually correct, we will never see | |
| 46 ;; bounced mail. Also, mail-self-blind and mail-archive-file-name | |
| 47 ;; take no effect: the ideology is that we don't want to save junk or | |
| 48 ;; replies to junk. | |
| 49 | |
| 50 ;; Then we put template into buffer (customizable message that | |
| 51 ;; explains what has happened), customizable signature, and the | |
| 52 ;; original message with full headers and envelope for postmasters. | |
| 53 ;; Then buffer is left for editing. | |
| 54 | |
| 55 ;; The reason that function uce-reply-to-uce is Rmail dependant is | |
| 56 ;; that we want full headers of the original message, nothing | |
| 57 ;; stripped. If we use normal means of inserting of the original | |
| 58 ;; message into *mail* buffer headers like Received: (not really | |
| 59 ;; headers, but envelope lines) will be stripped while they bear | |
| 60 ;; valuable for us and postmasters information. I do wish that there | |
| 61 ;; would be some way to write this function in some portable way, but | |
| 62 ;; I am not aware of any. | |
| 63 | |
| 64 ;;; Change log: | |
| 65 | |
| 66 ;; Dec 10, 1996 -- posted draft version to gnu.sources.emacs | |
| 67 | |
| 68 ;; Dec 11, 1996 -- fixed some typos, and Francesco Potorti` | |
| 69 ;; <F.Potorti@cnuce.cnr.it> pointed out that my use of defvar was | |
| 70 ;; weird, suggested fix, and added let form. | |
| 71 | |
| 72 ;; Dec 17, 1996 -- made scanning for host names little bit more clever | |
| 73 ;; (obviously bogus stuff like localhost is now ignored). | |
| 74 | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
75 ;; Nov 11, 1997 -- incorporated changes from Mikael Djurfeldt |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
76 ;; <mdj@nada.kth.se> to make uce.el work with Gnus. Changed the text |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
77 ;; of message that is sent. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
78 |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
79 ;; Dec 3, 1997 -- changes from Gareth Jones <gdj1@gdjones.demon.co.uk> |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
80 ;; handling Received headers following some line like `From:'. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
81 |
|
31224
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
82 ;; Aug 16, 2000 -- changes from Detlev Zundel |
|
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
83 ;; <detlev.zundel@stud.uni-karlsruhe.de> to make uce.el work with the |
|
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
84 ;; latest Gnus. Lars told him it should work for all versions of Gnus |
|
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
85 ;; younger than three years. |
| 17450 | 86 |
|
31224
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
87 ;; Setup: |
|
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
88 |
|
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
89 ;; Add the following line to your ~/.emacs: |
| 17450 | 90 |
| 91 ;; (autoload 'uce-reply-to-uce "uce" "Reply to UCEs" t nil) | |
| 92 | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
93 ;; If you want to use it with Gnus also use |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
94 |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
95 ;; (setq uce-mail-reader 'gnus) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
96 |
| 17450 | 97 ;; store this file (uce.el) somewhere in load-path and byte-compile it. |
| 98 | |
| 99 ;;; Variables: | |
| 100 | |
| 101 ;; uce-message-text is template that will be inserted into buffer. It | |
| 102 ;; has reasonable default. If you want to write some scarier one, | |
| 103 ;; please do so and send it to me. Please keep it polite. | |
| 104 | |
| 105 ;; uce-signature behaves just like mail-signature. If nil, nothing is | |
| 106 ;; inserted, if t, file ~/.signature is used, if a string, its | |
| 107 ;; contents are inserted into buffer. | |
| 108 | |
| 109 ;; uce-uce-separator is line that separates your message from the UCE | |
| 110 ;; that you enclose. | |
| 111 | |
| 112 ;; uce-subject-line will be used as subject of outgoing message. If | |
| 113 ;; nil, left blank. | |
| 114 | |
| 115 ;;; Code: | |
| 116 | |
| 117 (require 'sendmail) | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
118 ;; Those sections of code which are dependent upon |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
119 ;; RMAIL are only evaluated if we have received a message with RMAIL... |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
120 ;;(require 'rmail) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
121 |
| 20962 | 122 (defgroup uce nil |
| 123 "Facilitate reply to unsolicited commercial email." | |
| 124 :prefix "uce-" | |
| 125 :group 'mail) | |
| 126 | |
|
22462
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
127 (defcustom uce-mail-reader 'rmail |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
128 "A symbol indicating which mail reader you are using. |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
129 Choose from: `gnus', `rmail'." |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
130 :type '(choice (const gnus) (const rmail)) |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
131 :version "20.3" |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
132 :group 'uce) |
|
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
133 |
| 20962 | 134 (defcustom uce-setup-hook nil |
| 17450 | 135 "Hook to run after UCE rant message is composed. |
|
22462
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
136 This hook is run after `mail-setup-hook', which is run as well." |
| 20962 | 137 :type 'hook |
| 138 :group 'uce) | |
| 17450 | 139 |
| 20962 | 140 (defcustom uce-message-text |
| 17450 | 141 "Recently, I have received an Unsolicited Commercial E-mail from you. |
| 142 I do not like UCE's and I would like to inform you that sending | |
| 143 unsolicited messages to someone while he or she may have to pay for | |
| 144 reading your message may be illegal. Anyway, it is highly annoying | |
| 145 and not welcome by anyone. It is rude, after all. | |
| 146 | |
| 147 If you think that this is a good way to advertise your products or | |
| 148 services you are mistaken. Spamming will only make people hate you, not | |
| 149 buy from you. | |
| 150 | |
| 151 If you have any list of people you send unsolicited commercial emails to, | |
| 152 REMOVE me from such list immediately. I suggest that you make this list | |
| 153 just empty. | |
| 154 | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
155 ---------------------------------------------------- |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
156 |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
157 If you are not an administrator of any site and still have received |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
158 this message then your email address is being abused by some spammer. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
159 They fake your address in From: or Reply-To: header. In this case, |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
160 you might want to show this message to your system administrator, and |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
161 ask him/her to investigate this matter. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
162 |
| 17450 | 163 Note to the postmaster(s): I append the text of UCE in question to |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
164 this message; I would like to hear from you about action(s) taken. |
| 17450 | 165 This message has been sent to postmasters at the host that is |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
166 mentioned as original sender's host (I do realize that it may be |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
167 faked, but I think that if your domain name is being abused this way |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
168 you might want to learn about it, and take actions) and to the |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
169 postmaster whose host was used as mail relay for this message. If |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
170 message was sent not by your user, could you please compare time when |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
171 this message was sent (use time in Received: field of the envelope |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
172 rather than Date: field) with your sendmail logs and see what host was |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
173 using your sendmail at this moment of time. |
| 17450 | 174 |
| 175 Thank you." | |
| 176 | |
|
22462
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
177 "This is the text that `uce-reply-to-uce' command will put in reply buffer. |
| 17450 | 178 Some of spamming programs in use will be set up to read all incoming |
| 179 to spam address email, and will remove people who put the word `remove' | |
| 180 on beginning of some line from the spamming list. So, when you set it | |
| 181 up, it might be a good idea to actually use this feature. | |
| 182 | |
| 20962 | 183 Value nil means insert no text by default, lets you type it in." |
| 184 :type 'string | |
| 185 :group 'uce) | |
| 17450 | 186 |
| 20962 | 187 (defcustom uce-uce-separator |
| 17450 | 188 "----- original unsolicited commercial email follows -----" |
| 189 "Line that will begin quoting of the UCE. | |
| 20962 | 190 Value nil means use no separator." |
| 191 :type '(choice (const nil) string) | |
| 192 :group 'uce) | |
| 17450 | 193 |
| 20962 | 194 (defcustom uce-signature mail-signature |
| 17450 | 195 "Text to put as your signature after the note to UCE sender. |
|
22462
198054d3498c
Several fixes in doc string style.
Richard M. Stallman <rms@gnu.org>
parents:
22416
diff
changeset
|
196 Value nil means none, t means insert `~/.signature' file (if it happens |
| 17450 | 197 to exist), if this variable is a string this string will be inserted |
| 20962 | 198 as your signature." |
| 199 :type '(choice (const nil) (const t) string) | |
| 200 :group 'uce) | |
| 17450 | 201 |
| 20962 | 202 (defcustom uce-default-headers |
| 17450 | 203 "Errors-To: nobody@localhost\nPrecedence: bulk\n" |
| 204 "Additional headers to use when responding to a UCE with \\[uce-reply-to-uce]. | |
| 20962 | 205 These are mostly meant for headers that prevent delivery errors reporting." |
| 206 :type 'string | |
| 207 :group 'uce) | |
| 17450 | 208 |
| 20962 | 209 (defcustom uce-subject-line |
| 17450 | 210 "Spam alert: unsolicited commercial e-mail" |
| 20962 | 211 "Subject of the message that will be sent in response to a UCE." |
| 212 :type 'string | |
| 213 :group 'uce) | |
| 17450 | 214 |
| 215 (defun uce-reply-to-uce (&optional ignored) | |
| 216 "Send reply to UCE in Rmail. | |
| 217 UCE stands for unsolicited commercial email. Function will set up reply | |
| 218 buffer with default To: to the sender, his postmaster, his abuse@ | |
| 219 address, and postmaster of the mail relay used." | |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
220 (interactive) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
221 (let ((message-buffer |
|
31224
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
222 (cond ((eq uce-mail-reader 'gnus) gnus-original-article-buffer) |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
223 ((eq uce-mail-reader 'rmail) "RMAIL") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
224 (t (error |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
225 "Variable uce-mail-reader set to unrecognized value"))))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
226 (or (get-buffer message-buffer) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
227 (error (concat "No buffer " message-buffer ", cannot find UCE"))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
228 (switch-to-buffer message-buffer) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
229 (let ((to (mail-strip-quoted-names (mail-fetch-field "from" t))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
230 (reply-to (mail-fetch-field "reply-to")) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
231 temp) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
232 ;; Initial setting of the list of recipients of our message; that's |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
233 ;; what they are pretending to be. |
| 17450 | 234 (if to |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
235 (setq to (format "%s" (mail-strip-quoted-names to))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
236 (setq to "")) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
237 (if reply-to |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
238 (setq to (format "%s, %s" to (mail-strip-quoted-names reply-to)))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
239 (let (first-at-sign end-of-hostname sender-host) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
240 (setq first-at-sign (string-match "@" to) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
241 end-of-hostname (string-match "[ ,>]" to first-at-sign) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
242 sender-host (substring to first-at-sign end-of-hostname)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
243 (if (string-match "\\." sender-host) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
244 (setq to (format "%s, postmaster%s, abuse%s" |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
245 to sender-host sender-host)))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
246 (setq mail-send-actions nil) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
247 (setq mail-reply-buffer nil) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
248 (cond ((eq uce-mail-reader 'gnus) |
|
31224
fa7a79afcbf7
(uce-reply-to-uce): Remove hard-coded "*Article*" from
Gerd Moellmann <gerd@gnu.org>
parents:
23458
diff
changeset
|
249 (copy-region-as-kill (point-min) (point-max))) |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
250 ((eq uce-mail-reader 'rmail) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
251 (save-excursion |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
252 (save-restriction |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
253 (widen) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
254 (rmail-maybe-set-message-counters) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
255 (copy-region-as-kill (rmail-msgbeg rmail-current-message) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
256 (rmail-msgend rmail-current-message)))))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
257 (switch-to-buffer "*mail*") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
258 (erase-buffer) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
259 (setq temp (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
260 (yank) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
261 (goto-char temp) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
262 (if (eq uce-mail-reader 'rmail) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
263 (progn |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
264 (forward-line 2) |
|
23458
f68b71f7b9fd
(uce-reply-to-uce): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
22462
diff
changeset
|
265 (let ((case-fold-search t)) |
|
f68b71f7b9fd
(uce-reply-to-uce): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
22462
diff
changeset
|
266 (while (looking-at "Summary-Line:\\|Mail-From:") |
|
f68b71f7b9fd
(uce-reply-to-uce): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
22462
diff
changeset
|
267 (forward-line 1))) |
|
22416
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
268 (delete-region temp (point)))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
269 ;; Now find the mail hub that first accepted this message. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
270 ;; This should try to find the last Received: header. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
271 ;; Sometimes there may be other headers inbetween Received: headers. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
272 (cond ((eq uce-mail-reader 'gnus) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
273 ;; Does Gnus always have Lines: in the end? |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
274 (re-search-forward "^Lines:") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
275 (beginning-of-line)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
276 ((eq uce-mail-reader 'rmail) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
277 (beginning-of-buffer) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
278 (search-forward "*** EOOH ***\n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
279 (beginning-of-line) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
280 (forward-line -1))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
281 (re-search-backward "^Received:") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
282 (beginning-of-line) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
283 ;; Is this always good? It's the only thing I saw when I checked |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
284 ;; a few messages. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
285 (let ((eol (save-excursion (end-of-line) (point)))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
286 ;;(if (not (re-search-forward ": \\(from\\|by\\) " eol t)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
287 (if (not (re-search-forward "\\(from\\|by\\) " eol t)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
288 (progn |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
289 (goto-char eol) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
290 (if (looking-at "[ \t\n]+\\(from\\|by\\) ") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
291 (goto-char (match-end 0)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
292 (error "Failed to extract hub address"))))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
293 (setq temp (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
294 (search-forward " ") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
295 (forward-char -1) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
296 ;; And add its postmaster to the list of addresses. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
297 (if (string-match "\\." (buffer-substring temp (point))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
298 (setq to (format "%s, postmaster@%s" |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
299 to (buffer-substring temp (point))))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
300 ;; Also look at the message-id, it helps *very* often. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
301 (if (and (search-forward "\nMessage-Id: " nil t) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
302 ;; Not all Message-Id:'s have an `@' sign. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
303 (let ((bol (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
304 eol) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
305 (end-of-line) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
306 (setq eol (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
307 (goto-char bol) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
308 (search-forward "@" eol t))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
309 (progn |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
310 (setq temp (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
311 (search-forward ">") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
312 (forward-char -1) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
313 (if (string-match "\\." (buffer-substring temp (point))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
314 (setq to (format "%s, postmaster@%s" |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
315 to (buffer-substring temp (point))))))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
316 (cond ((eq uce-mail-reader 'gnus) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
317 ;; Does Gnus always have Lines: in the end? |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
318 (re-search-forward "^Lines:") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
319 (beginning-of-line)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
320 ((eq uce-mail-reader 'rmail) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
321 (search-forward "\n*** EOOH ***\n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
322 (forward-line -1))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
323 (setq temp (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
324 (search-forward "\n\n" nil t) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
325 (if (eq uce-mail-reader 'gnus) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
326 (forward-line -1)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
327 (delete-region temp (point)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
328 ;; End of Rmail dependent section. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
329 (auto-save-mode auto-save-default) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
330 (mail-mode) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
331 (goto-char (point-min)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
332 (insert "To: ") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
333 (save-excursion |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
334 (if to |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
335 (let ((fill-prefix "\t") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
336 (address-start (point))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
337 (insert to "\n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
338 (fill-region-as-paragraph address-start (point))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
339 (newline)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
340 (insert "Subject: " uce-subject-line "\n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
341 (if uce-default-headers |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
342 (insert uce-default-headers)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
343 (if mail-default-headers |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
344 (insert mail-default-headers)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
345 (if mail-default-reply-to |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
346 (insert "Reply-to: " mail-default-reply-to "\n")) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
347 (insert mail-header-separator "\n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
348 ;; Insert all our text. Then go back to the place where we started. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
349 (if to (setq to (point))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
350 ;; Text of ranting. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
351 (if uce-message-text |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
352 (insert uce-message-text)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
353 ;; Signature. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
354 (cond ((eq uce-signature t) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
355 (if (file-exists-p "~/.signature") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
356 (progn |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
357 (insert "\n\n-- \n") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
358 (insert-file "~/.signature") |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
359 ;; Function insert-file leaves point where it was, |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
360 ;; while we want to place signature in the ``middle'' |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
361 ;; of the message. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
362 (exchange-point-and-mark)))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
363 (uce-signature |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
364 (insert "\n\n-- \n" uce-signature))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
365 ;; And text of the original message. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
366 (if uce-uce-separator |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
367 (insert "\n\n" uce-uce-separator "\n")) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
368 ;; If message doesn't end with a newline, insert it. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
369 (goto-char (point-max)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
370 (or (bolp) (newline))) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
371 ;; And go back to the beginning of text. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
372 (if to (goto-char to)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
373 (or to (set-buffer-modified-p nil)) |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
374 ;; Run hooks before we leave buffer for editing. Reasonable usage |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
375 ;; might be to set up special key bindings, replace standart |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
376 ;; functions in mail-mode, etc. |
|
a517da228cb9
(uce-message-text): Change the text of message that is sent.
Richard M. Stallman <rms@gnu.org>
parents:
21918
diff
changeset
|
377 (run-hooks 'mail-setup-hook 'uce-setup-hook)))) |
| 17450 | 378 |
| 379 (defun uce-insert-ranting (&optional ignored) | |
| 380 "Insert text of the usual reply to UCE into current buffer." | |
| 381 (interactive "P") | |
| 382 (insert uce-message-text)) | |
| 383 | |
| 384 (provide 'uce) | |
| 385 | |
| 386 ;;; uce.el ends here |
