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