d570eb58de0393e4a7af8b371642152530a4df58
[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           (when (fboundp 'deactivate-mark)
695             (deactivate-mark))
696           (when (gnus-y-or-n-p "Send this complaint? ")
697             (message-send-and-exit)))))))
698
699 (defun gnus-summary-mail-other-window ()
700   "Compose mail in other window."
701   (interactive)
702   (gnus-setup-message 'message
703     (message-mail)))
704
705 (defun gnus-mail-parse-comma-list ()
706   (let (accumulated
707         beg)
708     (skip-chars-forward " ")
709     (while (not (eobp))
710       (setq beg (point))
711       (skip-chars-forward "^,")
712       (while (zerop
713               (save-excursion
714                 (save-restriction
715                   (let ((i 0))
716                     (narrow-to-region beg (point))
717                     (goto-char beg)
718                     (logand (progn
719                               (while (search-forward "\"" nil t)
720                                 (incf i))
721                               (if (zerop i) 2 i))
722                             2)))))
723         (skip-chars-forward ",")
724         (skip-chars-forward "^,"))
725       (skip-chars-backward " ")
726       (push (buffer-substring beg (point))
727             accumulated)
728       (skip-chars-forward "^,")
729       (skip-chars-forward ", "))
730     accumulated))
731
732 (defun gnus-inews-add-to-address (group)
733   (let ((to-address (mail-fetch-field "to")))
734     (when (and to-address
735                (gnus-alive-p))
736       ;; This mail group doesn't have a `to-list', so we add one
737       ;; here.  Magic!
738       (when (gnus-y-or-n-p
739              (format "Do you want to add this as `to-list': %s " to-address))
740         (gnus-group-add-parameter group (cons 'to-list to-address))))))
741
742 (defun gnus-put-message ()
743   "Put the current message in some group and return to Gnus."
744   (interactive)
745   (let ((reply gnus-article-reply)
746         (winconf gnus-prev-winconf)
747         (group gnus-newsgroup-name))
748
749     (or (and group (not (gnus-group-read-only-p group)))
750         (setq group (read-string "Put in group: " nil
751                                  (gnus-writable-groups))))
752     (when (gnus-gethash group gnus-newsrc-hashtb)
753       (error "No such group: %s" group))
754
755     (save-excursion
756       (save-restriction
757         (widen)
758         (message-narrow-to-headers)
759         (let (gnus-deletable-headers)
760           (if (message-news-p)
761               (message-generate-headers message-required-news-headers)
762             (message-generate-headers message-required-mail-headers)))
763         (goto-char (point-max))
764         (insert "Gcc: " group "\n")
765         (widen)))
766
767     (gnus-inews-do-gcc)
768
769     (when (get-buffer gnus-group-buffer)
770       (when (gnus-buffer-exists-p (car-safe reply))
771         (set-buffer (car reply))
772         (and (cdr reply)
773              (gnus-summary-mark-article-as-replied
774               (cdr reply))))
775       (when winconf
776         (set-window-configuration winconf)))))
777
778 (defun gnus-article-mail (yank)
779   "Send a reply to the address near point.
780 If YANK is non-nil, include the original article."
781   (interactive "P")
782   (let ((address
783          (buffer-substring
784           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
785           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
786     (when address
787       (message-reply address)
788       (when yank
789         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
790
791 (defvar nntp-server-type)
792 (defun gnus-bug ()
793   "Send a bug report to the Gnus maintainers."
794   (interactive)
795   (unless (gnus-alive-p)
796     (error "Gnus has been shut down"))
797   (gnus-setup-message 'bug
798     (delete-other-windows)
799     (switch-to-buffer "*Gnus Help Bug*")
800     (erase-buffer)
801     (insert gnus-bug-message)
802     (goto-char (point-min))
803     (message-pop-to-buffer "*Gnus Bug*")
804     (message-setup `((To . ,gnus-maintainer) (Subject . "")))
805     (push `(gnus-bug-kill-buffer) message-send-actions)
806     (goto-char (point-min))
807     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
808     (forward-line 1)
809     (insert (gnus-version) "\n")
810     (insert (emacs-version) "\n")
811     (when (and (boundp 'nntp-server-type)
812                (stringp nntp-server-type))
813       (insert nntp-server-type))
814     (insert "\n\n\n\n\n")
815     (gnus-debug)
816     (goto-char (point-min))
817     (search-forward "Subject: " nil t)
818     (message "")))
819
820 (defun gnus-bug-kill-buffer ()
821   (when (get-buffer "*Gnus Help Bug*")
822     (kill-buffer "*Gnus Help Bug*")))
823
824 (defun gnus-debug ()
825   "Attempts to go through the Gnus source file and report what variables have been changed.
826 The source file has to be in the Emacs load path."
827   (interactive)
828   (let ((files '("gnus.el" "gnus-sum.el" "gnus-group.el"
829                  "gnus-art.el" "gnus-start.el" "gnus-async.el"
830                  "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
831                  "nnmail.el" "message.el"))
832         file expr olist sym)
833     (gnus-message 4 "Please wait while we snoop your variables...")
834     (sit-for 0)
835     ;; Go through all the files looking for non-default values for variables.
836     (save-excursion
837       (set-buffer (get-buffer-create " *gnus bug info*"))
838       (buffer-disable-undo (current-buffer))
839       (while files
840         (erase-buffer)
841         (when (and (setq file (locate-library (pop files)))
842                    (file-exists-p file))
843           (insert-file-contents file)
844           (goto-char (point-min))
845           (if (not (re-search-forward "^;;* *Internal variables" nil t))
846               (gnus-message 4 "Malformed sources in file %s" file)
847             (narrow-to-region (point-min) (point))
848             (goto-char (point-min))
849             (while (setq expr (ignore-errors (read (current-buffer))))
850               (ignore-errors
851                 (and (or (eq (car expr) 'defvar)
852                          (eq (car expr) 'defcustom))
853                      (stringp (nth 3 expr))
854                      (or (not (boundp (nth 1 expr)))
855                          (not (equal (eval (nth 2 expr))
856                                      (symbol-value (nth 1 expr)))))
857                      (push (nth 1 expr) olist)))))))
858       (kill-buffer (current-buffer)))
859     (when (setq olist (nreverse olist))
860       (insert "------------------ Environment follows ------------------\n\n"))
861     (while olist
862       (if (boundp (car olist))
863           (condition-case ()
864               (pp `(setq ,(car olist)
865                          ,(if (or (consp (setq sym (symbol-value (car olist))))
866                                   (and (symbolp sym)
867                                        (not (or (eq sym nil)
868                                                 (eq sym t)))))
869                               (list 'quote (symbol-value (car olist)))
870                             (symbol-value (car olist))))
871                   (current-buffer))
872             (error
873              (format "(setq %s 'whatever)\n" (car olist))))
874         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
875       (setq olist (cdr olist)))
876     (insert "\n\n")
877     ;; Remove any null chars - they seem to cause trouble for some
878     ;; mailers.  (Byte-compiled output from the stuff above.)
879     (goto-char (point-min))
880     (while (re-search-forward "[\000\200]" nil t)
881       (replace-match "" t t))))
882
883 ;;; Treatment of rejected articles.
884 ;;; Bounced mail.
885
886 (defun gnus-summary-resend-bounced-mail (&optional fetch)
887   "Re-mail the current message.
888 This only makes sense if the current message is a bounce message than
889 contains some mail you have written which has been bounced back to
890 you.
891 If FETCH, try to fetch the article that this is a reply to, if indeed
892 this is a reply."
893   (interactive "P")
894   (gnus-summary-select-article t)
895   (set-buffer gnus-original-article-buffer)
896   (gnus-setup-message 'compose-bounce
897     (let* ((references (mail-fetch-field "references"))
898            (parent (and references (gnus-parent-id references))))
899       (message-bounce)
900       ;; If there are references, we fetch the article we answered to.
901       (and fetch parent
902            (gnus-summary-refer-article parent)
903            (gnus-summary-show-all-headers)))))
904
905 ;;; Gcc handling.
906
907 ;; Do Gcc handling, which copied the message over to some group.
908 (defun gnus-inews-do-gcc (&optional gcc)
909   (interactive)
910   (when (gnus-alive-p)
911     (save-excursion
912       (save-restriction
913         (message-narrow-to-headers)
914         (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
915               (cur (current-buffer))
916               groups group method)
917           (when gcc
918             (message-remove-header "gcc")
919             (widen)
920             (setq groups (message-tokenize-header gcc " ,"))
921             ;; Copy the article over to some group(s).
922             (while (setq group (pop groups))
923               (gnus-check-server
924                (setq method
925                      (cond ((and (null (gnus-get-info group))
926                                  (eq (car gnus-message-archive-method)
927                                      (car
928                                       (gnus-server-to-method
929                                        (gnus-group-method group)))))
930                             ;; If the group doesn't exist, we assume
931                             ;; it's an archive group...
932                             gnus-message-archive-method)
933                            ;; Use the method.
934                            ((gnus-info-method (gnus-get-info group))
935                             (gnus-info-method (gnus-get-info group)))
936                            ;; Find the method.
937                            (t (gnus-group-method group)))))
938               (gnus-check-server method)
939               (unless (gnus-request-group group t method)
940                 (gnus-request-create-group group method))
941               (save-excursion
942                 (nnheader-set-temp-buffer " *acc*")
943                 (insert-buffer-substring cur)
944                 (goto-char (point-min))
945                 (when (re-search-forward
946                        (concat "^" (regexp-quote mail-header-separator) "$")
947                        nil t)
948                   (replace-match "" t t ))
949                 (unless (gnus-request-accept-article group method t)
950                   (gnus-message 1 "Couldn't store article in group %s: %s"
951                                 group (gnus-status-message method))
952                   (sit-for 2))
953                 (kill-buffer (current-buffer))))))))))
954
955 (defun gnus-inews-insert-gcc ()
956   "Insert Gcc headers based on `gnus-outgoing-message-group'."
957   (save-excursion
958     (save-restriction
959       (message-narrow-to-headers)
960       (let* ((group gnus-outgoing-message-group)
961              (gcc (cond
962                    ((gnus-functionp group)
963                     (funcall group))
964                    ((or (stringp group) (list group))
965                     group))))
966         (when gcc
967           (insert "Gcc: "
968                   (if (stringp gcc) gcc
969                     (mapconcat 'identity gcc " "))
970                   "\n"))))))
971
972 (defun gnus-inews-insert-archive-gcc (&optional group)
973   "Insert the Gcc to say where the article is to be archived."
974   (let* ((var gnus-message-archive-group)
975          (group (or group gnus-newsgroup-name ""))
976          result
977          gcc-self-val
978          (groups
979           (cond
980            ((null gnus-message-archive-method)
981             ;; Ignore.
982             nil)
983            ((stringp var)
984             ;; Just a single group.
985             (list var))
986            ((null var)
987             ;; We don't want this.
988             nil)
989            ((and (listp var) (stringp (car var)))
990             ;; A list of groups.
991             var)
992            ((gnus-functionp var)
993             ;; A function.
994             (funcall var group))
995            (t
996             ;; An alist of regexps/functions/forms.
997             (while (and var
998                         (not
999                          (setq result
1000                                (cond
1001                                 ((stringp (caar var))
1002                                  ;; Regexp.
1003                                  (when (string-match (caar var) group)
1004                                    (cdar var)))
1005                                 ((gnus-functionp (car var))
1006                                  ;; Function.
1007                                  (funcall (car var) group))
1008                                 (t
1009                                  (eval (car var)))))))
1010               (setq var (cdr var)))
1011             result)))
1012          name)
1013     (when groups
1014       (when (stringp groups)
1015         (setq groups (list groups)))
1016       (save-excursion
1017         (save-restriction
1018           (message-narrow-to-headers)
1019           (goto-char (point-max))
1020           (insert "Gcc: ")
1021           (if (and gnus-newsgroup-name
1022                    (setq gcc-self-val
1023                          (gnus-group-find-parameter
1024                           gnus-newsgroup-name 'gcc-self)))
1025               (progn
1026                 (insert
1027                  (if (stringp gcc-self-val)
1028                      gcc-self-val
1029                    group))
1030                 (if (not (eq gcc-self-val 'none))
1031                     (insert "\n")
1032                   (progn
1033                     (beginning-of-line)
1034                     (kill-line))))
1035             (while (setq name (pop groups))
1036               (insert (if (string-match ":" name)
1037                           name
1038                         (gnus-group-prefixed-name
1039                          name gnus-message-archive-method)))
1040               (when groups
1041                 (insert " ")))
1042             (insert "\n")))))))
1043
1044 (defun gnus-summary-send-draft ()
1045   "Enter a mail/post buffer to edit and send the draft."
1046   (interactive)
1047   (gnus-set-global-variables)
1048   (let (buf)
1049     (if (not (setq buf (gnus-request-restore-buffer
1050                         (gnus-summary-article-number) gnus-newsgroup-name)))
1051         (error "Couldn't restore the article")
1052       (switch-to-buffer buf)
1053       (when (eq major-mode 'news-reply-mode)
1054         (local-set-key "\C-c\C-c" 'gnus-inews-news))
1055       ;; Insert the separator.
1056       (goto-char (point-min))
1057       (search-forward "\n\n")
1058       (forward-char -1)
1059       (insert mail-header-separator)
1060       ;; Configure windows.
1061       (let ((gnus-draft-buffer (current-buffer)))
1062         (gnus-configure-windows 'draft t)
1063         (goto-char (point))))))
1064
1065 (gnus-add-shutdown 'gnus-inews-close 'gnus)
1066
1067 (defun gnus-inews-close ()
1068   (setq gnus-inews-sent-ids nil))
1069
1070 ;;; Allow redefinition of functions.
1071
1072 (gnus-ems-redefine)
1073
1074 (provide 'gnus-msg)
1075
1076 ;;; gnus-msg.el ends here