*** empty log message ***
[gnus] / lisp / gnus-msg.el
1 ;;; gnus-msg.el --- mail and post interface for Gnus
2 ;; Copyright (C) 1995,96,97 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 (require 'gnus-art)
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-mailing-list-groups nil
59   "*Regexp matching groups that are really mailing lists.
60 This is useful when you're reading a mailing list that has been
61 gatewayed to a newsgroup, and you want to followup to an article in
62 the group.")
63
64 (defvar gnus-add-to-list nil
65   "*If non-nil, add a `to-list' parameter automatically.")
66
67 (defvar gnus-sent-message-ids-file
68   (nnheader-concat gnus-directory "Sent-Message-IDs")
69   "File where Gnus saves a cache of sent message ids.")
70
71 (defvar gnus-sent-message-ids-length 1000
72   "The number of sent Message-IDs to save.")
73
74 (defvar gnus-crosspost-complaint
75   "Hi,
76
77 You posted the article below with the following Newsgroups header:
78
79 Newsgroups: %s
80
81 The %s group, at least, was an inappropriate recipient
82 of this message.  Please trim your Newsgroups header to exclude this
83 group before posting in the future.
84
85 Thank you.
86
87 "
88   "Format string to be inserted when complaining about crossposts.
89 The first %s will be replaced by the Newsgroups header;
90 the second with the current group name.")
91
92 (defvar gnus-message-setup-hook nil
93   "Hook run after setting up a message buffer.")
94
95 ;;; Internal variables.
96
97 (defvar gnus-message-buffer "*Mail Gnus*")
98 (defvar gnus-article-copy nil)
99 (defvar gnus-last-posting-server nil)
100
101 (defconst gnus-bug-message
102   "Sending a bug report to the Gnus Towers.
103 ========================================
104
105 The buffer below is a mail buffer.  When you press `C-c C-c', it will
106 be sent to the Gnus Bug Exterminators.
107
108 At the bottom of the buffer you'll see lots of variable settings.
109 Please do not delete those.  They will tell the Bug People what your
110 environment is, so that it will be easier to locate the bugs.
111
112 If you have found a bug that makes Emacs go \"beep\", set
113 debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
114 and include the backtrace in your bug report.
115
116 Please describe the bug in annoying, painstaking detail.
117
118 Thank you for your help in stamping out bugs.
119 ")
120
121 (eval-and-compile
122   (autoload 'gnus-uu-post-news "gnus-uu" nil t)
123   (autoload 'news-setup "rnewspost")
124   (autoload 'news-reply-mode "rnewspost")
125   (autoload 'rmail-dont-reply-to "mail-utils")
126   (autoload 'rmail-output "rmailout"))
127
128 \f
129 ;;;
130 ;;; Gnus Posting Functions
131 ;;;
132
133 (gnus-define-keys (gnus-summary-send-map "S" gnus-summary-mode-map)
134   "p" gnus-summary-post-news
135   "f" gnus-summary-followup
136   "F" gnus-summary-followup-with-original
137   "c" gnus-summary-cancel-article
138   "s" gnus-summary-supersede-article
139   "r" gnus-summary-reply
140   "R" gnus-summary-reply-with-original
141   "w" gnus-summary-wide-reply
142   "W" gnus-summary-wide-reply-with-original
143   "n" gnus-summary-followup-to-mail
144   "N" gnus-summary-followup-to-mail-with-original
145   "m" gnus-summary-mail-other-window
146   "u" gnus-uu-post-news
147   "\M-c" gnus-summary-mail-crosspost-complaint
148   "om" gnus-summary-mail-forward
149   "op" gnus-summary-post-forward
150   "Om" gnus-uu-digest-mail-forward
151   "Op" gnus-uu-digest-post-forward)
152
153 (gnus-define-keys (gnus-send-bounce-map "D" gnus-summary-send-map)
154   "b" gnus-summary-resend-bounced-mail
155   ;; "c" gnus-summary-send-draft
156   "r" gnus-summary-resend-message)
157
158 ;;; Internal functions.
159
160 (defvar gnus-article-reply nil)
161 (defmacro gnus-setup-message (config &rest forms)
162   (let ((winconf (make-symbol "winconf"))
163         (buffer (make-symbol "buffer"))
164         (article (make-symbol "article")))
165     `(let ((,winconf (current-window-configuration))
166            (,buffer (buffer-name (current-buffer)))
167            (,article (and gnus-article-reply (gnus-summary-article-number)))
168            (message-header-setup-hook
169             (copy-sequence message-header-setup-hook)))
170        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
171        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
172        (unwind-protect
173            ,@forms
174          (gnus-inews-add-send-actions ,winconf ,buffer ,article)
175          (setq gnus-message-buffer (current-buffer))
176          (make-local-variable 'gnus-newsgroup-name)
177          (run-hooks 'gnus-message-setup-hook))
178        (gnus-configure-windows ,config t)
179        (set-buffer-modified-p nil))))
180
181 (defun gnus-inews-add-send-actions (winconf buffer article)
182   (make-local-hook 'message-sent-hook)
183   (add-hook 'message-sent-hook 'gnus-inews-do-gcc nil t)
184   (setq message-post-method
185         `(lambda (arg)
186            (gnus-post-method arg ,gnus-newsgroup-name)))
187   (setq message-newsreader (setq message-mailer (gnus-extended-version)))
188   (message-add-action
189    `(set-window-configuration ,winconf) 'exit 'postpone 'kill)
190   (message-add-action
191    `(when (buffer-name (get-buffer ,buffer))
192       (save-excursion
193         (set-buffer (get-buffer ,buffer))
194         ,(when article
195            `(gnus-summary-mark-article-as-replied ,article))))
196    'send))
197
198 (put 'gnus-setup-message 'lisp-indent-function 1)
199 (put 'gnus-setup-message 'edebug-form-spec '(form body))
200
201 ;;; Post news commands of Gnus group mode and summary mode
202
203 (defun gnus-group-mail ()
204   "Start composing a mail."
205   (interactive)
206   (gnus-setup-message 'message
207     (message-mail)))
208
209 (defun gnus-group-post-news (&optional arg)
210   "Start composing a news message.
211 If ARG, post to the group under point.
212 If ARG is 1, prompt for a group name."
213   (interactive "P")
214   ;; Bind this variable here to make message mode hooks
215   ;; work ok.
216   (let ((gnus-newsgroup-name
217          (if arg
218              (if (= 1 (prefix-numeric-value arg))
219                  (completing-read "Newsgroup: " gnus-active-hashtb nil
220                                   (gnus-read-active-file-p))
221                (gnus-group-group-name))
222            "")))
223     (gnus-post-news 'post gnus-newsgroup-name)))
224
225 (defun gnus-summary-post-news ()
226   "Start composing a news message."
227   (interactive)
228   (gnus-set-global-variables)
229   (gnus-post-news 'post gnus-newsgroup-name))
230
231 (defun gnus-summary-followup (yank &optional force-news)
232   "Compose a followup to an article.
233 If prefix argument YANK is non-nil, original article is yanked automatically."
234   (interactive
235    (list (and current-prefix-arg
236               (gnus-summary-work-articles 1))))
237   (gnus-set-global-variables)
238   (when yank
239     (gnus-summary-goto-subject (car yank)))
240   (save-window-excursion
241     (gnus-summary-select-article))
242   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
243         (gnus-newsgroup-name gnus-newsgroup-name))
244     ;; Send a followup.
245     (gnus-post-news nil gnus-newsgroup-name
246                     headers gnus-article-buffer
247                     yank nil force-news)))
248
249 (defun gnus-summary-followup-with-original (n &optional force-news)
250   "Compose a followup to an article and include the original article."
251   (interactive "P")
252   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
253
254 (defun gnus-summary-followup-to-mail (&optional arg)
255   "Followup to the current mail message via news."
256   (interactive
257    (list (and current-prefix-arg
258               (gnus-summary-work-articles 1))))
259   (gnus-summary-followup arg t))
260
261 (defun gnus-summary-followup-to-mail-with-original (&optional arg)
262   "Followup to the current mail message via news."
263   (interactive "P")
264   (gnus-summary-followup (gnus-summary-work-articles arg) t))
265
266 (defun gnus-inews-yank-articles (articles)
267   (let (beg article)
268     (message-goto-body)
269     (while (setq article (pop articles))
270       (save-window-excursion
271         (set-buffer gnus-summary-buffer)
272         (gnus-summary-select-article nil nil nil article)
273         (gnus-summary-remove-process-mark article))
274       (gnus-copy-article-buffer)
275       (let ((message-reply-buffer gnus-article-copy)
276             (message-reply-headers gnus-current-headers))
277         (message-yank-original)
278         (setq beg (or beg (mark t))))
279       (when articles
280         (insert "\n")))
281     (push-mark)
282     (goto-char beg)))
283
284 (defun gnus-summary-cancel-article (n)
285   "Cancel an article you posted."
286   (interactive "P")
287   (gnus-set-global-variables)
288   (let ((articles (gnus-summary-work-articles n))
289         (message-post-method
290          `(lambda (arg)
291             (gnus-post-method nil ,gnus-newsgroup-name)))
292         article)
293     (while (setq article (pop articles))
294       (when (gnus-summary-select-article t nil nil article)
295         (when (gnus-eval-in-buffer-window gnus-original-article-buffer
296                 (message-cancel-news))
297           (gnus-summary-mark-as-read article gnus-canceled-mark)
298           (gnus-cache-remove-article 1))
299         (gnus-article-hide-headers-if-wanted))
300       (gnus-summary-remove-process-mark article))))
301
302 (defun gnus-summary-supersede-article ()
303   "Compose an article that will supersede a previous article.
304 This is done simply by taking the old article and adding a Supersedes
305 header line with the old Message-ID."
306   (interactive)
307   (gnus-set-global-variables)
308   (let ((article (gnus-summary-article-number)))
309     (gnus-setup-message 'reply-yank
310       (gnus-summary-select-article t)
311       (set-buffer gnus-original-article-buffer)
312       (message-supersede)
313       (push
314        `((lambda ()
315            (when (buffer-name (get-buffer ,gnus-summary-buffer))
316              (save-excursion
317                (set-buffer (get-buffer ,gnus-summary-buffer))
318                (gnus-cache-possibly-remove-article ,article nil nil nil t)
319                (gnus-summary-mark-as-read ,article gnus-canceled-mark)))))
320        message-send-actions))))
321
322 \f
323
324 (defun gnus-copy-article-buffer (&optional article-buffer)
325   ;; make a copy of the article buffer with all text properties removed
326   ;; this copy is in the buffer gnus-article-copy.
327   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
328   ;; this buffer should be passed to all mail/news reply/post routines.
329   (setq gnus-article-copy (get-buffer-create " *gnus article copy*"))
330   (buffer-disable-undo gnus-article-copy)
331   (or (memq gnus-article-copy gnus-buffer-list)
332       (push gnus-article-copy gnus-buffer-list))
333   (let ((article-buffer (or article-buffer gnus-article-buffer))
334         end beg contents)
335     (if (not (and (get-buffer article-buffer)
336                   (buffer-name (get-buffer article-buffer))))
337         (error "Can't find any article buffer")
338       (save-excursion
339         (set-buffer article-buffer)
340         (save-restriction
341           ;; Copy over the (displayed) article buffer, delete
342           ;; hidden text and remove text properties.
343           (widen)
344           (copy-to-buffer gnus-article-copy (point-min) (point-max))
345           (set-buffer gnus-article-copy)
346           (gnus-article-delete-text-of-type 'annotation)
347           (gnus-remove-text-with-property 'gnus-prev)
348           (gnus-remove-text-with-property 'gnus-next)
349           (insert
350            (prog1
351                (format "%s" (buffer-string))
352              (erase-buffer)))
353           ;; Find the original headers.
354           (set-buffer gnus-original-article-buffer)
355           (goto-char (point-min))
356           (while (looking-at message-unix-mail-delimiter)
357             (forward-line 1))
358           (setq beg (point))
359           (setq end (or (search-forward "\n\n" nil t) (point)))
360           ;; Delete the headers from the displayed articles.
361           (set-buffer gnus-article-copy)
362           (delete-region (goto-char (point-min))
363                          (or (search-forward "\n\n" nil t) (point)))
364           ;; Insert the original article headers.
365           (insert-buffer-substring gnus-original-article-buffer beg end)
366           (gnus-article-decode-rfc1522)))
367       gnus-article-copy)))
368
369 (defun gnus-post-news (post &optional group header article-buffer yank subject
370                             force-news)
371   (when article-buffer
372     (gnus-copy-article-buffer))
373   (let ((gnus-article-reply article-buffer)
374         (add-to-list gnus-add-to-list))
375     (gnus-setup-message (cond (yank 'reply-yank)
376                               (article-buffer 'reply)
377                               (t 'message))
378       (let* ((group (or group gnus-newsgroup-name))
379              (pgroup group)
380              to-address to-group mailing-list to-list
381              newsgroup-p)
382         (when group
383           (setq to-address (gnus-group-find-parameter group 'to-address)
384                 to-group (gnus-group-find-parameter group 'to-group)
385                 to-list (gnus-group-find-parameter group 'to-list)
386                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
387                 mailing-list (when gnus-mailing-list-groups
388                                (string-match gnus-mailing-list-groups group))
389                 group (gnus-group-real-name group)))
390         (if (or (and to-group
391                      (gnus-news-group-p to-group))
392                 newsgroup-p
393                 force-news
394                 (and (gnus-news-group-p
395                       (or pgroup gnus-newsgroup-name)
396                       (if header (mail-header-number header)
397                         gnus-current-article))
398                      (not mailing-list)
399                      (not to-list)
400                      (not to-address)))
401             ;; This is news.
402             (if post
403                 (message-news (or to-group group))
404               (set-buffer gnus-article-copy)
405               (message-followup (if (or newsgroup-p force-news) nil to-group)))
406           ;; The is mail.
407           (if post
408               (progn
409                 (message-mail (or to-address to-list))
410                 ;; Arrange for mail groups that have no `to-address' to
411                 ;; get that when the user sends off the mail.
412                 (when (and (not to-list)
413                            (not to-address)
414                            add-to-list)
415                   (push (list 'gnus-inews-add-to-address pgroup)
416                         message-send-actions)))
417             (set-buffer gnus-article-copy)
418             (message-wide-reply to-address
419                                 (gnus-group-find-parameter
420                                  gnus-newsgroup-name 'broken-reply-to))))
421         (when yank
422           (gnus-inews-yank-articles yank))))))
423
424 (defun gnus-post-method (arg group &optional silent)
425   "Return the posting method based on GROUP and ARG.
426 If SILENT, don't prompt the user."
427   (let ((group-method (gnus-find-method-for-group group)))
428     (cond
429      ;; If the group-method is nil (which shouldn't happen) we use
430      ;; the default method.
431      ((null group-method)
432       (or gnus-post-method gnus-select-method message-post-method))
433      ;; We want this group's method.
434      ((and arg (not (eq arg 0)))
435       group-method)
436      ;; We query the user for a post method.
437      ((or arg
438           (and gnus-post-method
439                (listp (car gnus-post-method))))
440       (let* ((methods
441               ;; Collect all methods we know about.
442               (append
443                (when gnus-post-method
444                  (if (listp (car gnus-post-method))
445                      gnus-post-method
446                    (list gnus-post-method)))
447                gnus-secondary-select-methods
448                (list gnus-select-method)
449                (list group-method)))
450              method-alist post-methods method)
451         ;; Weed out all mail methods.
452         (while methods
453           (setq method (gnus-server-get-method "" (pop methods)))
454           (when (or (gnus-method-option-p method 'post)
455                     (gnus-method-option-p method 'post-mail))
456             (push method post-methods)))
457         ;; Create a name-method alist.
458         (setq method-alist
459               (mapcar
460                (lambda (m)
461                  (list (concat (cadr m) " (" (symbol-name (car m)) ")") m))
462                post-methods))
463         ;; Query the user.
464         (cadr
465          (assoc
466           (setq gnus-last-posting-server
467                 (if (and silent
468                          gnus-last-posting-server)
469                     ;; Just use the last value.
470                     gnus-last-posting-server
471                   (completing-read
472                    "Posting method: " method-alist nil t
473                    (cons (or gnus-last-posting-server "") 0))))
474           method-alist))))
475      ;; Override normal method.
476      (gnus-post-method
477       gnus-post-method)
478      ;; Use the normal select method.
479      (t gnus-select-method))))
480
481 ;;;
482 ;;; Check whether the message has been sent already.
483 ;;;
484
485 (defvar gnus-inews-sent-ids nil)
486
487 (defun gnus-inews-reject-message ()
488   "Check whether this message has already been sent."
489   (when gnus-sent-message-ids-file
490     (let ((message-id (save-restriction (message-narrow-to-headers)
491                                         (mail-fetch-field "message-id")))
492           end)
493       (when message-id
494         (unless gnus-inews-sent-ids
495           (ignore-errors
496             (load t t t)))
497         (if (member message-id gnus-inews-sent-ids)
498             ;; Reject this message.
499             (not (gnus-yes-or-no-p
500                   (format "Message %s already sent.  Send anyway? "
501                           message-id)))
502           (push message-id gnus-inews-sent-ids)
503           ;; Chop off the last Message-IDs.
504           (when (setq end (nthcdr gnus-sent-message-ids-length
505                                   gnus-inews-sent-ids))
506             (setcdr end nil))
507           (nnheader-temp-write gnus-sent-message-ids-file
508             (gnus-prin1 `(setq gnus-inews-sent-ids ',gnus-inews-sent-ids)))
509           nil)))))
510
511 \f
512
513 ;; Dummy to avoid byte-compile warning.
514 (defvar nnspool-rejected-article-hook)
515
516 ;;; Since the X-Newsreader/X-Mailer are ``vanity'' headers, they might
517 ;;; as well include the Emacs version as well.
518 ;;; The following function works with later GNU Emacs, and XEmacs.
519 (defun gnus-extended-version ()
520   "Stringified Gnus version and Emacs version"
521   (interactive)
522   (concat
523    gnus-version
524    "/"
525    (cond
526     ((string-match "^\\([0-9]+\\.[0-9]+\\)\\.[.0-9]+$" emacs-version)
527      (concat "Emacs " (substring emacs-version
528                                  (match-beginning 1)
529                                  (match-end 1))))
530     ((string-match "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)[^(]*\\(\\((beta.*)\\|'\\)\\)?"
531                    emacs-version)
532      (concat (substring emacs-version
533                         (match-beginning 1)
534                         (match-end 1))
535              (format " %d.%d" emacs-major-version emacs-minor-version)
536              (if (match-beginning 3)
537                  (substring emacs-version
538                             (match-beginning 3)
539                             (match-end 3))
540                "")))
541     (t emacs-version))))
542
543 ;; Written by "Mr. Per Persson" <pp@gnu.ai.mit.edu>.
544 (defun gnus-inews-insert-mime-headers ()
545   (goto-char (point-min))
546   (let ((mail-header-separator
547          (progn
548            (goto-char (point-min))
549            (if (and (search-forward (concat "\n" mail-header-separator "\n")
550                                     nil t)
551                     (not (search-backward "\n\n" nil t)))
552                mail-header-separator
553              ""))))
554     (or (mail-position-on-field "Mime-Version")
555         (insert "1.0")
556         (cond ((save-restriction
557                  (widen)
558                  (goto-char (point-min))
559                  (re-search-forward "[\200-\377]" nil t))
560                (or (mail-position-on-field "Content-Type")
561                    (insert "text/plain; charset=ISO-8859-1"))
562                (or (mail-position-on-field "Content-Transfer-Encoding")
563                    (insert "8bit")))
564               (t (or (mail-position-on-field "Content-Type")
565                      (insert "text/plain; charset=US-ASCII"))
566                  (or (mail-position-on-field "Content-Transfer-Encoding")
567                      (insert "7bit")))))))
568
569 \f
570 ;;;
571 ;;; Gnus Mail Functions
572 ;;;
573
574 ;;; Mail reply commands of Gnus summary mode
575
576 (defun gnus-summary-reply (&optional yank wide)
577   "Start composing a reply mail to the current message.
578 If prefix argument YANK is non-nil, the original article is yanked
579 automatically."
580   (interactive
581    (list (and current-prefix-arg
582               (gnus-summary-work-articles 1))))
583   ;; Stripping headers should be specified with mail-yank-ignored-headers.
584   (gnus-set-global-variables)
585   (when yank
586     (gnus-summary-goto-subject (car yank)))
587   (let ((gnus-article-reply t))
588     (gnus-setup-message (if yank 'reply-yank 'reply)
589       (gnus-summary-select-article)
590       (set-buffer (gnus-copy-article-buffer))
591       (message-reply nil wide (gnus-group-find-parameter
592                                gnus-newsgroup-name 'broken-reply-to))
593       (when yank
594         (gnus-inews-yank-articles yank)))))
595
596 (defun gnus-summary-reply-with-original (n &optional wide)
597   "Start composing a reply mail to the current message.
598 The original article will be yanked."
599   (interactive "P")
600   (gnus-summary-reply (gnus-summary-work-articles n) wide))
601
602 (defun gnus-summary-wide-reply (&optional yank)
603   "Start composing a wide reply mail to the current message.
604 If prefix argument YANK is non-nil, the original article is yanked
605 automatically."
606   (interactive
607    (list (and current-prefix-arg
608               (gnus-summary-work-articles 1))))
609   (gnus-summary-reply yank t))
610
611 (defun gnus-summary-wide-reply-with-original (n)
612   "Start composing a wide reply mail to the current message.
613 The original article will be yanked."
614   (interactive "P")
615   (gnus-summary-reply-with-original n t))
616
617 (defun gnus-summary-mail-forward (&optional full-headers post)
618   "Forward the current message to another user.
619 If FULL-HEADERS (the prefix), include full headers when forwarding."
620   (interactive "P")
621   (gnus-set-global-variables)
622   (gnus-setup-message 'forward
623     (gnus-summary-select-article)
624     (set-buffer gnus-original-article-buffer)
625     (let ((message-included-forward-headers
626            (if full-headers "" message-included-forward-headers)))
627       (message-forward post))))
628
629 (defun gnus-summary-resend-message (address n)
630   "Resend the current article to ADDRESS."
631   (interactive "sResend message(s) to: \nP")
632   (let ((articles (gnus-summary-work-articles n))
633         article)
634     (while (setq article (pop articles))
635       (gnus-summary-select-article nil nil nil article)
636       (save-excursion
637         (set-buffer gnus-original-article-buffer)
638         (message-resend address)))))
639
640 (defun gnus-summary-post-forward (&optional full-headers)
641   "Forward the current article to a newsgroup.
642 If FULL-HEADERS (the prefix), include full headers when forwarding."
643   (interactive "P")
644   (gnus-summary-mail-forward full-headers t))
645
646 (defvar gnus-nastygram-message
647   "The following article was inappropriately posted to %s.\n\n"
648   "Format string to insert in nastygrams.
649 The current group name will be inserted at \"%s\".")
650
651 (defun gnus-summary-mail-nastygram (n)
652   "Send a nastygram to the author of the current article."
653   (interactive "P")
654   (when (or gnus-expert-user
655             (gnus-y-or-n-p
656              "Really send a nastygram to the author of the current article? "))
657     (let ((group gnus-newsgroup-name))
658       (gnus-summary-reply-with-original n)
659       (set-buffer gnus-message-buffer)
660       (message-goto-body)
661       (insert (format gnus-nastygram-message group))
662       (message-send-and-exit))))
663
664 (defun gnus-summary-mail-crosspost-complaint (n)
665   "Send a complaint about crossposting to the current article(s)."
666   (interactive "P")
667   (let ((articles (gnus-summary-work-articles n))
668         article)
669     (while (setq article (pop articles))
670       (set-buffer gnus-summary-buffer)
671       (gnus-summary-goto-subject article)
672       (let ((group (gnus-group-real-name gnus-newsgroup-name))
673             newsgroups followup-to)
674         (gnus-summary-select-article)
675         (set-buffer gnus-original-article-buffer)
676         (if (and (<= (length (message-tokenize-header
677                               (setq newsgroups (mail-fetch-field "newsgroups"))
678                               ", "))
679                      1)
680                  (or (not (setq followup-to (mail-fetch-field "followup-to")))
681                      (not (member group (message-tokenize-header
682                                          followup-to ", ")))))
683             (if followup-to
684                 (gnus-message 1 "Followup-to restricted")
685               (gnus-message 1 "Not a crossposted article"))
686           (set-buffer gnus-summary-buffer)
687           (gnus-summary-reply-with-original 1)
688           (set-buffer gnus-message-buffer)
689           (message-goto-body)
690           (insert (format gnus-crosspost-complaint newsgroups group))
691           (message-goto-subject)
692           (re-search-forward " *$")
693           (replace-match " (crosspost notification)" t t)
694           (deactivate-mark)
695           (when (gnus-y-or-n-p "Send this complaint? ")
696             (message-send-and-exit)))))))
697
698 (defun gnus-summary-mail-other-window ()
699   "Compose mail in other window."
700   (interactive)
701   (gnus-setup-message 'message
702     (message-mail)))
703
704 (defun gnus-mail-parse-comma-list ()
705   (let (accumulated
706         beg)
707     (skip-chars-forward " ")
708     (while (not (eobp))
709       (setq beg (point))
710       (skip-chars-forward "^,")
711       (while (zerop
712               (save-excursion
713                 (save-restriction
714                   (let ((i 0))
715                     (narrow-to-region beg (point))
716                     (goto-char beg)
717                     (logand (progn
718                               (while (search-forward "\"" nil t)
719                                 (incf i))
720                               (if (zerop i) 2 i))
721                             2)))))
722         (skip-chars-forward ",")
723         (skip-chars-forward "^,"))
724       (skip-chars-backward " ")
725       (push (buffer-substring beg (point))
726             accumulated)
727       (skip-chars-forward "^,")
728       (skip-chars-forward ", "))
729     accumulated))
730
731 (defun gnus-inews-add-to-address (group)
732   (let ((to-address (mail-fetch-field "to")))
733     (when (and to-address
734                (gnus-alive-p))
735       ;; This mail group doesn't have a `to-list', so we add one
736       ;; here.  Magic!
737       (when (gnus-y-or-n-p
738              (format "Do you want to add this as `to-list': %s " to-address))
739         (gnus-group-add-parameter group (cons 'to-list to-address))))))
740
741 (defun gnus-put-message ()
742   "Put the current message in some group and return to Gnus."
743   (interactive)
744   (let ((reply gnus-article-reply)
745         (winconf gnus-prev-winconf)
746         (group gnus-newsgroup-name))
747
748     (or (and group (not (gnus-group-read-only-p group)))
749         (setq group (read-string "Put in group: " nil
750                                  (gnus-writable-groups))))
751     (when (gnus-gethash group gnus-newsrc-hashtb)
752       (error "No such group: %s" group))
753
754     (save-excursion
755       (save-restriction
756         (widen)
757         (message-narrow-to-headers)
758         (let (gnus-deletable-headers)
759           (if (message-news-p)
760               (message-generate-headers message-required-news-headers)
761             (message-generate-headers message-required-mail-headers)))
762         (goto-char (point-max))
763         (insert "Gcc: " group "\n")
764         (widen)))
765
766     (gnus-inews-do-gcc)
767
768     (when (get-buffer gnus-group-buffer)
769       (when (gnus-buffer-exists-p (car-safe reply))
770         (set-buffer (car reply))
771         (and (cdr reply)
772              (gnus-summary-mark-article-as-replied
773               (cdr reply))))
774       (when winconf
775         (set-window-configuration winconf)))))
776
777 (defun gnus-article-mail (yank)
778   "Send a reply to the address near point.
779 If YANK is non-nil, include the original article."
780   (interactive "P")
781   (let ((address
782          (buffer-substring
783           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
784           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
785     (when address
786       (message-reply address)
787       (when yank
788         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
789
790 (defvar nntp-server-type)
791 (defun gnus-bug ()
792   "Send a bug report to the Gnus maintainers."
793   (interactive)
794   (unless (gnus-alive-p)
795     (error "Gnus has been shut down"))
796   (gnus-setup-message 'bug
797     (delete-other-windows)
798     (switch-to-buffer "*Gnus Help Bug*")
799     (erase-buffer)
800     (insert gnus-bug-message)
801     (goto-char (point-min))
802     (message-pop-to-buffer "*Gnus Bug*")
803     (message-setup `((To . ,gnus-maintainer) (Subject . "")))
804     (push `(gnus-bug-kill-buffer) message-send-actions)
805     (goto-char (point-min))
806     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
807     (forward-line 1)
808     (insert (gnus-version) "\n")
809     (insert (emacs-version) "\n")
810     (when (and (boundp 'nntp-server-type)
811                (stringp nntp-server-type))
812       (insert nntp-server-type))
813     (insert "\n\n\n\n\n")
814     (gnus-debug)
815     (goto-char (point-min))
816     (search-forward "Subject: " nil t)
817     (message "")))
818
819 (defun gnus-bug-kill-buffer ()
820   (when (get-buffer "*Gnus Help Bug*")
821     (kill-buffer "*Gnus Help Bug*")))
822
823 (defun gnus-debug ()
824   "Attempts to go through the Gnus source file and report what variables have been changed.
825 The source file has to be in the Emacs load path."
826   (interactive)
827   (let ((files '("gnus.el" "gnus-sum.el" "gnus-group.el"
828                  "gnus-art.el" "gnus-start.el" "gnus-async.el"
829                  "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
830                  "nnmail.el" "message.el"))
831         file expr olist sym)
832     (gnus-message 4 "Please wait while we snoop your variables...")
833     (sit-for 0)
834     ;; Go through all the files looking for non-default values for variables.
835     (save-excursion
836       (set-buffer (get-buffer-create " *gnus bug info*"))
837       (buffer-disable-undo (current-buffer))
838       (while files
839         (erase-buffer)
840         (when (and (setq file (locate-library (pop files)))
841                    (file-exists-p file))
842           (insert-file-contents file)
843           (goto-char (point-min))
844           (if (not (re-search-forward "^;;* *Internal variables" nil t))
845               (gnus-message 4 "Malformed sources in file %s" file)
846             (narrow-to-region (point-min) (point))
847             (goto-char (point-min))
848             (while (setq expr (ignore-errors (read (current-buffer))))
849               (ignore-errors
850                 (and (or (eq (car expr) 'defvar)
851                          (eq (car expr) 'defcustom))
852                      (stringp (nth 3 expr))
853                      (or (not (boundp (nth 1 expr)))
854                          (not (equal (eval (nth 2 expr))
855                                      (symbol-value (nth 1 expr)))))
856                      (push (nth 1 expr) olist)))))))
857       (kill-buffer (current-buffer)))
858     (when (setq olist (nreverse olist))
859       (insert "------------------ Environment follows ------------------\n\n"))
860     (while olist
861       (if (boundp (car olist))
862           (condition-case ()
863               (pp `(setq ,(car olist)
864                          ,(if (or (consp (setq sym (symbol-value (car olist))))
865                                   (and (symbolp sym)
866                                        (not (or (eq sym nil)
867                                                 (eq sym t)))))
868                               (list 'quote (symbol-value (car olist)))
869                             (symbol-value (car olist))))
870                   (current-buffer))
871             (error
872              (format "(setq %s 'whatever)\n" (car olist))))
873         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
874       (setq olist (cdr olist)))
875     (insert "\n\n")
876     ;; Remove any null chars - they seem to cause trouble for some
877     ;; mailers.  (Byte-compiled output from the stuff above.)
878     (goto-char (point-min))
879     (while (re-search-forward "[\000\200]" nil t)
880       (replace-match "" t t))))
881
882 ;;; Treatment of rejected articles.
883 ;;; Bounced mail.
884
885 (defun gnus-summary-resend-bounced-mail (&optional fetch)
886   "Re-mail the current message.
887 This only makes sense if the current message is a bounce message than
888 contains some mail you have written which has been bounced back to
889 you.
890 If FETCH, try to fetch the article that this is a reply to, if indeed
891 this is a reply."
892   (interactive "P")
893   (gnus-summary-select-article t)
894   (set-buffer gnus-original-article-buffer)
895   (gnus-setup-message 'compose-bounce
896     (let* ((references (mail-fetch-field "references"))
897            (parent (and references (gnus-parent-id references))))
898       (message-bounce)
899       ;; If there are references, we fetch the article we answered to.
900       (and fetch parent
901            (gnus-summary-refer-article parent)
902            (gnus-summary-show-all-headers)))))
903
904 ;;; Gcc handling.
905
906 ;; Do Gcc handling, which copied the message over to some group.
907 (defun gnus-inews-do-gcc (&optional gcc)
908   (interactive)
909   (when (gnus-alive-p)
910     (save-excursion
911       (save-restriction
912         (message-narrow-to-headers)
913         (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
914               (cur (current-buffer))
915               groups group method)
916           (when gcc
917             (message-remove-header "gcc")
918             (widen)
919             (setq groups (message-tokenize-header gcc " ,"))
920             ;; Copy the article over to some group(s).
921             (while (setq group (pop groups))
922               (gnus-check-server
923                (setq method
924                      (cond ((and (null (gnus-get-info group))
925                                  (eq (car gnus-message-archive-method)
926                                      (car
927                                       (gnus-server-to-method
928                                        (gnus-group-method group)))))
929                             ;; If the group doesn't exist, we assume
930                             ;; it's an archive group...
931                             gnus-message-archive-method)
932                            ;; Use the method.
933                            ((gnus-info-method (gnus-get-info group))
934                             (gnus-info-method (gnus-get-info group)))
935                            ;; Find the method.
936                            (t (gnus-group-method group)))))
937               (gnus-check-server method)
938               (unless (gnus-request-group group t method)
939                 (gnus-request-create-group group method))
940               (save-excursion
941                 (nnheader-set-temp-buffer " *acc*")
942                 (insert-buffer-substring cur)
943                 (goto-char (point-min))
944                 (when (re-search-forward
945                        (concat "^" (regexp-quote mail-header-separator) "$")
946                        nil t)
947                   (replace-match "" t t ))
948                 (unless (gnus-request-accept-article group method t)
949                   (gnus-message 1 "Couldn't store article in group %s: %s"
950                                 group (gnus-status-message method))
951                   (sit-for 2))
952                 (kill-buffer (current-buffer))))))))))
953
954 (defun gnus-inews-insert-gcc ()
955   "Insert Gcc headers based on `gnus-outgoing-message-group'."
956   (save-excursion
957     (save-restriction
958       (message-narrow-to-headers)
959       (let* ((group gnus-outgoing-message-group)
960              (gcc (cond
961                    ((gnus-functionp group)
962                     (funcall group))
963                    ((or (stringp group) (list group))
964                     group))))
965         (when gcc
966           (insert "Gcc: "
967                   (if (stringp gcc) gcc
968                     (mapconcat 'identity gcc " "))
969                   "\n"))))))
970
971 (defun gnus-inews-insert-archive-gcc (&optional group)
972   "Insert the Gcc to say where the article is to be archived."
973   (let* ((var gnus-message-archive-group)
974          (group (or group gnus-newsgroup-name ""))
975          result
976          gcc-self-val
977          (groups
978           (cond
979            ((null gnus-message-archive-method)
980             ;; Ignore.
981             nil)
982            ((stringp var)
983             ;; Just a single group.
984             (list var))
985            ((null var)
986             ;; We don't want this.
987             nil)
988            ((and (listp var) (stringp (car var)))
989             ;; A list of groups.
990             var)
991            ((gnus-functionp var)
992             ;; A function.
993             (funcall var group))
994            (t
995             ;; An alist of regexps/functions/forms.
996             (while (and var
997                         (not
998                          (setq result
999                                (cond
1000                                 ((stringp (caar var))
1001                                  ;; Regexp.
1002                                  (when (string-match (caar var) group)
1003                                    (cdar var)))
1004                                 ((gnus-functionp (car var))
1005                                  ;; Function.
1006                                  (funcall (car var) group))
1007                                 (t
1008                                  (eval (car var)))))))
1009               (setq var (cdr var)))
1010             result)))
1011          name)
1012     (when groups
1013       (when (stringp groups)
1014         (setq groups (list groups)))
1015       (save-excursion
1016         (save-restriction
1017           (message-narrow-to-headers)
1018           (goto-char (point-max))
1019           (insert "Gcc: ")
1020           (if (and gnus-newsgroup-name
1021                    (setq gcc-self-val
1022                          (gnus-group-find-parameter
1023                           gnus-newsgroup-name 'gcc-self)))
1024               (progn
1025                 (insert
1026                  (if (stringp gcc-self-val)
1027                      gcc-self-val
1028                    group))
1029                 (if (not (eq gcc-self-val 'none))
1030                     (insert "\n")
1031                   (progn
1032                     (beginning-of-line)
1033                     (kill-line))))
1034             (while (setq name (pop groups))
1035               (insert (if (string-match ":" name)
1036                           name
1037                         (gnus-group-prefixed-name
1038                          name gnus-message-archive-method)))
1039               (when groups
1040                 (insert " ")))
1041             (insert "\n")))))))
1042
1043 (defun gnus-summary-send-draft ()
1044   "Enter a mail/post buffer to edit and send the draft."
1045   (interactive)
1046   (gnus-set-global-variables)
1047   (let (buf)
1048     (if (not (setq buf (gnus-request-restore-buffer
1049                         (gnus-summary-article-number) gnus-newsgroup-name)))
1050         (error "Couldn't restore the article")
1051       (switch-to-buffer buf)
1052       (when (eq major-mode 'news-reply-mode)
1053         (local-set-key "\C-c\C-c" 'gnus-inews-news))
1054       ;; Insert the separator.
1055       (goto-char (point-min))
1056       (search-forward "\n\n")
1057       (forward-char -1)
1058       (insert mail-header-separator)
1059       ;; Configure windows.
1060       (let ((gnus-draft-buffer (current-buffer)))
1061         (gnus-configure-windows 'draft t)
1062         (goto-char (point))))))
1063
1064 (gnus-add-shutdown 'gnus-inews-close 'gnus)
1065
1066 (defun gnus-inews-close ()
1067   (setq gnus-inews-sent-ids nil))
1068
1069 ;;; Allow redefinition of functions.
1070
1071 (gnus-ems-redefine)
1072
1073 (provide 'gnus-msg)
1074
1075 ;;; gnus-msg.el ends here