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