d3f754d451e12bce4feb168170780acbc5ae8541
[gnus] / lisp / gnus-msg.el
1 ;;; gnus-msg.el --- mail and post interface for Gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
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.
15
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.
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:
29
30 (eval-when-compile (require 'cl))
31
32 (require 'gnus)
33 (require 'gnus-ems)
34 (require 'message)
35 (require 'gnus-art)
36 (require 'gnus-util)
37
38 (defcustom gnus-post-method 'current
39   "*Preferred method for posting USENET news.
40
41 If this variable is `current' (which is the default), Gnus will use
42 the \"current\" select method when posting.  If it is `native', Gnus
43 will use the native select method when posting.
44
45 This method will not be used in mail groups and the like, only in
46 \"real\" newsgroups.
47
48 If not `native' nor `current', the value must be a valid method as discussed
49 in the documentation of `gnus-select-method'.  It can also be a list of
50 methods.  If that is the case, the user will be queried for what select
51 method to use when posting."
52   :group 'gnus-group-foreign
53   :link '(custom-manual "(gnus)Posting Server")
54   :type `(choice (const native)
55                  (const current)
56                  (sexp :tag "Methods" ,gnus-select-method)))
57
58 (defcustom gnus-outgoing-message-group nil
59   "*All outgoing messages will be put in this group.
60 If you want to store all your outgoing mail and articles in the group
61 \"nnml:archive\", you set this variable to that value.  This variable
62 can also be a list of group names.
63
64 If you want to have greater control over what group to put each
65 message in, you can set this variable to a function that checks the
66 current newsgroup name and then returns a suitable group name (or list
67 of names)."
68   :group 'gnus-message
69   :type '(choice (string :tag "Group")
70                  (function)))
71
72 (defcustom gnus-mailing-list-groups nil
73   "*If non-nil a regexp matching groups that are really mailing lists.
74 This is useful when you're reading a mailing list that has been
75 gatewayed to a newsgroup, and you want to followup to an article in
76 the group."
77   :group 'gnus-message
78   :type '(choice (regexp)
79                  (const nil)))
80
81 (defcustom gnus-add-to-list nil
82   "*If non-nil, add a `to-list' parameter automatically."
83   :group 'gnus-message
84   :type 'boolean)
85
86 (defcustom gnus-crosspost-complaint
87   "Hi,
88
89 You posted the article below with the following Newsgroups header:
90
91 Newsgroups: %s
92
93 The %s group, at least, was an inappropriate recipient
94 of this message.  Please trim your Newsgroups header to exclude this
95 group before posting in the future.
96
97 Thank you.
98
99 "
100   "Format string to be inserted when complaining about crossposts.
101 The first %s will be replaced by the Newsgroups header;
102 the second with the current group name."
103   :group 'gnus-message
104   :type 'string)
105
106 (defcustom gnus-message-setup-hook nil
107   "Hook run after setting up a message buffer."
108   :group 'gnus-message
109   :type 'hook)
110
111 (defcustom gnus-bug-create-help-buffer t
112   "*Should we create the *Gnus Help Bug* buffer?"
113   :group 'gnus-message
114   :type 'boolean)
115
116 (defcustom gnus-posting-styles nil
117   "*Alist of styles to use when posting.
118 See Info node `(gnus)Posting Styles'."
119   :group 'gnus-message
120   :link '(custom-manual "(gnus)Posting Styles")
121   :type '(repeat (cons (choice (regexp)
122                                (variable)
123                                (list (const header)
124                                      (string :tag "Header")
125                                      (regexp :tag "Regexp"))
126                                (function)
127                                (sexp))
128                        (repeat (list
129                                 (choice (const signature)
130                                         (const signature-file)
131                                         (const organization)
132                                         (const address)
133                                         (const x-face-file)
134                                         (const name)
135                                         (const body)
136                                         (symbol)
137                                         (string :tag "Header"))
138                                 (choice (string)
139                                         (function)
140                                         (variable)
141                                         (sexp)))))))
142
143 (defcustom gnus-gcc-mark-as-read nil
144   "If non-nil, automatically mark Gcc articles as read."
145   :version "21.1"
146   :group 'gnus-message
147   :type 'boolean)
148
149 (make-obsolete-variable 'gnus-inews-mark-gcc-as-read
150                         'gnus-gcc-mark-as-read)
151
152 (defcustom gnus-gcc-externalize-attachments nil
153   "Should local-file attachments be included as external parts in Gcc copies?
154 If it is `all', attach files as external parts;
155 if a regexp and matches the Gcc group name, attach files as external parts;
156 if nil, attach files as normal parts."
157   :version "21.1"
158   :group 'gnus-message
159   :type '(choice (const nil :tag "None")
160                  (const all :tag "Any")
161                  (string :tag "Regexp")))
162
163 (gnus-define-group-parameter
164  posting-charset-alist
165  :type list
166  :function-document
167  "Return the permitted unencoded charsets for posting of GROUP."
168  :variable gnus-group-posting-charset-alist
169  :variable-default
170   '(("^\\(no\\|fr\\)\\.[^,]*\\(,[ \t\n]*\\(no\\|fr\\)\\.[^,]*\\)*$" iso-8859-1 (iso-8859-1))
171     ("^\\(fido7\\|relcom\\)\\.[^,]*\\(,[ \t\n]*\\(fido7\\|relcom\\)\\.[^,]*\\)*$" koi8-r (koi8-r))
172     (message-this-is-mail nil nil)
173     (message-this-is-news nil t))
174  :variable-document
175   "Alist of regexps and permitted unencoded charsets for posting.
176 Each element of the alist has the form (TEST HEADER BODY-LIST), where
177 TEST is either a regular expression matching the newsgroup header or a
178 variable to query,
179 HEADER is the charset which may be left unencoded in the header (nil
180 means encode all charsets),
181 BODY-LIST is a list of charsets which may be encoded using 8bit
182 content-transfer encoding in the body, or one of the special values
183 nil (always encode using quoted-printable) or t (always use 8bit).
184
185 Note that any value other than nil for HEADER infringes some RFCs, so
186 use this option with care."
187  :variable-group gnus-charset
188  :variable-type
189  '(repeat (list :tag "Permitted unencoded charsets"
190                 (choice :tag "Where"
191                         (regexp :tag "Group")
192                         (const :tag "Mail message" :value message-this-is-mail)
193                         (const :tag "News article" :value message-this-is-news))
194                 (choice :tag "Header"
195                         (const :tag "None" nil)
196                         (symbol :tag "Charset"))
197                 (choice :tag "Body"
198                         (const :tag "Any" :value t)
199                         (const :tag "None" :value nil)
200                         (repeat :tag "Charsets"
201                                 (symbol :tag "Charset")))))
202  :parameter-type '(choice :tag "Permitted unencoded charsets"
203                           :value nil
204                           (repeat (symbol)))
205  :parameter-document       "\
206 List of charsets that are permitted to be unencoded.")
207
208 (defcustom gnus-debug-files
209   '("gnus.el" "gnus-sum.el" "gnus-group.el"
210     "gnus-art.el" "gnus-start.el" "gnus-async.el"
211     "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
212     "gnus-agent.el" "gnus-cache.el" "gnus-srvr.el"
213     "mm-util.el" "mm-decode.el" "nnmail.el" "message.el")
214   "Files whose variables will be reported in `gnus-bug'."
215   :version "21.1"
216   :group 'gnus-message
217   :type '(repeat (string :tag "File")))
218
219 (defcustom gnus-debug-exclude-variables
220   '(mm-mime-mule-charset-alist
221     nnmail-split-fancy message-minibuffer-local-map)
222   "Variables that should not be reported in `gnus-bug'."
223   :version "21.1"
224   :group 'gnus-message
225   :type '(repeat (symbol :tag "Variable")))
226
227 (defcustom gnus-discouraged-post-methods
228   '(nndraft nnml nnimap nnmaildir nnmh nnfolder nndir)
229   "A list of back ends that are not used in \"real\" newsgroups.
230 This variable is used only when `gnus-post-method' is `current'."
231   :version "21.3"
232   :group 'gnus-group-foreign
233   :type '(repeat (symbol :tag "Back end")))
234
235 (defcustom gnus-message-replysign
236   nil
237   "Automatically sign replies to signed messages.
238 See also the `mml-default-sign-method' variable."
239   :group 'gnus-message
240   :type 'boolean)
241
242 (defcustom gnus-message-replyencrypt
243   nil
244   "Automatically encrypt replies to encrypted messages.
245 See also the `mml-default-encrypt-method' variable."
246   :group 'gnus-message
247   :type 'boolean)
248
249 (defcustom gnus-message-replysignencrypted
250   t
251   "Setting this causes automatically encrypted messages to also be signed."
252   :group 'gnus-message
253   :type 'boolean)
254
255 (defcustom gnus-confirm-mail-reply-to-news nil
256   "If non-nil, Gnus requests confirmation when replying to news.
257 This is done because new users often reply by mistake when reading
258 news.
259 This can also be a function receiving the group name as the only
260 parameter which should return non-nil iff a confirmation is needed, or
261 a regexp, in which case a confirmation is asked for iff the group name
262 matches the regexp."
263   :group 'gnus-message
264   :type '(choice (const :tag "No" nil)
265                  (const :tag "Yes" t)
266                  (regexp :tag "Iff group matches regexp")
267                  (function :tag "Iff function evaluates to non-nil")))
268
269 (defcustom gnus-confirm-treat-mail-like-news
270   nil
271   "If non-nil, Gnus will treat mail like news with regard to confirmation
272 when replying by mail.  See the `gnus-confirm-mail-reply-to-news' variable
273 for fine-tuning this.
274 If nil, Gnus will never ask for confirmation if replying to mail."
275   :group 'gnus-message
276   :type 'boolean)
277
278 (defcustom gnus-summary-resend-default-address t
279   "If non-nil, Gnus tries to suggest a default address to resend to.
280 If nil, the address field will always be empty after invoking
281 `gnus-summary-resend-message'."
282   :group 'gnus-message
283   :type 'boolean)
284
285 ;;; Internal variables.
286
287 (defvar gnus-inhibit-posting-styles nil
288   "Inhibit the use of posting styles.")
289
290 (defvar gnus-article-yanked-articles nil)
291 (defvar gnus-message-buffer "*Mail Gnus*")
292 (defvar gnus-article-copy nil)
293 (defvar gnus-check-before-posting nil)
294 (defvar gnus-last-posting-server nil)
295 (defvar gnus-message-group-art nil)
296
297 (defvar gnus-msg-force-broken-reply-to nil)
298
299 (defconst gnus-bug-message
300   "Sending a bug report to the Gnus Towers.
301 ========================================
302
303 The buffer below is a mail buffer.  When you press `C-c C-c', it will
304 be sent to the Gnus Bug Exterminators.
305
306 The thing near the bottom of the buffer is how the environment
307 settings will be included in the mail.  Please do not delete that.
308 They will tell the Bug People what your environment is, so that it
309 will be easier to locate the bugs.
310
311 If you have found a bug that makes Emacs go \"beep\", set
312 debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
313 and include the backtrace in your bug report.
314
315 Please describe the bug in annoying, painstaking detail.
316
317 Thank you for your help in stamping out bugs.
318 ")
319
320 (eval-and-compile
321   (autoload 'gnus-uu-post-news "gnus-uu" nil t))
322
323 \f
324 ;;;
325 ;;; Gnus Posting Functions
326 ;;;
327
328 (gnus-define-keys (gnus-summary-send-map "S" gnus-summary-mode-map)
329   "p" gnus-summary-post-news
330   "i" gnus-summary-news-other-window
331   "f" gnus-summary-followup
332   "F" gnus-summary-followup-with-original
333   "c" gnus-summary-cancel-article
334   "s" gnus-summary-supersede-article
335   "r" gnus-summary-reply
336   "y" gnus-summary-yank-message
337   "R" gnus-summary-reply-with-original
338   "w" gnus-summary-wide-reply
339   "W" gnus-summary-wide-reply-with-original
340   "v" gnus-summary-very-wide-reply
341   "V" gnus-summary-very-wide-reply-with-original
342   "n" gnus-summary-followup-to-mail
343   "N" gnus-summary-followup-to-mail-with-original
344   "m" gnus-summary-mail-other-window
345   "u" gnus-uu-post-news
346   "\M-c" gnus-summary-mail-crosspost-complaint
347   "Br" gnus-summary-reply-broken-reply-to
348   "BR" gnus-summary-reply-broken-reply-to-with-original
349   "om" gnus-summary-mail-forward
350   "op" gnus-summary-post-forward
351   "Om" gnus-uu-digest-mail-forward
352   "Op" gnus-uu-digest-post-forward)
353
354 (gnus-define-keys (gnus-send-bounce-map "D" gnus-summary-send-map)
355   "b" gnus-summary-resend-bounced-mail
356   ;; "c" gnus-summary-send-draft
357   "r" gnus-summary-resend-message
358   "e" gnus-summary-resend-message-edit)
359
360 ;;; Internal functions.
361
362 (defun gnus-inews-make-draft ()
363   `(lambda ()
364      (gnus-inews-make-draft-meta-information
365       ,gnus-newsgroup-name ',gnus-article-reply)))
366
367 (defvar gnus-article-reply nil)
368 (defmacro gnus-setup-message (config &rest forms)
369   (let ((winconf (make-symbol "gnus-setup-message-winconf"))
370         (buffer (make-symbol "gnus-setup-message-buffer"))
371         (article (make-symbol "gnus-setup-message-article"))
372         (yanked (make-symbol "gnus-setup-yanked-articles"))
373         (group (make-symbol "gnus-setup-message-group")))
374     `(let ((,winconf (current-window-configuration))
375            (,buffer (buffer-name (current-buffer)))
376            (,article gnus-article-reply)
377            (,yanked gnus-article-yanked-articles)
378            (,group gnus-newsgroup-name)
379            (message-header-setup-hook
380             (copy-sequence message-header-setup-hook))
381            (mbl mml-buffer-list)
382            (message-mode-hook (copy-sequence message-mode-hook)))
383        (setq mml-buffer-list nil)
384        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
385        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
386        ;; #### FIXME: for a reason that I did not manage to identify yet,
387        ;; the variable `gnus-newsgroup-name' does not honor a dynamically
388        ;; scoped or setq'ed value from a caller like `C-u gnus-summary-mail'.
389        ;; After evaluation of @forms below, it gets the value we actually want
390        ;; to override, and the posting styles are used. For that reason, I've
391        ;; added an optional argument to `gnus-configure-posting-styles' to
392        ;; make sure that the correct value for the group name is used. -- drv
393        (add-hook 'message-mode-hook
394                  (if (memq ,config '(reply-yank reply))
395                      (lambda ()
396                        (gnus-configure-posting-styles ,group))
397                    (lambda ()
398                      ;; There may be an old " *gnus article copy*" buffer.
399                      (let (gnus-article-copy)
400                        (gnus-configure-posting-styles ,group)))))
401        (gnus-pull ',(intern gnus-draft-meta-information-header)
402                   message-required-headers)
403        (when (and ,group
404                   (not (string= ,group "")))
405          (push (cons
406                 (intern gnus-draft-meta-information-header)
407                 (gnus-inews-make-draft))
408                message-required-headers))
409        (unwind-protect
410            (progn
411              ,@forms)
412          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
413                                       ,yanked)
414          (setq gnus-message-buffer (current-buffer))
415          (set (make-local-variable 'gnus-message-group-art)
416               (cons ,group ,article))
417          (set (make-local-variable 'gnus-newsgroup-name) ,group)
418          (gnus-run-hooks 'gnus-message-setup-hook)
419          (if (eq major-mode 'message-mode)
420              (let ((mbl1 mml-buffer-list))
421                (setq mml-buffer-list mbl)  ;; Global value
422                (set (make-local-variable 'mml-buffer-list) mbl1);; Local value
423                (gnus-make-local-hook 'kill-buffer-hook)
424                (gnus-make-local-hook 'change-major-mode-hook)
425                (add-hook 'change-major-mode-hook 'mml-destroy-buffers nil t)
426                (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))
427            (mml-destroy-buffers)
428            (setq mml-buffer-list mbl)))
429        (message-hide-headers)
430        (gnus-add-buffer)
431        (gnus-configure-windows ,config t)
432        (run-hooks 'post-command-hook)
433        (set-buffer-modified-p nil))))
434
435 (defun gnus-inews-make-draft-meta-information (group article)
436   (concat "(\"" group "\" "
437           (if article (number-to-string
438                        (if (listp article)
439                            (car article)
440                          article)) "\"\"")
441           ")"))
442
443 ;;;###autoload
444 (defun gnus-msg-mail (&optional to subject other-headers continue
445                                 switch-action yank-action send-actions)
446   "Start editing a mail message to be sent.
447 Like `message-mail', but with Gnus paraphernalia, particularly the
448 Gcc: header for archiving purposes."
449   (interactive)
450   (let ((buf (current-buffer))
451         mail-buf)
452     (gnus-setup-message 'message
453       (message-mail to subject other-headers continue
454                     nil yank-action send-actions))
455     (when switch-action
456       (setq mail-buf (current-buffer))
457       (switch-to-buffer buf)
458       (apply switch-action mail-buf nil)))
459   ;; COMPOSEFUNC should return t if succeed.  Undocumented ???
460   t)
461
462 (defvar save-selected-window-window)
463
464 ;;;###autoload
465 (defun gnus-button-mailto (address)
466   "Mail to ADDRESS."
467   (set-buffer (gnus-copy-article-buffer))
468   (gnus-setup-message 'message
469     (message-reply address))
470   (and (boundp 'save-selected-window-window)
471        (not (window-live-p save-selected-window-window))
472        (setq save-selected-window-window (selected-window))))
473
474 ;;;###autoload
475 (defun gnus-button-reply (&optional to-address wide)
476   "Like `message-reply'."
477   (interactive)
478   (gnus-setup-message 'message
479     (message-reply to-address wide))
480   (and (boundp 'save-selected-window-window)
481        (not (window-live-p save-selected-window-window))
482        (setq save-selected-window-window (selected-window))))
483
484 ;;;###autoload
485 (define-mail-user-agent 'gnus-user-agent
486   'gnus-msg-mail 'message-send-and-exit
487   'message-kill-buffer 'message-send-hook)
488
489 (defun gnus-setup-posting-charset (group)
490   (let ((alist gnus-group-posting-charset-alist)
491         (group (or group ""))
492         elem)
493     (when group
494       (catch 'found
495         (while (setq elem (pop alist))
496           (when (or (and (stringp (car elem))
497                          (string-match (car elem) group))
498                     (and (functionp (car elem))
499                          (funcall (car elem) group))
500                     (and (symbolp (car elem))
501                          (symbol-value (car elem))))
502             (throw 'found (cons (cadr elem) (caddr elem)))))))))
503
504 (defun gnus-inews-add-send-actions (winconf buffer article
505                                             &optional config yanked)
506   (gnus-make-local-hook 'message-sent-hook)
507   (add-hook 'message-sent-hook (if gnus-agent 'gnus-agent-possibly-do-gcc
508                                  'gnus-inews-do-gcc) nil t)
509   (when gnus-agent
510     (gnus-make-local-hook 'message-header-hook)
511     (add-hook 'message-header-hook 'gnus-agent-possibly-save-gcc nil t))
512   (setq message-post-method
513         `(lambda (arg)
514            (gnus-post-method arg ,gnus-newsgroup-name)))
515   (setq message-newsreader (setq message-mailer (gnus-extended-version)))
516   (message-add-action
517    `(when (gnus-buffer-exists-p ,buffer)
518       (set-window-configuration ,winconf))
519    'exit 'postpone 'kill)
520   (let ((to-be-marked (cond
521                        (yanked
522                         (mapcar
523                          (lambda (x) (if (listp x) (car x) x)) yanked))
524                        (article (if (listp article) article (list article)))
525                        (t nil))))
526     (message-add-action
527      `(when (gnus-buffer-exists-p ,buffer)
528         (save-excursion
529           (set-buffer ,buffer)
530           ,(when to-be-marked
531              (if (eq config 'forward)
532                  `(gnus-summary-mark-article-as-forwarded ',to-be-marked)
533                `(gnus-summary-mark-article-as-replied ',to-be-marked)))))
534      'send)))
535
536 (put 'gnus-setup-message 'lisp-indent-function 1)
537 (put 'gnus-setup-message 'edebug-form-spec '(form body))
538
539 ;;; Post news commands of Gnus group mode and summary mode
540
541 (defun gnus-group-mail (&optional arg)
542   "Start composing a mail.
543 If ARG, use the group under the point to find a posting style.
544 If ARG is 1, prompt for a group name to find the posting style."
545   (interactive "P")
546   ;; We can't `let' gnus-newsgroup-name here, since that leads
547   ;; to local variables leaking.
548   (let ((group gnus-newsgroup-name)
549         ;; make sure last viewed article doesn't affect posting styles:
550         (gnus-article-copy)
551         (buffer (current-buffer)))
552     (unwind-protect
553         (progn
554           (setq gnus-newsgroup-name
555                 (if arg
556                     (if (= 1 (prefix-numeric-value arg))
557                         (completing-read "Use posting style of group: "
558                                          gnus-active-hashtb nil
559                                          (gnus-read-active-file-p))
560                       (gnus-group-group-name))
561                   ""))
562           ;; #### see comment in gnus-setup-message -- drv
563           (gnus-setup-message 'message (message-mail)))
564       (save-excursion
565         (set-buffer buffer)
566         (setq gnus-newsgroup-name group)))))
567
568 (defun gnus-group-news (&optional arg)
569   "Start composing a news.
570 If ARG, post to group under point.
571 If ARG is 1, prompt for group name to post to.
572
573 This function prepares a news even when using mail groups.  This is useful
574 for posting messages to mail groups without actually sending them over the
575 network.  The corresponding back end must have a 'request-post method."
576   (interactive "P")
577   ;; We can't `let' gnus-newsgroup-name here, since that leads
578   ;; to local variables leaking.
579   (let ((group gnus-newsgroup-name)
580         ;; make sure last viewed article doesn't affect posting styles:
581         (gnus-article-copy)
582         (buffer (current-buffer)))
583     (unwind-protect
584         (progn
585           (setq gnus-newsgroup-name
586                 (if arg
587                     (if (= 1 (prefix-numeric-value arg))
588                         (completing-read "Use group: "
589                                          gnus-active-hashtb nil
590                                          (gnus-read-active-file-p))
591                       (gnus-group-group-name))
592                   ""))
593           ;; #### see comment in gnus-setup-message -- drv
594           (gnus-setup-message 'message
595             (message-news (gnus-group-real-name gnus-newsgroup-name))))
596       (save-excursion
597         (set-buffer buffer)
598         (setq gnus-newsgroup-name group)))))
599
600 (defun gnus-group-post-news (&optional arg)
601   "Start composing a message (a news by default).
602 If ARG, post to group under point.  If ARG is 1, prompt for group name.
603 Depending on the selected group, the message might be either a mail or
604 a news."
605   (interactive "P")
606   ;; Bind this variable here to make message mode hooks work ok.
607   (let ((gnus-newsgroup-name
608          (if arg
609              (if (= 1 (prefix-numeric-value arg))
610                  (completing-read "Newsgroup: " gnus-active-hashtb nil
611                                   (gnus-read-active-file-p))
612                (gnus-group-group-name))
613            ""))
614         ;; make sure last viewed article doesn't affect posting styles:
615         (gnus-article-copy))
616     (gnus-post-news 'post gnus-newsgroup-name nil nil nil nil
617                     (string= gnus-newsgroup-name ""))))
618
619 (defun gnus-summary-mail-other-window (&optional arg)
620   "Start composing a mail in another window.
621 Use the posting of the current group by default.
622 If ARG, don't do that.  If ARG is 1, prompt for group name to find the
623 posting style."
624   (interactive "P")
625   ;; We can't `let' gnus-newsgroup-name here, since that leads
626   ;; to local variables leaking.
627   (let ((group gnus-newsgroup-name)
628         ;; make sure last viewed article doesn't affect posting styles:
629         (gnus-article-copy)
630         (buffer (current-buffer)))
631     (unwind-protect
632         (progn
633           (setq gnus-newsgroup-name
634                 (if arg
635                     (if (= 1 (prefix-numeric-value arg))
636                         (completing-read "Use group: "
637                                          gnus-active-hashtb nil
638                                          (gnus-read-active-file-p))
639                       "")
640                   gnus-newsgroup-name))
641           ;; #### see comment in gnus-setup-message -- drv
642           (gnus-setup-message 'message (message-mail)))
643       (save-excursion
644         (set-buffer buffer)
645         (setq gnus-newsgroup-name group)))))
646
647 (defun gnus-summary-news-other-window (&optional arg)
648   "Start composing a news in another window.
649 Post to the current group by default.
650 If ARG, don't do that.  If ARG is 1, prompt for group name to post to.
651
652 This function prepares a news even when using mail groups.  This is useful
653 for posting messages to mail groups without actually sending them over the
654 network.  The corresponding back end must have a 'request-post method."
655   (interactive "P")
656   ;; We can't `let' gnus-newsgroup-name here, since that leads
657   ;; to local variables leaking.
658   (let ((group gnus-newsgroup-name)
659         ;; make sure last viewed article doesn't affect posting styles:
660         (gnus-article-copy)
661         (buffer (current-buffer)))
662     (unwind-protect
663         (progn
664           (setq gnus-newsgroup-name
665                 (if arg
666                     (if (= 1 (prefix-numeric-value arg))
667                         (completing-read "Use group: "
668                                          gnus-active-hashtb nil
669                                          (gnus-read-active-file-p))
670                       "")
671                   gnus-newsgroup-name))
672           ;; #### see comment in gnus-setup-message -- drv
673           (gnus-setup-message 'message
674             (progn
675               (message-news (gnus-group-real-name gnus-newsgroup-name))
676               (set (make-local-variable 'gnus-discouraged-post-methods)
677                    (remove
678                     (car (gnus-find-method-for-group gnus-newsgroup-name))
679                     gnus-discouraged-post-methods)))))
680       (save-excursion
681         (set-buffer buffer)
682         (setq gnus-newsgroup-name group)))))
683
684 (defun gnus-summary-post-news (&optional arg)
685   "Start composing a message.  Post to the current group by default.
686 If ARG, don't do that.  If ARG is 1, prompt for a group name to post to.
687 Depending on the selected group, the message might be either a mail or
688 a news."
689   (interactive "P")
690   ;; Bind this variable here to make message mode hooks work ok.
691   (let ((gnus-newsgroup-name
692          (if arg
693              (if (= 1 (prefix-numeric-value arg))
694                  (completing-read "Newsgroup: " gnus-active-hashtb nil
695                                   (gnus-read-active-file-p))
696                "")
697            gnus-newsgroup-name))
698         ;; make sure last viewed article doesn't affect posting styles:
699         (gnus-article-copy))
700     (gnus-post-news 'post gnus-newsgroup-name)))
701
702
703 (defun gnus-summary-followup (yank &optional force-news)
704   "Compose a followup to an article.
705 If prefix argument YANK is non-nil, the original article is yanked
706 automatically.
707 YANK is a list of elements, where the car of each element is the
708 article number, and the cdr is the string to be yanked."
709   (interactive
710    (list (and current-prefix-arg
711               (gnus-summary-work-articles 1))))
712   (when yank
713     (gnus-summary-goto-subject
714      (if (listp (car yank))
715          (caar yank)
716        (car yank))))
717   (save-window-excursion
718     (gnus-summary-select-article))
719   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
720         (gnus-newsgroup-name gnus-newsgroup-name))
721     ;; Send a followup.
722     (gnus-post-news nil gnus-newsgroup-name
723                     headers gnus-article-buffer
724                     yank nil force-news)
725     (gnus-summary-handle-replysign)))
726
727 (defun gnus-summary-followup-with-original (n &optional force-news)
728   "Compose a followup to an article and include the original article.
729 The text in the region will be yanked.  If the region isn't
730 active, the entire article will be yanked."
731   (interactive "P")
732   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
733
734 (defun gnus-summary-followup-to-mail (&optional arg)
735   "Followup to the current mail message via news."
736   (interactive
737    (list (and current-prefix-arg
738               (gnus-summary-work-articles 1))))
739   (gnus-summary-followup arg t))
740
741 (defun gnus-summary-followup-to-mail-with-original (&optional arg)
742   "Followup to the current mail message via news."
743   (interactive "P")
744   (gnus-summary-followup (gnus-summary-work-articles arg) t))
745
746 (defun gnus-inews-yank-articles (articles)
747   (let (beg article yank-string)
748     (message-goto-body)
749     (while (setq article (pop articles))
750       (when (listp article)
751         (setq yank-string (nth 1 article)
752               article (nth 0 article)))
753       (save-window-excursion
754         (set-buffer gnus-summary-buffer)
755         (gnus-summary-select-article nil nil nil article)
756         (gnus-summary-remove-process-mark article))
757       (gnus-copy-article-buffer nil yank-string)
758       (let ((message-reply-buffer gnus-article-copy)
759             (message-reply-headers
760              ;; The headers are decoded.
761              (with-current-buffer gnus-article-copy
762                (save-restriction
763                  (nnheader-narrow-to-headers)
764                  (nnheader-parse-naked-head)))))
765         (message-yank-original)
766         (setq beg (or beg (mark t))))
767       (when articles
768         (insert "\n")))
769     (push-mark)
770     (goto-char beg)))
771
772 (defun gnus-summary-cancel-article (&optional n symp)
773   "Cancel an article you posted.
774 Uses the process-prefix convention.  If given the symbolic
775 prefix `a', cancel using the standard posting method; if not
776 post using the current select method."
777   (interactive (gnus-interactive "P\ny"))
778   (let ((articles (gnus-summary-work-articles n))
779         (message-post-method
780          `(lambda (arg)
781             (gnus-post-method (eq ',symp 'a) ,gnus-newsgroup-name)))
782         article)
783     (while (setq article (pop articles))
784       (when (gnus-summary-select-article t nil nil article)
785         (when (gnus-eval-in-buffer-window gnus-original-article-buffer
786                 (message-cancel-news))
787           (gnus-summary-mark-as-read article gnus-canceled-mark)
788           (gnus-cache-remove-article 1))
789         (gnus-article-hide-headers-if-wanted))
790       (gnus-summary-remove-process-mark article))))
791
792 (defun gnus-summary-supersede-article ()
793   "Compose an article that will supersede a previous article.
794 This is done simply by taking the old article and adding a Supersedes
795 header line with the old Message-ID."
796   (interactive)
797   (let ((article (gnus-summary-article-number)))
798     (gnus-setup-message 'reply-yank
799       (gnus-summary-select-article t)
800       (set-buffer gnus-original-article-buffer)
801       (message-supersede)
802       (push
803        `((lambda ()
804            (when (gnus-buffer-exists-p ,gnus-summary-buffer)
805              (save-excursion
806                (set-buffer ,gnus-summary-buffer)
807                (gnus-cache-possibly-remove-article ,article nil nil nil t)
808                (gnus-summary-mark-as-read ,article gnus-canceled-mark)))))
809        message-send-actions))))
810
811 \f
812
813 (defun gnus-copy-article-buffer (&optional article-buffer yank-string)
814   ;; make a copy of the article buffer with all text properties removed
815   ;; this copy is in the buffer gnus-article-copy.
816   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
817   ;; this buffer should be passed to all mail/news reply/post routines.
818   (setq gnus-article-copy (gnus-get-buffer-create " *gnus article copy*"))
819   (save-excursion
820     (set-buffer gnus-article-copy)
821     (mm-enable-multibyte))
822   (let ((article-buffer (or article-buffer gnus-article-buffer))
823         end beg)
824     (if (not (and (get-buffer article-buffer)
825                   (gnus-buffer-exists-p article-buffer)))
826         (error "Can't find any article buffer")
827       (save-excursion
828         (set-buffer article-buffer)
829         (let ((gnus-newsgroup-charset (or gnus-article-charset
830                                           gnus-newsgroup-charset))
831               (gnus-newsgroup-ignored-charsets
832                (or gnus-article-ignored-charsets
833                    gnus-newsgroup-ignored-charsets)))
834           (save-restriction
835             ;; Copy over the (displayed) article buffer, delete
836             ;; hidden text and remove text properties.
837             (widen)
838             (copy-to-buffer gnus-article-copy (point-min) (point-max))
839             (set-buffer gnus-article-copy)
840             (when yank-string
841               (message-goto-body)
842               (delete-region (point) (point-max))
843               (insert yank-string))
844             (gnus-article-delete-text-of-type 'annotation)
845             (gnus-remove-text-with-property 'gnus-prev)
846             (gnus-remove-text-with-property 'gnus-next)
847             (gnus-remove-text-with-property 'gnus-decoration)
848             (insert
849              (prog1
850                  (buffer-substring-no-properties (point-min) (point-max))
851                (erase-buffer)))
852             ;; Find the original headers.
853             (set-buffer gnus-original-article-buffer)
854             (goto-char (point-min))
855             (while (looking-at message-unix-mail-delimiter)
856               (forward-line 1))
857             (let ((mail-header-separator ""))
858               (setq beg (point)
859                     end (or (message-goto-body)
860                             ;; There may be just a header.
861                             (point-max))))
862             ;; Delete the headers from the displayed articles.
863             (set-buffer gnus-article-copy)
864             (let ((mail-header-separator ""))
865               (delete-region (goto-char (point-min))
866                              (or (message-goto-body) (point-max))))
867             ;; Insert the original article headers.
868             (insert-buffer-substring gnus-original-article-buffer beg end)
869             ;; Decode charsets.
870             (let ((gnus-article-decode-hook
871                    (delq 'article-decode-charset
872                          (copy-sequence gnus-article-decode-hook))))
873               (run-hooks 'gnus-article-decode-hook)))))
874       gnus-article-copy)))
875
876 (defun gnus-post-news (post &optional group header article-buffer yank subject
877                             force-news)
878   (when article-buffer
879     (gnus-copy-article-buffer))
880   (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number)))
881         (gnus-article-yanked-articles yank)
882         (add-to-list gnus-add-to-list))
883     (gnus-setup-message (cond (yank 'reply-yank)
884                               (article-buffer 'reply)
885                               (t 'message))
886       (let* ((group (or group gnus-newsgroup-name))
887              (charset (gnus-group-name-charset nil group))
888              (pgroup group)
889              to-address to-group mailing-list to-list
890              newsgroup-p)
891         (when group
892           (setq to-address (gnus-parameter-to-address group)
893                 to-group (gnus-group-find-parameter group 'to-group)
894                 to-list (gnus-parameter-to-list group)
895                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
896                 mailing-list (when gnus-mailing-list-groups
897                                (string-match gnus-mailing-list-groups group))
898                 group (gnus-group-name-decode (gnus-group-real-name group)
899                                               charset)))
900         (if (or (and to-group
901                      (gnus-news-group-p to-group))
902                 newsgroup-p
903                 force-news
904                 (and (gnus-news-group-p
905                       (or pgroup gnus-newsgroup-name)
906                       (or header gnus-current-article))
907                      (not mailing-list)
908                      (not to-list)
909                      (not to-address)))
910             ;; This is news.
911             (if post
912                 (message-news
913                  (or to-group
914                      (and (not (gnus-virtual-group-p pgroup)) group)))
915               (set-buffer gnus-article-copy)
916               (gnus-msg-treat-broken-reply-to)
917               (message-followup (if (or newsgroup-p force-news)
918                                     (if (save-restriction
919                                           (article-narrow-to-head)
920                                           (message-fetch-field "newsgroups"))
921                                         nil
922                                       "")
923                                   to-group)))
924           ;; The is mail.
925           (if post
926               (progn
927                 (message-mail (or to-address to-list))
928                 ;; Arrange for mail groups that have no `to-address' to
929                 ;; get that when the user sends off the mail.
930                 (when (and (not to-list)
931                            (not to-address)
932                            add-to-list)
933                   (push (list 'gnus-inews-add-to-address pgroup)
934                         message-send-actions)))
935             (set-buffer gnus-article-copy)
936             (gnus-msg-treat-broken-reply-to)
937             (message-wide-reply to-address)))
938         (when yank
939           (gnus-inews-yank-articles yank))))))
940
941 (defun gnus-msg-treat-broken-reply-to (&optional force)
942   "Remove the Reply-to header if broken-reply-to."
943   (when (or force
944             (gnus-group-find-parameter
945              gnus-newsgroup-name 'broken-reply-to))
946     (save-restriction
947       (message-narrow-to-head)
948       (message-remove-header "reply-to"))))
949
950 (defun gnus-post-method (arg group &optional silent)
951   "Return the posting method based on GROUP and ARG.
952 If SILENT, don't prompt the user."
953   (let ((gnus-post-method (or (gnus-parameter-post-method group)
954                               gnus-post-method))
955         (group-method (gnus-find-method-for-group group)))
956     (cond
957      ;; If the group-method is nil (which shouldn't happen) we use
958      ;; the default method.
959      ((null group-method)
960       (or (and (listp gnus-post-method) ;If not current/native/nil
961                (not (listp (car gnus-post-method))) ; and not a list of methods
962                gnus-post-method)        ;then use it.
963           gnus-select-method
964           message-post-method))
965      ;; We want the inverse of the default
966      ((and arg (not (eq arg 0)))
967       (if (eq gnus-post-method 'current)
968           gnus-select-method
969         group-method))
970      ;; We query the user for a post method.
971      ((or arg
972           (and (listp gnus-post-method)
973                (listp (car gnus-post-method))))
974       (let* ((methods
975               ;; Collect all methods we know about.
976               (append
977                (when (listp gnus-post-method)
978                  (if (listp (car gnus-post-method))
979                      gnus-post-method
980                    (list gnus-post-method)))
981                gnus-secondary-select-methods
982                (mapcar 'cdr gnus-server-alist)
983                (mapcar 'car gnus-opened-servers)
984                (list gnus-select-method)
985                (list group-method)))
986              method-alist post-methods method)
987         ;; Weed out all mail methods.
988         (while methods
989           (setq method (gnus-server-get-method "" (pop methods)))
990           (when (and (or (gnus-method-option-p method 'post)
991                          (gnus-method-option-p method 'post-mail))
992                      (not (member method post-methods)))
993             (push method post-methods)))
994         ;; Create a name-method alist.
995         (setq method-alist
996               (mapcar
997                (lambda (m)
998                  (if (equal (cadr m) "")
999                      (list (symbol-name (car m)) m)
1000                    (list (concat (cadr m) " (" (symbol-name (car m)) ")") m)))
1001                post-methods))
1002         ;; Query the user.
1003         (cadr
1004          (assoc
1005           (setq gnus-last-posting-server
1006                 (if (and silent
1007                          gnus-last-posting-server)
1008                     ;; Just use the last value.
1009                     gnus-last-posting-server
1010                   (completing-read
1011                    "Posting method: " method-alist nil t
1012                    (cons (or gnus-last-posting-server "") 0))))
1013           method-alist))))
1014      ;; Override normal method.
1015      ((and (eq gnus-post-method 'current)
1016            (not (memq (car group-method) gnus-discouraged-post-methods))
1017            (gnus-get-function group-method 'request-post t))
1018       (assert (not arg))
1019       group-method)
1020      ;; Use gnus-post-method.
1021      ((listp gnus-post-method)          ;A method...
1022       (assert (not (listp (car gnus-post-method)))) ;... not a list of methods.
1023       gnus-post-method)
1024      ;; Use the normal select method (nil or native).
1025      (t gnus-select-method))))
1026
1027 \f
1028
1029 (defun gnus-extended-version ()
1030   "Stringified Gnus version and Emacs version.
1031 See the variable `gnus-user-agent'."
1032   (interactive)
1033   (let* ((float-output-format nil)
1034          (gnus-v
1035           (concat "Gnus/"
1036                   (prin1-to-string (gnus-continuum-version gnus-version) t)
1037                   " (" gnus-version ")"))
1038          (emacs-v (gnus-emacs-version)))
1039     (if (stringp gnus-user-agent)
1040         gnus-user-agent
1041       (concat gnus-v
1042               (when emacs-v
1043                 (concat " " emacs-v))))))
1044
1045 \f
1046 ;;;
1047 ;;; Gnus Mail Functions
1048 ;;;
1049
1050 ;;; Mail reply commands of Gnus summary mode
1051
1052 (defun gnus-summary-reply (&optional yank wide very-wide)
1053   "Start composing a mail reply to the current message.
1054 If prefix argument YANK is non-nil, the original article is yanked
1055 automatically.
1056 If WIDE, make a wide reply.
1057 If VERY-WIDE, make a very wide reply."
1058   (interactive
1059    (list (and current-prefix-arg
1060               (gnus-summary-work-articles 1))))
1061   ;; Allow user to require confirmation before replying by mail to the
1062   ;; author of a news article (or mail message).
1063   (when (or
1064             (not (or (gnus-news-group-p gnus-newsgroup-name)
1065                      gnus-confirm-treat-mail-like-news))
1066             (not (cond ((stringp gnus-confirm-mail-reply-to-news)
1067                         (string-match gnus-confirm-mail-reply-to-news
1068                                       gnus-newsgroup-name))
1069                        ((functionp gnus-confirm-mail-reply-to-news)
1070                         (funcall gnus-confirm-mail-reply-to-news gnus-newsgroup-name))
1071                        (t gnus-confirm-mail-reply-to-news)))
1072             (y-or-n-p "Really reply by mail to article author? "))
1073     (let* ((article
1074             (if (listp (car yank))
1075                 (caar yank)
1076               (car yank)))
1077            (gnus-article-reply (or article (gnus-summary-article-number)))
1078            (gnus-article-yanked-articles yank)
1079            (headers ""))
1080       ;; Stripping headers should be specified with mail-yank-ignored-headers.
1081       (when yank
1082         (gnus-summary-goto-subject article))
1083       (gnus-setup-message (if yank 'reply-yank 'reply)
1084         (if (not very-wide)
1085             (gnus-summary-select-article)
1086           (dolist (article very-wide)
1087             (gnus-summary-select-article nil nil nil article)
1088             (save-excursion
1089               (set-buffer (gnus-copy-article-buffer))
1090               (gnus-msg-treat-broken-reply-to)
1091               (save-restriction
1092                 (message-narrow-to-head)
1093                 (setq headers (concat headers (buffer-string)))))))
1094         (set-buffer (gnus-copy-article-buffer))
1095         (gnus-msg-treat-broken-reply-to gnus-msg-force-broken-reply-to)
1096         (save-restriction
1097           (message-narrow-to-head)
1098           (when very-wide
1099             (erase-buffer)
1100             (insert headers))
1101           (goto-char (point-max)))
1102         (mml-quote-region (point) (point-max))
1103         (message-reply nil wide)
1104         (when yank
1105           (gnus-inews-yank-articles yank))
1106         (gnus-summary-handle-replysign)))))
1107
1108 (defun gnus-summary-handle-replysign ()
1109   "Check the various replysign variables and take action accordingly."
1110   (when (or gnus-message-replysign gnus-message-replyencrypt)
1111     (let (signed encrypted)
1112       (save-excursion
1113         (set-buffer gnus-article-buffer)
1114         (setq signed (memq 'signed gnus-article-wash-types))
1115         (setq encrypted (memq 'encrypted gnus-article-wash-types)))
1116       (cond ((and gnus-message-replyencrypt encrypted)
1117              (mml-secure-message mml-default-encrypt-method
1118                                  (if gnus-message-replysignencrypted
1119                                      'signencrypt
1120                                    'encrypt)))
1121             ((and gnus-message-replysign signed)
1122              (mml-secure-message mml-default-sign-method 'sign))))))
1123
1124 (defun gnus-summary-reply-with-original (n &optional wide)
1125   "Start composing a reply mail to the current message.
1126 The original article will be yanked."
1127   (interactive "P")
1128   (gnus-summary-reply (gnus-summary-work-articles n) wide))
1129
1130 (defun gnus-summary-reply-broken-reply-to (&optional yank wide very-wide)
1131   "Like `gnus-summary-reply' except removing reply-to field.
1132 If prefix argument YANK is non-nil, the original article is yanked
1133 automatically.
1134 If WIDE, make a wide reply.
1135 If VERY-WIDE, make a very wide reply."
1136   (interactive
1137    (list (and current-prefix-arg
1138               (gnus-summary-work-articles 1))))
1139   (let ((gnus-msg-force-broken-reply-to t))
1140     (gnus-summary-reply yank wide very-wide)))
1141
1142 (defun gnus-summary-reply-broken-reply-to-with-original (n &optional wide)
1143   "Like `gnus-summary-reply-with-original' except removing reply-to field.
1144 The original article will be yanked."
1145   (interactive "P")
1146   (gnus-summary-reply-broken-reply-to (gnus-summary-work-articles n) wide))
1147
1148 (defun gnus-summary-wide-reply (&optional yank)
1149   "Start composing a wide reply mail to the current message.
1150 If prefix argument YANK is non-nil, the original article is yanked
1151 automatically."
1152   (interactive
1153    (list (and current-prefix-arg
1154               (gnus-summary-work-articles 1))))
1155   (gnus-summary-reply yank t))
1156
1157 (defun gnus-summary-wide-reply-with-original (n)
1158   "Start composing a wide reply mail to the current message.
1159 The original article will be yanked.
1160 Uses the process/prefix convention."
1161   (interactive "P")
1162   (gnus-summary-reply-with-original n t))
1163
1164 (defun gnus-summary-very-wide-reply (&optional yank)
1165   "Start composing a very wide reply mail to the current message.
1166 If prefix argument YANK is non-nil, the original article is yanked
1167 automatically."
1168   (interactive
1169    (list (and current-prefix-arg
1170               (gnus-summary-work-articles 1))))
1171   (gnus-summary-reply yank t (gnus-summary-work-articles yank)))
1172
1173 (defun gnus-summary-very-wide-reply-with-original (n)
1174   "Start composing a very wide reply mail to the current message.
1175 The original article will be yanked."
1176   (interactive "P")
1177   (gnus-summary-reply
1178    (gnus-summary-work-articles n) t (gnus-summary-work-articles n)))
1179
1180 (defun gnus-summary-mail-forward (&optional arg post)
1181   "Forward the current message(s) to another user.
1182 If process marks exist, forward all marked messages;
1183 if ARG is nil, see `message-forward-as-mime' and `message-forward-show-mml';
1184 if ARG is 1, decode the message and forward directly inline;
1185 if ARG is 2, forward message as an rfc822 MIME section;
1186 if ARG is 3, decode message and forward as an rfc822 MIME section;
1187 if ARG is 4, forward message directly inline;
1188 otherwise, use flipped `message-forward-as-mime'.
1189 If POST, post instead of mail.
1190 For the `inline' alternatives, also see the variable
1191 `message-forward-ignored-headers'."
1192   (interactive "P")
1193   (if (cdr (gnus-summary-work-articles nil))
1194       ;; Process marks are given.
1195       (gnus-uu-digest-mail-forward arg post)
1196     ;; No process marks.
1197     (let ((message-forward-as-mime message-forward-as-mime)
1198           (message-forward-show-mml message-forward-show-mml))
1199       (cond
1200        ((null arg))
1201        ((eq arg 1)
1202         (setq message-forward-as-mime nil
1203               message-forward-show-mml t))
1204        ((eq arg 2)
1205         (setq message-forward-as-mime t
1206               message-forward-show-mml nil))
1207        ((eq arg 3)
1208         (setq message-forward-as-mime t
1209               message-forward-show-mml t))
1210        ((eq arg 4)
1211         (setq message-forward-as-mime nil
1212               message-forward-show-mml nil))
1213        (t
1214         (setq message-forward-as-mime (not message-forward-as-mime))))
1215       (let* ((gnus-article-reply (gnus-summary-article-number))
1216              (gnus-article-yanked-articles (list gnus-article-reply)))
1217         (gnus-setup-message 'forward
1218           (gnus-summary-select-article)
1219           (let ((mail-parse-charset
1220                  (or (and (gnus-buffer-live-p gnus-article-buffer)
1221                           (with-current-buffer gnus-article-buffer
1222                             gnus-article-charset))
1223                      gnus-newsgroup-charset))
1224                 (mail-parse-ignored-charsets
1225                  gnus-newsgroup-ignored-charsets))
1226             (set-buffer gnus-original-article-buffer)
1227             (message-forward post)))))))
1228
1229 (defun gnus-summary-resend-message (address n)
1230   "Resend the current article to ADDRESS."
1231   (interactive
1232    (list (message-read-from-minibuffer
1233           "Resend message(s) to: "
1234           (when (and gnus-summary-resend-default-address
1235                      (gnus-buffer-live-p gnus-original-article-buffer))
1236             ;; If some other article is currently selected, the
1237             ;; initial-contents is wrong. Whatever, it is just the
1238             ;; initial-contents.
1239             (with-current-buffer gnus-original-article-buffer
1240               (nnmail-fetch-field "to"))))
1241          current-prefix-arg))
1242   (let ((articles (gnus-summary-work-articles n))
1243         article)
1244     (while (setq article (pop articles))
1245       (gnus-summary-select-article nil nil nil article)
1246       (save-excursion
1247         (set-buffer gnus-original-article-buffer)
1248         (message-resend address))
1249       (gnus-summary-mark-article-as-forwarded article))))
1250
1251 ;; From: Matthieu Moy <Matthieu.Moy@imag.fr>
1252 (defun gnus-summary-resend-message-edit ()
1253   "Resend an article that has already been sent.
1254 A new buffer will be created to allow the user to modify body and
1255 contents of the message, and then, everything will happen as when
1256 composing a new message."
1257   (interactive)
1258   (let ((article (gnus-summary-article-number)))
1259     (gnus-setup-message 'reply-yank
1260       (gnus-summary-select-article t)
1261       (set-buffer gnus-original-article-buffer)
1262       (let ((cur (current-buffer))
1263             (to (message-fetch-field "to")))
1264         ;; Get a normal message buffer.
1265         (message-pop-to-buffer (message-buffer-name "Resend" to))
1266         (insert-buffer-substring cur)
1267         (mime-to-mml)
1268         (message-narrow-to-head-1)
1269         ;; Gnus will generate a new one when sending.
1270         (message-remove-header "Message-ID")
1271         (message-remove-header message-ignored-resent-headers t)
1272         ;; Remove unwanted headers.
1273         (goto-char (point-max))
1274         (insert mail-header-separator)
1275         (goto-char (point-min))
1276         (when (re-search-forward "^To:\\|^Newsgroups:" nil 'move)
1277           (forward-char 1))
1278         (widen)))))
1279
1280 (defun gnus-summary-post-forward (&optional arg)
1281   "Forward the current article to a newsgroup.
1282 See `gnus-summary-mail-forward' for ARG."
1283   (interactive "P")
1284   (gnus-summary-mail-forward arg t))
1285
1286 (defvar gnus-nastygram-message
1287   "The following article was inappropriately posted to %s.\n\n"
1288   "Format string to insert in nastygrams.
1289 The current group name will be inserted at \"%s\".")
1290
1291 (defun gnus-summary-mail-nastygram (n)
1292   "Send a nastygram to the author of the current article."
1293   (interactive "P")
1294   (when (or gnus-expert-user
1295             (gnus-y-or-n-p
1296              "Really send a nastygram to the author of the current article? "))
1297     (let ((group gnus-newsgroup-name))
1298       (gnus-summary-reply-with-original n)
1299       (set-buffer gnus-message-buffer)
1300       (message-goto-body)
1301       (insert (format gnus-nastygram-message group))
1302       (message-send-and-exit))))
1303
1304 (defun gnus-summary-mail-crosspost-complaint (n)
1305   "Send a complaint about crossposting to the current article(s)."
1306   (interactive "P")
1307   (let ((articles (gnus-summary-work-articles n))
1308         article)
1309     (while (setq article (pop articles))
1310       (set-buffer gnus-summary-buffer)
1311       (gnus-summary-goto-subject article)
1312       (let ((group (gnus-group-real-name gnus-newsgroup-name))
1313             newsgroups followup-to)
1314         (gnus-summary-select-article)
1315         (set-buffer gnus-original-article-buffer)
1316         (if (and (<= (length (message-tokenize-header
1317                               (setq newsgroups
1318                                     (mail-fetch-field "newsgroups"))
1319                               ", "))
1320                      1)
1321                  (or (not (setq followup-to (mail-fetch-field "followup-to")))
1322                      (not (member group (message-tokenize-header
1323                                          followup-to ", ")))))
1324             (if followup-to
1325                 (gnus-message 1 "Followup-to restricted")
1326               (gnus-message 1 "Not a crossposted article"))
1327           (set-buffer gnus-summary-buffer)
1328           (gnus-summary-reply-with-original 1)
1329           (set-buffer gnus-message-buffer)
1330           (message-goto-body)
1331           (insert (format gnus-crosspost-complaint newsgroups group))
1332           (message-goto-subject)
1333           (re-search-forward " *$")
1334           (replace-match " (crosspost notification)" t t)
1335           (gnus-deactivate-mark)
1336           (when (gnus-y-or-n-p "Send this complaint? ")
1337             (message-send-and-exit)))))))
1338
1339 (defun gnus-mail-parse-comma-list ()
1340   (let (accumulated
1341         beg)
1342     (skip-chars-forward " ")
1343     (while (not (eobp))
1344       (setq beg (point))
1345       (skip-chars-forward "^,")
1346       (while (zerop
1347               (save-excursion
1348                 (save-restriction
1349                   (let ((i 0))
1350                     (narrow-to-region beg (point))
1351                     (goto-char beg)
1352                     (logand (progn
1353                               (while (search-forward "\"" nil t)
1354                                 (incf i))
1355                               (if (zerop i) 2 i))
1356                             2)))))
1357         (skip-chars-forward ",")
1358         (skip-chars-forward "^,"))
1359       (skip-chars-backward " ")
1360       (push (buffer-substring beg (point))
1361             accumulated)
1362       (skip-chars-forward "^,")
1363       (skip-chars-forward ", "))
1364     accumulated))
1365
1366 (defun gnus-inews-add-to-address (group)
1367   (let ((to-address (mail-fetch-field "to")))
1368     (when (and to-address
1369                (gnus-alive-p))
1370       ;; This mail group doesn't have a `to-list', so we add one
1371       ;; here.  Magic!
1372       (when (gnus-y-or-n-p
1373              (format "Do you want to add this as `to-list': %s? " to-address))
1374         (gnus-group-add-parameter group (cons 'to-list to-address))))))
1375
1376 (defun gnus-put-message ()
1377   "Put the current message in some group and return to Gnus."
1378   (interactive)
1379   (let ((reply gnus-article-reply)
1380         (winconf gnus-prev-winconf)
1381         (group gnus-newsgroup-name))
1382     (unless (and group
1383                  (not (gnus-group-read-only-p group)))
1384       (setq group (read-string "Put in group: " nil (gnus-writable-groups))))
1385
1386     (when (gnus-group-entry group)
1387       (error "No such group: %s" group))
1388     (save-excursion
1389       (save-restriction
1390         (widen)
1391         (message-narrow-to-headers)
1392         (let ((gnus-deletable-headers nil))
1393           (message-generate-headers
1394            (if (message-news-p)
1395                message-required-news-headers
1396              message-required-mail-headers)))
1397         (goto-char (point-max))
1398         (if (string-match " " group)
1399             (insert "Gcc: \"" group "\"\n")
1400           (insert "Gcc: " group "\n"))
1401         (widen)))
1402     (gnus-inews-do-gcc)
1403     (when (and (get-buffer gnus-group-buffer)
1404                (gnus-buffer-exists-p (car-safe reply))
1405                (cdr reply))
1406       (set-buffer (car reply))
1407       (gnus-summary-mark-article-as-replied (cdr reply)))
1408     (when winconf
1409       (set-window-configuration winconf))))
1410
1411 (defun gnus-article-mail (yank)
1412   "Send a reply to the address near point.
1413 If YANK is non-nil, include the original article."
1414   (interactive "P")
1415   (let ((address
1416          (buffer-substring
1417           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
1418           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
1419     (when address
1420       (gnus-msg-mail address)
1421       (when yank
1422         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
1423
1424 (defvar nntp-server-type)
1425 (defun gnus-bug ()
1426   "Send a bug report to the Gnus maintainers."
1427   (interactive)
1428   (unless (gnus-alive-p)
1429     (error "Gnus has been shut down"))
1430   (gnus-setup-message (if (message-mail-user-agent) 'message 'bug)
1431     (unless (message-mail-user-agent)
1432       (delete-other-windows)
1433       (when gnus-bug-create-help-buffer
1434         (switch-to-buffer "*Gnus Help Bug*")
1435         (erase-buffer)
1436         (insert gnus-bug-message)
1437         (goto-char (point-min)))
1438       (message-pop-to-buffer "*Gnus Bug*"))
1439     (let ((message-this-is-mail t))
1440       (message-setup `((To . ,gnus-maintainer) (Subject . ""))))
1441     (when gnus-bug-create-help-buffer
1442       (push `(gnus-bug-kill-buffer) message-send-actions))
1443     (goto-char (point-min))
1444     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1445     (forward-line 1)
1446     (insert (gnus-version) "\n"
1447             (emacs-version) "\n")
1448     (when (and (boundp 'nntp-server-type)
1449                (stringp nntp-server-type))
1450       (insert nntp-server-type))
1451     (insert "\n\n\n\n\n")
1452     (let (text)
1453       (save-excursion
1454         (set-buffer (gnus-get-buffer-create " *gnus environment info*"))
1455         (erase-buffer)
1456         (gnus-debug)
1457         (setq text (buffer-string)))
1458       (insert "<#part type=application/emacs-lisp disposition=inline description=\"User settings\">\n" text "\n<#/part>"))
1459     (goto-char (point-min))
1460     (search-forward "Subject: " nil t)
1461     (message "")))
1462
1463 (defun gnus-bug-kill-buffer ()
1464   (when (get-buffer "*Gnus Help Bug*")
1465     (kill-buffer "*Gnus Help Bug*")))
1466
1467 (defun gnus-summary-yank-message (buffer n)
1468   "Yank the current article into a composed message."
1469   (interactive
1470    (list (completing-read "Buffer: " (mapcar 'list (message-buffers)) nil t)
1471          current-prefix-arg))
1472   (gnus-summary-iterate n
1473     (let ((gnus-inhibit-treatment t))
1474       (gnus-summary-select-article))
1475     (save-excursion
1476       (set-buffer buffer)
1477       (message-yank-buffer gnus-article-buffer))))
1478
1479 (defun gnus-debug ()
1480   "Attempts to go through the Gnus source file and report what variables have been changed.
1481 The source file has to be in the Emacs load path."
1482   (interactive)
1483   (let ((files gnus-debug-files)
1484         (point (point))
1485         file expr olist sym)
1486     (gnus-message 4 "Please wait while we snoop your variables...")
1487     (sit-for 0)
1488     ;; Go through all the files looking for non-default values for variables.
1489     (save-excursion
1490       (set-buffer (gnus-get-buffer-create " *gnus bug info*"))
1491       (while files
1492         (erase-buffer)
1493         (when (and (setq file (locate-library (pop files)))
1494                    (file-exists-p file))
1495           (insert-file-contents file)
1496           (goto-char (point-min))
1497           (if (not (re-search-forward "^;;* *Internal variables" nil t))
1498               (gnus-message 4 "Malformed sources in file %s" file)
1499             (narrow-to-region (point-min) (point))
1500             (goto-char (point-min))
1501             (while (setq expr (ignore-errors (read (current-buffer))))
1502               (ignore-errors
1503                 (and (or (eq (car expr) 'defvar)
1504                          (eq (car expr) 'defcustom))
1505                      (stringp (nth 3 expr))
1506                      (not (memq (nth 1 expr) gnus-debug-exclude-variables))
1507                      (or (not (boundp (nth 1 expr)))
1508                          (not (equal (eval (nth 2 expr))
1509                                      (symbol-value (nth 1 expr)))))
1510                      (push (nth 1 expr) olist)))))))
1511       (kill-buffer (current-buffer)))
1512     (when (setq olist (nreverse olist))
1513       (insert "------------------ Environment follows ------------------\n\n"))
1514     (while olist
1515       (if (boundp (car olist))
1516           (ignore-errors
1517             (pp `(setq ,(car olist)
1518                        ,(if (or (consp (setq sym (symbol-value (car olist))))
1519                                 (and (symbolp sym)
1520                                      (not (or (eq sym nil)
1521                                               (eq sym t)))))
1522                             (list 'quote (symbol-value (car olist)))
1523                           (symbol-value (car olist))))
1524                 (current-buffer)))
1525         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
1526       (setq olist (cdr olist)))
1527     (insert "\n\n")
1528     ;; Remove any control chars - they seem to cause trouble for some
1529     ;; mailers.  (Byte-compiled output from the stuff above.)
1530     (goto-char point)
1531     (while (re-search-forward "[\000-\010\013-\037\200-\237]" nil t)
1532       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
1533                      t t))))
1534
1535 ;;; Treatment of rejected articles.
1536 ;;; Bounced mail.
1537
1538 (defun gnus-summary-resend-bounced-mail (&optional fetch)
1539   "Re-mail the current message.
1540 This only makes sense if the current message is a bounce message that
1541 contains some mail you have written which has been bounced back to
1542 you.
1543 If FETCH, try to fetch the article that this is a reply to, if indeed
1544 this is a reply."
1545   (interactive "P")
1546   (gnus-summary-select-article t)
1547   (set-buffer gnus-original-article-buffer)
1548   (gnus-setup-message 'compose-bounce
1549     (let* ((references (mail-fetch-field "references"))
1550            (parent (and references (gnus-parent-id references))))
1551       (message-bounce)
1552       ;; If there are references, we fetch the article we answered to.
1553       (and fetch parent
1554            (gnus-summary-refer-article parent)
1555            (gnus-summary-show-all-headers)))))
1556
1557 ;;; Gcc handling.
1558
1559 (defun gnus-inews-group-method (group)
1560   (cond
1561    ;; If the group doesn't exist, we assume
1562    ;; it's an archive group...
1563    ((and (null (gnus-get-info group))
1564          (eq (car (gnus-server-to-method gnus-message-archive-method))
1565              (car (gnus-server-to-method (gnus-group-method group)))))
1566     gnus-message-archive-method)
1567    ;; Use the method.
1568    ((gnus-info-method (gnus-get-info group))
1569     (gnus-info-method (gnus-get-info group)))
1570    ;; Find the method.
1571    (t (gnus-server-to-method (gnus-group-method group)))))
1572
1573 ;; Do Gcc handling, which copied the message over to some group.
1574 (defun gnus-inews-do-gcc (&optional gcc)
1575   (interactive)
1576   (save-excursion
1577     (save-restriction
1578       (message-narrow-to-headers)
1579       (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
1580             (cur (current-buffer))
1581             groups group method group-art
1582             mml-externalize-attachments)
1583         (when gcc
1584           (message-remove-header "gcc")
1585           (widen)
1586           (setq groups (message-unquote-tokens
1587                         (message-tokenize-header gcc " ,")))
1588           ;; Copy the article over to some group(s).
1589           (while (setq group (pop groups))
1590             (unless (gnus-check-server
1591                      (setq method (gnus-inews-group-method group)))
1592               (error "Can't open server %s" (if (stringp method) method
1593                                               (car method))))
1594             (unless (gnus-request-group group nil method)
1595               (gnus-request-create-group group method))
1596             (setq mml-externalize-attachments
1597                   (if (stringp gnus-gcc-externalize-attachments)
1598                       (string-match gnus-gcc-externalize-attachments group)
1599                     gnus-gcc-externalize-attachments))
1600             (save-excursion
1601               (nnheader-set-temp-buffer " *acc*")
1602               (insert-buffer-substring cur)
1603               (message-encode-message-body)
1604               (save-restriction
1605                 (message-narrow-to-headers)
1606                 (let* ((mail-parse-charset message-default-charset)
1607                        (newsgroups-field (save-restriction
1608                                            (message-narrow-to-headers-or-head)
1609                                            (message-fetch-field "Newsgroups")))
1610                        (followup-field (save-restriction
1611                                          (message-narrow-to-headers-or-head)
1612                                          (message-fetch-field "Followup-To")))
1613                        ;; BUG: We really need to get the charset for
1614                        ;; each name in the Newsgroups and Followup-To
1615                        ;; lines to allow crossposting between group
1616                        ;; namess with incompatible character sets.
1617                        ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
1618                        (group-field-charset
1619                         (gnus-group-name-charset
1620                          method (or newsgroups-field "")))
1621                        (followup-field-charset
1622                         (gnus-group-name-charset
1623                          method (or followup-field "")))
1624                        (rfc2047-header-encoding-alist
1625                         (append
1626                          (when group-field-charset
1627                            (list (cons "Newsgroups" group-field-charset)))
1628                          (when followup-field-charset
1629                            (list (cons "Followup-To" followup-field-charset)))
1630                          rfc2047-header-encoding-alist)))
1631                   (mail-encode-encoded-word-buffer)))
1632               (goto-char (point-min))
1633               (when (re-search-forward
1634                      (concat "^" (regexp-quote mail-header-separator) "$")
1635                      nil t)
1636                 (replace-match "" t t ))
1637               (when (or (not (gnus-check-backend-function
1638                               'request-accept-article group))
1639                         (not (setq group-art
1640                                    (gnus-request-accept-article
1641                                     group method t t))))
1642                 (gnus-message 1 "Couldn't store article in group %s: %s"
1643                               group (gnus-status-message method)))
1644               (when (and group-art
1645                          ;; FIXME: Should gcc-mark-as-read work when
1646                          ;; Gnus is not running?
1647                          (gnus-alive-p)
1648                          (or gnus-gcc-mark-as-read
1649                              (and
1650                               (boundp 'gnus-inews-mark-gcc-as-read)
1651                               (symbol-value 'gnus-inews-mark-gcc-as-read))))
1652                 (gnus-group-mark-article-read group (cdr group-art)))
1653               (kill-buffer (current-buffer)))))))))
1654
1655 (defun gnus-inews-insert-gcc ()
1656   "Insert Gcc headers based on `gnus-outgoing-message-group'."
1657   (save-excursion
1658     (save-restriction
1659       (message-narrow-to-headers)
1660       (let* ((group gnus-outgoing-message-group)
1661              (gcc (cond
1662                    ((functionp group)
1663                     (funcall group))
1664                    ((or (stringp group) (list group))
1665                     group))))
1666         (when gcc
1667           (insert "Gcc: "
1668                   (if (stringp gcc)
1669                       (if (string-match " " gcc)
1670                           (concat "\"" gcc "\"")
1671                         gcc)
1672                     (mapconcat (lambda (group)
1673                                  (if (string-match " " group)
1674                                      (concat "\"" group "\"")
1675                                    group))
1676                                gcc " "))
1677                   "\n"))))))
1678
1679 (defun gnus-inews-insert-archive-gcc (&optional group)
1680   "Insert the Gcc to say where the article is to be archived."
1681   (let* ((var gnus-message-archive-group)
1682          (group (or group gnus-newsgroup-name ""))
1683          (gcc-self-val
1684           (and gnus-newsgroup-name
1685                (not (equal gnus-newsgroup-name ""))
1686                (gnus-group-find-parameter
1687                 gnus-newsgroup-name 'gcc-self)))
1688          result
1689          (groups
1690           (cond
1691            ((null gnus-message-archive-method)
1692             ;; Ignore.
1693             nil)
1694            ((stringp var)
1695             ;; Just a single group.
1696             (list var))
1697            ((null var)
1698             ;; We don't want this.
1699             nil)
1700            ((and (listp var) (stringp (car var)))
1701             ;; A list of groups.
1702             var)
1703            ((functionp var)
1704             ;; A function.
1705             (funcall var group))
1706            (t
1707             ;; An alist of regexps/functions/forms.
1708             (while (and var
1709                         (not
1710                          (setq result
1711                                (cond
1712                                 ((stringp (caar var))
1713                                  ;; Regexp.
1714                                  (when (string-match (caar var) group)
1715                                    (cdar var)))
1716                                 ((functionp (car var))
1717                                  ;; Function.
1718                                  (funcall (car var) group))
1719                                 (t
1720                                  (eval (car var)))))))
1721               (setq var (cdr var)))
1722             result)))
1723          name)
1724     (when (or groups gcc-self-val)
1725       (when (stringp groups)
1726         (setq groups (list groups)))
1727       (save-excursion
1728         (save-restriction
1729           (message-narrow-to-headers)
1730           (goto-char (point-max))
1731           (insert "Gcc: ")
1732           (if gcc-self-val
1733               ;; Use the `gcc-self' param value instead.
1734               (progn
1735                 (insert
1736                  (if (stringp gcc-self-val)
1737                      (if (string-match " " gcc-self-val)
1738                          (concat "\"" gcc-self-val "\"")
1739                        gcc-self-val)
1740                    ;; In nndoc groups, we use the parent group name
1741                    ;; instead of the current group.
1742                    (let ((group (or (gnus-group-find-parameter
1743                                      gnus-newsgroup-name 'parent-group)
1744                                     group)))
1745                      (if (string-match " " group)
1746                          (concat "\"" group "\"")
1747                        group))))
1748                 (if (not (eq gcc-self-val 'none))
1749                     (insert "\n")
1750                   (gnus-delete-line)))
1751             ;; Use the list of groups.
1752             (while (setq name (pop groups))
1753               (let ((str (if (string-match ":" name)
1754                              name
1755                            (gnus-group-prefixed-name
1756                             name gnus-message-archive-method))))
1757                 (insert (if (string-match " " str)
1758                             (concat "\"" str "\"")
1759                           str)))
1760               (when groups
1761                 (insert " ")))
1762             (insert "\n")))))))
1763
1764 (defun gnus-mailing-list-followup-to ()
1765   "Look at the headers in the current buffer and return a Mail-Followup-To address."
1766   (let ((x-been-there (gnus-fetch-original-field "x-beenthere"))
1767         (list-post (gnus-fetch-original-field "list-post")))
1768     (when (and list-post
1769                (string-match "mailto:\\([^>]+\\)" list-post))
1770       (setq list-post (match-string 1 list-post)))
1771     (or list-post
1772         x-been-there)))
1773
1774 ;;; Posting styles.
1775
1776 (defun gnus-configure-posting-styles (&optional group-name)
1777   "Configure posting styles according to `gnus-posting-styles'."
1778   (unless gnus-inhibit-posting-styles
1779     (let ((group (or group-name gnus-newsgroup-name ""))
1780           (styles gnus-posting-styles)
1781           style match attribute value v results
1782           filep name address element)
1783       ;; If the group has a posting-style parameter, add it at the end with a
1784       ;; regexp matching everything, to be sure it takes precedence over all
1785       ;; the others.
1786       (when gnus-newsgroup-name
1787         (let ((tmp-style (gnus-group-find-parameter group 'posting-style t)))
1788           (when tmp-style
1789             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1790       ;; Go through all styles and look for matches.
1791       (dolist (style styles)
1792         (setq match (pop style))
1793         (goto-char (point-min))
1794         (when (cond
1795                ((stringp match)
1796                 ;; Regexp string match on the group name.
1797                 (string-match match group))
1798                ((eq match 'header)
1799                 ;; Obsolete format of header match.
1800                 (and (gnus-buffer-live-p gnus-article-copy)
1801                      (with-current-buffer gnus-article-copy
1802                        (let ((header (message-fetch-field (pop style))))
1803                          (and header
1804                               (string-match (pop style) header))))))
1805                ((or (symbolp match)
1806                     (functionp match))
1807                 (cond
1808                  ((functionp match)
1809                   ;; Function to be called.
1810                   (funcall match))
1811                  ((boundp match)
1812                   ;; Variable to be checked.
1813                   (symbol-value match))))
1814                ((listp match)
1815                 (cond
1816                  ((eq (car match) 'header)
1817                   ;; New format of header match.
1818                   (and (gnus-buffer-live-p gnus-article-copy)
1819                        (with-current-buffer gnus-article-copy
1820                          (let ((header (message-fetch-field (nth 1 match))))
1821                            (and header
1822                                 (string-match (nth 2 match) header))))))
1823                  (t
1824                   ;; This is a form to be evaled.
1825                   (eval match)))))
1826           ;; We have a match, so we set the variables.
1827           (dolist (attribute style)
1828             (setq element (pop attribute)
1829                   filep nil)
1830             (setq value
1831                   (cond
1832                    ((eq (car attribute) :file)
1833                     (setq filep t)
1834                     (cadr attribute))
1835                    ((eq (car attribute) :value)
1836                     (cadr attribute))
1837                    (t
1838                     (car attribute))))
1839             ;; We get the value.
1840             (setq v
1841                   (cond
1842                    ((stringp value)
1843                     value)
1844                    ((or (symbolp value)
1845                         (functionp value))
1846                     (cond ((functionp value)
1847                            (funcall value))
1848                           ((boundp value)
1849                            (symbol-value value))))
1850                    ((listp value)
1851                     (eval value))))
1852             ;; Translate obsolescent value.
1853             (cond
1854              ((eq element 'signature-file)
1855               (setq element 'signature
1856                     filep t))
1857              ((eq element 'x-face-file)
1858               (setq element 'x-face
1859                     filep t)))
1860             ;; Get the contents of file elems.
1861             (when (and filep v)
1862               (setq v (with-temp-buffer
1863                         (insert-file-contents v)
1864                         (goto-char (point-max))
1865                         (while (bolp)
1866                           (delete-char -1))
1867                         (buffer-string))))
1868             (setq results (delq (assoc element results) results))
1869             (push (cons element v) results))))
1870       ;; Now we have all the styles, so we insert them.
1871       (setq name (assq 'name results)
1872             address (assq 'address results))
1873       (setq results (delq name (delq address results)))
1874       (gnus-make-local-hook 'message-setup-hook)
1875       (setq results (sort results (lambda (x y)
1876                                     (string-lessp (car x) (car y)))))
1877       (dolist (result results)
1878         (add-hook 'message-setup-hook
1879                   (cond
1880                    ((eq 'eval (car result))
1881                     'ignore)
1882                    ((eq 'body (car result))
1883                     `(lambda ()
1884                        (save-excursion
1885                          (message-goto-body)
1886                          (insert ,(cdr result)))))
1887                    ((eq 'signature (car result))
1888                     (set (make-local-variable 'message-signature) nil)
1889                     (set (make-local-variable 'message-signature-file) nil)
1890                     (if (not (cdr result))
1891                         'ignore
1892                       `(lambda ()
1893                          (save-excursion
1894                            (let ((message-signature ,(cdr result)))
1895                              (when message-signature
1896                                (message-insert-signature)))))))
1897                    (t
1898                     (let ((header
1899                            (if (symbolp (car result))
1900                                (capitalize (symbol-name (car result)))
1901                              (car result))))
1902                       `(lambda ()
1903                          (save-excursion
1904                            (message-remove-header ,header)
1905                            (let ((value ,(cdr result)))
1906                              (when value
1907                                (message-goto-eoh)
1908                                (insert ,header ": " value)
1909                                (unless (bolp)
1910                                  (insert "\n")))))))))
1911                   nil 'local))
1912       (when (or name address)
1913         (add-hook 'message-setup-hook
1914                   `(lambda ()
1915                      (set (make-local-variable 'user-mail-address)
1916                           ,(or (cdr address) user-mail-address))
1917                      (let ((user-full-name ,(or (cdr name) (user-full-name)))
1918                            (user-mail-address
1919                             ,(or (cdr address) user-mail-address)))
1920                        (save-excursion
1921                          (message-remove-header "From")
1922                          (message-goto-eoh)
1923                          (insert "From: " (message-make-from) "\n"))))
1924                   nil 'local)))))
1925
1926 ;;; Allow redefinition of functions.
1927
1928 (gnus-ems-redefine)
1929
1930 (provide 'gnus-msg)
1931
1932 ;;; gnus-msg.el ends here