Change the message to "available fonts".
[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
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (eval-when-compile (require 'cl))
31
32 (require 'gnus)
33 (require 'gnus-ems)
34 (require 'message)
35 (require 'gnus-art)
36
37 (defcustom gnus-post-method 'current
38   "*Preferred method for posting USENET news.
39
40 If this variable is `current' (which is the default), Gnus will use
41 the \"current\" select method when posting.  If it is nil, Gnus will
42 use the native select method when posting.
43
44 This method will not be used in mail groups and the like, only in
45 \"real\" newsgroups.
46
47 If not nil nor `native', the value must be a valid method as discussed
48 in the documentation of `gnus-select-method'.  It can also be a list of
49 methods.  If that is the case, the user will be queried for what select
50 method to use when posting."
51   :group 'gnus-group-foreign
52   :type `(choice (const nil)
53                  (const current)
54                  (const native)
55                  (sexp :tag "Methods" ,gnus-select-method)))
56
57 (defcustom gnus-outgoing-message-group nil
58   "*All outgoing messages will be put in this group.
59 If you want to store all your outgoing mail and articles in the group
60 \"nnml:archive\", you set this variable to that value.  This variable
61 can also be a list of group names.
62
63 If you want to have greater control over what group to put each
64 message in, you can set this variable to a function that checks the
65 current newsgroup name and then returns a suitable group name (or list
66 of names)."
67   :group 'gnus-message
68   :type '(choice (string :tag "Group")
69                  (function)))
70
71 (defcustom gnus-mailing-list-groups nil
72   "*Regexp matching groups that are really mailing lists.
73 This is useful when you're reading a mailing list that has been
74 gatewayed to a newsgroup, and you want to followup to an article in
75 the group."
76   :group 'gnus-message
77   :type 'regexp)
78
79 (defcustom gnus-add-to-list nil
80   "*If non-nil, add a `to-list' parameter automatically."
81   :group 'gnus-message
82   :type 'boolean)
83
84 (defcustom gnus-crosspost-complaint
85   "Hi,
86
87 You posted the article below with the following Newsgroups header:
88
89 Newsgroups: %s
90
91 The %s group, at least, was an inappropriate recipient
92 of this message.  Please trim your Newsgroups header to exclude this
93 group before posting in the future.
94
95 Thank you.
96
97 "
98   "Format string to be inserted when complaining about crossposts.
99 The first %s will be replaced by the Newsgroups header;
100 the second with the current group name."
101   :group 'gnus-message
102   :type 'string)
103
104 (defcustom gnus-message-setup-hook nil
105   "Hook run after setting up a message buffer."
106   :group 'gnus-message
107   :type 'hook)
108
109 (defcustom gnus-bug-create-help-buffer t
110   "*Should we create the *Gnus Help Bug* buffer?"
111   :group 'gnus-message
112   :type 'boolean)
113
114 (defcustom gnus-posting-styles nil
115   "*Alist of styles to use when posting."
116   :group 'gnus-message
117   :type '(repeat (cons (choice (regexp)
118                                (function)
119                                (variable)
120                                (sexp))
121                        (repeat (list
122                                 (choice (const signature)
123                                         (const signature-file)
124                                         (const organization)
125                                         (const address)
126                                         (const name)
127                                         (const body)
128                                         (string :tag "Header"))
129                                 (choice (string)
130                                         (function)
131                                         (variable)
132                                         (sexp)))))))
133
134 (defcustom gnus-inews-mark-gcc-as-read nil
135   "If non-nil, automatically mark Gcc articles as read."
136   :group 'gnus-message
137   :type 'boolean)
138
139 (defcustom gnus-group-posting-charset-alist
140   '(("^\\(no\\|fr\\)\\.[^,]*\\(,[ \t\n]*\\(no\\|fr\\)\\.[^,]*\\)*$" iso-8859-1 (iso-8859-1))
141     ("^\\(fido7\\|relcom\\)\\.[^,]*\\(,[ \t\n]*\\(fido7\\|relcom\\)\\.[^,]*\\)*$" koi8-r (koi8-r))
142     (message-this-is-mail nil nil)
143     (message-this-is-news nil t))
144   "Alist of regexps and permitted unencoded charsets for posting.
145 Each element of the alist has the form (TEST HEADER BODY-LIST), where
146 TEST is either a regular expression matching the newsgroup header or a
147 variable to query,
148 HEADER is the charset which may be left unencoded in the header (nil
149 means encode all charsets),
150 BODY-LIST is a list of charsets which may be encoded using 8bit
151 content-transfer encoding in the body, or one of the special values
152 nil (always encode using quoted-printable) or t (always use 8bit).
153
154 Note that any value other than nil for HEADER infringes some RFCs, so
155 use this option with care."
156   :type '(repeat (list :tag "Permitted unencoded charsets"
157                   (choice :tag "Where"
158                    (regexp :tag "Group")
159                    (const :tag "Mail message" :value message-this-is-mail)
160                    (const :tag "News article" :value message-this-is-news))
161                   (choice :tag "Header"
162                    (const :tag "None" nil)
163                    (symbol :tag "Charset"))
164                   (choice :tag "Body"
165                           (const :tag "Any" :value t)
166                           (const :tag "None" :value nil)
167                           (repeat :tag "Charsets"
168                                   (symbol :tag "Charset")))))
169   :group 'gnus-charset)
170
171 ;;; Internal variables.
172
173 (defvar gnus-inhibit-posting-styles nil
174   "Inhibit the use of posting styles.")
175
176 (defvar gnus-message-buffer "*Mail Gnus*")
177 (defvar gnus-article-copy nil)
178 (defvar gnus-check-before-posting nil)
179 (defvar gnus-last-posting-server nil)
180 (defvar gnus-message-group-art nil)
181
182 (defvar gnus-msg-force-broken-reply-to nil)
183
184 (defconst gnus-bug-message
185   "Sending a bug report to the Gnus Towers.
186 ========================================
187
188 The buffer below is a mail buffer.  When you press `C-c C-c', it will
189 be sent to the Gnus Bug Exterminators.
190
191 The thing near the bottom of the buffer is how the environment
192 settings will be included in the mail.  Please do not delete that.
193 They will tell the Bug People what your environment is, so that it
194 will be easier to locate the bugs.
195
196 If you have found a bug that makes Emacs go \"beep\", set
197 debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
198 and include the backtrace in your bug report.
199
200 Please describe the bug in annoying, painstaking detail.
201
202 Thank you for your help in stamping out bugs.
203 ")
204
205 (eval-and-compile
206   (autoload 'gnus-uu-post-news "gnus-uu" nil t)
207   (autoload 'news-setup "rnewspost")
208   (autoload 'news-reply-mode "rnewspost")
209   (autoload 'rmail-dont-reply-to "mail-utils")
210   (autoload 'rmail-output "rmailout"))
211
212 \f
213 ;;;
214 ;;; Gnus Posting Functions
215 ;;;
216
217 (gnus-define-keys (gnus-summary-send-map "S" gnus-summary-mode-map)
218   "p" gnus-summary-post-news
219   "f" gnus-summary-followup
220   "F" gnus-summary-followup-with-original
221   "c" gnus-summary-cancel-article
222   "s" gnus-summary-supersede-article
223   "r" gnus-summary-reply
224   "y" gnus-summary-yank-message
225   "R" gnus-summary-reply-with-original
226   "w" gnus-summary-wide-reply
227   "W" gnus-summary-wide-reply-with-original
228   "v" gnus-summary-very-wide-reply
229   "W" gnus-summary-very-wide-reply-with-original
230   "n" gnus-summary-followup-to-mail
231   "N" gnus-summary-followup-to-mail-with-original
232   "m" gnus-summary-mail-other-window
233   "u" gnus-uu-post-news
234   "\M-c" gnus-summary-mail-crosspost-complaint
235   "Br" gnus-summary-reply-broken-reply-to
236   "BR" gnus-summary-reply-broken-reply-to-with-original
237   "om" gnus-summary-mail-forward
238   "op" gnus-summary-post-forward
239   "Om" gnus-uu-digest-mail-forward
240   "Op" gnus-uu-digest-post-forward)
241
242 (gnus-define-keys (gnus-send-bounce-map "D" gnus-summary-send-map)
243   "b" gnus-summary-resend-bounced-mail
244   ;; "c" gnus-summary-send-draft
245   "r" gnus-summary-resend-message)
246
247 ;;; Internal functions.
248
249 (defvar gnus-article-reply nil)
250 (defmacro gnus-setup-message (config &rest forms)
251   (let ((winconf (make-symbol "gnus-setup-message-winconf"))
252         (buffer (make-symbol "gnus-setup-message-buffer"))
253         (article (make-symbol "gnus-setup-message-article"))
254         (group (make-symbol "gnus-setup-message-group")))
255     `(let ((,winconf (current-window-configuration))
256            (,buffer (buffer-name (current-buffer)))
257            (,article gnus-article-reply)
258            (,group gnus-newsgroup-name)
259            (message-header-setup-hook
260             (copy-sequence message-header-setup-hook))
261            (mbl mml-buffer-list)
262            (message-mode-hook (copy-sequence message-mode-hook)))
263        (setq mml-buffer-list nil)
264        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
265        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
266        (add-hook 'message-mode-hook 'gnus-configure-posting-styles)
267        (unwind-protect
268            (progn
269              ,@forms)
270          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config)
271          (gnus-inews-insert-draft-meta-information ,group ,article)
272          (setq gnus-message-buffer (current-buffer))
273          (set (make-local-variable 'gnus-message-group-art)
274               (cons ,group ,article))
275          (set (make-local-variable 'gnus-newsgroup-name) ,group)
276          (gnus-run-hooks 'gnus-message-setup-hook)
277          (if (eq major-mode 'message-mode)
278              (let ((mbl1 mml-buffer-list))
279                (setq mml-buffer-list mbl)  ;; Global value
280                (set (make-local-variable 'mml-buffer-list) mbl1);; Local value
281                ;; LOCAL argument of add-hook differs between GNU Emacs
282                ;; and XEmacs. make-local-hook makes sure they are local.
283                (make-local-hook 'kill-buffer-hook)
284                (make-local-hook 'change-major-mode-hook)
285                (add-hook 'change-major-mode-hook 'mml-destroy-buffers nil t)
286                (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))
287            (mml-destroy-buffers)
288            (setq mml-buffer-list mbl)))
289        (gnus-add-buffer)
290        (gnus-configure-windows ,config t)
291        (set-buffer-modified-p nil))))
292
293 (defun gnus-inews-insert-draft-meta-information (group article)
294   (save-excursion
295     (when (and group
296                (not (string= group ""))
297                (not (message-fetch-field gnus-draft-meta-information-header)))
298       (goto-char (point-min))
299       (insert gnus-draft-meta-information-header ": (\"" group "\" "
300               (if article (number-to-string
301                            (if (listp article)
302                                (car article)
303                              article)) "\"\"")
304               ")\n"))))
305
306 ;;;###autoload
307 (defun gnus-msg-mail (&optional to subject other-headers continue
308                                 switch-action yank-action send-actions)
309   "Start editing a mail message to be sent.
310 Like `message-mail', but with Gnus paraphernalia, particularly the
311 Gcc: header for archiving purposes."
312   (interactive)
313   (let ((buf (current-buffer))
314         mail-buf)
315     (gnus-setup-message 'message
316       (message-mail to subject other-headers continue
317                     nil yank-action send-actions))
318     (when switch-action
319       (setq mail-buf (current-buffer))
320       (switch-to-buffer buf)
321       (apply switch-action mail-buf nil)))
322   ;; COMPOSEFUNC should return t if succeed.  Undocumented ???
323   t)
324
325 (defvar save-selected-window-window)
326
327 ;;;###autoload
328 (defun gnus-button-mailto (address)
329   "Mail to ADDRESS."
330   (set-buffer (gnus-copy-article-buffer))
331   (gnus-setup-message 'message
332     (message-reply address))
333   (and (boundp 'save-selected-window-window)
334        (not (window-live-p save-selected-window-window))
335        (setq save-selected-window-window (selected-window))))
336
337 ;;;###autoload
338 (defun gnus-button-reply (&optional to-address wide)
339   "Like `message-reply'."
340   (interactive)
341   (gnus-setup-message 'message
342     (message-reply to-address wide))
343   (and (boundp 'save-selected-window-window)
344        (not (window-live-p save-selected-window-window))
345        (setq save-selected-window-window (selected-window))))
346
347 ;;;###autoload
348 (define-mail-user-agent 'gnus-user-agent
349   'gnus-msg-mail 'message-send-and-exit
350   'message-kill-buffer 'message-send-hook)
351
352 (defun gnus-setup-posting-charset (group)
353   (let ((alist gnus-group-posting-charset-alist)
354         (group (or group ""))
355         elem)
356     (when group
357       (catch 'found
358         (while (setq elem (pop alist))
359           (when (or (and (stringp (car elem))
360                          (string-match (car elem) group))
361                     (and (gnus-functionp (car elem))
362                          (funcall (car elem) group))
363                     (and (symbolp (car elem))
364                          (symbol-value (car elem))))
365             (throw 'found (cons (cadr elem) (caddr elem)))))))))
366
367 (defun gnus-inews-add-send-actions (winconf buffer article &optional config)
368   (make-local-hook 'message-sent-hook)
369   (add-hook 'message-sent-hook (if gnus-agent 'gnus-agent-possibly-do-gcc
370                                  'gnus-inews-do-gcc) nil t)
371   (when gnus-agent
372     (make-local-hook 'message-header-hook)
373     (add-hook 'message-header-hook 'gnus-agent-possibly-save-gcc nil t))
374   (setq message-post-method
375         `(lambda (arg)
376            (gnus-post-method arg ,gnus-newsgroup-name)))
377   (setq message-newsreader (setq message-mailer (gnus-extended-version)))
378   (message-add-action
379    `(set-window-configuration ,winconf) 'exit 'postpone 'kill)
380   (message-add-action
381    `(when (gnus-buffer-exists-p ,buffer)
382       (save-excursion
383         (set-buffer ,buffer)
384         ,(when article
385            (if (eq config 'forward)
386                `(gnus-summary-mark-article-as-forwarded ',article)
387              `(gnus-summary-mark-article-as-replied ',article)))))
388    'send))
389
390 (put 'gnus-setup-message 'lisp-indent-function 1)
391 (put 'gnus-setup-message 'edebug-form-spec '(form body))
392
393 ;;; Post news commands of Gnus group mode and summary mode
394
395 (defun gnus-group-mail (&optional arg)
396   "Start composing a mail.
397 If ARG, use the group under the point to find a posting style.
398 If ARG is 1, prompt for a group name to find the posting style."
399   (interactive "P")
400   ;; We can't `let' gnus-newsgroup-name here, since that leads
401   ;; to local variables leaking.
402   (let ((group gnus-newsgroup-name)
403         (buffer (current-buffer)))
404     (unwind-protect
405         (progn
406           (setq gnus-newsgroup-name
407                 (if arg
408                     (if (= 1 (prefix-numeric-value arg))
409                         (completing-read "Use posting style of group: "
410                                          gnus-active-hashtb nil
411                                          (gnus-read-active-file-p))
412                       (gnus-group-group-name))
413                   ""))
414           (gnus-setup-message 'message (message-mail)))
415       (save-excursion
416         (set-buffer buffer)
417         (setq gnus-newsgroup-name group)))))
418
419 (defun gnus-group-post-news (&optional arg)
420   "Start composing a news message.
421 If ARG, post to the group under point.
422 If ARG is 1, prompt for a group name."
423   (interactive "P")
424   ;; Bind this variable here to make message mode hooks work ok.
425   (let ((gnus-newsgroup-name
426          (if arg
427              (if (= 1 (prefix-numeric-value arg))
428                  (completing-read "Newsgroup: " gnus-active-hashtb nil
429                                   (gnus-read-active-file-p))
430                (gnus-group-group-name))
431            "")))
432     (gnus-post-news 'post gnus-newsgroup-name)))
433
434 (defun gnus-summary-post-news ()
435   "Start composing a news message."
436   (interactive)
437   (gnus-post-news 'post gnus-newsgroup-name))
438
439 (defun gnus-summary-followup (yank &optional force-news)
440   "Compose a followup to an article.
441 If prefix argument YANK is non-nil, original article is yanked automatically."
442   (interactive
443    (list (and current-prefix-arg
444               (gnus-summary-work-articles 1))))
445   (when yank
446     (gnus-summary-goto-subject (car yank)))
447   (save-window-excursion
448     (gnus-summary-select-article))
449   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
450         (gnus-newsgroup-name gnus-newsgroup-name))
451     ;; Send a followup.
452     (gnus-post-news nil gnus-newsgroup-name
453                     headers gnus-article-buffer
454                     yank nil force-news)))
455
456 (defun gnus-summary-followup-with-original (n &optional force-news)
457   "Compose a followup to an article and include the original article."
458   (interactive "P")
459   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
460
461 (defun gnus-summary-followup-to-mail (&optional arg)
462   "Followup to the current mail message via news."
463   (interactive
464    (list (and current-prefix-arg
465               (gnus-summary-work-articles 1))))
466   (gnus-summary-followup arg t))
467
468 (defun gnus-summary-followup-to-mail-with-original (&optional arg)
469   "Followup to the current mail message via news."
470   (interactive "P")
471   (gnus-summary-followup (gnus-summary-work-articles arg) t))
472
473 (defun gnus-inews-yank-articles (articles)
474   (let (beg article)
475     (message-goto-body)
476     (while (setq article (pop articles))
477       (save-window-excursion
478         (set-buffer gnus-summary-buffer)
479         (gnus-summary-select-article nil nil nil article)
480         (gnus-summary-remove-process-mark article))
481       (gnus-copy-article-buffer)
482       (let ((message-reply-buffer gnus-article-copy)
483             (message-reply-headers
484              (with-current-buffer gnus-article-copy
485                ;; The headers are decoded.
486                (nnheader-parse-head t))))
487         (message-yank-original)
488         (setq beg (or beg (mark t))))
489       (when articles
490         (insert "\n")))
491     (push-mark)
492     (goto-char beg)))
493
494 (defun gnus-summary-cancel-article (&optional n symp)
495   "Cancel an article you posted.
496 Uses the process-prefix convention.  If given the symbolic
497 prefix `a', cancel using the standard posting method; if not
498 post using the current select method."
499   (interactive (gnus-interactive "P\ny"))
500   (let ((articles (gnus-summary-work-articles n))
501         (message-post-method
502          `(lambda (arg)
503             (gnus-post-method (not (eq symp 'a)) ,gnus-newsgroup-name)))
504         article)
505     (while (setq article (pop articles))
506       (when (gnus-summary-select-article t nil nil article)
507         (when (gnus-eval-in-buffer-window gnus-original-article-buffer
508                 (message-cancel-news))
509           (gnus-summary-mark-as-read article gnus-canceled-mark)
510           (gnus-cache-remove-article 1))
511         (gnus-article-hide-headers-if-wanted))
512       (gnus-summary-remove-process-mark article))))
513
514 (defun gnus-summary-supersede-article ()
515   "Compose an article that will supersede a previous article.
516 This is done simply by taking the old article and adding a Supersedes
517 header line with the old Message-ID."
518   (interactive)
519   (let ((article (gnus-summary-article-number)))
520     (gnus-setup-message 'reply-yank
521       (gnus-summary-select-article t)
522       (set-buffer gnus-original-article-buffer)
523       (message-supersede)
524       (push
525        `((lambda ()
526            (when (gnus-buffer-exists-p ,gnus-summary-buffer)
527              (save-excursion
528                (set-buffer ,gnus-summary-buffer)
529                (gnus-cache-possibly-remove-article ,article nil nil nil t)
530                (gnus-summary-mark-as-read ,article gnus-canceled-mark)))))
531        message-send-actions))))
532
533 \f
534
535 (defun gnus-copy-article-buffer (&optional article-buffer)
536   ;; make a copy of the article buffer with all text properties removed
537   ;; this copy is in the buffer gnus-article-copy.
538   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
539   ;; this buffer should be passed to all mail/news reply/post routines.
540   (setq gnus-article-copy (gnus-get-buffer-create " *gnus article copy*"))
541   (save-excursion
542     (set-buffer gnus-article-copy)
543     (mm-enable-multibyte))
544   (let ((article-buffer (or article-buffer gnus-article-buffer))
545         end beg)
546     (if (not (and (get-buffer article-buffer)
547                   (gnus-buffer-exists-p article-buffer)))
548         (error "Can't find any article buffer")
549       (save-excursion
550         (set-buffer article-buffer)
551         (let ((gnus-newsgroup-charset (or gnus-article-charset
552                                           gnus-newsgroup-charset))
553               (gnus-newsgroup-ignored-charsets
554                (or gnus-article-ignored-charsets
555                    gnus-newsgroup-ignored-charsets)))
556           (save-restriction
557             ;; Copy over the (displayed) article buffer, delete
558             ;; hidden text and remove text properties.
559             (widen)
560             (copy-to-buffer gnus-article-copy (point-min) (point-max))
561             (set-buffer gnus-article-copy)
562             (gnus-article-delete-text-of-type 'annotation)
563             (gnus-remove-text-with-property 'gnus-prev)
564             (gnus-remove-text-with-property 'gnus-next)
565             (insert
566              (prog1
567                  (buffer-substring-no-properties (point-min) (point-max))
568                (erase-buffer)))
569             ;; Find the original headers.
570             (set-buffer gnus-original-article-buffer)
571             (goto-char (point-min))
572             (while (looking-at message-unix-mail-delimiter)
573               (forward-line 1))
574             (setq beg (point))
575             (setq end (or (message-goto-body) beg))
576             ;; Delete the headers from the displayed articles.
577             (set-buffer gnus-article-copy)
578             (delete-region (goto-char (point-min))
579                            (or (message-goto-body) (point-max)))
580             ;; Insert the original article headers.
581             (insert-buffer-substring gnus-original-article-buffer beg end)
582             (article-decode-encoded-words))))
583       gnus-article-copy)))
584
585 (defun gnus-post-news (post &optional group header article-buffer yank subject
586                             force-news)
587   (when article-buffer
588     (gnus-copy-article-buffer))
589   (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number)))
590         (add-to-list gnus-add-to-list))
591     (gnus-setup-message (cond (yank 'reply-yank)
592                               (article-buffer 'reply)
593                               (t 'message))
594       (let* ((group (or group gnus-newsgroup-name))
595              (charset (gnus-group-name-charset nil group))
596              (pgroup group)
597              to-address to-group mailing-list to-list
598              newsgroup-p)
599         (when group
600           (setq to-address (gnus-parameter-to-address group)
601                 to-group (gnus-group-find-parameter group 'to-group)
602                 to-list (gnus-parameter-to-list group)
603                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
604                 mailing-list (when gnus-mailing-list-groups
605                                (string-match gnus-mailing-list-groups group))
606                 group (gnus-group-name-decode (gnus-group-real-name group)
607                                               charset)))
608         (if (or (and to-group
609                      (gnus-news-group-p to-group))
610                 newsgroup-p
611                 force-news
612                 (and (gnus-news-group-p
613                       (or pgroup gnus-newsgroup-name)
614                       (if header (mail-header-number header)
615                         gnus-current-article))
616                      (not mailing-list)
617                      (not to-list)
618                      (not to-address)))
619             ;; This is news.
620             (if post
621                 (message-news (or to-group group))
622               (set-buffer gnus-article-copy)
623               (gnus-msg-treat-broken-reply-to)
624               (message-followup (if (or newsgroup-p force-news)
625                                     (if (save-restriction
626                                           (article-narrow-to-head)
627                                           (message-fetch-field "newsgroups"))
628                                         nil
629                                       "")
630                                   to-group)))
631           ;; The is mail.
632           (if post
633               (progn
634                 (message-mail (or to-address to-list))
635                 ;; Arrange for mail groups that have no `to-address' to
636                 ;; get that when the user sends off the mail.
637                 (when (and (not to-list)
638                            (not to-address)
639                            add-to-list)
640                   (push (list 'gnus-inews-add-to-address pgroup)
641                         message-send-actions)))
642             (set-buffer gnus-article-copy)
643             (gnus-msg-treat-broken-reply-to)
644             (message-wide-reply to-address)))
645         (when yank
646           (gnus-inews-yank-articles yank))))))
647
648 (defun gnus-msg-treat-broken-reply-to (&optional force)
649   "Remove the Reply-to header iff broken-reply-to."
650   (when (or force
651             (gnus-group-find-parameter
652              gnus-newsgroup-name 'broken-reply-to))
653     (save-restriction
654       (message-narrow-to-head)
655       (message-remove-header "reply-to"))))
656
657 (defun gnus-post-method (arg group &optional silent)
658   "Return the posting method based on GROUP and ARG.
659 If SILENT, don't prompt the user."
660   (let ((gnus-post-method (or (gnus-parameter-post-method group)
661                               gnus-post-method))
662         (group-method (gnus-find-method-for-group group)))
663     (cond
664      ;; If the group-method is nil (which shouldn't happen) we use
665      ;; the default method.
666      ((null group-method)
667       (or (and (null (eq gnus-post-method 'active)) gnus-post-method)
668           gnus-select-method message-post-method))
669      ;; We want the inverse of the default
670      ((and arg (not (eq arg 0)))
671       (if (eq gnus-post-method 'active)
672           gnus-select-method
673         group-method))
674      ;; We query the user for a post method.
675      ((or arg
676           (and gnus-post-method
677                (not (eq gnus-post-method 'current))
678                (listp (car gnus-post-method))))
679       (let* ((methods
680               ;; Collect all methods we know about.
681               (append
682                (when (and gnus-post-method
683                           (not (eq gnus-post-method 'current)))
684                  (if (listp (car gnus-post-method))
685                      gnus-post-method
686                    (list gnus-post-method)))
687                gnus-secondary-select-methods
688                (mapcar 'cdr gnus-server-alist)
689                (mapcar 'car gnus-opened-servers)
690                (list gnus-select-method)
691                (list group-method)))
692              method-alist post-methods method)
693         ;; Weed out all mail methods.
694         (while methods
695           (setq method (gnus-server-get-method "" (pop methods)))
696           (when (and (or (gnus-method-option-p method 'post)
697                          (gnus-method-option-p method 'post-mail))
698                      (not (member method post-methods)))
699             (push method post-methods)))
700         ;; Create a name-method alist.
701         (setq method-alist
702               (mapcar
703                (lambda (m)
704                  (if (equal (cadr m) "")
705                      (list (symbol-name (car m)) m)
706                    (list (concat (cadr m) " (" (symbol-name (car m)) ")") m)))
707                post-methods))
708         ;; Query the user.
709         (cadr
710          (assoc
711           (setq gnus-last-posting-server
712                 (if (and silent
713                          gnus-last-posting-server)
714                     ;; Just use the last value.
715                     gnus-last-posting-server
716                   (completing-read
717                    "Posting method: " method-alist nil t
718                    (cons (or gnus-last-posting-server "") 0))))
719           method-alist))))
720      ;; Override normal method.
721      ((and (eq gnus-post-method 'current)
722            (not (eq (car group-method) 'nndraft))
723            (gnus-get-function group-method 'request-post t)
724            (not arg))
725       group-method)
726      ((and gnus-post-method
727            (not (eq gnus-post-method 'current)))
728       gnus-post-method)
729      ;; Use the normal select method.
730      (t gnus-select-method))))
731
732 \f
733
734 ;; Dummies to avoid byte-compile warning.
735 (eval-when-compile
736   (defvar nnspool-rejected-article-hook)
737   (defvar xemacs-codename))
738
739 (defun gnus-extended-version ()
740   "Stringified Gnus version and Emacs version."
741   (interactive)
742   (concat
743    "Gnus/" (prin1-to-string (gnus-continuum-version gnus-version) t)
744    " (" gnus-version ")"
745    " "
746    (cond
747     ((string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
748      (concat "Emacs/" (match-string 1 emacs-version)))
749     ((string-match "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)[^(]*\\(\\((beta.*)\\|'\\)\\)?"
750                    emacs-version)
751      (concat (match-string 1 emacs-version)
752              (format "/%d.%d" emacs-major-version emacs-minor-version)
753              (if (match-beginning 3)
754                  (match-string 3 emacs-version)
755                "")
756              (if (boundp 'xemacs-codename)
757                  (concat " (" xemacs-codename ")")
758                "")))
759     (t emacs-version))))
760
761 \f
762 ;;;
763 ;;; Gnus Mail Functions
764 ;;;
765
766 ;;; Mail reply commands of Gnus summary mode
767
768 (defun gnus-summary-reply (&optional yank wide very-wide)
769   "Start composing a mail reply to the current message.
770 If prefix argument YANK is non-nil, the original article is yanked
771 automatically.
772 If WIDE, make a wide reply.
773 If VERY-WIDE, make a very wide reply."
774   (interactive
775    (list (and current-prefix-arg
776               (gnus-summary-work-articles 1))))
777   ;; Stripping headers should be specified with mail-yank-ignored-headers.
778   (when yank
779     (gnus-summary-goto-subject (car yank)))
780   (let ((gnus-article-reply (or yank (gnus-summary-article-number)))
781         (headers ""))
782     (gnus-setup-message (if yank 'reply-yank 'reply)
783       (if (not very-wide)
784           (gnus-summary-select-article)
785         (dolist (article very-wide)
786           (gnus-summary-select-article nil nil nil article)
787           (save-excursion
788             (set-buffer (gnus-copy-article-buffer))
789             (gnus-msg-treat-broken-reply-to)
790             (save-restriction
791               (message-narrow-to-head)
792               (setq headers (concat headers (buffer-string)))))))
793       (set-buffer (gnus-copy-article-buffer))
794       (gnus-msg-treat-broken-reply-to gnus-msg-force-broken-reply-to)
795       (save-restriction
796         (message-narrow-to-head)
797         (when very-wide
798           (erase-buffer)
799           (insert headers))
800         (goto-char (point-max)))
801       (mml-quote-region (point) (point-max))
802       (message-reply nil wide)
803       (when yank
804         (gnus-inews-yank-articles yank)))))
805
806 (defun gnus-summary-reply-with-original (n &optional wide)
807   "Start composing a reply mail to the current message.
808 The original article will be yanked."
809   (interactive "P")
810   (gnus-summary-reply (gnus-summary-work-articles n) wide))
811
812 (defun gnus-summary-reply-broken-reply-to (&optional yank wide very-wide)
813   "Like `gnus-summary-reply' except removing reply-to field.
814 If prefix argument YANK is non-nil, the original article is yanked
815 automatically.
816 If WIDE, make a wide reply.
817 If VERY-WIDE, make a very wide reply."
818   (interactive
819    (list (and current-prefix-arg
820               (gnus-summary-work-articles 1))))
821   (let ((gnus-msg-force-broken-reply-to t))
822     (gnus-summary-reply yank wide very-wide)))
823
824 (defun gnus-summary-reply-broken-reply-to-with-original (n &optional wide)
825   "Like `gnus-summary-reply-with-original' except removing reply-to field.
826 The original article will be yanked."
827   (interactive "P")
828   (gnus-summary-reply-broken-reply-to (gnus-summary-work-articles n) wide))
829
830 (defun gnus-summary-wide-reply (&optional yank)
831   "Start composing a wide reply mail to the current message.
832 If prefix argument YANK is non-nil, the original article is yanked
833 automatically."
834   (interactive
835    (list (and current-prefix-arg
836               (gnus-summary-work-articles 1))))
837   (gnus-summary-reply yank t))
838
839 (defun gnus-summary-wide-reply-with-original (n)
840   "Start composing a wide reply mail to the current message.
841 The original article will be yanked."
842   (interactive "P")
843   (gnus-summary-reply-with-original n t))
844
845 (defun gnus-summary-very-wide-reply (&optional yank)
846   "Start composing a very wide reply mail to the current message.
847 If prefix argument YANK is non-nil, the original article is yanked
848 automatically."
849   (interactive
850    (list (and current-prefix-arg
851               (gnus-summary-work-articles 1))))
852   (gnus-summary-reply yank t (gnus-summary-work-articles yank)))
853
854 (defun gnus-summary-very-wide-reply-with-original (n)
855   "Start composing a very wide reply mail to the current message.
856 The original article will be yanked."
857   (interactive "P")
858   (gnus-summary-reply
859    (gnus-summary-work-articles n) t (gnus-summary-work-articles n)))
860
861 (defun gnus-summary-mail-forward (&optional arg post)
862   "Forward the current message to another user.
863 If ARG is nil, see `message-forward-as-mime' and `message-forward-show-mml';
864 if ARG is 1, decode the message and forward directly inline;
865 if ARG is 2, forward message as an rfc822 MIME section;
866 if ARG is 3, decode message and forward as an rfc822 MIME section;
867 if ARG is 4, forward message directly inline;
868 otherwise, use flipped `message-forward-as-mime'.
869 If POST, post instead of mail."
870   (interactive "P")
871   (let ((message-forward-as-mime message-forward-as-mime)
872         (message-forward-show-mml message-forward-show-mml))
873     (cond
874      ((null arg))
875      ((eq arg 1)
876       (setq message-forward-as-mime nil
877             message-forward-show-mml t))
878      ((eq arg 2)
879       (setq message-forward-as-mime t
880             message-forward-show-mml nil))
881      ((eq arg 3)
882       (setq message-forward-as-mime t
883             message-forward-show-mml t))
884      ((eq arg 4)
885       (setq message-forward-as-mime nil
886             message-forward-show-mml nil))
887      (t
888       (setq message-forward-as-mime (not message-forward-as-mime))))
889     (let ((gnus-article-reply (gnus-summary-article-number)))
890       (gnus-setup-message 'forward
891         (gnus-summary-select-article)
892         (let ((mail-parse-charset gnus-newsgroup-charset)
893               (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
894           (set-buffer gnus-original-article-buffer)
895           (message-forward post))))))
896
897 (defun gnus-summary-resend-message (address n)
898   "Resend the current article to ADDRESS."
899   (interactive
900    (list (message-read-from-minibuffer "Resend message(s) to: ")
901          current-prefix-arg))
902   (let ((articles (gnus-summary-work-articles n))
903         article)
904     (while (setq article (pop articles))
905       (gnus-summary-select-article nil nil nil article)
906       (save-excursion
907         (set-buffer gnus-original-article-buffer)
908         (message-resend address))
909       (gnus-summary-mark-article-as-forwarded article))))
910
911 (defun gnus-summary-post-forward (&optional arg)
912   "Forward the current article to a newsgroup.
913 See `gnus-summary-mail-forward' for ARG."
914   (interactive "P")
915   (gnus-summary-mail-forward arg t))
916
917 (defvar gnus-nastygram-message
918   "The following article was inappropriately posted to %s.\n\n"
919   "Format string to insert in nastygrams.
920 The current group name will be inserted at \"%s\".")
921
922 (defun gnus-summary-mail-nastygram (n)
923   "Send a nastygram to the author of the current article."
924   (interactive "P")
925   (when (or gnus-expert-user
926             (gnus-y-or-n-p
927              "Really send a nastygram to the author of the current article? "))
928     (let ((group gnus-newsgroup-name))
929       (gnus-summary-reply-with-original n)
930       (set-buffer gnus-message-buffer)
931       (message-goto-body)
932       (insert (format gnus-nastygram-message group))
933       (message-send-and-exit))))
934
935 (defun gnus-summary-mail-crosspost-complaint (n)
936   "Send a complaint about crossposting to the current article(s)."
937   (interactive "P")
938   (let ((articles (gnus-summary-work-articles n))
939         article)
940     (while (setq article (pop articles))
941       (set-buffer gnus-summary-buffer)
942       (gnus-summary-goto-subject article)
943       (let ((group (gnus-group-real-name gnus-newsgroup-name))
944             newsgroups followup-to)
945         (gnus-summary-select-article)
946         (set-buffer gnus-original-article-buffer)
947         (if (and (<= (length (message-tokenize-header
948                               (setq newsgroups
949                                     (mail-fetch-field "newsgroups"))
950                               ", "))
951                      1)
952                  (or (not (setq followup-to (mail-fetch-field "followup-to")))
953                      (not (member group (message-tokenize-header
954                                          followup-to ", ")))))
955             (if followup-to
956                 (gnus-message 1 "Followup-to restricted")
957               (gnus-message 1 "Not a crossposted article"))
958           (set-buffer gnus-summary-buffer)
959           (gnus-summary-reply-with-original 1)
960           (set-buffer gnus-message-buffer)
961           (message-goto-body)
962           (insert (format gnus-crosspost-complaint newsgroups group))
963           (message-goto-subject)
964           (re-search-forward " *$")
965           (replace-match " (crosspost notification)" t t)
966           (gnus-deactivate-mark)
967           (when (gnus-y-or-n-p "Send this complaint? ")
968             (message-send-and-exit)))))))
969
970 (defun gnus-summary-mail-other-window ()
971   "Compose mail in other window."
972   (interactive)
973   (gnus-setup-message 'message
974     (message-mail)))
975
976 (defun gnus-mail-parse-comma-list ()
977   (let (accumulated
978         beg)
979     (skip-chars-forward " ")
980     (while (not (eobp))
981       (setq beg (point))
982       (skip-chars-forward "^,")
983       (while (zerop
984               (save-excursion
985                 (save-restriction
986                   (let ((i 0))
987                     (narrow-to-region beg (point))
988                     (goto-char beg)
989                     (logand (progn
990                               (while (search-forward "\"" nil t)
991                                 (incf i))
992                               (if (zerop i) 2 i))
993                             2)))))
994         (skip-chars-forward ",")
995         (skip-chars-forward "^,"))
996       (skip-chars-backward " ")
997       (push (buffer-substring beg (point))
998             accumulated)
999       (skip-chars-forward "^,")
1000       (skip-chars-forward ", "))
1001     accumulated))
1002
1003 (defun gnus-inews-add-to-address (group)
1004   (let ((to-address (mail-fetch-field "to")))
1005     (when (and to-address
1006                (gnus-alive-p))
1007       ;; This mail group doesn't have a `to-list', so we add one
1008       ;; here.  Magic!
1009       (when (gnus-y-or-n-p
1010              (format "Do you want to add this as `to-list': %s " to-address))
1011         (gnus-group-add-parameter group (cons 'to-list to-address))))))
1012
1013 (defun gnus-put-message ()
1014   "Put the current message in some group and return to Gnus."
1015   (interactive)
1016   (let ((reply gnus-article-reply)
1017         (winconf gnus-prev-winconf)
1018         (group gnus-newsgroup-name))
1019     (unless (and group
1020                  (not (gnus-group-read-only-p group)))
1021       (setq group (read-string "Put in group: " nil (gnus-writable-groups))))
1022
1023     (when (gnus-gethash group gnus-newsrc-hashtb)
1024       (error "No such group: %s" group))
1025     (save-excursion
1026       (save-restriction
1027         (widen)
1028         (message-narrow-to-headers)
1029         (let ((gnus-deletable-headers nil))
1030           (message-generate-headers
1031            (if (message-news-p)
1032                message-required-news-headers
1033              message-required-mail-headers)))
1034         (goto-char (point-max))
1035         (insert "Gcc: " group "\n")
1036         (widen)))
1037     (gnus-inews-do-gcc)
1038     (when (and (get-buffer gnus-group-buffer)
1039                (gnus-buffer-exists-p (car-safe reply))
1040                (cdr reply))
1041       (set-buffer (car reply))
1042       (gnus-summary-mark-article-as-replied (cdr reply)))
1043     (when winconf
1044       (set-window-configuration winconf))))
1045
1046 (defun gnus-article-mail (yank)
1047   "Send a reply to the address near point.
1048 If YANK is non-nil, include the original article."
1049   (interactive "P")
1050   (let ((address
1051          (buffer-substring
1052           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
1053           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
1054     (when address
1055       (message-reply address)
1056       (when yank
1057         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
1058
1059 (defvar nntp-server-type)
1060 (defun gnus-bug ()
1061   "Send a bug report to the Gnus maintainers."
1062   (interactive)
1063   (unless (gnus-alive-p)
1064     (error "Gnus has been shut down"))
1065   (gnus-setup-message (if (message-mail-user-agent) 'message 'bug)
1066     (unless (message-mail-user-agent)
1067       (delete-other-windows)
1068       (when gnus-bug-create-help-buffer
1069         (switch-to-buffer "*Gnus Help Bug*")
1070         (erase-buffer)
1071         (insert gnus-bug-message)
1072         (goto-char (point-min)))
1073       (message-pop-to-buffer "*Gnus Bug*"))
1074     (let ((message-this-is-mail t))
1075       (message-setup `((To . ,gnus-maintainer) (Subject . ""))))
1076     (when gnus-bug-create-help-buffer
1077       (push `(gnus-bug-kill-buffer) message-send-actions))
1078     (goto-char (point-min))
1079     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1080     (forward-line 1)
1081     (insert (gnus-version) "\n"
1082             (emacs-version) "\n")
1083     (when (and (boundp 'nntp-server-type)
1084                (stringp nntp-server-type))
1085       (insert nntp-server-type))
1086     (insert "\n\n\n\n\n")
1087     (let (text)
1088       (save-excursion
1089         (set-buffer (gnus-get-buffer-create " *gnus environment info*"))
1090         (erase-buffer)
1091         (gnus-debug)
1092         (setq text (buffer-string)))
1093       (insert "<#part type=application/x-emacs-lisp disposition=inline description=\"User settings\">\n" text "\n<#/part>"))
1094     (goto-char (point-min))
1095     (search-forward "Subject: " nil t)
1096     (message "")))
1097
1098 (defun gnus-bug-kill-buffer ()
1099   (when (get-buffer "*Gnus Help Bug*")
1100     (kill-buffer "*Gnus Help Bug*")))
1101
1102 (defun gnus-summary-yank-message (buffer n)
1103   "Yank the current article into a composed message."
1104   (interactive
1105    (list (completing-read "Buffer: " (mapcar 'list (message-buffers)) nil t)
1106          current-prefix-arg))
1107   (gnus-summary-iterate n
1108     (let ((gnus-display-mime-function nil)
1109           (gnus-inhibit-treatment t))
1110       (gnus-summary-select-article))
1111     (save-excursion
1112       (set-buffer buffer)
1113       (message-yank-buffer gnus-article-buffer))))
1114
1115 (defun gnus-debug ()
1116   "Attempts to go through the Gnus source file and report what variables have been changed.
1117 The source file has to be in the Emacs load path."
1118   (interactive)
1119   (let ((files '("gnus.el" "gnus-sum.el" "gnus-group.el"
1120                  "gnus-art.el" "gnus-start.el" "gnus-async.el"
1121                  "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
1122                  "nnmail.el" "message.el"))
1123         (point (point))
1124         file expr olist sym)
1125     (gnus-message 4 "Please wait while we snoop your variables...")
1126     (sit-for 0)
1127     ;; Go through all the files looking for non-default values for variables.
1128     (save-excursion
1129       (set-buffer (gnus-get-buffer-create " *gnus bug info*"))
1130       (while files
1131         (erase-buffer)
1132         (when (and (setq file (locate-library (pop files)))
1133                    (file-exists-p file))
1134           (insert-file-contents file)
1135           (goto-char (point-min))
1136           (if (not (re-search-forward "^;;* *Internal variables" nil t))
1137               (gnus-message 4 "Malformed sources in file %s" file)
1138             (narrow-to-region (point-min) (point))
1139             (goto-char (point-min))
1140             (while (setq expr (ignore-errors (read (current-buffer))))
1141               (ignore-errors
1142                 (and (or (eq (car expr) 'defvar)
1143                          (eq (car expr) 'defcustom))
1144                      (stringp (nth 3 expr))
1145                      (or (not (boundp (nth 1 expr)))
1146                          (not (equal (eval (nth 2 expr))
1147                                      (symbol-value (nth 1 expr)))))
1148                      (push (nth 1 expr) olist)))))))
1149       (kill-buffer (current-buffer)))
1150     (when (setq olist (nreverse olist))
1151       (insert "------------------ Environment follows ------------------\n\n"))
1152     (while olist
1153       (if (boundp (car olist))
1154           (condition-case ()
1155               (pp `(setq ,(car olist)
1156                          ,(if (or (consp (setq sym (symbol-value (car olist))))
1157                                   (and (symbolp sym)
1158                                        (not (or (eq sym nil)
1159                                                 (eq sym t)))))
1160                               (list 'quote (symbol-value (car olist)))
1161                             (symbol-value (car olist))))
1162                   (current-buffer))
1163             (error
1164              (format "(setq %s 'whatever)\n" (car olist))))
1165         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
1166       (setq olist (cdr olist)))
1167     (insert "\n\n")
1168     ;; Remove any control chars - they seem to cause trouble for some
1169     ;; mailers.  (Byte-compiled output from the stuff above.)
1170     (goto-char point)
1171     (while (re-search-forward "[\000-\010\013-\037\200-\237]" nil t)
1172       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
1173                      t t))))
1174
1175 ;;; Treatment of rejected articles.
1176 ;;; Bounced mail.
1177
1178 (defun gnus-summary-resend-bounced-mail (&optional fetch)
1179   "Re-mail the current message.
1180 This only makes sense if the current message is a bounce message than
1181 contains some mail you have written which has been bounced back to
1182 you.
1183 If FETCH, try to fetch the article that this is a reply to, if indeed
1184 this is a reply."
1185   (interactive "P")
1186   (gnus-summary-select-article t)
1187   (set-buffer gnus-original-article-buffer)
1188   (gnus-setup-message 'compose-bounce
1189     (let* ((references (mail-fetch-field "references"))
1190            (parent (and references (gnus-parent-id references))))
1191       (message-bounce)
1192       ;; If there are references, we fetch the article we answered to.
1193       (and fetch parent
1194            (gnus-summary-refer-article parent)
1195            (gnus-summary-show-all-headers)))))
1196
1197 ;;; Gcc handling.
1198
1199 (defun gnus-inews-group-method (group)
1200   (cond
1201    ;; If the group doesn't exist, we assume
1202    ;; it's an archive group...
1203    ((and (null (gnus-get-info group))
1204          (eq (car (gnus-server-to-method gnus-message-archive-method))
1205              (car (gnus-server-to-method (gnus-group-method group)))))
1206     gnus-message-archive-method)
1207    ;; Use the method.
1208    ((gnus-info-method (gnus-get-info group))
1209     (gnus-info-method (gnus-get-info group)))
1210    ;; Find the method.
1211    (t (gnus-server-to-method (gnus-group-method group)))))
1212
1213 ;; Do Gcc handling, which copied the message over to some group.
1214 (defun gnus-inews-do-gcc (&optional gcc)
1215   (interactive)
1216   (save-excursion
1217     (save-restriction
1218       (message-narrow-to-headers)
1219       (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
1220             (cur (current-buffer))
1221             groups group method group-art)
1222         (when gcc
1223           (message-remove-header "gcc")
1224           (widen)
1225           (setq groups (message-unquote-tokens
1226                         (message-tokenize-header gcc " ,")))
1227           ;; Copy the article over to some group(s).
1228           (while (setq group (pop groups))
1229             (unless (gnus-check-server
1230                      (setq method (gnus-inews-group-method group)))
1231               (error "Can't open server %s" (if (stringp method) method
1232                                               (car method))))
1233             (unless (gnus-request-group group nil method)
1234               (gnus-request-create-group group method))
1235             (save-excursion
1236               (nnheader-set-temp-buffer " *acc*")
1237               (insert-buffer-substring cur)
1238               (message-encode-message-body)
1239               (save-restriction
1240                 (message-narrow-to-headers)
1241                 (let ((mail-parse-charset message-default-charset)
1242                       (rfc2047-header-encoding-alist
1243                        (cons '("Newsgroups" . default)
1244                              rfc2047-header-encoding-alist)))
1245                   (mail-encode-encoded-word-buffer)))
1246               (goto-char (point-min))
1247               (when (re-search-forward
1248                      (concat "^" (regexp-quote mail-header-separator) "$")
1249                      nil t)
1250                 (replace-match "" t t ))
1251               (unless (setq group-art
1252                             (gnus-request-accept-article group method t t))
1253                 (gnus-message 1 "Couldn't store article in group %s: %s"
1254                               group (gnus-status-message method))
1255                 (sit-for 2))
1256               (when (and group-art gnus-inews-mark-gcc-as-read)
1257                 (gnus-group-mark-article-read group (cdr group-art)))
1258               (kill-buffer (current-buffer)))))))))
1259
1260 (defun gnus-inews-insert-gcc ()
1261   "Insert Gcc headers based on `gnus-outgoing-message-group'."
1262   (save-excursion
1263     (save-restriction
1264       (message-narrow-to-headers)
1265       (let* ((group gnus-outgoing-message-group)
1266              (gcc (cond
1267                    ((gnus-functionp group)
1268                     (funcall group))
1269                    ((or (stringp group) (list group))
1270                     group))))
1271         (when gcc
1272           (insert "Gcc: "
1273                   (if (stringp gcc) gcc
1274                     (mapconcat 'identity gcc " "))
1275                   "\n"))))))
1276
1277 (defun gnus-inews-insert-archive-gcc (&optional group)
1278   "Insert the Gcc to say where the article is to be archived."
1279   (let* ((var gnus-message-archive-group)
1280          (group (or group gnus-newsgroup-name ""))
1281          (gcc-self-val
1282           (and gnus-newsgroup-name
1283                (not (equal gnus-newsgroup-name ""))
1284                (gnus-group-find-parameter
1285                 gnus-newsgroup-name 'gcc-self)))
1286          result
1287          (groups
1288           (cond
1289            ((null gnus-message-archive-method)
1290             ;; Ignore.
1291             nil)
1292            ((stringp var)
1293             ;; Just a single group.
1294             (list var))
1295            ((null var)
1296             ;; We don't want this.
1297             nil)
1298            ((and (listp var) (stringp (car var)))
1299             ;; A list of groups.
1300             var)
1301            ((gnus-functionp var)
1302             ;; A function.
1303             (funcall var group))
1304            (t
1305             ;; An alist of regexps/functions/forms.
1306             (while (and var
1307                         (not
1308                          (setq result
1309                                (cond
1310                                 ((stringp (caar var))
1311                                  ;; Regexp.
1312                                  (when (string-match (caar var) group)
1313                                    (cdar var)))
1314                                 ((gnus-functionp (car var))
1315                                  ;; Function.
1316                                  (funcall (car var) group))
1317                                 (t
1318                                  (eval (car var)))))))
1319               (setq var (cdr var)))
1320             result)))
1321          name)
1322     (when (or groups gcc-self-val)
1323       (when (stringp groups)
1324         (setq groups (list groups)))
1325       (save-excursion
1326         (save-restriction
1327           (message-narrow-to-headers)
1328           (goto-char (point-max))
1329           (insert "Gcc: ")
1330           (if gcc-self-val
1331               ;; Use the `gcc-self' param value instead.
1332               (progn
1333                 (insert
1334                  (if (stringp gcc-self-val)
1335                      gcc-self-val
1336                    group))
1337                 (if (not (eq gcc-self-val 'none))
1338                     (insert "\n")
1339                   (progn
1340                     (beginning-of-line)
1341                     (kill-line))))
1342             ;; Use the list of groups.
1343             (while (setq name (pop groups))
1344               (insert (if (string-match ":" name)
1345                           name
1346                         (gnus-group-prefixed-name
1347                          name gnus-message-archive-method)))
1348               (when groups
1349                 (insert " ")))
1350             (insert "\n")))))))
1351
1352 ;;; Posting styles.
1353
1354 (defun gnus-configure-posting-styles ()
1355   "Configure posting styles according to `gnus-posting-styles'."
1356   (unless gnus-inhibit-posting-styles
1357     (let ((group (or gnus-newsgroup-name ""))
1358           (styles gnus-posting-styles)
1359           style match variable attribute value v results
1360           filep name address element)
1361       ;; If the group has a posting-style parameter, add it at the end with a
1362       ;; regexp matching everything, to be sure it takes precedence over all
1363       ;; the others.
1364       (when gnus-newsgroup-name
1365         (let ((tmp-style (gnus-group-find-parameter group 'posting-style t)))
1366           (when tmp-style
1367             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1368       ;; Go through all styles and look for matches.
1369       (dolist (style styles)
1370         (setq match (pop style))
1371         (goto-char (point-min))
1372         (when (cond
1373                ((stringp match)
1374                 ;; Regexp string match on the group name.
1375                 (string-match match group))
1376                ((eq match 'header)
1377                 (and (gnus-buffer-live-p gnus-article-copy)
1378                      (with-current-buffer gnus-article-copy
1379                        (let ((header (message-fetch-field (pop style))))
1380                          (and header
1381                               (string-match (pop style) header))))))
1382                ((or (symbolp match)
1383                     (gnus-functionp match))
1384                 (cond
1385                  ((gnus-functionp match)
1386                   ;; Function to be called.
1387                   (funcall match))
1388                  ((boundp match)
1389                   ;; Variable to be checked.
1390                   (symbol-value match))))
1391                ((listp match)
1392                 ;; This is a form to be evaled.
1393                 (eval match)))
1394           ;; We have a match, so we set the variables.
1395           (dolist (attribute style)
1396             (setq element (pop attribute)
1397                   variable nil
1398                   filep nil)
1399             (setq value
1400                   (cond
1401                    ((eq (car attribute) :file)
1402                     (setq filep t)
1403                     (cadr attribute))
1404                    ((eq (car attribute) :value)
1405                     (cadr attribute))
1406                    (t
1407                     (car attribute))))
1408             ;; We get the value.
1409             (setq v
1410                   (cond
1411                    ((stringp value)
1412                     value)
1413                    ((or (symbolp value)
1414                         (gnus-functionp value))
1415                     (cond ((gnus-functionp value)
1416                            (funcall value))
1417                           ((boundp value)
1418                            (symbol-value value))))
1419                    ((listp value)
1420                     (eval value))))
1421             ;; Translate obsolescent value.
1422             (when (eq element 'signature-file)
1423               (setq element 'signature
1424                     filep t))
1425             ;; Get the contents of file elems.
1426             (when (and filep v)
1427               (setq v (with-temp-buffer
1428                         (insert-file-contents v)
1429                         (buffer-string))))
1430             (setq results (delq (assoc element results) results))
1431             (push (cons element v) results))))
1432       ;; Now we have all the styles, so we insert them.
1433       (setq name (assq 'name results)
1434             address (assq 'address results))
1435       (setq results (delq name (delq address results)))
1436       (make-local-variable 'message-setup-hook)
1437       (dolist (result results)
1438         (add-hook 'message-setup-hook
1439                   (cond
1440                    ((eq 'eval (car result))
1441                     'ignore)
1442                    ((eq 'body (car result))
1443                     `(lambda ()
1444                        (save-excursion
1445                          (message-goto-body)
1446                          (insert ,(cdr result)))))
1447                    ((eq 'signature (car result))
1448                     (set (make-local-variable 'message-signature) nil)
1449                     (set (make-local-variable 'message-signature-file) nil)
1450                     (if (not (cdr result))
1451                         'ignore
1452                       `(lambda ()
1453                          (save-excursion
1454                            (let ((message-signature ,(cdr result)))
1455                              (when message-signature
1456                                (message-insert-signature)))))))
1457                    (t
1458                     (let ((header
1459                            (if (symbolp (car result))
1460                                (capitalize (symbol-name (car result)))
1461                              (car result))))
1462                       `(lambda ()
1463                          (save-excursion
1464                            (message-remove-header ,header)
1465                            (let ((value ,(cdr result)))
1466                              (when value
1467                                (message-goto-eoh)
1468                                (insert ,header ": " value "\n"))))))))))
1469       (when (or name address)
1470         (add-hook 'message-setup-hook
1471                   `(lambda ()
1472                      (set (make-local-variable 'user-mail-address)
1473                           ,(or (cdr address) user-mail-address))
1474                      (let ((user-full-name ,(or (cdr name) (user-full-name)))
1475                            (user-mail-address
1476                             ,(or (cdr address) user-mail-address)))
1477                        (save-excursion
1478                          (message-remove-header "From")
1479                          (message-goto-eoh)
1480                          (insert "From: " (message-make-from) "\n")))))))))
1481
1482 ;;; Allow redefinition of functions.
1483
1484 (gnus-ems-redefine)
1485
1486 (provide 'gnus-msg)
1487
1488 ;;; gnus-msg.el ends here