*** empty log message ***
[gnus] / lisp / gnus-msg.el
1 ;;; gnus-msg.el --- mail and post interface for Gnus
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
3
4 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
5 ;;      Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'gnus)
30 (require 'gnus-ems)
31 (require 'message)
32 (eval-when-compile (require 'cl))
33
34 ;; Added by Sudish Joseph <joseph@cis.ohio-state.edu>.
35 (defvar gnus-post-method nil
36   "*Preferred method for posting USENET news.
37 If this variable is nil, Gnus will use the current method to decide
38 which method to use when posting.  If it is non-nil, it will override
39 the current method.  This method will not be used in mail groups and
40 the like, only in \"real\" newsgroups.
41
42 The value must be a valid method as discussed in the documentation of
43 `gnus-select-method'.  It can also be a list of methods.  If that is
44 the case, the user will be queried for what select method to use when
45 posting.")
46
47 (defvar gnus-outgoing-message-group nil
48   "*All outgoing messages will be put in this group.
49 If you want to store all your outgoing mail and articles in the group
50 \"nnml:archive\", you set this variable to that value. This variable
51 can also be a list of group names. 
52
53 If you want to have greater control over what group to put each
54 message in, you can set this variable to a function that checks the
55 current newsgroup name and then returns a suitable group name (or list
56 of names).")
57
58 (defvar gnus-message-archive-group
59   '((if (message-news-p) "misc-news" "misc-mail"))
60   "*Name of the group in which to save the messages you've written.
61 This can either be a string, a list of strings; or an alist
62 of regexps/functions/forms to be evaluated to return a string (or a list
63 of strings).  The functions are called with the name of the current
64 group (or nil) as a parameter.
65
66 Normally the group names returned by this variable should be
67 unprefixed -- which implictly means \"store on the archive server\".
68 However, you may wish to store the message on some other server.  In
69 that case, just return a fully prefixed name of the group --
70 \"nnml+private:mail.misc\", for instance.")
71
72 (defvar gnus-mailing-list-groups nil
73   "*Regexp matching groups that are really mailing lists.
74 This is useful when you're reading a mailing list that has been
75 gatewayed to a newsgroup, and you want to followup to an article in
76 the group.")
77
78 (defvar gnus-sent-message-ids-file 
79   (nnheader-concat gnus-directory "Sent-Message-IDs")
80   "File where Gnus saves a cache of sent message ids.")
81
82 (defvar gnus-sent-message-ids-length 1000
83   "The number of sent Message-IDs to save.")
84
85 ;;; Internal variables.
86
87 (defvar gnus-message-buffer "*Mail Gnus*")
88 (defvar gnus-article-copy nil)
89 (defvar gnus-last-posting-server nil)
90
91 (eval-and-compile
92   (autoload 'gnus-uu-post-news "gnus-uu" nil t)
93   (autoload 'news-setup "rnewspost")
94   (autoload 'news-reply-mode "rnewspost")
95   (autoload 'rmail-dont-reply-to "mail-utils")
96   (autoload 'rmail-output "rmailout"))
97
98 \f
99 ;;;
100 ;;; Gnus Posting Functions
101 ;;;
102
103 (gnus-define-keys 
104  (gnus-summary-send-map "S" gnus-summary-mode-map)
105  "p" gnus-summary-post-news
106  "f" gnus-summary-followup
107  "F" gnus-summary-followup-with-original
108  "c" gnus-summary-cancel-article
109  "s" gnus-summary-supersede-article
110  "r" gnus-summary-reply
111  "R" gnus-summary-reply-with-original
112  "m" gnus-summary-mail-other-window
113  "u" gnus-uu-post-news
114  "om" gnus-summary-mail-forward
115  "op" gnus-summary-post-forward
116  "Om" gnus-uu-digest-mail-forward
117  "Op" gnus-uu-digest-post-forward)
118
119 (gnus-define-keys
120  (gnus-send-bounce-map "D" gnus-summary-send-map)
121  "b" gnus-summary-resend-bounced-mail
122 ; "c" gnus-summary-send-draft
123  "r" gnus-summary-resend-message)
124
125 ;;; Internal functions.
126
127 (defvar gnus-article-reply nil)
128 (defmacro gnus-setup-message (config &rest forms)
129   (let ((winconf (make-symbol "winconf"))
130         (buffer (make-symbol "buffer"))
131         (article (make-symbol "article")))
132     `(let ((,winconf (current-window-configuration))
133            (,buffer (current-buffer))
134            (,article (and gnus-article-reply (gnus-summary-article-number)))
135            (message-header-setup-hook
136             (copy-sequence message-header-setup-hook)))
137        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
138        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
139        ,@forms
140        (gnus-inews-add-send-actions ,winconf ,buffer ,article)
141        (setq gnus-message-buffer (current-buffer))
142        (gnus-configure-windows ,config t))))
143     
144 (defun gnus-inews-add-send-actions (winconf buffer article)
145   (gnus-make-local-hook 'message-sent-hook)
146   (gnus-add-hook 'message-sent-hook 'gnus-inews-do-gcc nil t)
147   (setq message-post-method
148         `(lambda (arg)
149            (gnus-post-method arg ,gnus-newsgroup-name)))
150   (setq message-newsreader (setq message-mailer (gnus-extended-version)))
151   (message-add-action
152    `(set-window-configuration ,winconf) 'exit 'postpone 'kill)
153   (message-add-action
154    `(when (buffer-name ,buffer)
155       (save-excursion
156         (set-buffer ,buffer)
157         ,(when article
158            `(gnus-summary-mark-article-as-replied ,article))))
159    'send))
160
161 (put 'gnus-setup-message 'lisp-indent-function 1)
162 (put 'gnus-setup-message 'lisp-indent-hook 1)
163 (put 'gnus-setup-message 'edebug-form-spec '(form body))
164
165 ;;; Post news commands of Gnus group mode and summary mode
166
167 (defun gnus-group-mail ()
168   "Start composing a mail."
169   (interactive)
170   (gnus-setup-message 'message
171     (message-mail)))
172
173 (defun gnus-group-post-news (&optional arg)
174   "Start composing a news message.
175 If ARG, post to the group under point.
176 If ARG is 1, prompt for a group name."
177   (interactive "P")
178   ;; Bind this variable here to make message mode hooks
179   ;; work ok.
180   (let ((gnus-newsgroup-name
181          (if arg
182              (if (= 1 (prefix-numeric-value arg))
183                  (completing-read "Newsgroup: " gnus-active-hashtb nil
184                                   (gnus-read-active-file-p))
185                (gnus-group-group-name))
186            "")))
187     (gnus-post-news 'post gnus-newsgroup-name)))
188
189 (defun gnus-summary-post-news ()
190   "Start composing a news message."
191   (interactive)
192   (gnus-set-global-variables)
193   (gnus-post-news 'post gnus-newsgroup-name))
194
195 (defun gnus-summary-followup (yank &optional force-news)
196   "Compose a followup to an article.
197 If prefix argument YANK is non-nil, original article is yanked automatically."
198   (interactive 
199    (list (and current-prefix-arg 
200               (gnus-summary-work-articles 1))))
201   (gnus-set-global-variables)
202   (when yank
203     (gnus-summary-goto-subject (car yank)))
204   (save-window-excursion
205     (gnus-summary-select-article))
206   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
207         (gnus-newsgroup-name gnus-newsgroup-name))
208     ;; Send a followup.
209     (gnus-post-news nil gnus-newsgroup-name
210                     headers gnus-article-buffer 
211                     yank nil force-news)))
212
213 (defun gnus-summary-followup-with-original (n &optional force-news)
214   "Compose a followup to an article and include the original article."
215   (interactive "P")
216   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
217
218 (defun gnus-inews-yank-articles (articles)
219   (let (beg article)
220     (while (setq article (pop articles))
221       (save-window-excursion
222         (set-buffer gnus-summary-buffer)
223         (gnus-summary-select-article nil nil nil article)
224         (gnus-summary-remove-process-mark article))
225       (gnus-copy-article-buffer)
226       (let ((message-reply-buffer gnus-article-copy)
227             (message-reply-headers gnus-current-headers))
228         (message-yank-original)
229         (setq beg (or beg (mark t))))
230       (when articles (insert "\n")))
231     
232     (push-mark)
233     (goto-char beg)))
234
235 (defun gnus-summary-cancel-article (n)
236   "Cancel an article you posted."
237   (interactive "P")
238   (gnus-set-global-variables)
239   (let ((articles (gnus-summary-work-articles n))
240         (message-post-method
241          `(lambda (arg)
242             (gnus-post-method nil ,gnus-newsgroup-name)))
243         article)
244     (while (setq article (pop articles))
245       (when (gnus-summary-select-article t nil nil article)
246         (when (gnus-eval-in-buffer-window 
247                gnus-original-article-buffer (message-cancel-news))
248           (gnus-summary-mark-as-read article gnus-canceled-mark)
249           (gnus-cache-remove-article 1))
250         (gnus-article-hide-headers-if-wanted))
251       (gnus-summary-remove-process-mark article))))
252
253 (defun gnus-summary-supersede-article ()
254   "Compose an article that will supersede a previous article.
255 This is done simply by taking the old article and adding a Supersedes
256 header line with the old Message-ID."
257   (interactive)
258   (gnus-set-global-variables)
259   (let ((article (gnus-summary-article-number)))
260     (gnus-setup-message 'reply-yank
261       (gnus-summary-select-article t)
262       (set-buffer gnus-original-article-buffer)
263       (message-supersede)
264       (push
265        `((lambda ()
266            (gnus-cache-possibly-remove-article ,article nil nil nil t)))
267        message-send-actions))))
268
269 \f
270
271 (defun gnus-copy-article-buffer (&optional article-buffer)
272   ;; make a copy of the article buffer with all text properties removed
273   ;; this copy is in the buffer gnus-article-copy.
274   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
275   ;; this buffer should be passed to all mail/news reply/post routines.
276   (setq gnus-article-copy (get-buffer-create " *gnus article copy*"))
277   (buffer-disable-undo gnus-article-copy)
278   (or (memq gnus-article-copy gnus-buffer-list)
279       (setq gnus-buffer-list (cons gnus-article-copy gnus-buffer-list)))
280   (let ((article-buffer (or article-buffer gnus-article-buffer))
281         end beg)
282     (when (and (get-buffer article-buffer)
283                (buffer-name (get-buffer article-buffer)))
284       (save-excursion
285         (set-buffer article-buffer)
286         (save-restriction
287           (widen)
288           (copy-to-buffer gnus-article-copy (point-min) (point-max))
289           (set-buffer gnus-original-article-buffer)
290           (goto-char (point-min))
291           (while (looking-at message-unix-mail-delimiter)
292             (forward-line 1))
293           (setq beg (point))
294           (setq end (or (search-forward "\n\n" nil t) (point)))
295           (set-buffer gnus-article-copy)
296           (gnus-set-text-properties (point-min) (point-max) nil)
297           (delete-region (goto-char (point-min))
298                          (or (search-forward "\n\n" nil t) (point)))
299           (insert-buffer-substring gnus-original-article-buffer beg end)))
300       gnus-article-copy)))
301
302 (defun gnus-post-news (post &optional group header article-buffer yank subject
303                             force-news)
304   (when article-buffer
305     (gnus-copy-article-buffer))
306   (let ((gnus-article-reply article-buffer))
307     (gnus-setup-message (cond (yank 'reply-yank)
308                               (article-buffer 'reply)
309                               (t 'message))
310       (let* ((group (or group gnus-newsgroup-name))
311              (pgroup group)
312              to-address to-group mailing-list to-list)
313         (when group
314           (setq to-address (gnus-group-get-parameter group 'to-address)
315                 to-group (gnus-group-get-parameter group 'to-group)
316                 to-list (gnus-group-get-parameter group 'to-list)
317                 mailing-list (when gnus-mailing-list-groups
318                                (string-match gnus-mailing-list-groups group))
319                 group (gnus-group-real-name group)))
320         (if (or (and to-group
321                      (gnus-news-group-p to-group))
322                 force-news
323                 (and (gnus-news-group-p 
324                       (or pgroup gnus-newsgroup-name)
325                       (if header (mail-header-number header)
326                         gnus-current-article))
327                      (not mailing-list)
328                      (not to-list)
329                      (not to-address)))
330             ;; This is news.
331             (if post
332                 (message-news (or to-group group))
333               (set-buffer gnus-article-copy)
334               (message-followup))
335           ;; The is mail.
336           (if post
337               (progn
338                 (message-mail (or to-address to-list))
339                 ;; Arrange for mail groups that have no `to-address' to
340                 ;; get that when the user sends off the mail.
341                 (push (list 'gnus-inews-add-to-address group)
342                       message-send-actions))
343             (set-buffer gnus-article-copy)
344             (message-wide-reply to-address)))
345         (when yank
346           (gnus-inews-yank-articles yank))))))
347
348 (defun gnus-post-method (arg group &optional silent)
349   "Return the posting method based on GROUP and ARG.
350 If SILENT, don't prompt the user."
351   (let ((group-method (gnus-find-method-for-group group)))
352     (cond 
353      ;; If the group-method is nil (which shouldn't happen) we use 
354      ;; the default method.
355      ((null arg)
356       (or gnus-post-method gnus-select-method message-post-method))
357      ;; We want this group's method.
358      ((and arg (not (eq arg 0)))
359       group-method)
360      ;; We query the user for a post method.
361      ((or arg
362           (and gnus-post-method
363                (listp (car gnus-post-method))))
364       (let* ((methods
365               ;; Collect all methods we know about.
366               (append
367                (when gnus-post-method
368                  (if (listp (car gnus-post-method))
369                      gnus-post-method
370                    (list gnus-post-method)))
371                gnus-secondary-select-methods
372                (list gnus-select-method)
373                (list group-method)))
374              method-alist post-methods method)
375         ;; Weed out all mail methods.
376         (while methods
377           (setq method (gnus-server-get-method "" (pop methods)))
378           (when (or (gnus-method-option-p method 'post)
379                     (gnus-method-option-p method 'post-mail))
380             (push method post-methods)))
381         ;; Create a name-method alist.
382         (setq method-alist
383               (mapcar 
384                (lambda (m)
385                  (list (concat (cadr m) " (" (symbol-name (car m)) ")") m))
386                post-methods))
387         ;; Query the user.
388         (cadr
389          (assoc
390           (setq gnus-last-posting-server
391                 (if (and silent
392                          gnus-last-posting-server)
393                     ;; Just use the last value.
394                     gnus-last-posting-server
395                   (completing-read
396                    "Posting method: " method-alist nil t
397                    (cons (or gnus-last-posting-server "") 0))))
398           method-alist))))
399      ;; Override normal method.
400      ((and gnus-post-method
401            (or (gnus-method-option-p group-method 'post)
402                (gnus-method-option-p group-method 'post-mail)))
403       gnus-post-method)
404      ;; Perhaps this is a mail group?
405      ((and (not (gnus-member-of-valid 'post group))
406            (not (gnus-method-option-p group-method 'post-mail)))
407       group-method)
408      ;; Use the normal select method.
409      (t gnus-select-method))))
410
411 (defun gnus-inews-narrow-to-headers ()
412   (widen)
413   (narrow-to-region
414    (goto-char (point-min))
415    (or (and (re-search-forward 
416              (concat "^" (regexp-quote mail-header-separator) "$") nil t)
417             (match-beginning 0))
418        (point-max)))
419   (goto-char (point-min)))
420
421 ;;;
422 ;;; Check whether the message has been sent already.
423 ;;;
424
425 (defvar gnus-inews-sent-ids nil)
426
427 (defun gnus-inews-reject-message ()
428   "Check whether this message has already been sent."
429   (when gnus-sent-message-ids-file
430     (let ((message-id (save-restriction (gnus-inews-narrow-to-headers)
431                                         (mail-fetch-field "message-id")))
432           end)
433       (when message-id
434         (unless gnus-inews-sent-ids
435           (condition-case ()
436               (load  t t t)
437             (error nil)))
438         (if (member message-id gnus-inews-sent-ids)
439             ;; Reject this message.
440             (not (gnus-yes-or-no-p 
441                   (format "Message %s already sent.  Send anyway? "
442                           message-id)))
443           (push message-id gnus-inews-sent-ids)
444           ;; Chop off the last Message-IDs.
445           (when (setq end (nthcdr gnus-sent-message-ids-length 
446                                   gnus-inews-sent-ids))
447             (setcdr end nil))
448           (nnheader-temp-write gnus-sent-message-ids-file
449             (prin1 `(setq gnus-inews-sent-ids ',gnus-inews-sent-ids)
450                    (current-buffer)))
451           nil)))))
452
453 \f
454
455 ;; Dummy to avoid byte-compile warning.
456 (defvar nnspool-rejected-article-hook)
457
458 ;;; Since the X-Newsreader/X-Mailer are ``vanity'' headers, they might
459 ;;; as well include the Emacs version as well.
460 ;;; The following function works with later GNU Emacs, and XEmacs.
461 (defun gnus-extended-version ()
462   "Stringified Gnus version and Emacs version"
463   (interactive)
464   (concat
465    gnus-version
466    "/"
467    (cond
468     ((string-match "^\\([0-9]+\\.[0-9]+\\)\\.[.0-9]+$" emacs-version)
469      (concat "Emacs " (substring emacs-version
470                                  (match-beginning 1)
471                                  (match-end 1))))
472     ((string-match "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)" emacs-version)
473      (concat (substring emacs-version
474                         (match-beginning 1)
475                         (match-end 1))
476              (format " %d.%d" emacs-major-version emacs-minor-version)))
477     (t emacs-version))))
478
479 ;; Written by "Mr. Per Persson" <pp@solace.mh.se>.
480 (defun gnus-inews-insert-mime-headers ()
481   (goto-char (point-min))
482   (let ((mail-header-separator 
483          (progn 
484            (goto-char (point-min))
485            (if (and (search-forward (concat "\n" mail-header-separator "\n")
486                                     nil t)
487                     (not (search-backward "\n\n" nil t)))
488                mail-header-separator
489              ""))))
490     (or (mail-position-on-field "Mime-Version")
491         (insert "1.0")
492         (cond ((save-restriction
493                  (widen)
494                  (goto-char (point-min))
495                  (re-search-forward "[\200-\377]" nil t))
496                (or (mail-position-on-field "Content-Type")
497                    (insert "text/plain; charset=ISO-8859-1"))
498                (or (mail-position-on-field "Content-Transfer-Encoding")
499                    (insert "8bit")))
500               (t (or (mail-position-on-field "Content-Type")
501                      (insert "text/plain; charset=US-ASCII"))
502                  (or (mail-position-on-field "Content-Transfer-Encoding")
503                      (insert "7bit")))))))
504
505 \f
506 ;;;
507 ;;; Gnus Mail Functions 
508 ;;;
509
510 ;;; Mail reply commands of Gnus summary mode
511
512 (defun gnus-summary-reply (&optional yank)
513   "Reply mail to news author.
514 If prefix argument YANK is non-nil, original article is yanked automatically."
515   (interactive 
516    (list (and current-prefix-arg 
517               (gnus-summary-work-articles 1))))
518   ;; Bug fix by jbw@bigbird.bu.edu (Joe Wells)
519   ;; Stripping headers should be specified with mail-yank-ignored-headers.
520   (gnus-set-global-variables)
521   (when yank 
522     (gnus-summary-goto-subject (car yank)))
523   (let ((gnus-article-reply t))
524     (gnus-setup-message (if yank 'reply-yank 'reply)
525       (gnus-summary-select-article)
526       (set-buffer (gnus-copy-article-buffer))
527       (message-reply nil nil (gnus-group-get-parameter
528                               gnus-newsgroup-name 'broken-reply-to))
529       (when yank
530         (gnus-inews-yank-articles yank)))))
531
532 (defun gnus-summary-reply-with-original (n)
533   "Reply mail to news author with original article."
534   (interactive "P")
535   (gnus-summary-reply (gnus-summary-work-articles n)))
536
537 (defun gnus-summary-mail-forward (&optional post)
538   "Forward the current message to another user."
539   (interactive "P")
540   (gnus-set-global-variables)
541   (gnus-setup-message 'forward
542     (gnus-summary-select-article)
543     (set-buffer gnus-original-article-buffer)
544     (message-forward post)))
545
546 (defun gnus-summary-resend-message (address)
547   "Resend the current article to ADDRESS."
548   (interactive "sResend message to: ")
549   (gnus-summary-select-article)
550   (save-excursion
551     (set-buffer gnus-original-article-buffer)
552     (message-resend address)))
553
554 (defun gnus-summary-post-forward ()
555   "Forward the current article to a newsgroup."
556   (interactive)
557   (gnus-summary-mail-forward t))
558
559 (defvar gnus-nastygram-message 
560   "The following article was inappropriately posted to %s.\n"
561   "Format string to insert in nastygrams.
562 The current group name will be inserted at \"%s\".")
563
564 (defun gnus-summary-mail-nastygram (n)
565   "Send a nastygram to the author of the current article."
566   (interactive "P")
567   (if (or gnus-expert-user
568           (gnus-y-or-n-p 
569            "Really send a nastygram to the author of the current article? "))
570       (let ((group gnus-newsgroup-name))
571         (gnus-summary-reply-with-original n)
572         (set-buffer gnus-message-buffer)
573         (insert (format gnus-nastygram-message group))
574         (message-send-and-exit))))
575
576 (defun gnus-summary-mail-other-window ()
577   "Compose mail in other window."
578   (interactive)
579   (gnus-setup-message 'message
580     (message-mail)))
581
582 (defun gnus-mail-parse-comma-list ()
583   (let (accumulated
584         beg)
585     (skip-chars-forward " ")
586     (while (not (eobp))
587       (setq beg (point))
588       (skip-chars-forward "^,")
589       (while (zerop
590               (save-excursion 
591                 (save-restriction
592                   (let ((i 0))
593                     (narrow-to-region beg (point))
594                     (goto-char beg)
595                     (logand (progn
596                               (while (search-forward "\"" nil t)
597                                 (incf i))
598                               (if (zerop i) 2 i)) 2)))))
599         (skip-chars-forward ",")
600         (skip-chars-forward "^,"))
601       (skip-chars-backward " ")
602       (setq accumulated
603             (cons (buffer-substring beg (point))
604                   accumulated))
605       (skip-chars-forward "^,")
606       (skip-chars-forward ", "))
607     accumulated))
608
609 (defun gnus-mail-yank-original ()
610   (interactive)
611   (save-excursion
612     (mail-yank-original nil))
613   (or mail-yank-hooks mail-citation-hook
614       (run-hooks 'news-reply-header-hook)))
615
616 (defun gnus-inews-add-to-address (group)
617   (let ((to-address (mail-fetch-field "to")))
618     (when (and to-address
619                (gnus-alive-p))
620       ;; This mail group doesn't have a `to-list', so we add one
621       ;; here.  Magic!  
622       (gnus-group-add-parameter group (cons 'to-list to-address)))))
623
624 (defun gnus-put-message ()
625   "Put the current message in some group and return to Gnus."
626   (interactive)
627   (let ((reply gnus-article-reply)
628         (winconf gnus-prev-winconf)
629         (group gnus-newsgroup-name))
630     
631     (or (and group (not (gnus-group-read-only-p group)))
632         (setq group (read-string "Put in group: " nil
633                                  (gnus-writable-groups))))
634     (and (gnus-gethash group gnus-newsrc-hashtb)
635          (error "No such group: %s" group))
636
637     (save-excursion
638       (save-restriction
639         (widen)
640         (gnus-inews-narrow-to-headers)
641         (let (gnus-deletable-headers)
642           (if (message-news-p)
643               (message-generate-headers message-required-news-headers)
644             (message-generate-headers message-required-mail-headers)))
645         (goto-char (point-max))
646         (insert "Gcc: " group "\n")
647         (widen)))
648
649     (gnus-inews-do-gcc)
650
651     (if (get-buffer gnus-group-buffer)
652         (progn
653           (if (gnus-buffer-exists-p (car-safe reply))
654               (progn
655                 (set-buffer (car reply))
656                 (and (cdr reply)
657                      (gnus-summary-mark-article-as-replied 
658                       (cdr reply)))))
659           (and winconf (set-window-configuration winconf))))))
660
661 (defun gnus-article-mail (yank)
662   "Send a reply to the address near point.
663 If YANK is non-nil, include the original article."
664   (interactive "P")
665   (let ((address 
666          (buffer-substring
667           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
668           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
669     (when address
670       (switch-to-buffer gnus-summary-buffer)
671       (message-reply address)
672       (when yank
673         (gnus-inews-yank-articles yank)))))
674
675 (defun gnus-bug ()
676   "Send a bug report to the Gnus maintainers."
677   (interactive)
678   (gnus-setup-message 'bug
679     (delete-other-windows)
680     (switch-to-buffer "*Gnus Help Bug*")
681     (erase-buffer)
682     (insert gnus-bug-message)
683     (goto-char (point-min))
684     (message-pop-to-buffer "*Gnus Bug*")
685     (message-setup `((To . ,gnus-maintainer) (Subject . "")))
686     (push `(gnus-bug-kill-buffer) message-send-actions)
687     (goto-char (point-min))
688     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
689     (forward-line 1)
690     (insert (gnus-version) "\n")
691     (insert (emacs-version))
692     (insert "\n\n\n\n\n")
693     (gnus-debug)
694     (goto-char (point-min))
695     (search-forward "Subject: " nil t)
696     (message "")))
697
698 (defun gnus-bug-kill-buffer ()
699   (and (get-buffer "*Gnus Help Bug*")
700        (kill-buffer "*Gnus Help Bug*")))
701
702 (defun gnus-debug ()
703   "Attemps to go through the Gnus source file and report what variables have been changed.
704 The source file has to be in the Emacs load path."
705   (interactive)
706   (let ((files '("gnus.el" "gnus-msg.el" "gnus-score.el" "nnmail.el"
707                  "message.el"))
708         file dirs expr olist sym)
709     (gnus-message 4 "Please wait while we snoop your variables...")
710     (sit-for 0)
711     (save-excursion
712       (set-buffer (get-buffer-create " *gnus bug info*"))
713       (buffer-disable-undo (current-buffer))
714       (while files
715         (erase-buffer)
716         (setq dirs load-path)
717         (while dirs
718           (if (or (not (car dirs))
719                   (not (stringp (car dirs)))
720                   (not (file-exists-p 
721                         (setq file (concat (file-name-as-directory 
722                                             (car dirs)) (car files))))))
723               (setq dirs (cdr dirs))
724             (setq dirs nil)
725             (insert-file-contents file)
726             (goto-char (point-min))
727             (if (not (re-search-forward "^;;* *Internal variables" nil t))
728                 (gnus-message 4 "Malformed sources in file %s" file)
729               (narrow-to-region (point-min) (point))
730               (goto-char (point-min))
731               (while (setq expr (condition-case () 
732                                     (read (current-buffer)) (error nil)))
733                 (condition-case ()
734                     (and (eq (car expr) 'defvar)
735                          (stringp (nth 3 expr))
736                          (or (not (boundp (nth 1 expr)))
737                              (not (equal (eval (nth 2 expr))
738                                          (symbol-value (nth 1 expr)))))
739                          (setq olist (cons (nth 1 expr) olist)))
740                   (error nil))))))
741         (setq files (cdr files)))
742       (kill-buffer (current-buffer)))
743     (when (setq olist (nreverse olist))
744       (insert "------------------ Environment follows ------------------\n\n"))
745     (while olist
746       (if (boundp (car olist))
747           (condition-case ()
748               (pp `(setq ,(car olist)
749                          ,(if (or (consp (setq sym (symbol-value (car olist))))
750                                   (and (symbolp sym)
751                                        (not (or (eq sym nil)
752                                                 (eq sym t)))))
753                               (list 'quote (symbol-value (car olist)))
754                             (symbol-value (car olist))))
755                   (current-buffer))
756             (error
757              (format "(setq %s 'whatever)\n" (car olist))))
758         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
759       (setq olist (cdr olist)))
760     (insert "\n\n")
761     ;; Remove any null chars - they seem to cause trouble for some
762     ;; mailers. (Byte-compiled output from the stuff above.) 
763     (goto-char (point-min))
764     (while (re-search-forward "[\000\200]" nil t)
765       (replace-match "" t t))))
766
767 ;;; Treatment of rejected articles.
768 ;;; Bounced mail.
769
770 (defun gnus-summary-resend-bounced-mail (&optional fetch)
771   "Re-mail the current message.
772 This only makes sense if the current message is a bounce message than
773 contains some mail you have written which has been bounced back to
774 you.
775 If FETCH, try to fetch the article that this is a reply to, if indeed
776 this is a reply."
777   (interactive "P")
778   (gnus-summary-select-article t)
779   (set-buffer gnus-original-article-buffer)
780   (gnus-setup-message 'compose-bounce
781     (let* ((references (mail-fetch-field "references"))
782            (parent (and references (gnus-parent-id references))))
783       (message-bounce)
784       ;; If there are references, we fetch the article we answered to.  
785       (and fetch parent
786            (gnus-summary-refer-article parent)
787            (gnus-summary-show-all-headers)))))
788
789 ;;; Gcc handling.
790
791 ;; Do Gcc handling, which copied the message over to some group. 
792 (defun gnus-inews-do-gcc (&optional gcc)
793   (when (gnus-alive-p)
794     (save-excursion
795       (save-restriction
796         (message-narrow-to-headers)
797         (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
798               (cur (current-buffer))
799               groups group method)
800           (when gcc
801             (message-remove-header "gcc")
802             (widen)
803             (setq groups (message-tokenize-header gcc " ,"))
804             ;; Copy the article over to some group(s).
805             (while (setq group (pop groups))
806               (gnus-check-server 
807                (setq method
808                      (cond ((and (null (gnus-get-info group))
809                                  (eq (car gnus-message-archive-method)
810                                      (car 
811                                       (gnus-server-to-method
812                                        (gnus-group-method group)))))
813                             ;; If the group doesn't exist, we assume
814                             ;; it's an archive group...
815                             gnus-message-archive-method)
816                            ;; Use the method.
817                            ((gnus-info-method (gnus-get-info group))
818                             (gnus-info-method (gnus-get-info group)))
819                            ;; Find the method.
820                            (t (gnus-group-method group)))))
821               (gnus-check-server method)
822               (unless (gnus-request-group group t method)
823                 (gnus-request-create-group group method))
824               (save-excursion
825                 (nnheader-set-temp-buffer " *acc*")
826                 (insert-buffer-substring cur)
827                 (goto-char (point-min))
828                 (when (re-search-forward 
829                        (concat "^" (regexp-quote mail-header-separator) "$")
830                        nil t)
831                   (replace-match "" t t ))
832                 (unless (gnus-request-accept-article group method t)
833                   (gnus-message 1 "Couldn't store article in group %s: %s" 
834                                 group (gnus-status-message method))
835                   (sit-for 2))
836                 (kill-buffer (current-buffer))))))))))
837
838 (defun gnus-inews-insert-gcc ()
839   "Insert Gcc headers based on `gnus-outgoing-message-group'."
840   (save-excursion
841     (save-restriction
842       (gnus-inews-narrow-to-headers)
843       (let* ((group gnus-outgoing-message-group)
844              (gcc (cond 
845                    ((gnus-functionp group)
846                     (funcall group))
847                    ((or (stringp group) (list group))
848                     group))))
849         (when gcc
850           (insert "Gcc: "
851                   (if (stringp gcc) gcc
852                     (mapconcat 'identity gcc " "))
853                   "\n"))))))
854
855 (defun gnus-inews-insert-archive-gcc (&optional group)
856   "Insert the Gcc to say where the article is to be archived."
857   (let* ((var gnus-message-archive-group)
858          (group (or group gnus-newsgroup-name ""))
859          result
860          (groups
861           (cond 
862            ((null gnus-message-archive-method)
863             ;; Ignore.
864             nil)
865            ((stringp var)
866             ;; Just a single group.
867             (list var))
868            ((null var)
869             ;; We don't want this.
870             nil)
871            ((and (listp var) (stringp (car var)))
872             ;; A list of groups.
873             var)
874            ((gnus-functionp var)
875             ;; A function.
876             (funcall var group))
877            (t
878             ;; An alist of regexps/functions/forms.
879             (while (and var
880                         (not
881                          (setq result
882                                (cond 
883                                 ((stringp (caar var))
884                                  ;; Regexp.
885                                  (when (string-match (caar var) group)
886                                    (cdar var)))
887                                 ((gnus-functionp (car var))
888                                  ;; Function.
889                                  (funcall (car var) group))
890                                 (t
891                                  (eval (car var)))))))
892               (setq var (cdr var)))
893             result)))
894          name)
895     (when groups
896       (when (stringp groups)
897         (setq groups (list groups)))
898       (save-excursion
899         (save-restriction
900           (gnus-inews-narrow-to-headers)
901           (goto-char (point-max))
902           (insert "Gcc: ")
903           (while (setq name (pop groups))
904             (insert (if (string-match ":" name)
905                         name
906                       (gnus-group-prefixed-name 
907                        name gnus-message-archive-method)))
908             (if groups (insert " ")))
909           (insert "\n"))))))
910
911 (defun gnus-summary-send-draft ()
912   "Enter a mail/post buffer to edit and send the draft."
913   (interactive)
914   (gnus-set-global-variables)
915   (let (buf)
916     (if (not (setq buf (gnus-request-restore-buffer 
917                         (gnus-summary-article-number) gnus-newsgroup-name)))
918         (error "Couldn't restore the article")
919       (switch-to-buffer buf)
920       (when (eq major-mode 'news-reply-mode)
921         (local-set-key "\C-c\C-c" 'gnus-inews-news))
922       ;; Insert the separator.
923       (goto-char (point-min))
924       (search-forward "\n\n")
925       (forward-char -1)
926       (insert mail-header-separator)
927       ;; Configure windows.
928       (let ((gnus-draft-buffer (current-buffer)))
929         (gnus-configure-windows 'draft t)
930         (goto-char (point))))))
931   
932 (gnus-add-shutdown 'gnus-inews-close 'gnus)
933
934 (defun gnus-inews-close ()
935   (setq gnus-inews-sent-ids nil))
936   
937 ;;; Allow redefinition of functions.
938
939 (gnus-ems-redefine)
940
941 (provide 'gnus-msg)
942
943 ;;; gnus-msg.el ends here