(gnus-confirm-mail-reply-to-news): Change default to gnus-novice-user.
[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 "21.4"
146   :group 'gnus-message
147   :type 'boolean)
148
149 (make-obsolete-variable 'gnus-inews-mark-gcc-as-read
150                         'gnus-gcc-mark-as-read)
151
152 (defcustom gnus-gcc-externalize-attachments nil
153   "Should local-file attachments be included as external parts in Gcc copies?
154 If it is `all', attach files as external parts;
155 if a regexp and matches the Gcc group name, attach files as external parts;
156 if nil, attach files as normal parts."
157   :version "21.4"
158   :group 'gnus-message
159   :type '(choice (const nil :tag "None")
160                  (const all :tag "Any")
161                  (string :tag "Regexp")))
162
163 (gnus-define-group-parameter
164  posting-charset-alist
165  :type list
166  :function-document
167  "Return the permitted unencoded charsets for posting of GROUP."
168  :variable gnus-group-posting-charset-alist
169  :variable-default
170   '(("^\\(no\\|fr\\)\\.[^,]*\\(,[ \t\n]*\\(no\\|fr\\)\\.[^,]*\\)*$" iso-8859-1 (iso-8859-1))
171     ("^\\(fido7\\|relcom\\)\\.[^,]*\\(,[ \t\n]*\\(fido7\\|relcom\\)\\.[^,]*\\)*$" koi8-r (koi8-r))
172     (message-this-is-mail nil nil)
173     (message-this-is-news nil t))
174  :variable-document
175   "Alist of regexps and permitted unencoded charsets for posting.
176 Each element of the alist has the form (TEST HEADER BODY-LIST), where
177 TEST is either a regular expression matching the newsgroup header or a
178 variable to query,
179 HEADER is the charset which may be left unencoded in the header (nil
180 means encode all charsets),
181 BODY-LIST is a list of charsets which may be encoded using 8bit
182 content-transfer encoding in the body, or one of the special values
183 nil (always encode using quoted-printable) or t (always use 8bit).
184
185 Note that any value other than nil for HEADER infringes some RFCs, so
186 use this option with care."
187  :variable-group gnus-charset
188  :variable-type
189  '(repeat (list :tag "Permitted unencoded charsets"
190                 (choice :tag "Where"
191                         (regexp :tag "Group")
192                         (const :tag "Mail message" :value message-this-is-mail)
193                         (const :tag "News article" :value message-this-is-news))
194                 (choice :tag "Header"
195                         (const :tag "None" nil)
196                         (symbol :tag "Charset"))
197                 (choice :tag "Body"
198                         (const :tag "Any" :value t)
199                         (const :tag "None" :value nil)
200                         (repeat :tag "Charsets"
201                                 (symbol :tag "Charset")))))
202  :parameter-type '(choice :tag "Permitted unencoded charsets"
203                           :value nil
204                           (repeat (symbol)))
205  :parameter-document       "\
206 List of charsets that are permitted to be unencoded.")
207
208 (defcustom gnus-debug-files
209   '("gnus.el" "gnus-sum.el" "gnus-group.el"
210     "gnus-art.el" "gnus-start.el" "gnus-async.el"
211     "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
212     "gnus-agent.el" "gnus-cache.el" "gnus-srvr.el"
213     "mm-util.el" "mm-decode.el" "nnmail.el" "message.el")
214   "Files whose variables will be reported in `gnus-bug'."
215   :version "21.4"
216   :group 'gnus-message
217   :type '(repeat (string :tag "File")))
218
219 (defcustom gnus-debug-exclude-variables
220   '(mm-mime-mule-charset-alist
221     nnmail-split-fancy message-minibuffer-local-map)
222   "Variables that should not be reported in `gnus-bug'."
223   :version "21.4"
224   :group 'gnus-message
225   :type '(repeat (symbol :tag "Variable")))
226
227 (defcustom gnus-discouraged-post-methods
228   '(nndraft nnml nnimap nnmaildir nnmh nnfolder nndir)
229   "A list of back ends that are not used in \"real\" newsgroups.
230 This variable is used only when `gnus-post-method' is `current'."
231   :version "21.4"
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 "21.4"
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 "21.4"
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 "21.4"
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               (run-hooks 'gnus-article-decode-hook)))))
883       gnus-article-copy)))
884
885 (defun gnus-post-news (post &optional group header article-buffer yank subject
886                             force-news)
887   (when article-buffer
888     (gnus-copy-article-buffer))
889   (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number)))
890         (gnus-article-yanked-articles yank)
891         (add-to-list gnus-add-to-list))
892     (gnus-setup-message (cond (yank 'reply-yank)
893                               (article-buffer 'reply)
894                               (t 'message))
895       (let* ((group (or group gnus-newsgroup-name))
896              (charset (gnus-group-name-charset nil group))
897              (pgroup group)
898              to-address to-group mailing-list to-list
899              newsgroup-p)
900         (when group
901           (setq to-address (gnus-parameter-to-address group)
902                 to-group (gnus-group-find-parameter group 'to-group)
903                 to-list (gnus-parameter-to-list group)
904                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
905                 mailing-list (when gnus-mailing-list-groups
906                                (string-match gnus-mailing-list-groups group))
907                 group (gnus-group-name-decode (gnus-group-real-name group)
908                                               charset)))
909         (if (or (and to-group
910                      (gnus-news-group-p to-group))
911                 newsgroup-p
912                 force-news
913                 (and (gnus-news-group-p
914                       (or pgroup gnus-newsgroup-name)
915                       (or header gnus-current-article))
916                      (not mailing-list)
917                      (not to-list)
918                      (not to-address)))
919             ;; This is news.
920             (if post
921                 (message-news
922                  (or to-group
923                      (and (not (gnus-virtual-group-p pgroup)) group)))
924               (set-buffer gnus-article-copy)
925               (gnus-msg-treat-broken-reply-to)
926               (message-followup (if (or newsgroup-p force-news)
927                                     (if (save-restriction
928                                           (article-narrow-to-head)
929                                           (message-fetch-field "newsgroups"))
930                                         nil
931                                       "")
932                                   to-group)))
933           ;; The is mail.
934           (if post
935               (progn
936                 (message-mail (or to-address to-list))
937                 ;; Arrange for mail groups that have no `to-address' to
938                 ;; get that when the user sends off the mail.
939                 (when (and (not to-list)
940                            (not to-address)
941                            add-to-list)
942                   (push (list 'gnus-inews-add-to-address pgroup)
943                         message-send-actions)))
944             (set-buffer gnus-article-copy)
945             (gnus-msg-treat-broken-reply-to)
946             (message-wide-reply to-address)))
947         (when yank
948           (gnus-inews-yank-articles yank))))))
949
950 (defun gnus-msg-treat-broken-reply-to (&optional force)
951   "Remove the Reply-to header if broken-reply-to."
952   (when (or force
953             (gnus-group-find-parameter
954              gnus-newsgroup-name 'broken-reply-to))
955     (save-restriction
956       (message-narrow-to-head)
957       (message-remove-header "reply-to"))))
958
959 (defun gnus-post-method (arg group &optional silent)
960   "Return the posting method based on GROUP and ARG.
961 If SILENT, don't prompt the user."
962   (let ((gnus-post-method (or (gnus-parameter-post-method group)
963                               gnus-post-method))
964         (group-method (gnus-find-method-for-group group)))
965     (cond
966      ;; If the group-method is nil (which shouldn't happen) we use
967      ;; the default method.
968      ((null group-method)
969       (or (and (listp gnus-post-method) ;If not current/native/nil
970                (not (listp (car gnus-post-method))) ; and not a list of methods
971                gnus-post-method)        ;then use it.
972           gnus-select-method
973           message-post-method))
974      ;; We want the inverse of the default
975      ((and arg (not (eq arg 0)))
976       (if (eq gnus-post-method 'current)
977           gnus-select-method
978         group-method))
979      ;; We query the user for a post method.
980      ((or arg
981           (and (listp gnus-post-method)
982                (listp (car gnus-post-method))))
983       (let* ((methods
984               ;; Collect all methods we know about.
985               (append
986                (when (listp gnus-post-method)
987                  (if (listp (car gnus-post-method))
988                      gnus-post-method
989                    (list gnus-post-method)))
990                gnus-secondary-select-methods
991                (mapcar 'cdr gnus-server-alist)
992                (mapcar 'car gnus-opened-servers)
993                (list gnus-select-method)
994                (list group-method)))
995              method-alist post-methods method)
996         ;; Weed out all mail methods.
997         (while methods
998           (setq method (gnus-server-get-method "" (pop methods)))
999           (when (and (or (gnus-method-option-p method 'post)
1000                          (gnus-method-option-p method 'post-mail))
1001                      (not (member method post-methods)))
1002             (push method post-methods)))
1003         ;; Create a name-method alist.
1004         (setq method-alist
1005               (mapcar
1006                (lambda (m)
1007                  (if (equal (cadr m) "")
1008                      (list (symbol-name (car m)) m)
1009                    (list (concat (cadr m) " (" (symbol-name (car m)) ")") m)))
1010                post-methods))
1011         ;; Query the user.
1012         (cadr
1013          (assoc
1014           (setq gnus-last-posting-server
1015                 (if (and silent
1016                          gnus-last-posting-server)
1017                     ;; Just use the last value.
1018                     gnus-last-posting-server
1019                   (completing-read
1020                    "Posting method: " method-alist nil t
1021                    (cons (or gnus-last-posting-server "") 0))))
1022           method-alist))))
1023      ;; Override normal method.
1024      ((and (eq gnus-post-method 'current)
1025            (not (memq (car group-method) gnus-discouraged-post-methods))
1026            (gnus-get-function group-method 'request-post t))
1027       (assert (not arg))
1028       group-method)
1029      ;; Use gnus-post-method.
1030      ((listp gnus-post-method)          ;A method...
1031       (assert (not (listp (car gnus-post-method)))) ;... not a list of methods.
1032       gnus-post-method)
1033      ;; Use the normal select method (nil or native).
1034      (t gnus-select-method))))
1035
1036 \f
1037
1038 (defun gnus-extended-version ()
1039   "Stringified Gnus version and Emacs version.
1040 See the variable `gnus-user-agent'."
1041   (interactive)
1042   (if (stringp gnus-user-agent)
1043       gnus-user-agent
1044     ;; `gnus-user-agent' is a list:
1045     (let* ((float-output-format nil)
1046            (gnus-v
1047             (when (memq 'gnus gnus-user-agent)
1048               (concat "Gnus/"
1049                       (prin1-to-string (gnus-continuum-version gnus-version) t)
1050                       " (" gnus-version ")")))
1051            (emacs-v (gnus-emacs-version)))
1052       (concat gnus-v (when (and gnus-v emacs-v) " ")
1053               emacs-v))))
1054
1055 \f
1056 ;;;
1057 ;;; Gnus Mail Functions
1058 ;;;
1059
1060 ;;; Mail reply commands of Gnus summary mode
1061
1062 (defun gnus-summary-reply (&optional yank wide very-wide)
1063   "Start composing a mail reply to the current message.
1064 If prefix argument YANK is non-nil, the original article is yanked
1065 automatically.
1066 If WIDE, make a wide reply.
1067 If VERY-WIDE, make a very wide reply."
1068   (interactive
1069    (list (and current-prefix-arg
1070               (gnus-summary-work-articles 1))))
1071   ;; Allow user to require confirmation before replying by mail to the
1072   ;; author of a news article (or mail message).
1073   (when (or
1074             (not (or (gnus-news-group-p gnus-newsgroup-name)
1075                      gnus-confirm-treat-mail-like-news))
1076             (not (cond ((stringp gnus-confirm-mail-reply-to-news)
1077                         (string-match gnus-confirm-mail-reply-to-news
1078                                       gnus-newsgroup-name))
1079                        ((functionp gnus-confirm-mail-reply-to-news)
1080                         (funcall gnus-confirm-mail-reply-to-news gnus-newsgroup-name))
1081                        (t gnus-confirm-mail-reply-to-news)))
1082             (y-or-n-p "Really reply by mail to article author? "))
1083     (let* ((article
1084             (if (listp (car yank))
1085                 (caar yank)
1086               (car yank)))
1087            (gnus-article-reply (or article (gnus-summary-article-number)))
1088            (gnus-article-yanked-articles yank)
1089            (headers ""))
1090       ;; Stripping headers should be specified with mail-yank-ignored-headers.
1091       (when yank
1092         (gnus-summary-goto-subject article))
1093       (gnus-setup-message (if yank 'reply-yank 'reply)
1094         (if (not very-wide)
1095             (gnus-summary-select-article)
1096           (dolist (article very-wide)
1097             (gnus-summary-select-article nil nil nil article)
1098             (save-excursion
1099               (set-buffer (gnus-copy-article-buffer))
1100               (gnus-msg-treat-broken-reply-to)
1101               (save-restriction
1102                 (message-narrow-to-head)
1103                 (setq headers (concat headers (buffer-string)))))))
1104         (set-buffer (gnus-copy-article-buffer))
1105         (gnus-msg-treat-broken-reply-to gnus-msg-force-broken-reply-to)
1106         (save-restriction
1107           (message-narrow-to-head)
1108           (when very-wide
1109             (erase-buffer)
1110             (insert headers))
1111           (goto-char (point-max)))
1112         (mml-quote-region (point) (point-max))
1113         (message-reply nil wide)
1114         (when yank
1115           (gnus-inews-yank-articles yank))
1116         (gnus-summary-handle-replysign)))))
1117
1118 (defun gnus-summary-handle-replysign ()
1119   "Check the various replysign variables and take action accordingly."
1120   (when (or gnus-message-replysign gnus-message-replyencrypt)
1121     (let (signed encrypted)
1122       (save-excursion
1123         (set-buffer gnus-article-buffer)
1124         (setq signed (memq 'signed gnus-article-wash-types))
1125         (setq encrypted (memq 'encrypted gnus-article-wash-types)))
1126       (cond ((and gnus-message-replyencrypt encrypted)
1127              (mml-secure-message mml-default-encrypt-method
1128                                  (if gnus-message-replysignencrypted
1129                                      'signencrypt
1130                                    'encrypt)))
1131             ((and gnus-message-replysign signed)
1132              (mml-secure-message mml-default-sign-method 'sign))))))
1133
1134 (defun gnus-summary-reply-with-original (n &optional wide)
1135   "Start composing a reply mail to the current message.
1136 The original article will be yanked."
1137   (interactive "P")
1138   (gnus-summary-reply (gnus-summary-work-articles n) wide))
1139
1140 (defun gnus-summary-reply-broken-reply-to (&optional yank wide very-wide)
1141   "Like `gnus-summary-reply' except removing reply-to field.
1142 If prefix argument YANK is non-nil, the original article is yanked
1143 automatically.
1144 If WIDE, make a wide reply.
1145 If VERY-WIDE, make a very wide reply."
1146   (interactive
1147    (list (and current-prefix-arg
1148               (gnus-summary-work-articles 1))))
1149   (let ((gnus-msg-force-broken-reply-to t))
1150     (gnus-summary-reply yank wide very-wide)))
1151
1152 (defun gnus-summary-reply-broken-reply-to-with-original (n &optional wide)
1153   "Like `gnus-summary-reply-with-original' except removing reply-to field.
1154 The original article will be yanked."
1155   (interactive "P")
1156   (gnus-summary-reply-broken-reply-to (gnus-summary-work-articles n) wide))
1157
1158 (defun gnus-summary-wide-reply (&optional yank)
1159   "Start composing a wide reply mail to the current message.
1160 If prefix argument YANK is non-nil, the original article is yanked
1161 automatically."
1162   (interactive
1163    (list (and current-prefix-arg
1164               (gnus-summary-work-articles 1))))
1165   (gnus-summary-reply yank t))
1166
1167 (defun gnus-summary-wide-reply-with-original (n)
1168   "Start composing a wide reply mail to the current message.
1169 The original article will be yanked.
1170 Uses the process/prefix convention."
1171   (interactive "P")
1172   (gnus-summary-reply-with-original n t))
1173
1174 (defun gnus-summary-very-wide-reply (&optional yank)
1175   "Start composing a very wide reply mail to the current message.
1176 If prefix argument YANK is non-nil, the original article is yanked
1177 automatically."
1178   (interactive
1179    (list (and current-prefix-arg
1180               (gnus-summary-work-articles 1))))
1181   (gnus-summary-reply yank t (gnus-summary-work-articles yank)))
1182
1183 (defun gnus-summary-very-wide-reply-with-original (n)
1184   "Start composing a very wide reply mail to the current message.
1185 The original article will be yanked."
1186   (interactive "P")
1187   (gnus-summary-reply
1188    (gnus-summary-work-articles n) t (gnus-summary-work-articles n)))
1189
1190 (defun gnus-summary-mail-forward (&optional arg post)
1191   "Forward the current message(s) to another user.
1192 If process marks exist, forward all marked messages;
1193 if ARG is nil, see `message-forward-as-mime' and `message-forward-show-mml';
1194 if ARG is 1, decode the message and forward directly inline;
1195 if ARG is 2, forward message as an rfc822 MIME section;
1196 if ARG is 3, decode message and forward as an rfc822 MIME section;
1197 if ARG is 4, forward message directly inline;
1198 otherwise, use flipped `message-forward-as-mime'.
1199 If POST, post instead of mail.
1200 For the `inline' alternatives, also see the variable
1201 `message-forward-ignored-headers'."
1202   (interactive "P")
1203   (if (cdr (gnus-summary-work-articles nil))
1204       ;; Process marks are given.
1205       (gnus-uu-digest-mail-forward arg post)
1206     ;; No process marks.
1207     (let ((message-forward-as-mime message-forward-as-mime)
1208           (message-forward-show-mml message-forward-show-mml))
1209       (cond
1210        ((null arg))
1211        ((eq arg 1)
1212         (setq message-forward-as-mime nil
1213               message-forward-show-mml t))
1214        ((eq arg 2)
1215         (setq message-forward-as-mime t
1216               message-forward-show-mml nil))
1217        ((eq arg 3)
1218         (setq message-forward-as-mime t
1219               message-forward-show-mml t))
1220        ((eq arg 4)
1221         (setq message-forward-as-mime nil
1222               message-forward-show-mml nil))
1223        (t
1224         (setq message-forward-as-mime (not message-forward-as-mime))))
1225       (let* ((gnus-article-reply (gnus-summary-article-number))
1226              (gnus-article-yanked-articles (list gnus-article-reply)))
1227         (gnus-setup-message 'forward
1228           (gnus-summary-select-article)
1229           (let ((mail-parse-charset
1230                  (or (and (gnus-buffer-live-p gnus-article-buffer)
1231                           (with-current-buffer gnus-article-buffer
1232                             gnus-article-charset))
1233                      gnus-newsgroup-charset))
1234                 (mail-parse-ignored-charsets
1235                  gnus-newsgroup-ignored-charsets))
1236             (set-buffer gnus-original-article-buffer)
1237             (message-forward post)))))))
1238
1239 (defun gnus-summary-resend-message (address n)
1240   "Resend the current article to ADDRESS."
1241   (interactive
1242    (list (message-read-from-minibuffer
1243           "Resend message(s) to: "
1244           (when (and gnus-summary-resend-default-address
1245                      (gnus-buffer-live-p gnus-original-article-buffer))
1246             ;; If some other article is currently selected, the
1247             ;; initial-contents is wrong. Whatever, it is just the
1248             ;; initial-contents.
1249             (with-current-buffer gnus-original-article-buffer
1250               (nnmail-fetch-field "to"))))
1251          current-prefix-arg))
1252   (dolist (article (gnus-summary-work-articles n))
1253     (gnus-summary-select-article nil nil nil article)
1254     (save-excursion
1255       (set-buffer gnus-original-article-buffer)
1256       (message-resend address))
1257     (gnus-summary-mark-article-as-forwarded article)))
1258
1259 ;; From: Matthieu Moy <Matthieu.Moy@imag.fr>
1260 (defun gnus-summary-resend-message-edit ()
1261   "Resend an article that has already been sent.
1262 A new buffer will be created to allow the user to modify body and
1263 contents of the message, and then, everything will happen as when
1264 composing a new message."
1265   (interactive)
1266   (let ((article (gnus-summary-article-number)))
1267     (gnus-setup-message 'reply-yank
1268       (gnus-summary-select-article t)
1269       (set-buffer gnus-original-article-buffer)
1270       (let ((cur (current-buffer))
1271             (to (message-fetch-field "to")))
1272         ;; Get a normal message buffer.
1273         (message-pop-to-buffer (message-buffer-name "Resend" to))
1274         (insert-buffer-substring cur)
1275         (mime-to-mml)
1276         (message-narrow-to-head-1)
1277         ;; Gnus will generate a new one when sending.
1278         (message-remove-header "Message-ID")
1279         (message-remove-header message-ignored-resent-headers t)
1280         ;; Remove unwanted headers.
1281         (goto-char (point-max))
1282         (insert mail-header-separator)
1283         (goto-char (point-min))
1284         (when (re-search-forward "^To:\\|^Newsgroups:" nil 'move)
1285           (forward-char 1))
1286         (widen)))))
1287
1288 (defun gnus-summary-post-forward (&optional arg)
1289   "Forward the current article to a newsgroup.
1290 See `gnus-summary-mail-forward' for ARG."
1291   (interactive "P")
1292   (gnus-summary-mail-forward arg t))
1293
1294 (defvar gnus-nastygram-message
1295   "The following article was inappropriately posted to %s.\n\n"
1296   "Format string to insert in nastygrams.
1297 The current group name will be inserted at \"%s\".")
1298
1299 (defun gnus-summary-mail-nastygram (n)
1300   "Send a nastygram to the author of the current article."
1301   (interactive "P")
1302   (when (or gnus-expert-user
1303             (gnus-y-or-n-p
1304              "Really send a nastygram to the author of the current article? "))
1305     (let ((group gnus-newsgroup-name))
1306       (gnus-summary-reply-with-original n)
1307       (set-buffer gnus-message-buffer)
1308       (message-goto-body)
1309       (insert (format gnus-nastygram-message group))
1310       (message-send-and-exit))))
1311
1312 (defun gnus-summary-mail-crosspost-complaint (n)
1313   "Send a complaint about crossposting to the current article(s)."
1314   (interactive "P")
1315   (dolist (article (gnus-summary-work-articles n))
1316     (set-buffer gnus-summary-buffer)
1317     (gnus-summary-goto-subject article)
1318     (let ((group (gnus-group-real-name gnus-newsgroup-name))
1319           newsgroups followup-to)
1320       (gnus-summary-select-article)
1321       (set-buffer gnus-original-article-buffer)
1322       (if (and (<= (length (message-tokenize-header
1323                             (setq newsgroups
1324                                   (mail-fetch-field "newsgroups"))
1325                             ", "))
1326                    1)
1327                (or (not (setq followup-to (mail-fetch-field "followup-to")))
1328                    (not (member group (message-tokenize-header
1329                                        followup-to ", ")))))
1330           (if followup-to
1331               (gnus-message 1 "Followup-to restricted")
1332             (gnus-message 1 "Not a crossposted article"))
1333         (set-buffer gnus-summary-buffer)
1334         (gnus-summary-reply-with-original 1)
1335         (set-buffer gnus-message-buffer)
1336         (message-goto-body)
1337         (insert (format gnus-crosspost-complaint newsgroups group))
1338         (message-goto-subject)
1339         (re-search-forward " *$")
1340         (replace-match " (crosspost notification)" t t)
1341         (gnus-deactivate-mark)
1342         (when (gnus-y-or-n-p "Send this complaint? ")
1343           (message-send-and-exit))))))
1344
1345 (defun gnus-mail-parse-comma-list ()
1346   (let (accumulated
1347         beg)
1348     (skip-chars-forward " ")
1349     (while (not (eobp))
1350       (setq beg (point))
1351       (skip-chars-forward "^,")
1352       (while (zerop
1353               (save-excursion
1354                 (save-restriction
1355                   (let ((i 0))
1356                     (narrow-to-region beg (point))
1357                     (goto-char beg)
1358                     (logand (progn
1359                               (while (search-forward "\"" nil t)
1360                                 (incf i))
1361                               (if (zerop i) 2 i))
1362                             2)))))
1363         (skip-chars-forward ",")
1364         (skip-chars-forward "^,"))
1365       (skip-chars-backward " ")
1366       (push (buffer-substring beg (point))
1367             accumulated)
1368       (skip-chars-forward "^,")
1369       (skip-chars-forward ", "))
1370     accumulated))
1371
1372 (defun gnus-inews-add-to-address (group)
1373   (let ((to-address (mail-fetch-field "to")))
1374     (when (and to-address
1375                (gnus-alive-p))
1376       ;; This mail group doesn't have a `to-list', so we add one
1377       ;; here.  Magic!
1378       (when (gnus-y-or-n-p
1379              (format "Do you want to add this as `to-list': %s? " to-address))
1380         (gnus-group-add-parameter group (cons 'to-list to-address))))))
1381
1382 (defun gnus-put-message ()
1383   "Put the current message in some group and return to Gnus."
1384   (interactive)
1385   (let ((reply gnus-article-reply)
1386         (winconf gnus-prev-winconf)
1387         (group gnus-newsgroup-name))
1388     (unless (and group
1389                  (not (gnus-group-read-only-p group)))
1390       (setq group (read-string "Put in group: " nil (gnus-writable-groups))))
1391
1392     (when (gnus-group-entry group)
1393       (error "No such group: %s" group))
1394     (save-excursion
1395       (save-restriction
1396         (widen)
1397         (message-narrow-to-headers)
1398         (let ((gnus-deletable-headers nil))
1399           (message-generate-headers
1400            (if (message-news-p)
1401                message-required-news-headers
1402              message-required-mail-headers)))
1403         (goto-char (point-max))
1404         (if (string-match " " group)
1405             (insert "Gcc: \"" group "\"\n")
1406           (insert "Gcc: " group "\n"))
1407         (widen)))
1408     (gnus-inews-do-gcc)
1409     (when (and (get-buffer gnus-group-buffer)
1410                (gnus-buffer-exists-p (car-safe reply))
1411                (cdr reply))
1412       (set-buffer (car reply))
1413       (gnus-summary-mark-article-as-replied (cdr reply)))
1414     (when winconf
1415       (set-window-configuration winconf))))
1416
1417 (defun gnus-article-mail (yank)
1418   "Send a reply to the address near point.
1419 If YANK is non-nil, include the original article."
1420   (interactive "P")
1421   (let ((address
1422          (buffer-substring
1423           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
1424           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
1425     (when address
1426       (gnus-msg-mail address)
1427       (when yank
1428         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
1429
1430 (defvar nntp-server-type)
1431 (defun gnus-bug ()
1432   "Send a bug report to the Gnus maintainers."
1433   (interactive)
1434   (unless (gnus-alive-p)
1435     (error "Gnus has been shut down"))
1436   (gnus-setup-message (if (message-mail-user-agent) 'message 'bug)
1437     (unless (message-mail-user-agent)
1438       (delete-other-windows)
1439       (when gnus-bug-create-help-buffer
1440         (switch-to-buffer "*Gnus Help Bug*")
1441         (erase-buffer)
1442         (insert gnus-bug-message)
1443         (goto-char (point-min)))
1444       (message-pop-to-buffer "*Gnus Bug*"))
1445     (let ((message-this-is-mail t))
1446       (message-setup `((To . ,gnus-maintainer) (Subject . ""))))
1447     (when gnus-bug-create-help-buffer
1448       (push `(gnus-bug-kill-buffer) message-send-actions))
1449     (goto-char (point-min))
1450     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1451     (forward-line 1)
1452     (insert (gnus-version) "\n"
1453             (emacs-version) "\n")
1454     (when (and (boundp 'nntp-server-type)
1455                (stringp nntp-server-type))
1456       (insert nntp-server-type))
1457     (insert "\n\n\n\n\n")
1458     (let (text)
1459       (save-excursion
1460         (set-buffer (gnus-get-buffer-create " *gnus environment info*"))
1461         (erase-buffer)
1462         (gnus-debug)
1463         (setq text (buffer-string)))
1464       (insert "<#part type=application/emacs-lisp disposition=inline description=\"User settings\">\n" text "\n<#/part>"))
1465     (goto-char (point-min))
1466     (search-forward "Subject: " nil t)
1467     (message "")))
1468
1469 (defun gnus-bug-kill-buffer ()
1470   (when (get-buffer "*Gnus Help Bug*")
1471     (kill-buffer "*Gnus Help Bug*")))
1472
1473 (defun gnus-summary-yank-message (buffer n)
1474   "Yank the current article into a composed message."
1475   (interactive
1476    (list (completing-read "Buffer: " (mapcar 'list (message-buffers)) nil t)
1477          current-prefix-arg))
1478   (gnus-summary-iterate n
1479     (let ((gnus-inhibit-treatment t))
1480       (gnus-summary-select-article))
1481     (save-excursion
1482       (set-buffer buffer)
1483       (message-yank-buffer gnus-article-buffer))))
1484
1485 (defun gnus-debug ()
1486   "Attempts to go through the Gnus source file and report what variables have been changed.
1487 The source file has to be in the Emacs load path."
1488   (interactive)
1489   (let ((files gnus-debug-files)
1490         (point (point))
1491         file expr olist sym)
1492     (gnus-message 4 "Please wait while we snoop your variables...")
1493     (sit-for 0)
1494     ;; Go through all the files looking for non-default values for variables.
1495     (save-excursion
1496       (set-buffer (gnus-get-buffer-create " *gnus bug info*"))
1497       (while files
1498         (erase-buffer)
1499         (when (and (setq file (locate-library (pop files)))
1500                    (file-exists-p file))
1501           (insert-file-contents file)
1502           (goto-char (point-min))
1503           (if (not (re-search-forward "^;;* *Internal variables" nil t))
1504               (gnus-message 4 "Malformed sources in file %s" file)
1505             (narrow-to-region (point-min) (point))
1506             (goto-char (point-min))
1507             (while (setq expr (ignore-errors (read (current-buffer))))
1508               (ignore-errors
1509                 (and (or (eq (car expr) 'defvar)
1510                          (eq (car expr) 'defcustom))
1511                      (stringp (nth 3 expr))
1512                      (not (memq (nth 1 expr) gnus-debug-exclude-variables))
1513                      (or (not (boundp (nth 1 expr)))
1514                          (not (equal (eval (nth 2 expr))
1515                                      (symbol-value (nth 1 expr)))))
1516                      (push (nth 1 expr) olist)))))))
1517       (kill-buffer (current-buffer)))
1518     (when (setq olist (nreverse olist))
1519       (insert "------------------ Environment follows ------------------\n\n"))
1520     (while olist
1521       (if (boundp (car olist))
1522           (ignore-errors
1523            (gnus-pp
1524             `(setq ,(car olist)
1525                    ,(if (or (consp (setq sym (symbol-value (car olist))))
1526                             (and (symbolp sym)
1527                                  (not (or (eq sym nil)
1528                                           (eq sym t)))))
1529                         (list 'quote (symbol-value (car olist)))
1530                       (symbol-value (car olist))))))
1531         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
1532       (setq olist (cdr olist)))
1533     (insert "\n\n")
1534     ;; Remove any control chars - they seem to cause trouble for some
1535     ;; mailers.  (Byte-compiled output from the stuff above.)
1536     (goto-char point)
1537     (while (re-search-forward (mm-string-as-multibyte
1538                                "[\000-\010\013-\037\200-\237]") nil t)
1539       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
1540                      t t))))
1541
1542 ;;; Treatment of rejected articles.
1543 ;;; Bounced mail.
1544
1545 (defun gnus-summary-resend-bounced-mail (&optional fetch)
1546   "Re-mail the current message.
1547 This only makes sense if the current message is a bounce message that
1548 contains some mail you have written which has been bounced back to
1549 you.
1550 If FETCH, try to fetch the article that this is a reply to, if indeed
1551 this is a reply."
1552   (interactive "P")
1553   (gnus-summary-select-article t)
1554   (set-buffer gnus-original-article-buffer)
1555   (gnus-setup-message 'compose-bounce
1556     (let* ((references (mail-fetch-field "references"))
1557            (parent (and references (gnus-parent-id references))))
1558       (message-bounce)
1559       ;; If there are references, we fetch the article we answered to.
1560       (and fetch parent
1561            (gnus-summary-refer-article parent)
1562            (gnus-summary-show-all-headers)))))
1563
1564 ;;; Gcc handling.
1565
1566 (defun gnus-inews-group-method (group)
1567   (cond
1568    ;; If the group doesn't exist, we assume
1569    ;; it's an archive group...
1570    ((and (null (gnus-get-info group))
1571          (eq (car (gnus-server-to-method gnus-message-archive-method))
1572              (car (gnus-server-to-method (gnus-group-method group)))))
1573     gnus-message-archive-method)
1574    ;; Use the method.
1575    ((gnus-info-method (gnus-get-info group))
1576     (gnus-info-method (gnus-get-info group)))
1577    ;; Find the method.
1578    (t (gnus-server-to-method (gnus-group-method group)))))
1579
1580 ;; Do Gcc handling, which copied the message over to some group.
1581 (defun gnus-inews-do-gcc (&optional gcc)
1582   (interactive)
1583   (save-excursion
1584     (save-restriction
1585       (message-narrow-to-headers)
1586       (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
1587             (cur (current-buffer))
1588             groups group method group-art
1589             mml-externalize-attachments)
1590         (when gcc
1591           (message-remove-header "gcc")
1592           (widen)
1593           (setq groups (message-unquote-tokens
1594                         (message-tokenize-header gcc " ,")))
1595           ;; Copy the article over to some group(s).
1596           (while (setq group (pop groups))
1597             (unless (gnus-check-server
1598                      (setq method (gnus-inews-group-method group)))
1599               (error "Can't open server %s" (if (stringp method) method
1600                                               (car method))))
1601             (unless (gnus-request-group group nil method)
1602               (gnus-request-create-group group method))
1603             (setq mml-externalize-attachments
1604                   (if (stringp gnus-gcc-externalize-attachments)
1605                       (string-match gnus-gcc-externalize-attachments group)
1606                     gnus-gcc-externalize-attachments))
1607             (save-excursion
1608               (nnheader-set-temp-buffer " *acc*")
1609               (insert-buffer-substring cur)
1610               (message-encode-message-body)
1611               (save-restriction
1612                 (message-narrow-to-headers)
1613                 (let* ((mail-parse-charset message-default-charset)
1614                        (newsgroups-field (save-restriction
1615                                            (message-narrow-to-headers-or-head)
1616                                            (message-fetch-field "Newsgroups")))
1617                        (followup-field (save-restriction
1618                                          (message-narrow-to-headers-or-head)
1619                                          (message-fetch-field "Followup-To")))
1620                        ;; BUG: We really need to get the charset for
1621                        ;; each name in the Newsgroups and Followup-To
1622                        ;; lines to allow crossposting between group
1623                        ;; namess with incompatible character sets.
1624                        ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
1625                        (group-field-charset
1626                         (gnus-group-name-charset
1627                          method (or newsgroups-field "")))
1628                        (followup-field-charset
1629                         (gnus-group-name-charset
1630                          method (or followup-field "")))
1631                        (rfc2047-header-encoding-alist
1632                         (append
1633                          (when group-field-charset
1634                            (list (cons "Newsgroups" group-field-charset)))
1635                          (when followup-field-charset
1636                            (list (cons "Followup-To" followup-field-charset)))
1637                          rfc2047-header-encoding-alist)))
1638                   (mail-encode-encoded-word-buffer)))
1639               (goto-char (point-min))
1640               (when (re-search-forward
1641                      (concat "^" (regexp-quote mail-header-separator) "$")
1642                      nil t)
1643                 (replace-match "" t t ))
1644               (when (or (not (gnus-check-backend-function
1645                               'request-accept-article group))
1646                         (not (setq group-art
1647                                    (gnus-request-accept-article
1648                                     group method t t))))
1649                 (gnus-message 1 "Couldn't store article in group %s: %s"
1650                               group (gnus-status-message method)))
1651               (when (and group-art
1652                          ;; FIXME: Should gcc-mark-as-read work when
1653                          ;; Gnus is not running?
1654                          (gnus-alive-p)
1655                          (or gnus-gcc-mark-as-read
1656                              (and
1657                               (boundp 'gnus-inews-mark-gcc-as-read)
1658                               (symbol-value 'gnus-inews-mark-gcc-as-read))))
1659                 (gnus-group-mark-article-read group (cdr group-art)))
1660               (kill-buffer (current-buffer)))))))))
1661
1662 (defun gnus-inews-insert-gcc ()
1663   "Insert Gcc headers based on `gnus-outgoing-message-group'."
1664   (save-excursion
1665     (save-restriction
1666       (message-narrow-to-headers)
1667       (let* ((group gnus-outgoing-message-group)
1668              (gcc (cond
1669                    ((functionp group)
1670                     (funcall group))
1671                    ((or (stringp group) (list group))
1672                     group))))
1673         (when gcc
1674           (insert "Gcc: "
1675                   (if (stringp gcc)
1676                       (if (string-match " " gcc)
1677                           (concat "\"" gcc "\"")
1678                         gcc)
1679                     (mapconcat (lambda (group)
1680                                  (if (string-match " " group)
1681                                      (concat "\"" group "\"")
1682                                    group))
1683                                gcc " "))
1684                   "\n"))))))
1685
1686 (defun gnus-inews-insert-archive-gcc (&optional group)
1687   "Insert the Gcc to say where the article is to be archived."
1688   (let* ((var gnus-message-archive-group)
1689          (group (or group gnus-newsgroup-name ""))
1690          (gcc-self-val
1691           (and gnus-newsgroup-name
1692                (not (equal gnus-newsgroup-name ""))
1693                (gnus-group-find-parameter
1694                 gnus-newsgroup-name 'gcc-self)))
1695          result
1696          (groups
1697           (cond
1698            ((null gnus-message-archive-method)
1699             ;; Ignore.
1700             nil)
1701            ((stringp var)
1702             ;; Just a single group.
1703             (list var))
1704            ((null var)
1705             ;; We don't want this.
1706             nil)
1707            ((and (listp var) (stringp (car var)))
1708             ;; A list of groups.
1709             var)
1710            ((functionp var)
1711             ;; A function.
1712             (funcall var group))
1713            (t
1714             ;; An alist of regexps/functions/forms.
1715             (while (and var
1716                         (not
1717                          (setq result
1718                                (cond
1719                                 ((stringp (caar var))
1720                                  ;; Regexp.
1721                                  (when (string-match (caar var) group)
1722                                    (cdar var)))
1723                                 ((functionp (car var))
1724                                  ;; Function.
1725                                  (funcall (car var) group))
1726                                 (t
1727                                  (eval (car var)))))))
1728               (setq var (cdr var)))
1729             result)))
1730          name)
1731     (when (or groups gcc-self-val)
1732       (when (stringp groups)
1733         (setq groups (list groups)))
1734       (save-excursion
1735         (save-restriction
1736           (message-narrow-to-headers)
1737           (goto-char (point-max))
1738           (insert "Gcc: ")
1739           (if gcc-self-val
1740               ;; Use the `gcc-self' param value instead.
1741               (progn
1742                 (insert
1743                  (if (stringp gcc-self-val)
1744                      (if (string-match " " gcc-self-val)
1745                          (concat "\"" gcc-self-val "\"")
1746                        gcc-self-val)
1747                    ;; In nndoc groups, we use the parent group name
1748                    ;; instead of the current group.
1749                    (let ((group (or (gnus-group-find-parameter
1750                                      gnus-newsgroup-name 'parent-group)
1751                                     group)))
1752                      (if (string-match " " group)
1753                          (concat "\"" group "\"")
1754                        group))))
1755                 (if (not (eq gcc-self-val 'none))
1756                     (insert "\n")
1757                   (gnus-delete-line)))
1758             ;; Use the list of groups.
1759             (while (setq name (pop groups))
1760               (let ((str (if (string-match ":" name)
1761                              name
1762                            (gnus-group-prefixed-name
1763                             name gnus-message-archive-method))))
1764                 (insert (if (string-match " " str)
1765                             (concat "\"" str "\"")
1766                           str)))
1767               (when groups
1768                 (insert " ")))
1769             (insert "\n")))))))
1770
1771 (defun gnus-mailing-list-followup-to ()
1772   "Look at the headers in the current buffer and return a Mail-Followup-To address."
1773   (let ((x-been-there (gnus-fetch-original-field "x-beenthere"))
1774         (list-post (gnus-fetch-original-field "list-post")))
1775     (when (and list-post
1776                (string-match "mailto:\\([^>]+\\)" list-post))
1777       (setq list-post (match-string 1 list-post)))
1778     (or list-post
1779         x-been-there)))
1780
1781 ;;; Posting styles.
1782
1783 (defun gnus-configure-posting-styles (&optional group-name)
1784   "Configure posting styles according to `gnus-posting-styles'."
1785   (unless gnus-inhibit-posting-styles
1786     (let ((group (or group-name gnus-newsgroup-name ""))
1787           (styles gnus-posting-styles)
1788           style match attribute value v results
1789           filep name address element)
1790       ;; If the group has a posting-style parameter, add it at the end with a
1791       ;; regexp matching everything, to be sure it takes precedence over all
1792       ;; the others.
1793       (when gnus-newsgroup-name
1794         (let ((tmp-style (gnus-group-find-parameter group 'posting-style t)))
1795           (when tmp-style
1796             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1797       ;; Go through all styles and look for matches.
1798       (dolist (style styles)
1799         (setq match (pop style))
1800         (goto-char (point-min))
1801         (when (cond
1802                ((stringp match)
1803                 ;; Regexp string match on the group name.
1804                 (string-match match group))
1805                ((eq match 'header)
1806                 ;; Obsolete format of header match.
1807                 (and (gnus-buffer-live-p gnus-article-copy)
1808                      (with-current-buffer gnus-article-copy
1809                        (save-restriction
1810                          (nnheader-narrow-to-headers)
1811                          (let ((header (message-fetch-field (pop style))))
1812                            (and header
1813                                 (string-match (pop style) header)))))))
1814                ((or (symbolp match)
1815                     (functionp match))
1816                 (cond
1817                  ((functionp match)
1818                   ;; Function to be called.
1819                   (funcall match))
1820                  ((boundp match)
1821                   ;; Variable to be checked.
1822                   (symbol-value match))))
1823                ((listp match)
1824                 (cond
1825                  ((eq (car match) 'header)
1826                   ;; New format of header match.
1827                   (and (gnus-buffer-live-p gnus-article-copy)
1828                        (with-current-buffer gnus-article-copy
1829                          (save-restriction
1830                            (nnheader-narrow-to-headers)
1831                            (let ((header (message-fetch-field (nth 1 match))))
1832                              (and header
1833                                   (string-match (nth 2 match) header)))))))
1834                  (t
1835                   ;; This is a form to be evaled.
1836                   (eval match)))))
1837           ;; We have a match, so we set the variables.
1838           (dolist (attribute style)
1839             (setq element (pop attribute)
1840                   filep nil)
1841             (setq value
1842                   (cond
1843                    ((eq (car attribute) :file)
1844                     (setq filep t)
1845                     (cadr attribute))
1846                    ((eq (car attribute) :value)
1847                     (cadr attribute))
1848                    (t
1849                     (car attribute))))
1850             ;; We get the value.
1851             (setq v
1852                   (cond
1853                    ((stringp value)
1854                     value)
1855                    ((or (symbolp value)
1856                         (functionp value))
1857                     (cond ((functionp value)
1858                            (funcall value))
1859                           ((boundp value)
1860                            (symbol-value value))))
1861                    ((listp value)
1862                     (eval value))))
1863             ;; Translate obsolescent value.
1864             (cond
1865              ((eq element 'signature-file)
1866               (setq element 'signature
1867                     filep t))
1868              ((eq element 'x-face-file)
1869               (setq element 'x-face
1870                     filep t)))
1871             ;; Get the contents of file elems.
1872             (when (and filep v)
1873               (setq v (with-temp-buffer
1874                         (insert-file-contents v)
1875                         (buffer-substring
1876                          (point-min)
1877                          (progn
1878                            (goto-char (point-max))
1879                            (if (zerop (skip-chars-backward "\n"))
1880                                (point)
1881                              (1+ (point))))))))
1882             (setq results (delq (assoc element results) results))
1883             (push (cons element v) results))))
1884       ;; Now we have all the styles, so we insert them.
1885       (setq name (assq 'name results)
1886             address (assq 'address results))
1887       (setq results (delq name (delq address results)))
1888       (gnus-make-local-hook 'message-setup-hook)
1889       (setq results (sort results (lambda (x y)
1890                                     (string-lessp (car x) (car y)))))
1891       (dolist (result results)
1892         (add-hook 'message-setup-hook
1893                   (cond
1894                    ((eq 'eval (car result))
1895                     'ignore)
1896                    ((eq 'body (car result))
1897                     `(lambda ()
1898                        (save-excursion
1899                          (message-goto-body)
1900                          (insert ,(cdr result)))))
1901                    ((eq 'signature (car result))
1902                     (set (make-local-variable 'message-signature) nil)
1903                     (set (make-local-variable 'message-signature-file) nil)
1904                     (if (not (cdr result))
1905                         'ignore
1906                       `(lambda ()
1907                          (save-excursion
1908                            (let ((message-signature ,(cdr result)))
1909                              (when message-signature
1910                                (message-insert-signature)))))))
1911                    (t
1912                     (let ((header
1913                            (if (symbolp (car result))
1914                                (capitalize (symbol-name (car result)))
1915                              (car result))))
1916                       `(lambda ()
1917                          (save-excursion
1918                            (message-remove-header ,header)
1919                            (let ((value ,(cdr result)))
1920                              (when value
1921                                (message-goto-eoh)
1922                                (insert ,header ": " value)
1923                                (unless (bolp)
1924                                  (insert "\n")))))))))
1925                   nil 'local))
1926       (when (or name address)
1927         (add-hook 'message-setup-hook
1928                   `(lambda ()
1929                      (set (make-local-variable 'user-mail-address)
1930                           ,(or (cdr address) user-mail-address))
1931                      (let ((user-full-name ,(or (cdr name) (user-full-name)))
1932                            (user-mail-address
1933                             ,(or (cdr address) user-mail-address)))
1934                        (save-excursion
1935                          (message-remove-header "From")
1936                          (message-goto-eoh)
1937                          (insert "From: " (message-make-from) "\n"))))
1938                   nil 'local)))))
1939
1940 ;;; Allow redefinition of functions.
1941
1942 (gnus-ems-redefine)
1943
1944 (provide 'gnus-msg)
1945
1946 ;;; arch-tag: 9f22b2f5-1c0a-49de-916e-4c88e984852b
1947 ;;; gnus-msg.el ends here