2001-10-23 Per Abrahamsen <abraham@dina.kvl.dk>
[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 `native', Gnus
42 will 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 `native' nor `current', 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   :link '(custom-manual "(gnus)Posting Server")
53   :type `(choice (const native)
54                  (const current)
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             ;; Decode charsets.
583             (let ((gnus-article-decode-hook
584                    (delq 'article-decode-charset gnus-article-decode-hook)))
585               (run-hooks 'gnus-article-decode-hook)))))
586       gnus-article-copy)))
587
588 (defun gnus-post-news (post &optional group header article-buffer yank subject
589                             force-news)
590   (when article-buffer
591     (gnus-copy-article-buffer))
592   (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number)))
593         (add-to-list gnus-add-to-list))
594     (gnus-setup-message (cond (yank 'reply-yank)
595                               (article-buffer 'reply)
596                               (t 'message))
597       (let* ((group (or group gnus-newsgroup-name))
598              (charset (gnus-group-name-charset nil group))
599              (pgroup group)
600              to-address to-group mailing-list to-list
601              newsgroup-p)
602         (when group
603           (setq to-address (gnus-parameter-to-address group)
604                 to-group (gnus-group-find-parameter group 'to-group)
605                 to-list (gnus-parameter-to-list group)
606                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
607                 mailing-list (when gnus-mailing-list-groups
608                                (string-match gnus-mailing-list-groups group))
609                 group (gnus-group-name-decode (gnus-group-real-name group)
610                                               charset)))
611         (if (or (and to-group
612                      (gnus-news-group-p to-group))
613                 newsgroup-p
614                 force-news
615                 (and (gnus-news-group-p
616                       (or pgroup gnus-newsgroup-name)
617                       (or header gnus-current-article))
618                      (not mailing-list)
619                      (not to-list)
620                      (not to-address)))
621             ;; This is news.
622             (if post
623                 (message-news (or to-group group))
624               (set-buffer gnus-article-copy)
625               (gnus-msg-treat-broken-reply-to)
626               (message-followup (if (or newsgroup-p force-news)
627                                     (if (save-restriction
628                                           (article-narrow-to-head)
629                                           (message-fetch-field "newsgroups"))
630                                         nil
631                                       "")
632                                   to-group)))
633           ;; The is mail.
634           (if post
635               (progn
636                 (message-mail (or to-address to-list))
637                 ;; Arrange for mail groups that have no `to-address' to
638                 ;; get that when the user sends off the mail.
639                 (when (and (not to-list)
640                            (not to-address)
641                            add-to-list)
642                   (push (list 'gnus-inews-add-to-address pgroup)
643                         message-send-actions)))
644             (set-buffer gnus-article-copy)
645             (gnus-msg-treat-broken-reply-to)
646             (message-wide-reply to-address)))
647         (when yank
648           (gnus-inews-yank-articles yank))))))
649
650 (defun gnus-msg-treat-broken-reply-to (&optional force)
651   "Remove the Reply-to header iff broken-reply-to."
652   (when (or force
653             (gnus-group-find-parameter
654              gnus-newsgroup-name 'broken-reply-to))
655     (save-restriction
656       (message-narrow-to-head)
657       (message-remove-header "reply-to"))))
658
659 (defun gnus-post-method (arg group &optional silent)
660   "Return the posting method based on GROUP and ARG.
661 If SILENT, don't prompt the user."
662   (let ((gnus-post-method (or (gnus-parameter-post-method group)
663                               gnus-post-method))
664         (group-method (gnus-find-method-for-group group)))
665     (cond
666      ;; If the group-method is nil (which shouldn't happen) we use
667      ;; the default method.
668      ((null group-method)
669       (or (and (listp gnus-post-method) ;If not current/native/nil
670                (not (listp (car gnus-post-method))) ; and not a list of methods
671                gnus-post-method)        ;then use it.
672           gnus-select-method 
673           message-post-method))
674      ;; We want the inverse of the default
675      ((and arg (not (eq arg 0)))
676       (if (eq gnus-post-method 'current)
677           gnus-select-method
678         group-method))
679      ;; We query the user for a post method.
680      ((or arg
681           (and (listp gnus-post-method)
682                (listp (car gnus-post-method))))
683       (let* ((methods
684               ;; Collect all methods we know about.
685               (append
686                (when (listp gnus-post-method)
687                  (if (listp (car gnus-post-method))
688                      gnus-post-method
689                    (list gnus-post-method)))
690                gnus-secondary-select-methods
691                (mapcar 'cdr gnus-server-alist)
692                (mapcar 'car gnus-opened-servers)
693                (list gnus-select-method)
694                (list group-method)))
695              method-alist post-methods method)
696         ;; Weed out all mail methods.
697         (while methods
698           (setq method (gnus-server-get-method "" (pop methods)))
699           (when (and (or (gnus-method-option-p method 'post)
700                          (gnus-method-option-p method 'post-mail))
701                      (not (member method post-methods)))
702             (push method post-methods)))
703         ;; Create a name-method alist.
704         (setq method-alist
705               (mapcar
706                (lambda (m)
707                  (if (equal (cadr m) "")
708                      (list (symbol-name (car m)) m)
709                    (list (concat (cadr m) " (" (symbol-name (car m)) ")") m)))
710                post-methods))
711         ;; Query the user.
712         (cadr
713          (assoc
714           (setq gnus-last-posting-server
715                 (if (and silent
716                          gnus-last-posting-server)
717                     ;; Just use the last value.
718                     gnus-last-posting-server
719                   (completing-read
720                    "Posting method: " method-alist nil t
721                    (cons (or gnus-last-posting-server "") 0))))
722           method-alist))))
723      ;; Override normal method.
724      ((and (eq gnus-post-method 'current)
725            (not (eq (car group-method) 'nndraft))
726            (gnus-get-function group-method 'request-post t))
727       (assert (not arg))
728       group-method)
729      ;; Use gnus-post-method.
730      ((listp gnus-post-method)          ;A method...
731       (assert (not (listp (car gnus-post-method)))) ;... not a list of methods.
732       gnus-post-method)
733      ;; Use the normal select method (nil or native).
734      (t gnus-select-method))))
735
736 \f
737
738 ;; Dummies to avoid byte-compile warning.
739 (eval-when-compile
740   (defvar nnspool-rejected-article-hook)
741   (defvar xemacs-codename))
742
743 (defun gnus-extended-version ()
744   "Stringified Gnus version and Emacs version."
745   (interactive)
746   (concat
747    "Gnus/" (prin1-to-string (gnus-continuum-version gnus-version) t)
748    " (" gnus-version ")"
749    " "
750    (cond
751     ((string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
752      (concat "Emacs/" (match-string 1 emacs-version)
753              " (" system-configuration ")"))
754     ((string-match "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)[^(]*\\(\\((beta.*)\\|'\\)\\)?"
755                    emacs-version)
756      (concat (match-string 1 emacs-version)
757              (format "/%d.%d" emacs-major-version emacs-minor-version)
758              (if (match-beginning 3)
759                  (match-string 3 emacs-version)
760                "")
761              (if (boundp 'xemacs-codename)
762                  (concat " (" xemacs-codename ", " system-configuration ")")
763                "")))
764     (t emacs-version))))
765
766 \f
767 ;;;
768 ;;; Gnus Mail Functions
769 ;;;
770
771 ;;; Mail reply commands of Gnus summary mode
772
773 (defun gnus-summary-reply (&optional yank wide very-wide)
774   "Start composing a mail reply to the current message.
775 If prefix argument YANK is non-nil, the original article is yanked
776 automatically.
777 If WIDE, make a wide reply.
778 If VERY-WIDE, make a very wide reply."
779   (interactive
780    (list (and current-prefix-arg
781               (gnus-summary-work-articles 1))))
782   ;; Stripping headers should be specified with mail-yank-ignored-headers.
783   (when yank
784     (gnus-summary-goto-subject (car yank)))
785   (let ((gnus-article-reply (or yank (gnus-summary-article-number)))
786         (headers ""))
787     (gnus-setup-message (if yank 'reply-yank 'reply)
788       (if (not very-wide)
789           (gnus-summary-select-article)
790         (dolist (article very-wide)
791           (gnus-summary-select-article nil nil nil article)
792           (save-excursion
793             (set-buffer (gnus-copy-article-buffer))
794             (gnus-msg-treat-broken-reply-to)
795             (save-restriction
796               (message-narrow-to-head)
797               (setq headers (concat headers (buffer-string)))))))
798       (set-buffer (gnus-copy-article-buffer))
799       (gnus-msg-treat-broken-reply-to gnus-msg-force-broken-reply-to)
800       (save-restriction
801         (message-narrow-to-head)
802         (when very-wide
803           (erase-buffer)
804           (insert headers))
805         (goto-char (point-max)))
806       (mml-quote-region (point) (point-max))
807       (message-reply nil wide)
808       (when yank
809         (gnus-inews-yank-articles yank)))))
810
811 (defun gnus-summary-reply-with-original (n &optional wide)
812   "Start composing a reply mail to the current message.
813 The original article will be yanked."
814   (interactive "P")
815   (gnus-summary-reply (gnus-summary-work-articles n) wide))
816
817 (defun gnus-summary-reply-broken-reply-to (&optional yank wide very-wide)
818   "Like `gnus-summary-reply' except removing reply-to field.
819 If prefix argument YANK is non-nil, the original article is yanked
820 automatically.
821 If WIDE, make a wide reply.
822 If VERY-WIDE, make a very wide reply."
823   (interactive
824    (list (and current-prefix-arg
825               (gnus-summary-work-articles 1))))
826   (let ((gnus-msg-force-broken-reply-to t))
827     (gnus-summary-reply yank wide very-wide)))
828
829 (defun gnus-summary-reply-broken-reply-to-with-original (n &optional wide)
830   "Like `gnus-summary-reply-with-original' except removing reply-to field.
831 The original article will be yanked."
832   (interactive "P")
833   (gnus-summary-reply-broken-reply-to (gnus-summary-work-articles n) wide))
834
835 (defun gnus-summary-wide-reply (&optional yank)
836   "Start composing a wide reply mail to the current message.
837 If prefix argument YANK is non-nil, the original article is yanked
838 automatically."
839   (interactive
840    (list (and current-prefix-arg
841               (gnus-summary-work-articles 1))))
842   (gnus-summary-reply yank t))
843
844 (defun gnus-summary-wide-reply-with-original (n)
845   "Start composing a wide reply mail to the current message.
846 The original article will be yanked."
847   (interactive "P")
848   (gnus-summary-reply-with-original n t))
849
850 (defun gnus-summary-very-wide-reply (&optional yank)
851   "Start composing a very wide reply mail to the current message.
852 If prefix argument YANK is non-nil, the original article is yanked
853 automatically."
854   (interactive
855    (list (and current-prefix-arg
856               (gnus-summary-work-articles 1))))
857   (gnus-summary-reply yank t (gnus-summary-work-articles yank)))
858
859 (defun gnus-summary-very-wide-reply-with-original (n)
860   "Start composing a very wide reply mail to the current message.
861 The original article will be yanked."
862   (interactive "P")
863   (gnus-summary-reply
864    (gnus-summary-work-articles n) t (gnus-summary-work-articles n)))
865
866 (defun gnus-summary-mail-forward (&optional arg post)
867   "Forward the current message to another user.
868 If ARG is nil, see `message-forward-as-mime' and `message-forward-show-mml';
869 if ARG is 1, decode the message and forward directly inline;
870 if ARG is 2, forward message as an rfc822 MIME section;
871 if ARG is 3, decode message and forward as an rfc822 MIME section;
872 if ARG is 4, forward message directly inline;
873 otherwise, use flipped `message-forward-as-mime'.
874 If POST, post instead of mail."
875   (interactive "P")
876   (let ((message-forward-as-mime message-forward-as-mime)
877         (message-forward-show-mml message-forward-show-mml))
878     (cond
879      ((null arg))
880      ((eq arg 1)
881       (setq message-forward-as-mime nil
882             message-forward-show-mml t))
883      ((eq arg 2)
884       (setq message-forward-as-mime t
885             message-forward-show-mml nil))
886      ((eq arg 3)
887       (setq message-forward-as-mime t
888             message-forward-show-mml t))
889      ((eq arg 4)
890       (setq message-forward-as-mime nil
891             message-forward-show-mml nil))
892      (t
893       (setq message-forward-as-mime (not message-forward-as-mime))))
894     (let ((gnus-article-reply (gnus-summary-article-number)))
895       (gnus-setup-message 'forward
896         (gnus-summary-select-article)
897         (let ((mail-parse-charset gnus-newsgroup-charset)
898               (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
899           (set-buffer gnus-original-article-buffer)
900           (message-forward post))))))
901
902 (defun gnus-summary-resend-message (address n)
903   "Resend the current article to ADDRESS."
904   (interactive
905    (list (message-read-from-minibuffer "Resend message(s) to: ")
906          current-prefix-arg))
907   (let ((articles (gnus-summary-work-articles n))
908         article)
909     (while (setq article (pop articles))
910       (gnus-summary-select-article nil nil nil article)
911       (save-excursion
912         (set-buffer gnus-original-article-buffer)
913         (message-resend address))
914       (gnus-summary-mark-article-as-forwarded article))))
915
916 (defun gnus-summary-post-forward (&optional arg)
917   "Forward the current article to a newsgroup.
918 See `gnus-summary-mail-forward' for ARG."
919   (interactive "P")
920   (gnus-summary-mail-forward arg t))
921
922 (defvar gnus-nastygram-message
923   "The following article was inappropriately posted to %s.\n\n"
924   "Format string to insert in nastygrams.
925 The current group name will be inserted at \"%s\".")
926
927 (defun gnus-summary-mail-nastygram (n)
928   "Send a nastygram to the author of the current article."
929   (interactive "P")
930   (when (or gnus-expert-user
931             (gnus-y-or-n-p
932              "Really send a nastygram to the author of the current article? "))
933     (let ((group gnus-newsgroup-name))
934       (gnus-summary-reply-with-original n)
935       (set-buffer gnus-message-buffer)
936       (message-goto-body)
937       (insert (format gnus-nastygram-message group))
938       (message-send-and-exit))))
939
940 (defun gnus-summary-mail-crosspost-complaint (n)
941   "Send a complaint about crossposting to the current article(s)."
942   (interactive "P")
943   (let ((articles (gnus-summary-work-articles n))
944         article)
945     (while (setq article (pop articles))
946       (set-buffer gnus-summary-buffer)
947       (gnus-summary-goto-subject article)
948       (let ((group (gnus-group-real-name gnus-newsgroup-name))
949             newsgroups followup-to)
950         (gnus-summary-select-article)
951         (set-buffer gnus-original-article-buffer)
952         (if (and (<= (length (message-tokenize-header
953                               (setq newsgroups
954                                     (mail-fetch-field "newsgroups"))
955                               ", "))
956                      1)
957                  (or (not (setq followup-to (mail-fetch-field "followup-to")))
958                      (not (member group (message-tokenize-header
959                                          followup-to ", ")))))
960             (if followup-to
961                 (gnus-message 1 "Followup-to restricted")
962               (gnus-message 1 "Not a crossposted article"))
963           (set-buffer gnus-summary-buffer)
964           (gnus-summary-reply-with-original 1)
965           (set-buffer gnus-message-buffer)
966           (message-goto-body)
967           (insert (format gnus-crosspost-complaint newsgroups group))
968           (message-goto-subject)
969           (re-search-forward " *$")
970           (replace-match " (crosspost notification)" t t)
971           (gnus-deactivate-mark)
972           (when (gnus-y-or-n-p "Send this complaint? ")
973             (message-send-and-exit)))))))
974
975 (defun gnus-summary-mail-other-window ()
976   "Compose mail in other window."
977   (interactive)
978   (gnus-setup-message 'message
979     (message-mail)))
980
981 (defun gnus-mail-parse-comma-list ()
982   (let (accumulated
983         beg)
984     (skip-chars-forward " ")
985     (while (not (eobp))
986       (setq beg (point))
987       (skip-chars-forward "^,")
988       (while (zerop
989               (save-excursion
990                 (save-restriction
991                   (let ((i 0))
992                     (narrow-to-region beg (point))
993                     (goto-char beg)
994                     (logand (progn
995                               (while (search-forward "\"" nil t)
996                                 (incf i))
997                               (if (zerop i) 2 i))
998                             2)))))
999         (skip-chars-forward ",")
1000         (skip-chars-forward "^,"))
1001       (skip-chars-backward " ")
1002       (push (buffer-substring beg (point))
1003             accumulated)
1004       (skip-chars-forward "^,")
1005       (skip-chars-forward ", "))
1006     accumulated))
1007
1008 (defun gnus-inews-add-to-address (group)
1009   (let ((to-address (mail-fetch-field "to")))
1010     (when (and to-address
1011                (gnus-alive-p))
1012       ;; This mail group doesn't have a `to-list', so we add one
1013       ;; here.  Magic!
1014       (when (gnus-y-or-n-p
1015              (format "Do you want to add this as `to-list': %s " to-address))
1016         (gnus-group-add-parameter group (cons 'to-list to-address))))))
1017
1018 (defun gnus-put-message ()
1019   "Put the current message in some group and return to Gnus."
1020   (interactive)
1021   (let ((reply gnus-article-reply)
1022         (winconf gnus-prev-winconf)
1023         (group gnus-newsgroup-name))
1024     (unless (and group
1025                  (not (gnus-group-read-only-p group)))
1026       (setq group (read-string "Put in group: " nil (gnus-writable-groups))))
1027
1028     (when (gnus-gethash group gnus-newsrc-hashtb)
1029       (error "No such group: %s" group))
1030     (save-excursion
1031       (save-restriction
1032         (widen)
1033         (message-narrow-to-headers)
1034         (let ((gnus-deletable-headers nil))
1035           (message-generate-headers
1036            (if (message-news-p)
1037                message-required-news-headers
1038              message-required-mail-headers)))
1039         (goto-char (point-max))
1040         (insert "Gcc: " group "\n")
1041         (widen)))
1042     (gnus-inews-do-gcc)
1043     (when (and (get-buffer gnus-group-buffer)
1044                (gnus-buffer-exists-p (car-safe reply))
1045                (cdr reply))
1046       (set-buffer (car reply))
1047       (gnus-summary-mark-article-as-replied (cdr reply)))
1048     (when winconf
1049       (set-window-configuration winconf))))
1050
1051 (defun gnus-article-mail (yank)
1052   "Send a reply to the address near point.
1053 If YANK is non-nil, include the original article."
1054   (interactive "P")
1055   (let ((address
1056          (buffer-substring
1057           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
1058           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
1059     (when address
1060       (message-reply address)
1061       (when yank
1062         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
1063
1064 (defvar nntp-server-type)
1065 (defun gnus-bug ()
1066   "Send a bug report to the Gnus maintainers."
1067   (interactive)
1068   (unless (gnus-alive-p)
1069     (error "Gnus has been shut down"))
1070   (gnus-setup-message (if (message-mail-user-agent) 'message 'bug)
1071     (unless (message-mail-user-agent)
1072       (delete-other-windows)
1073       (when gnus-bug-create-help-buffer
1074         (switch-to-buffer "*Gnus Help Bug*")
1075         (erase-buffer)
1076         (insert gnus-bug-message)
1077         (goto-char (point-min)))
1078       (message-pop-to-buffer "*Gnus Bug*"))
1079     (let ((message-this-is-mail t))
1080       (message-setup `((To . ,gnus-maintainer) (Subject . ""))))
1081     (when gnus-bug-create-help-buffer
1082       (push `(gnus-bug-kill-buffer) message-send-actions))
1083     (goto-char (point-min))
1084     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1085     (forward-line 1)
1086     (insert (gnus-version) "\n"
1087             (emacs-version) "\n")
1088     (when (and (boundp 'nntp-server-type)
1089                (stringp nntp-server-type))
1090       (insert nntp-server-type))
1091     (insert "\n\n\n\n\n")
1092     (let (text)
1093       (save-excursion
1094         (set-buffer (gnus-get-buffer-create " *gnus environment info*"))
1095         (erase-buffer)
1096         (gnus-debug)
1097         (setq text (buffer-string)))
1098       (insert "<#part type=application/x-emacs-lisp disposition=inline description=\"User settings\">\n" text "\n<#/part>"))
1099     (goto-char (point-min))
1100     (search-forward "Subject: " nil t)
1101     (message "")))
1102
1103 (defun gnus-bug-kill-buffer ()
1104   (when (get-buffer "*Gnus Help Bug*")
1105     (kill-buffer "*Gnus Help Bug*")))
1106
1107 (defun gnus-summary-yank-message (buffer n)
1108   "Yank the current article into a composed message."
1109   (interactive
1110    (list (completing-read "Buffer: " (mapcar 'list (message-buffers)) nil t)
1111          current-prefix-arg))
1112   (gnus-summary-iterate n
1113     (let ((gnus-display-mime-function nil)
1114           (gnus-inhibit-treatment t))
1115       (gnus-summary-select-article))
1116     (save-excursion
1117       (set-buffer buffer)
1118       (message-yank-buffer gnus-article-buffer))))
1119
1120 (defun gnus-debug ()
1121   "Attempts to go through the Gnus source file and report what variables have been changed.
1122 The source file has to be in the Emacs load path."
1123   (interactive)
1124   (let ((files '("gnus.el" "gnus-sum.el" "gnus-group.el"
1125                  "gnus-art.el" "gnus-start.el" "gnus-async.el"
1126                  "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
1127                  "nnmail.el" "message.el"))
1128         (point (point))
1129         file expr olist sym)
1130     (gnus-message 4 "Please wait while we snoop your variables...")
1131     (sit-for 0)
1132     ;; Go through all the files looking for non-default values for variables.
1133     (save-excursion
1134       (set-buffer (gnus-get-buffer-create " *gnus bug info*"))
1135       (while files
1136         (erase-buffer)
1137         (when (and (setq file (locate-library (pop files)))
1138                    (file-exists-p file))
1139           (insert-file-contents file)
1140           (goto-char (point-min))
1141           (if (not (re-search-forward "^;;* *Internal variables" nil t))
1142               (gnus-message 4 "Malformed sources in file %s" file)
1143             (narrow-to-region (point-min) (point))
1144             (goto-char (point-min))
1145             (while (setq expr (ignore-errors (read (current-buffer))))
1146               (ignore-errors
1147                 (and (or (eq (car expr) 'defvar)
1148                          (eq (car expr) 'defcustom))
1149                      (stringp (nth 3 expr))
1150                      (or (not (boundp (nth 1 expr)))
1151                          (not (equal (eval (nth 2 expr))
1152                                      (symbol-value (nth 1 expr)))))
1153                      (push (nth 1 expr) olist)))))))
1154       (kill-buffer (current-buffer)))
1155     (when (setq olist (nreverse olist))
1156       (insert "------------------ Environment follows ------------------\n\n"))
1157     (while olist
1158       (if (boundp (car olist))
1159           (condition-case ()
1160               (pp `(setq ,(car olist)
1161                          ,(if (or (consp (setq sym (symbol-value (car olist))))
1162                                   (and (symbolp sym)
1163                                        (not (or (eq sym nil)
1164                                                 (eq sym t)))))
1165                               (list 'quote (symbol-value (car olist)))
1166                             (symbol-value (car olist))))
1167                   (current-buffer))
1168             (error
1169              (format "(setq %s 'whatever)\n" (car olist))))
1170         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
1171       (setq olist (cdr olist)))
1172     (insert "\n\n")
1173     ;; Remove any control chars - they seem to cause trouble for some
1174     ;; mailers.  (Byte-compiled output from the stuff above.)
1175     (goto-char point)
1176     (while (re-search-forward "[\000-\010\013-\037\200-\237]" nil t)
1177       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
1178                      t t))))
1179
1180 ;;; Treatment of rejected articles.
1181 ;;; Bounced mail.
1182
1183 (defun gnus-summary-resend-bounced-mail (&optional fetch)
1184   "Re-mail the current message.
1185 This only makes sense if the current message is a bounce message than
1186 contains some mail you have written which has been bounced back to
1187 you.
1188 If FETCH, try to fetch the article that this is a reply to, if indeed
1189 this is a reply."
1190   (interactive "P")
1191   (gnus-summary-select-article t)
1192   (set-buffer gnus-original-article-buffer)
1193   (gnus-setup-message 'compose-bounce
1194     (let* ((references (mail-fetch-field "references"))
1195            (parent (and references (gnus-parent-id references))))
1196       (message-bounce)
1197       ;; If there are references, we fetch the article we answered to.
1198       (and fetch parent
1199            (gnus-summary-refer-article parent)
1200            (gnus-summary-show-all-headers)))))
1201
1202 ;;; Gcc handling.
1203
1204 (defun gnus-inews-group-method (group)
1205   (cond
1206    ;; If the group doesn't exist, we assume
1207    ;; it's an archive group...
1208    ((and (null (gnus-get-info group))
1209          (eq (car (gnus-server-to-method gnus-message-archive-method))
1210              (car (gnus-server-to-method (gnus-group-method group)))))
1211     gnus-message-archive-method)
1212    ;; Use the method.
1213    ((gnus-info-method (gnus-get-info group))
1214     (gnus-info-method (gnus-get-info group)))
1215    ;; Find the method.
1216    (t (gnus-server-to-method (gnus-group-method group)))))
1217
1218 ;; Do Gcc handling, which copied the message over to some group.
1219 (defun gnus-inews-do-gcc (&optional gcc)
1220   (interactive)
1221   (save-excursion
1222     (save-restriction
1223       (message-narrow-to-headers)
1224       (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
1225             (cur (current-buffer))
1226             groups group method group-art)
1227         (when gcc
1228           (message-remove-header "gcc")
1229           (widen)
1230           (setq groups (message-unquote-tokens
1231                         (message-tokenize-header gcc " ,")))
1232           ;; Copy the article over to some group(s).
1233           (while (setq group (pop groups))
1234             (unless (gnus-check-server
1235                      (setq method (gnus-inews-group-method group)))
1236               (error "Can't open server %s" (if (stringp method) method
1237                                               (car method))))
1238             (unless (gnus-request-group group nil method)
1239               (gnus-request-create-group group method))
1240             (save-excursion
1241               (nnheader-set-temp-buffer " *acc*")
1242               (insert-buffer-substring cur)
1243               (message-encode-message-body)
1244               (save-restriction
1245                 (message-narrow-to-headers)
1246                 (let* ((mail-parse-charset message-default-charset)
1247                        (newsgroups-field (save-restriction
1248                                            (message-narrow-to-headers-or-head)
1249                                            (message-fetch-field "Newsgroups")))
1250                        (followup-field (save-restriction
1251                                          (message-narrow-to-headers-or-head)
1252                                          (message-fetch-field "Followup-To")))
1253                        ;; BUG: We really need to get the charset for
1254                        ;; each name in the Newsgroups and Followup-To
1255                        ;; lines to allow crossposting between group
1256                        ;; namess with incompatible character sets.  
1257                        ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2001-10-08.
1258                        (group-field-charset
1259                         (gnus-group-name-charset
1260                          method (or newsgroups-field "")))
1261                        (followup-field-charset 
1262                         (gnus-group-name-charset
1263                          method (or followup-field "")))
1264                        (rfc2047-header-encoding-alist
1265                         (append
1266                          (when group-field-charset
1267                            (list (cons "Newsgroups" group-field-charset)))
1268                          (when followup-field-charset
1269                            (list (cons "Followup-To" followup-field-charset)))
1270                          rfc2047-header-encoding-alist)))
1271                   (mail-encode-encoded-word-buffer)))
1272               (goto-char (point-min))
1273               (when (re-search-forward
1274                      (concat "^" (regexp-quote mail-header-separator) "$")
1275                      nil t)
1276                 (replace-match "" t t ))
1277               (unless (setq group-art
1278                             (gnus-request-accept-article group method t t))
1279                 (gnus-message 1 "Couldn't store article in group %s: %s"
1280                               group (gnus-status-message method))
1281                 (sit-for 2))
1282               (when (and group-art gnus-inews-mark-gcc-as-read)
1283                 (gnus-group-mark-article-read group (cdr group-art)))
1284               (kill-buffer (current-buffer)))))))))
1285
1286 (defun gnus-inews-insert-gcc ()
1287   "Insert Gcc headers based on `gnus-outgoing-message-group'."
1288   (save-excursion
1289     (save-restriction
1290       (message-narrow-to-headers)
1291       (let* ((group gnus-outgoing-message-group)
1292              (gcc (cond
1293                    ((gnus-functionp group)
1294                     (funcall group))
1295                    ((or (stringp group) (list group))
1296                     group))))
1297         (when gcc
1298           (insert "Gcc: "
1299                   (if (stringp gcc) gcc
1300                     (mapconcat 'identity gcc " "))
1301                   "\n"))))))
1302
1303 (defun gnus-inews-insert-archive-gcc (&optional group)
1304   "Insert the Gcc to say where the article is to be archived."
1305   (let* ((var gnus-message-archive-group)
1306          (group (or group gnus-newsgroup-name ""))
1307          (gcc-self-val
1308           (and gnus-newsgroup-name
1309                (not (equal gnus-newsgroup-name ""))
1310                (gnus-group-find-parameter
1311                 gnus-newsgroup-name 'gcc-self)))
1312          result
1313          (groups
1314           (cond
1315            ((null gnus-message-archive-method)
1316             ;; Ignore.
1317             nil)
1318            ((stringp var)
1319             ;; Just a single group.
1320             (list var))
1321            ((null var)
1322             ;; We don't want this.
1323             nil)
1324            ((and (listp var) (stringp (car var)))
1325             ;; A list of groups.
1326             var)
1327            ((gnus-functionp var)
1328             ;; A function.
1329             (funcall var group))
1330            (t
1331             ;; An alist of regexps/functions/forms.
1332             (while (and var
1333                         (not
1334                          (setq result
1335                                (cond
1336                                 ((stringp (caar var))
1337                                  ;; Regexp.
1338                                  (when (string-match (caar var) group)
1339                                    (cdar var)))
1340                                 ((gnus-functionp (car var))
1341                                  ;; Function.
1342                                  (funcall (car var) group))
1343                                 (t
1344                                  (eval (car var)))))))
1345               (setq var (cdr var)))
1346             result)))
1347          name)
1348     (when (or groups gcc-self-val)
1349       (when (stringp groups)
1350         (setq groups (list groups)))
1351       (save-excursion
1352         (save-restriction
1353           (message-narrow-to-headers)
1354           (goto-char (point-max))
1355           (insert "Gcc: ")
1356           (if gcc-self-val
1357               ;; Use the `gcc-self' param value instead.
1358               (progn
1359                 (insert
1360                  (if (stringp gcc-self-val)
1361                      gcc-self-val
1362                    group))
1363                 (if (not (eq gcc-self-val 'none))
1364                     (insert "\n")
1365                   (progn
1366                     (beginning-of-line)
1367                     (kill-line))))
1368             ;; Use the list of groups.
1369             (while (setq name (pop groups))
1370               (insert (if (string-match ":" name)
1371                           name
1372                         (gnus-group-prefixed-name
1373                          name gnus-message-archive-method)))
1374               (when groups
1375                 (insert " ")))
1376             (insert "\n")))))))
1377
1378 ;;; Posting styles.
1379
1380 (defun gnus-configure-posting-styles ()
1381   "Configure posting styles according to `gnus-posting-styles'."
1382   (unless gnus-inhibit-posting-styles
1383     (let ((group (or gnus-newsgroup-name ""))
1384           (styles gnus-posting-styles)
1385           style match variable attribute value v results
1386           filep name address element)
1387       ;; If the group has a posting-style parameter, add it at the end with a
1388       ;; regexp matching everything, to be sure it takes precedence over all
1389       ;; the others.
1390       (when gnus-newsgroup-name
1391         (let ((tmp-style (gnus-group-find-parameter group 'posting-style t)))
1392           (when tmp-style
1393             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1394       ;; Go through all styles and look for matches.
1395       (dolist (style styles)
1396         (setq match (pop style))
1397         (goto-char (point-min))
1398         (when (cond
1399                ((stringp match)
1400                 ;; Regexp string match on the group name.
1401                 (string-match match group))
1402                ((eq match 'header)
1403                 (and (gnus-buffer-live-p gnus-article-copy)
1404                      (with-current-buffer gnus-article-copy
1405                        (let ((header (message-fetch-field (pop style))))
1406                          (and header
1407                               (string-match (pop style) header))))))
1408                ((or (symbolp match)
1409                     (gnus-functionp match))
1410                 (cond
1411                  ((gnus-functionp match)
1412                   ;; Function to be called.
1413                   (funcall match))
1414                  ((boundp match)
1415                   ;; Variable to be checked.
1416                   (symbol-value match))))
1417                ((listp match)
1418                 ;; This is a form to be evaled.
1419                 (eval match)))
1420           ;; We have a match, so we set the variables.
1421           (dolist (attribute style)
1422             (setq element (pop attribute)
1423                   variable nil
1424                   filep nil)
1425             (setq value
1426                   (cond
1427                    ((eq (car attribute) :file)
1428                     (setq filep t)
1429                     (cadr attribute))
1430                    ((eq (car attribute) :value)
1431                     (cadr attribute))
1432                    (t
1433                     (car attribute))))
1434             ;; We get the value.
1435             (setq v
1436                   (cond
1437                    ((stringp value)
1438                     value)
1439                    ((or (symbolp value)
1440                         (gnus-functionp value))
1441                     (cond ((gnus-functionp value)
1442                            (funcall value))
1443                           ((boundp value)
1444                            (symbol-value value))))
1445                    ((listp value)
1446                     (eval value))))
1447             ;; Translate obsolescent value.
1448             (when (eq element 'signature-file)
1449               (setq element 'signature
1450                     filep t))
1451             ;; Get the contents of file elems.
1452             (when (and filep v)
1453               (setq v (with-temp-buffer
1454                         (insert-file-contents v)
1455                         (buffer-string))))
1456             (setq results (delq (assoc element results) results))
1457             (push (cons element v) results))))
1458       ;; Now we have all the styles, so we insert them.
1459       (setq name (assq 'name results)
1460             address (assq 'address results))
1461       (setq results (delq name (delq address results)))
1462       (make-local-variable 'message-setup-hook)
1463       (dolist (result results)
1464         (add-hook 'message-setup-hook
1465                   (cond
1466                    ((eq 'eval (car result))
1467                     'ignore)
1468                    ((eq 'body (car result))
1469                     `(lambda ()
1470                        (save-excursion
1471                          (message-goto-body)
1472                          (insert ,(cdr result)))))
1473                    ((eq 'signature (car result))
1474                     (set (make-local-variable 'message-signature) nil)
1475                     (set (make-local-variable 'message-signature-file) nil)
1476                     (if (not (cdr result))
1477                         'ignore
1478                       `(lambda ()
1479                          (save-excursion
1480                            (let ((message-signature ,(cdr result)))
1481                              (when message-signature
1482                                (message-insert-signature)))))))
1483                    (t
1484                     (let ((header
1485                            (if (symbolp (car result))
1486                                (capitalize (symbol-name (car result)))
1487                              (car result))))
1488                       `(lambda ()
1489                          (save-excursion
1490                            (message-remove-header ,header)
1491                            (let ((value ,(cdr result)))
1492                              (when value
1493                                (message-goto-eoh)
1494                                (insert ,header ": " value "\n"))))))))))
1495       (when (or name address)
1496         (add-hook 'message-setup-hook
1497                   `(lambda ()
1498                      (set (make-local-variable 'user-mail-address)
1499                           ,(or (cdr address) user-mail-address))
1500                      (let ((user-full-name ,(or (cdr name) (user-full-name)))
1501                            (user-mail-address
1502                             ,(or (cdr address) user-mail-address)))
1503                        (save-excursion
1504                          (message-remove-header "From")
1505                          (message-goto-eoh)
1506                          (insert "From: " (message-make-from) "\n")))))))))
1507
1508 ;;; Allow redefinition of functions.
1509
1510 (gnus-ems-redefine)
1511
1512 (provide 'gnus-msg)
1513
1514 ;;; gnus-msg.el ends here