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