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