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