*** 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 (defvar gnus-posting-style-alist
104   '((organization . message-user-organization)
105     (signature . message-signature)
106     (signature-file . message-signature-file)
107     (address . user-mail-address)
108     (name . user-full-name))
109   "*Mapping from style parameters to variables.")
110
111 (defcustom gnus-group-posting-charset-alist
112   '(("^no\\." iso-8859-1)
113     (".*" iso-8859-1)
114     (message-this-is-news iso-8859-1)
115     (message-this-is-mail nil)
116     )
117   "Alist of regexps (to match group names) and default charsets to be unencoded when posting."
118   :type '(repeat (list (regexp :tag "Group")
119                        (symbol :tag "Charset")))
120   :group 'gnus-charset)
121
122 ;;; Internal variables.
123
124 (defvar gnus-inhibit-posting-styles nil
125   "Inhibit the use of posting styles.")
126
127 (defvar gnus-message-buffer "*Mail Gnus*")
128 (defvar gnus-article-copy nil)
129 (defvar gnus-last-posting-server nil)
130 (defvar gnus-message-group-art nil)
131
132 (defconst gnus-bug-message
133   "Sending a bug report to the Gnus Towers.
134 ========================================
135
136 The buffer below is a mail buffer.  When you press `C-c C-c', it will
137 be sent to the Gnus Bug Exterminators.
138
139 At the bottom of the buffer you'll see lots of variable settings.
140 Please do not delete those.  They will tell the Bug People what your
141 environment is, so that it will be easier to locate the bugs.
142
143 If you have found a bug that makes Emacs go \"beep\", set
144 debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
145 and include the backtrace in your bug report.
146
147 Please describe the bug in annoying, painstaking detail.
148
149 Thank you for your help in stamping out bugs.
150 ")
151
152 (eval-and-compile
153   (autoload 'gnus-uu-post-news "gnus-uu" nil t)
154   (autoload 'news-setup "rnewspost")
155   (autoload 'news-reply-mode "rnewspost")
156   (autoload 'rmail-dont-reply-to "mail-utils")
157   (autoload 'rmail-output "rmailout"))
158
159 \f
160 ;;;
161 ;;; Gnus Posting Functions
162 ;;;
163
164 (gnus-define-keys (gnus-summary-send-map "S" gnus-summary-mode-map)
165   "p" gnus-summary-post-news
166   "f" gnus-summary-followup
167   "F" gnus-summary-followup-with-original
168   "c" gnus-summary-cancel-article
169   "s" gnus-summary-supersede-article
170   "r" gnus-summary-reply
171   "R" gnus-summary-reply-with-original
172   "w" gnus-summary-wide-reply
173   "W" gnus-summary-wide-reply-with-original
174   "n" gnus-summary-followup-to-mail
175   "N" gnus-summary-followup-to-mail-with-original
176   "m" gnus-summary-mail-other-window
177   "u" gnus-uu-post-news
178   "\M-c" gnus-summary-mail-crosspost-complaint
179   "om" gnus-summary-mail-forward
180   "op" gnus-summary-post-forward
181   "Om" gnus-uu-digest-mail-forward
182   "Op" gnus-uu-digest-post-forward)
183
184 (gnus-define-keys (gnus-send-bounce-map "D" gnus-summary-send-map)
185   "b" gnus-summary-resend-bounced-mail
186   ;; "c" gnus-summary-send-draft
187   "r" gnus-summary-resend-message)
188
189 ;;; Internal functions.
190
191 (defvar gnus-article-reply nil)
192 (defmacro gnus-setup-message (config &rest forms)
193   (let ((winconf (make-symbol "gnus-setup-message-winconf"))
194         (buffer (make-symbol "gnus-setup-message-buffer"))
195         (article (make-symbol "gnus-setup-message-article"))
196         (group (make-symbol "gnus-setup-message-group")))
197     `(let ((,winconf (current-window-configuration))
198            (,buffer (buffer-name (current-buffer)))
199            (,article (and gnus-article-reply (gnus-summary-article-number)))
200            (,group gnus-newsgroup-name)
201            (message-header-setup-hook
202             (copy-sequence message-header-setup-hook))
203            (message-mode-hook (copy-sequence message-mode-hook)))
204        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
205        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
206        (add-hook 'message-mode-hook 'gnus-configure-posting-styles)
207        (unwind-protect
208            (progn
209              ,@forms)
210          (gnus-inews-add-send-actions ,winconf ,buffer ,article)
211          (setq gnus-message-buffer (current-buffer))
212          (set (make-local-variable 'gnus-message-group-art)
213               (cons ,group ,article))
214          (set (make-local-variable 'gnus-newsgroup-name) ,group)
215          (set (make-local-variable 'message-posting-charset)
216               (gnus-setup-posting-charset ,group))
217          (gnus-run-hooks 'gnus-message-setup-hook))
218        (gnus-add-buffer)
219        (gnus-configure-windows ,config t)
220        (set-buffer-modified-p nil))))
221
222 (defun gnus-setup-posting-charset (group)
223   (let ((alist gnus-group-posting-charset-alist)
224         elem)
225     (catch 'found
226       (while (setq elem (pop alist))
227         (when (or (and (stringp (car elem))
228                        (string-match (car elem) group))
229                   (and (gnus-functionp (car elem))
230                        (funcall (car elem) group))
231                   (and (symbolp (car elem))
232                        (symbol-value (car elem))))
233           (throw 'found (cadr elem)))))))
234
235 (defun gnus-inews-add-send-actions (winconf buffer article)
236   (make-local-hook 'message-sent-hook)
237   (add-hook 'message-sent-hook 'gnus-inews-do-gcc nil t)
238   (setq message-post-method
239         `(lambda (arg)
240            (gnus-post-method arg ,gnus-newsgroup-name)))
241   (setq message-newsreader (setq message-mailer (gnus-extended-version)))
242   (message-add-action
243    `(set-window-configuration ,winconf) 'exit 'postpone 'kill)
244   (message-add-action
245    `(when (gnus-buffer-exists-p ,buffer)
246       (save-excursion
247         (set-buffer ,buffer)
248         ,(when article
249            `(gnus-summary-mark-article-as-replied ,article))))
250    'send))
251
252 (put 'gnus-setup-message 'lisp-indent-function 1)
253 (put 'gnus-setup-message 'edebug-form-spec '(form body))
254
255 ;;; Post news commands of Gnus group mode and summary mode
256
257 (defun gnus-group-mail (&optional arg)
258   "Start composing a mail.
259 If ARG, use the group under the point to find a posting style.
260 If ARG is 1, prompt for a group name to find the posting style."
261   (interactive "P")
262   ;; We can't `let' gnus-newsgroup-name here, since that leads
263   ;; to local variables leaking.
264   (let ((group gnus-newsgroup-name)
265         (buffer (current-buffer)))
266     (unwind-protect
267         (progn
268           (setq gnus-newsgroup-name
269                 (if arg
270                     (if (= 1 (prefix-numeric-value arg))
271                         (completing-read "Use posting style of group: "
272                                          gnus-active-hashtb nil
273                                          (gnus-read-active-file-p))
274                       (gnus-group-group-name))
275                   ""))
276           (gnus-setup-message 'message (message-mail)))
277       (save-excursion
278         (set-buffer buffer)
279         (setq gnus-newsgroup-name group)))))
280
281 (defun gnus-group-post-news (&optional arg)
282   "Start composing a news message.
283 If ARG, post to the group under point.
284 If ARG is 1, prompt for a group name."
285   (interactive "P")
286   ;; Bind this variable here to make message mode hooks work ok.
287   (let ((gnus-newsgroup-name
288          (if arg
289              (if (= 1 (prefix-numeric-value arg))
290                  (completing-read "Newsgroup: " gnus-active-hashtb nil
291                                   (gnus-read-active-file-p))
292                (gnus-group-group-name))
293            "")))
294     (gnus-post-news 'post gnus-newsgroup-name)))
295
296 (defun gnus-summary-post-news ()
297   "Start composing a news message."
298   (interactive)
299   (gnus-post-news 'post gnus-newsgroup-name))
300
301 (defun gnus-summary-followup (yank &optional force-news)
302   "Compose a followup to an article.
303 If prefix argument YANK is non-nil, original article is yanked automatically."
304   (interactive
305    (list (and current-prefix-arg
306               (gnus-summary-work-articles 1))))
307   (when yank
308     (gnus-summary-goto-subject (car yank)))
309   (save-window-excursion
310     (gnus-summary-select-article))
311   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
312         (gnus-newsgroup-name gnus-newsgroup-name))
313     ;; Send a followup.
314     (gnus-post-news nil gnus-newsgroup-name
315                     headers gnus-article-buffer
316                     yank nil force-news)))
317
318 (defun gnus-summary-followup-with-original (n &optional force-news)
319   "Compose a followup to an article and include the original article."
320   (interactive "P")
321   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
322
323 (defun gnus-summary-followup-to-mail (&optional arg)
324   "Followup to the current mail message via news."
325   (interactive
326    (list (and current-prefix-arg
327               (gnus-summary-work-articles 1))))
328   (gnus-summary-followup arg t))
329
330 (defun gnus-summary-followup-to-mail-with-original (&optional arg)
331   "Followup to the current mail message via news."
332   (interactive "P")
333   (gnus-summary-followup (gnus-summary-work-articles arg) t))
334
335 (defun gnus-inews-yank-articles (articles)
336   (let (beg article)
337     (message-goto-body)
338     (while (setq article (pop articles))
339       (save-window-excursion
340         (set-buffer gnus-summary-buffer)
341         (gnus-summary-select-article nil nil nil article)
342         (gnus-summary-remove-process-mark article))
343       (gnus-copy-article-buffer)
344       (let ((message-reply-buffer gnus-article-copy)
345             (message-reply-headers gnus-current-headers))
346         (message-yank-original)
347         (setq beg (or beg (mark t))))
348       (when articles
349         (insert "\n")))
350     (push-mark)
351     (goto-char beg)))
352
353 (defun gnus-summary-cancel-article (&optional n symp)
354   "Cancel an article you posted.
355 Uses the process-prefix convention.  If given the symbolic
356 prefix `a', cancel using the standard posting method; if not
357 post using the current select method."
358   (interactive (gnus-interactive "P\ny"))
359   (let ((articles (gnus-summary-work-articles n))
360         (message-post-method
361          `(lambda (arg)
362             (gnus-post-method (not (eq symp 'a)) ,gnus-newsgroup-name)))
363         article)
364     (while (setq article (pop articles))
365       (when (gnus-summary-select-article t nil nil article)
366         (when (gnus-eval-in-buffer-window gnus-original-article-buffer
367                 (message-cancel-news))
368           (gnus-summary-mark-as-read article gnus-canceled-mark)
369           (gnus-cache-remove-article 1))
370         (gnus-article-hide-headers-if-wanted))
371       (gnus-summary-remove-process-mark article))))
372
373 (defun gnus-summary-supersede-article ()
374   "Compose an article that will supersede a previous article.
375 This is done simply by taking the old article and adding a Supersedes
376 header line with the old Message-ID."
377   (interactive)
378   (let ((article (gnus-summary-article-number)))
379     (gnus-setup-message 'reply-yank
380       (gnus-summary-select-article t)
381       (set-buffer gnus-original-article-buffer)
382       (message-supersede)
383       (push
384        `((lambda ()
385            (when (gnus-buffer-exists-p ,gnus-summary-buffer)
386              (save-excursion
387                (set-buffer ,gnus-summary-buffer)
388                (gnus-cache-possibly-remove-article ,article nil nil nil t)
389                (gnus-summary-mark-as-read ,article gnus-canceled-mark)))))
390        message-send-actions))))
391
392 \f
393
394 (defun gnus-copy-article-buffer (&optional article-buffer)
395   ;; make a copy of the article buffer with all text properties removed
396   ;; this copy is in the buffer gnus-article-copy.
397   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
398   ;; this buffer should be passed to all mail/news reply/post routines.
399   (setq gnus-article-copy (gnus-get-buffer-create " *gnus article copy*"))
400   (save-excursion
401     (set-buffer gnus-article-copy)
402     (mm-enable-multibyte))
403   (let ((article-buffer (or article-buffer gnus-article-buffer))
404         end beg)
405     (if (not (and (get-buffer article-buffer)
406                   (gnus-buffer-exists-p article-buffer)))
407         (error "Can't find any article buffer")
408       (save-excursion
409         (set-buffer article-buffer)
410         (save-restriction
411           ;; Copy over the (displayed) article buffer, delete
412           ;; hidden text and remove text properties.
413           (widen)
414           (copy-to-buffer gnus-article-copy (point-min) (point-max))
415           (set-buffer gnus-article-copy)
416           (gnus-article-delete-text-of-type 'annotation)
417           (gnus-remove-text-with-property 'gnus-prev)
418           (gnus-remove-text-with-property 'gnus-next)
419           (insert
420            (prog1
421                (format "%s" (buffer-string))
422              (erase-buffer)))
423           ;; Find the original headers.
424           (set-buffer gnus-original-article-buffer)
425           (goto-char (point-min))
426           (while (looking-at message-unix-mail-delimiter)
427             (forward-line 1))
428           (setq beg (point))
429           (setq end (or (search-forward "\n\n" nil t) (point)))
430           ;; Delete the headers from the displayed articles.
431           (set-buffer gnus-article-copy)
432           (delete-region (goto-char (point-min))
433                          (or (search-forward "\n\n" nil t) (point-max)))
434           ;; Insert the original article headers.
435           (insert-buffer-substring gnus-original-article-buffer beg end)
436           (article-decode-encoded-words)))
437       gnus-article-copy)))
438
439 (defun gnus-post-news (post &optional group header article-buffer yank subject
440                             force-news)
441   (when article-buffer
442     (gnus-copy-article-buffer))
443   (let ((gnus-article-reply article-buffer)
444         (add-to-list gnus-add-to-list))
445     (gnus-setup-message (cond (yank 'reply-yank)
446                               (article-buffer 'reply)
447                               (t 'message))
448       (let* ((group (or group gnus-newsgroup-name))
449              (pgroup group)
450              to-address to-group mailing-list to-list
451              newsgroup-p)
452         (when group
453           (setq to-address (gnus-group-find-parameter group 'to-address)
454                 to-group (gnus-group-find-parameter group 'to-group)
455                 to-list (gnus-group-find-parameter group 'to-list)
456                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
457                 mailing-list (when gnus-mailing-list-groups
458                                (string-match gnus-mailing-list-groups group))
459                 group (gnus-group-real-name group)))
460         (if (or (and to-group
461                      (gnus-news-group-p to-group))
462                 newsgroup-p
463                 force-news
464                 (and (gnus-news-group-p
465                       (or pgroup gnus-newsgroup-name)
466                       (if header (mail-header-number header)
467                         gnus-current-article))
468                      (not mailing-list)
469                      (not to-list)
470                      (not to-address)))
471             ;; This is news.
472             (if post
473                 (message-news (or to-group group))
474               (set-buffer gnus-article-copy)
475               (gnus-msg-treat-broken-reply-to)
476               (message-followup (if (or newsgroup-p force-news) nil to-group)))
477           ;; The is mail.
478           (if post
479               (progn
480                 (message-mail (or to-address to-list))
481                 ;; Arrange for mail groups that have no `to-address' to
482                 ;; get that when the user sends off the mail.
483                 (when (and (not to-list)
484                            (not to-address)
485                            add-to-list)
486                   (push (list 'gnus-inews-add-to-address pgroup)
487                         message-send-actions)))
488             (set-buffer gnus-article-copy)
489             (gnus-msg-treat-broken-reply-to)
490             (message-wide-reply to-address)))
491         (when yank
492           (gnus-inews-yank-articles yank))))))
493
494 (defun gnus-msg-treat-broken-reply-to ()
495   "Remove the Reply-to header iff broken-reply-to."
496   (when (gnus-group-find-parameter
497          gnus-newsgroup-name 'broken-reply-to)
498     (save-restriction
499       (message-narrow-to-head)
500       (message-remove-header "reply-to"))))
501
502 (defun gnus-post-method (arg group &optional silent)
503   "Return the posting method based on GROUP and ARG.
504 If SILENT, don't prompt the user."
505   (let ((group-method (gnus-find-method-for-group group)))
506     (cond
507      ;; If the group-method is nil (which shouldn't happen) we use
508      ;; the default method.
509      ((null group-method)
510       (or (and (null (eq gnus-post-method 'active)) gnus-post-method)
511                gnus-select-method message-post-method))
512      ;; We want the inverse of the default
513      ((and arg (not (eq arg 0)))
514       (if (eq gnus-post-method 'active)
515           gnus-select-method
516         group-method))
517      ;; We query the user for a post method.
518      ((or arg
519           (and gnus-post-method
520                (not (eq gnus-post-method 'current))
521                (listp (car gnus-post-method))))
522       (let* ((methods
523               ;; Collect all methods we know about.
524               (append
525                (when (and gnus-post-method
526                           (not (eq gnus-post-method 'current)))
527                  (if (listp (car gnus-post-method))
528                      gnus-post-method
529                    (list gnus-post-method)))
530                gnus-secondary-select-methods
531                (mapcar 'cdr gnus-server-alist)
532                (mapcar 'car gnus-opened-servers)
533                (list gnus-select-method)
534                (list group-method)))
535              method-alist post-methods method)
536         ;; Weed out all mail methods.
537         (while methods
538           (setq method (gnus-server-get-method "" (pop methods)))
539           (when (and (or (gnus-method-option-p method 'post)
540                          (gnus-method-option-p method 'post-mail))
541                      (not (member method post-methods)))
542             (push method post-methods)))
543         ;; Create a name-method alist.
544         (setq method-alist
545               (mapcar
546                (lambda (m)
547                  (list (concat (cadr m) " (" (symbol-name (car m)) ")") m))
548                post-methods))
549         ;; Query the user.
550         (cadr
551          (assoc
552           (setq gnus-last-posting-server
553                 (if (and silent
554                          gnus-last-posting-server)
555                     ;; Just use the last value.
556                     gnus-last-posting-server
557                   (completing-read
558                    "Posting method: " method-alist nil t
559                    (cons (or gnus-last-posting-server "") 0))))
560           method-alist))))
561      ;; Override normal method.
562      ((and (eq gnus-post-method 'current)
563            (not (eq (car group-method) 'nndraft))
564            (not arg))
565       group-method)
566      ((and gnus-post-method
567            (not (eq gnus-post-method 'current)))
568       gnus-post-method)
569      ;; Use the normal select method.
570      (t gnus-select-method))))
571
572 \f
573
574 ;; Dummies to avoid byte-compile warning.
575 (defvar nnspool-rejected-article-hook)
576 (defvar xemacs-codename)
577
578 (defun gnus-extended-version ()
579   "Stringified Gnus version and Emacs version."
580   (interactive)
581   (concat
582    "Gnus/" (prin1-to-string (gnus-continuum-version gnus-version) t)
583    " (" gnus-version ")"
584    " "
585    (cond
586     ((string-match "^\\([0-9]+\\.[0-9]+\\)\\.[.0-9]+$" emacs-version)
587      (concat "Emacs/" (match-string 1 emacs-version)))
588     ((string-match "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)[^(]*\\(\\((beta.*)\\|'\\)\\)?"
589                    emacs-version)
590      (concat (match-string 1 emacs-version)
591              (format "/%d.%d" emacs-major-version emacs-minor-version)
592              (if (match-beginning 3)
593                  (match-string 3 emacs-version)
594                "")
595              (if (boundp 'xemacs-codename)
596                  (concat " (" xemacs-codename ")")
597                "")))
598     (t emacs-version))))
599
600 \f
601 ;;;
602 ;;; Gnus Mail Functions
603 ;;;
604
605 ;;; Mail reply commands of Gnus summary mode
606
607 (defun gnus-summary-reply (&optional yank wide)
608   "Start composing a reply mail to the current message.
609 If prefix argument YANK is non-nil, the original article is yanked
610 automatically."
611   (interactive
612    (list (and current-prefix-arg
613               (gnus-summary-work-articles 1))))
614   ;; Stripping headers should be specified with mail-yank-ignored-headers.
615   (when yank
616     (gnus-summary-goto-subject (car yank)))
617   (let ((gnus-article-reply t))
618     (gnus-setup-message (if yank 'reply-yank 'reply)
619       (gnus-summary-select-article)
620       (set-buffer (gnus-copy-article-buffer))
621       (gnus-msg-treat-broken-reply-to)
622       (message-reply nil wide)
623       (when yank
624         (gnus-inews-yank-articles yank)))))
625
626 (defun gnus-summary-reply-with-original (n &optional wide)
627   "Start composing a reply mail to the current message.
628 The original article will be yanked."
629   (interactive "P")
630   (gnus-summary-reply (gnus-summary-work-articles n) wide))
631
632 (defun gnus-summary-wide-reply (&optional yank)
633   "Start composing a wide reply mail to the current message.
634 If prefix argument YANK is non-nil, the original article is yanked
635 automatically."
636   (interactive
637    (list (and current-prefix-arg
638               (gnus-summary-work-articles 1))))
639   (gnus-summary-reply yank t))
640
641 (defun gnus-summary-wide-reply-with-original (n)
642   "Start composing a wide reply mail to the current message.
643 The original article will be yanked."
644   (interactive "P")
645   (gnus-summary-reply-with-original n t))
646
647 (defun gnus-summary-mail-forward (&optional full-headers post)
648   "Forward the current message to another user.
649 If FULL-HEADERS (the prefix), include full headers when forwarding."
650   (interactive "P")
651   (gnus-setup-message 'forward
652     (gnus-summary-select-article)
653     (let (text)
654       (save-excursion
655         (set-buffer gnus-original-article-buffer)
656         (setq text (buffer-string)))
657       (set-buffer (gnus-get-buffer-create " *Gnus forward*"))
658       (erase-buffer)
659       (insert text)
660       (run-hooks 'gnus-article-decode-hook)
661       (let ((message-included-forward-headers
662              (if full-headers "" message-included-forward-headers)))
663         (message-forward post)))))
664
665 (defun gnus-summary-resend-message (address n)
666   "Resend the current article to ADDRESS."
667   (interactive "sResend message(s) to: \nP")
668   (let ((articles (gnus-summary-work-articles n))
669         article)
670     (while (setq article (pop articles))
671       (gnus-summary-select-article nil nil nil article)
672       (save-excursion
673         (set-buffer gnus-original-article-buffer)
674         (message-resend address)))))
675
676 (defun gnus-summary-post-forward (&optional full-headers)
677   "Forward the current article to a newsgroup.
678 If FULL-HEADERS (the prefix), include full headers when forwarding."
679   (interactive "P")
680   (gnus-summary-mail-forward full-headers t))
681
682 (defvar gnus-nastygram-message
683   "The following article was inappropriately posted to %s.\n\n"
684   "Format string to insert in nastygrams.
685 The current group name will be inserted at \"%s\".")
686
687 (defun gnus-summary-mail-nastygram (n)
688   "Send a nastygram to the author of the current article."
689   (interactive "P")
690   (when (or gnus-expert-user
691             (gnus-y-or-n-p
692              "Really send a nastygram to the author of the current article? "))
693     (let ((group gnus-newsgroup-name))
694       (gnus-summary-reply-with-original n)
695       (set-buffer gnus-message-buffer)
696       (message-goto-body)
697       (insert (format gnus-nastygram-message group))
698       (message-send-and-exit))))
699
700 (defun gnus-summary-mail-crosspost-complaint (n)
701   "Send a complaint about crossposting to the current article(s)."
702   (interactive "P")
703   (let ((articles (gnus-summary-work-articles n))
704         article)
705     (while (setq article (pop articles))
706       (set-buffer gnus-summary-buffer)
707       (gnus-summary-goto-subject article)
708       (let ((group (gnus-group-real-name gnus-newsgroup-name))
709             newsgroups followup-to)
710         (gnus-summary-select-article)
711         (set-buffer gnus-original-article-buffer)
712         (if (and (<= (length (message-tokenize-header
713                               (setq newsgroups
714                                     (mail-fetch-field "newsgroups"))
715                               ", "))
716                      1)
717                  (or (not (setq followup-to (mail-fetch-field "followup-to")))
718                      (not (member group (message-tokenize-header
719                                          followup-to ", ")))))
720             (if followup-to
721                 (gnus-message 1 "Followup-to restricted")
722               (gnus-message 1 "Not a crossposted article"))
723           (set-buffer gnus-summary-buffer)
724           (gnus-summary-reply-with-original 1)
725           (set-buffer gnus-message-buffer)
726           (message-goto-body)
727           (insert (format gnus-crosspost-complaint newsgroups group))
728           (message-goto-subject)
729           (re-search-forward " *$")
730           (replace-match " (crosspost notification)" t t)
731           (gnus-deactivate-mark)
732           (when (gnus-y-or-n-p "Send this complaint? ")
733             (message-send-and-exit)))))))
734
735 (defun gnus-summary-mail-other-window ()
736   "Compose mail in other window."
737   (interactive)
738   (gnus-setup-message 'message
739     (message-mail)))
740
741 (defun gnus-mail-parse-comma-list ()
742   (let (accumulated
743         beg)
744     (skip-chars-forward " ")
745     (while (not (eobp))
746       (setq beg (point))
747       (skip-chars-forward "^,")
748       (while (zerop
749               (save-excursion
750                 (save-restriction
751                   (let ((i 0))
752                     (narrow-to-region beg (point))
753                     (goto-char beg)
754                     (logand (progn
755                               (while (search-forward "\"" nil t)
756                                 (incf i))
757                               (if (zerop i) 2 i))
758                             2)))))
759         (skip-chars-forward ",")
760         (skip-chars-forward "^,"))
761       (skip-chars-backward " ")
762       (push (buffer-substring beg (point))
763             accumulated)
764       (skip-chars-forward "^,")
765       (skip-chars-forward ", "))
766     accumulated))
767
768 (defun gnus-inews-add-to-address (group)
769   (let ((to-address (mail-fetch-field "to")))
770     (when (and to-address
771                (gnus-alive-p))
772       ;; This mail group doesn't have a `to-list', so we add one
773       ;; here.  Magic!
774       (when (gnus-y-or-n-p
775              (format "Do you want to add this as `to-list': %s " to-address))
776         (gnus-group-add-parameter group (cons 'to-list to-address))))))
777
778 (defun gnus-put-message ()
779   "Put the current message in some group and return to Gnus."
780   (interactive)
781   (let ((reply gnus-article-reply)
782         (winconf gnus-prev-winconf)
783         (group gnus-newsgroup-name))
784
785     (or (and group (not (gnus-group-read-only-p group)))
786         (setq group (read-string "Put in group: " nil
787                                  (gnus-writable-groups))))
788     (when (gnus-gethash group gnus-newsrc-hashtb)
789       (error "No such group: %s" group))
790
791     (save-excursion
792       (save-restriction
793         (widen)
794         (message-narrow-to-headers)
795         (let (gnus-deletable-headers)
796           (if (message-news-p)
797               (message-generate-headers message-required-news-headers)
798             (message-generate-headers message-required-mail-headers)))
799         (goto-char (point-max))
800         (insert "Gcc: " group "\n")
801         (widen)))
802
803     (gnus-inews-do-gcc)
804
805     (when (get-buffer gnus-group-buffer)
806       (when (gnus-buffer-exists-p (car-safe reply))
807         (set-buffer (car reply))
808         (and (cdr reply)
809              (gnus-summary-mark-article-as-replied
810               (cdr reply))))
811       (when winconf
812         (set-window-configuration winconf)))))
813
814 (defun gnus-article-mail (yank)
815   "Send a reply to the address near point.
816 If YANK is non-nil, include the original article."
817   (interactive "P")
818   (let ((address
819          (buffer-substring
820           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
821           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
822     (when address
823       (message-reply address)
824       (when yank
825         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
826
827 (defvar nntp-server-type)
828 (defun gnus-bug ()
829   "Send a bug report to the Gnus maintainers."
830   (interactive)
831   (unless (gnus-alive-p)
832     (error "Gnus has been shut down"))
833   (gnus-setup-message 'bug
834     (delete-other-windows)
835     (when gnus-bug-create-help-buffer
836       (switch-to-buffer "*Gnus Help Bug*")
837       (erase-buffer)
838       (insert gnus-bug-message)
839       (goto-char (point-min)))
840     (message-pop-to-buffer "*Gnus Bug*")
841     (message-setup `((To . ,gnus-maintainer) (Subject . "")))
842     (when gnus-bug-create-help-buffer
843       (push `(gnus-bug-kill-buffer) message-send-actions))
844     (goto-char (point-min))
845     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
846     (forward-line 1)
847     (insert (gnus-version) "\n"
848             (emacs-version) "\n")
849     (when (and (boundp 'nntp-server-type)
850                (stringp nntp-server-type))
851       (insert nntp-server-type))
852     (insert "\n\n\n\n\n")
853     (gnus-debug)
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                 (goto-char (point-min))
984                 (when (re-search-forward
985                        (concat "^" (regexp-quote mail-header-separator) "$")
986                        nil t)
987                   (replace-match "" t t ))
988                 (unless (gnus-request-accept-article group method t t)
989                   (gnus-message 1 "Couldn't store article in group %s: %s"
990                                 group (gnus-status-message method))
991                   (sit-for 2))
992                 (kill-buffer (current-buffer))))))))))
993
994 (defun gnus-inews-insert-gcc ()
995   "Insert Gcc headers based on `gnus-outgoing-message-group'."
996   (save-excursion
997     (save-restriction
998       (message-narrow-to-headers)
999       (let* ((group gnus-outgoing-message-group)
1000              (gcc (cond
1001                    ((gnus-functionp group)
1002                     (funcall group))
1003                    ((or (stringp group) (list group))
1004                     group))))
1005         (when gcc
1006           (insert "Gcc: "
1007                   (if (stringp gcc) gcc
1008                     (mapconcat 'identity gcc " "))
1009                   "\n"))))))
1010
1011 (defun gnus-inews-insert-archive-gcc (&optional group)
1012   "Insert the Gcc to say where the article is to be archived."
1013   (let* ((var gnus-message-archive-group)
1014          (group (or group gnus-newsgroup-name ""))
1015          (gcc-self-val
1016           (and gnus-newsgroup-name
1017                (gnus-group-find-parameter
1018                 gnus-newsgroup-name 'gcc-self)))
1019          result
1020          (groups
1021           (cond
1022            ((null gnus-message-archive-method)
1023             ;; Ignore.
1024             nil)
1025            ((stringp var)
1026             ;; Just a single group.
1027             (list var))
1028            ((null var)
1029             ;; We don't want this.
1030             nil)
1031            ((and (listp var) (stringp (car var)))
1032             ;; A list of groups.
1033             var)
1034            ((gnus-functionp var)
1035             ;; A function.
1036             (funcall var group))
1037            (t
1038             ;; An alist of regexps/functions/forms.
1039             (while (and var
1040                         (not
1041                          (setq result
1042                                (cond
1043                                 ((stringp (caar var))
1044                                  ;; Regexp.
1045                                  (when (string-match (caar var) group)
1046                                    (cdar var)))
1047                                 ((gnus-functionp (car var))
1048                                  ;; Function.
1049                                  (funcall (car var) group))
1050                                 (t
1051                                  (eval (car var)))))))
1052               (setq var (cdr var)))
1053             result)))
1054          name)
1055     (when (or groups gcc-self-val)
1056       (when (stringp groups)
1057         (setq groups (list groups)))
1058       (save-excursion
1059         (save-restriction
1060           (message-narrow-to-headers)
1061           (goto-char (point-max))
1062           (insert "Gcc: ")
1063           (if gcc-self-val
1064               ;; Use the `gcc-self' param value instead.
1065               (progn
1066                 (insert
1067                  (if (stringp gcc-self-val)
1068                      gcc-self-val
1069                    group))
1070                 (if (not (eq gcc-self-val 'none))
1071                     (insert "\n")
1072                   (progn
1073                     (beginning-of-line)
1074                     (kill-line))))
1075             ;; Use the list of groups.
1076             (while (setq name (pop groups))
1077               (insert (if (string-match ":" name)
1078                           name
1079                         (gnus-group-prefixed-name
1080                          name gnus-message-archive-method)))
1081               (when groups
1082                 (insert " ")))
1083             (insert "\n")))))))
1084
1085 ;;; Posting styles.
1086
1087 (defvar gnus-message-style-insertions nil)
1088
1089 (defun gnus-configure-posting-styles ()
1090   "Configure posting styles according to `gnus-posting-styles'."
1091   (unless gnus-inhibit-posting-styles
1092     (let ((styles gnus-posting-styles)
1093           (gnus-newsgroup-name (or gnus-newsgroup-name ""))
1094           style match variable attribute value value-value)
1095       (make-local-variable 'gnus-message-style-insertions)
1096       ;; If the group has a posting-style parameter, add it at the end with a
1097       ;; regexp matching everything, to be sure it takes precedence over all
1098       ;; the others.
1099       (unless (zerop (length gnus-newsgroup-name))
1100         (let ((tmp-style (gnus-group-find-parameter
1101                           gnus-newsgroup-name 'posting-style t)))
1102           (when tmp-style
1103             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1104       ;; Go through all styles and look for matches.
1105       (while styles
1106         (setq style (pop styles)
1107               match (pop style))
1108         (when (cond
1109                ((stringp match)
1110                 ;; Regexp string match on the group name.
1111                 (string-match match gnus-newsgroup-name))
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           (while style
1126             (setq attribute (pop style)
1127                   value (cadr attribute)
1128                   variable nil)
1129             ;; We find the variable that is to be modified.
1130             (if (and (not (stringp (car attribute)))
1131                      (not (eq 'body (car attribute)))
1132                      (not (setq variable
1133                                 (cdr (assq (car attribute)
1134                                            gnus-posting-style-alist)))))
1135                 (message "Couldn't find attribute %s" (car attribute))
1136               ;; We get the value.
1137               (setq value-value
1138                     (cond
1139                      ((stringp value)
1140                       value)
1141                      ((or (symbolp value)
1142                           (gnus-functionp value))
1143                       (cond ((gnus-functionp value)
1144                              (funcall value))
1145                             ((boundp value)
1146                              (symbol-value value))))
1147                      ((listp value)
1148                       (eval value))))
1149               (if variable
1150                   ;; This is an ordinary variable.
1151                   (set (make-local-variable variable) value-value)
1152                 ;; This is either a body or a header to be inserted in the
1153                 ;; message.
1154                 (let ((attr (car attribute)))
1155                   (make-local-variable 'message-setup-hook)
1156                   (if (eq 'body attr)
1157                       (add-hook 'message-setup-hook
1158                                 `(lambda ()
1159                                    (save-excursion
1160                                      (message-goto-body)
1161                                      (insert ,value-value))))
1162                     (add-hook 'message-setup-hook
1163                               'gnus-message-insert-stylings)
1164                     (push (cons (if (stringp attr) attr
1165                                   (symbol-name attr))
1166                                 value-value)
1167                           gnus-message-style-insertions)))))))))))
1168
1169 (defun gnus-message-insert-stylings ()
1170   (let (val)
1171     (save-excursion
1172       (message-goto-eoh)
1173       (while (setq val (pop gnus-message-style-insertions))
1174         (when (cdr val)
1175           (insert (car val) ": " (cdr val) "\n"))
1176         (gnus-pull (car val) gnus-message-style-insertions t)))))
1177
1178 ;;; Allow redefinition of functions.
1179
1180 (gnus-ems-redefine)
1181
1182 (provide 'gnus-msg)
1183
1184 ;;; gnus-msg.el ends here