Synch to No Gnus 200501120840.
[elisp/gnus.git-] / lisp / gnus-msg.el
1 ;;; gnus-msg.el --- mail and post interface for Semi-gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;;      Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
9 ;;      Katsumi Yamaoka  <yamaoka@jpl.org>
10 ;;      Kiyokazu SUTO    <suto@merry.xmath.ous.ac.jp>
11 ;; Keywords: mail, news, MIME
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;;; Commentary:
31
32 ;;; Code:
33
34 (eval-when-compile (require 'cl))
35 (eval-when-compile (require 'static))
36
37 (require 'gnus)
38 (require 'gnus-ems)
39 (require 'message)
40 (require 'gnus-art)
41 (require 'gnus-util)
42
43 (defcustom gnus-post-method 'current
44   "*Preferred method for posting USENET news.
45
46 If this variable is `current' (which is the default), Gnus will use
47 the \"current\" select method when posting.  If it is `native', Gnus
48 will use the native select method when posting.
49
50 This method will not be used in mail groups and the like, only in
51 \"real\" newsgroups.
52
53 If not `native' nor `current', the value must be a valid method as discussed
54 in the documentation of `gnus-select-method'.  It can also be a list of
55 methods.  If that is the case, the user will be queried for what select
56 method to use when posting."
57   :group 'gnus-group-foreign
58   :link '(custom-manual "(gnus)Posting Server")
59   :type `(choice (const native)
60                  (const current)
61                  (sexp :tag "Methods" ,gnus-select-method)))
62
63 (defcustom gnus-outgoing-message-group nil
64   "*All outgoing messages will be put in this group.
65 If you want to store all your outgoing mail and articles in the group
66 \"nnml:archive\", you set this variable to that value.  This variable
67 can also be a list of group names.
68
69 If you want to have greater control over what group to put each
70 message in, you can set this variable to a function that checks the
71 current newsgroup name and then returns a suitable group name (or list
72 of names)."
73   :group 'gnus-message
74   :type '(choice (string :tag "Group")
75                  (function)))
76
77 (defcustom gnus-mailing-list-groups nil
78   "*If non-nil a regexp matching groups that are really mailing lists.
79 This is useful when you're reading a mailing list that has been
80 gatewayed to a newsgroup, and you want to followup to an article in
81 the group."
82   :group 'gnus-message
83   :type '(choice (regexp)
84                  (const nil)))
85
86 (defcustom gnus-add-to-list nil
87   "*If non-nil, add a `to-list' parameter automatically."
88   :group 'gnus-message
89   :type 'boolean)
90
91 (defcustom gnus-crosspost-complaint
92   "Hi,
93
94 You posted the article below with the following Newsgroups header:
95
96 Newsgroups: %s
97
98 The %s group, at least, was an inappropriate recipient
99 of this message.  Please trim your Newsgroups header to exclude this
100 group before posting in the future.
101
102 Thank you.
103
104 "
105   "Format string to be inserted when complaining about crossposts.
106 The first %s will be replaced by the Newsgroups header;
107 the second with the current group name."
108   :group 'gnus-message
109   :type 'string)
110
111 (defcustom gnus-message-setup-hook nil
112   "Hook run after setting up a message buffer."
113   :group 'gnus-message
114   :type 'hook)
115
116 (defcustom gnus-bug-create-help-buffer t
117   "*Should we create the *Gnus Help Bug* buffer?"
118   :group 'gnus-message
119   :type 'boolean)
120
121 (defcustom gnus-posting-styles nil
122   "*Alist of styles to use when posting.
123 See Info node `(gnus)Posting Styles'."
124   :group 'gnus-message
125   :link '(custom-manual "(gnus)Posting Styles")
126   :type '(repeat (cons (choice (regexp)
127                                (variable)
128                                (list (const header)
129                                      (string :tag "Header")
130                                      (regexp :tag "Regexp"))
131                                (function)
132                                (sexp))
133                        (repeat (list
134                                 (choice (const signature)
135                                         (const signature-file)
136                                         (const organization)
137                                         (const address)
138                                         (const x-face-file)
139                                         (const name)
140                                         (const body)
141                                         (const import)
142                                         (symbol)
143                                         (string :tag "Header"))
144                                 (choice (string)
145                                         (function)
146                                         (variable)
147                                         (sexp)))))))
148
149 (defcustom gnus-named-posting-styles nil
150   "Alist mapping names to the user-defined posting styles."
151   :group 'gnus-message
152   :type '(repeat (cons string
153                        (repeat (list
154                                 (choice (const signature)
155                                         (const signature-file)
156                                         (const organization)
157                                         (const address)
158                                         (const x-face-file)
159                                         (const name)
160                                         (const body)
161                                         (const import)
162                                         (symbol)
163                                         (string :tag "Header"))
164                                 (choice (string)
165                                         (function)
166                                         (variable)
167                                         (sexp)))))))
168
169 (defcustom gnus-gcc-mark-as-read nil
170   "If non-nil, automatically mark Gcc articles as read."
171   :version "21.4"
172   :group 'gnus-message
173   :type 'boolean)
174
175 (make-obsolete-variable 'gnus-inews-mark-gcc-as-read
176                         'gnus-gcc-mark-as-read)
177
178 (defcustom gnus-gcc-externalize-attachments nil
179   "Should local-file attachments be included as external parts in Gcc copies?
180 If it is `all', attach files as external parts;
181 if a regexp and matches the Gcc group name, attach files as external parts;
182 if nil, attach files as normal parts."
183   :version "21.4"
184   :group 'gnus-message
185   :type '(choice (const nil :tag "None")
186                  (const all :tag "Any")
187                  (string :tag "Regexp")))
188
189 (gnus-define-group-parameter
190  posting-charset-alist
191  :type list
192  :function-document
193  "Return the permitted unencoded charsets for posting of GROUP."
194  :variable gnus-group-posting-charset-alist
195  :variable-default
196  '(("^\\(no\\|fr\\)\\.[^,]*\\(,[ \t\n]*\\(no\\|fr\\)\\.[^,]*\\)*$" iso-8859-1 (iso-8859-1))
197    ("^\\(fido7\\|relcom\\)\\.[^,]*\\(,[ \t\n]*\\(fido7\\|relcom\\)\\.[^,]*\\)*$" koi8-r (koi8-r))
198    (message-this-is-mail nil nil)
199    (message-this-is-news nil t))
200  :variable-document
201  "Alist of regexps and permitted unencoded charsets for posting.
202 Each element of the alist has the form (TEST HEADER BODY-LIST), where
203 TEST is either a regular expression matching the newsgroup header or a
204 variable to query,
205 HEADER is the charset which may be left unencoded in the header (nil
206 means encode all charsets),
207 BODY-LIST is a list of charsets which may be encoded using 8bit
208 content-transfer encoding in the body, or one of the special values
209 nil (always encode using quoted-printable) or t (always use 8bit).
210
211 Note that any value other than nil for HEADER infringes some RFCs, so
212 use this option with care."
213  :variable-group gnus-charset
214  :variable-type
215  '(repeat (list :tag "Permitted unencoded charsets"
216                 (choice :tag "Where"
217                         (regexp :tag "Group")
218                         (const :tag "Mail message" :value message-this-is-mail)
219                         (const :tag "News article" :value message-this-is-news))
220                 (choice :tag "Header"
221                         (const :tag "None" nil)
222                         (symbol :tag "Charset"))
223                 (choice :tag "Body"
224                         (const :tag "Any" :value t)
225                         (const :tag "None" :value nil)
226                         (repeat :tag "Charsets"
227                                 (symbol :tag "Charset")))))
228  :parameter-type '(choice :tag "Permitted unencoded charsets"
229                           :value nil
230                           (repeat (symbol)))
231  :parameter-document       "\
232 List of charsets that are permitted to be unencoded.")
233
234 (defcustom gnus-debug-files
235   '("gnus.el" "gnus-sum.el" "gnus-group.el"
236     "gnus-art.el" "gnus-start.el" "gnus-async.el"
237     "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el"
238     "gnus-agent.el" "gnus-cache.el" "gnus-srvr.el"
239     "mm-util.el" "mm-decode.el" "nnmail.el" "nntp.el" "message.el")
240   "Files whose variables will be reported in `gnus-bug'."
241   :version "21.4"
242   :group 'gnus-message
243   :type '(repeat (string :tag "File")))
244
245 (defcustom gnus-debug-exclude-variables
246   '(mm-mime-mule-charset-alist
247     nnmail-split-fancy message-minibuffer-local-map)
248   "Variables that should not be reported in `gnus-bug'."
249   :version "21.4"
250   :group 'gnus-message
251   :type '(repeat (symbol :tag "Variable")))
252
253 (defcustom gnus-discouraged-post-methods
254   '(nndraft nnml nnimap nnmaildir nnmh nnfolder nndir)
255   "A list of back ends that are not used in \"real\" newsgroups.
256 This variable is used only when `gnus-post-method' is `current'."
257   :version "21.4"
258   :group 'gnus-group-foreign
259   :type '(repeat (symbol :tag "Back end")))
260
261 (defcustom gnus-message-replysign
262   nil
263   "Automatically sign replies to signed messages.
264 See also the `mml-default-sign-method' variable."
265   :group 'gnus-message
266   :type 'boolean)
267
268 (defcustom gnus-message-replyencrypt
269   nil
270   "Automatically encrypt replies to encrypted messages.
271 See also the `mml-default-encrypt-method' variable."
272   :group 'gnus-message
273   :type 'boolean)
274
275 (defcustom gnus-message-replysignencrypted
276   t
277   "Setting this causes automatically encrypted messages to also be signed."
278   :group 'gnus-message
279   :type 'boolean)
280
281 (defcustom gnus-confirm-mail-reply-to-news nil
282   "If non-nil, Gnus requests confirmation when replying to news.
283 This is done because new users often reply by mistake when reading
284 news.
285 This can also be a function receiving the group name as the only
286 parameter which should return non-nil iff a confirmation is needed, or
287 a regexp, in which case a confirmation is asked for iff the group name
288 matches the regexp."
289   :version "21.4"
290   :group 'gnus-message
291   :type '(choice (const :tag "No" nil)
292                  (const :tag "Yes" t)
293                  (regexp :tag "Iff group matches regexp")
294                  (function :tag "Iff function evaluates to non-nil")))
295
296 (defcustom gnus-confirm-treat-mail-like-news
297   nil
298   "If non-nil, Gnus will treat mail like news with regard to confirmation
299 when replying by mail.  See the `gnus-confirm-mail-reply-to-news' variable
300 for fine-tuning this.
301 If nil, Gnus will never ask for confirmation if replying to mail."
302   :version "21.4"
303   :group 'gnus-message
304   :type 'boolean)
305
306 (defcustom gnus-summary-resend-default-address t
307   "If non-nil, Gnus tries to suggest a default address to resend to.
308 If nil, the address field will always be empty after invoking
309 `gnus-summary-resend-message'."
310   :version "21.4"
311   :group 'gnus-message
312   :type 'boolean)
313
314 ;;; Internal variables.
315
316 (defvar gnus-inhibit-posting-styles nil
317   "Inhibit the use of posting styles.")
318
319 (defvar gnus-article-yanked-articles nil)
320 (defvar gnus-message-buffer "*Mail Gnus*")
321 (defvar gnus-article-copy nil)
322 (defvar gnus-check-before-posting nil)
323 (defvar gnus-last-posting-server nil)
324 (defvar gnus-message-group-art nil)
325
326 (defvar gnus-msg-force-broken-reply-to nil)
327
328 (defconst gnus-bug-message
329   (format "Sending a bug report to the Gnus Towers.
330 ========================================
331
332 This gnus is the %s%s.
333 If you think the bug is a Semi-gnus bug, send a bug report to Semi-gnus
334 Developers. (the addresses below are mailing list addresses)
335
336 ========================================
337
338 The buffer below is a mail buffer.  When you press `C-c C-c', it will
339 be sent to the Gnus Bug Exterminators.
340
341 The thing near the bottom of the buffer is how the environment
342 settings will be included in the mail.  Please do not delete that.
343 They will tell the Bug People what your environment is, so that it
344 will be easier to locate the bugs.
345
346 If you have found a bug that makes Emacs go \"beep\", set
347 debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
348 and include the backtrace in your bug report.
349
350 Please describe the bug in annoying, painstaking detail.
351
352 Thank you for your help in stamping out bugs.
353 "
354           gnus-product-name
355           (if (string= gnus-product-name "Semi-gnus")
356               ""
357             ", a modified version of Semi-gnus")))
358
359 (eval-and-compile
360   (autoload 'gnus-uu-post-news "gnus-uu" nil t))
361
362 \f
363 ;;;
364 ;;; Gnus Posting Functions
365 ;;;
366
367 (gnus-define-keys (gnus-summary-send-map "S" gnus-summary-mode-map)
368   "p" gnus-summary-post-news
369   "i" gnus-summary-news-other-window
370   "f" gnus-summary-followup
371   "F" gnus-summary-followup-with-original
372   "c" gnus-summary-cancel-article
373   "s" gnus-summary-supersede-article
374   "r" gnus-summary-reply
375   "y" gnus-summary-yank-message
376   "R" gnus-summary-reply-with-original
377   "w" gnus-summary-wide-reply
378   "W" gnus-summary-wide-reply-with-original
379   "v" gnus-summary-very-wide-reply
380   "V" gnus-summary-very-wide-reply-with-original
381   "n" gnus-summary-followup-to-mail
382   "N" gnus-summary-followup-to-mail-with-original
383   "m" gnus-summary-mail-other-window
384   "u" gnus-uu-post-news
385   "\M-c" gnus-summary-mail-crosspost-complaint
386   "Br" gnus-summary-reply-broken-reply-to
387   "BR" gnus-summary-reply-broken-reply-to-with-original
388   "om" gnus-summary-mail-forward
389   "op" gnus-summary-post-forward
390   "Om" gnus-summary-digest-mail-forward
391   "Op" gnus-summary-digest-post-forward
392   "P" gnus-summary-execute-command-with-posting-style)
393
394 (gnus-define-keys (gnus-send-bounce-map "D" gnus-summary-send-map)
395   "b" gnus-summary-resend-bounced-mail
396   ;; "c" gnus-summary-send-draft
397   "r" gnus-summary-resend-message
398   "e" gnus-summary-resend-message-edit)
399
400 ;;; Internal functions.
401
402 (defun gnus-inews-make-draft (articles)
403   `(lambda ()
404      (gnus-inews-make-draft-meta-information
405       ,gnus-newsgroup-name ',articles)))
406
407 (defvar gnus-article-reply nil)
408 (defmacro gnus-setup-message (config &rest forms)
409   (let ((winconf (make-symbol "gnus-setup-message-winconf"))
410         (buffer (make-symbol "gnus-setup-message-buffer"))
411         (article (make-symbol "gnus-setup-message-article"))
412         (yanked (make-symbol "gnus-setup-yanked-articles"))
413         (group (make-symbol "gnus-setup-message-group")))
414     `(let ((,winconf (current-window-configuration))
415            (,buffer (buffer-name (current-buffer)))
416            (,article gnus-article-reply)
417            (,yanked gnus-article-yanked-articles)
418            (,group gnus-newsgroup-name)
419            (message-header-setup-hook
420             (copy-sequence message-header-setup-hook))
421            (message-mode-hook (copy-sequence message-mode-hook))
422            (message-startup-parameter-alist
423             '((reply-buffer . gnus-copy-article-buffer)
424               (original-buffer . gnus-original-article-buffer)
425               (user-agent . Gnus))))
426        (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc)
427        (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc)
428        ;; #### FIXME: for a reason that I did not manage to identify yet,
429        ;; the variable `gnus-newsgroup-name' does not honor a dynamically
430        ;; scoped or setq'ed value from a caller like `C-u gnus-summary-mail'.
431        ;; After evaluation of @forms below, it gets the value we actually want
432        ;; to override, and the posting styles are used. For that reason, I've
433        ;; added an optional argument to `gnus-configure-posting-styles' to
434        ;; make sure that the correct value for the group name is used. -- drv
435        (add-hook 'message-mode-hook
436                  (if (memq ,config '(reply-yank reply))
437                      (lambda ()
438                        (gnus-configure-posting-styles ,group))
439                    (lambda ()
440                      ;; There may be an old " *gnus article copy*" buffer.
441                      (let (gnus-article-copy)
442                        (gnus-configure-posting-styles ,group)))))
443        (gnus-pull ',(intern gnus-draft-meta-information-header)
444                   message-required-headers)
445        (when (and ,group
446                   (not (string= ,group "")))
447          (push (cons
448                 (intern gnus-draft-meta-information-header)
449                 (gnus-inews-make-draft (or ,yanked ,article)))
450                message-required-headers))
451        (unwind-protect
452            (progn
453              ,@forms)
454          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
455                                       ,yanked)
456          (setq gnus-message-buffer (current-buffer))
457          (set (make-local-variable 'gnus-message-group-art)
458               (cons ,group ,article))
459          (set (make-local-variable 'gnus-newsgroup-name) ,group)
460          (gnus-maybe-setup-default-charset)
461          (gnus-run-hooks 'gnus-message-setup-hook))
462        (message-hide-headers)
463        (gnus-add-buffer)
464        (gnus-configure-windows ,config t)
465        (run-hooks 'post-command-hook)
466        (set-buffer-modified-p nil))))
467
468 (defun gnus-inews-make-draft-meta-information (group articles)
469   (when (numberp articles)
470     (setq articles (list articles)))
471   (concat "(\"" group "\""
472           (if articles
473               (concat " "
474                       (mapconcat
475                        (lambda (elem)
476                          (number-to-string
477                           (if (consp elem)
478                               (car elem)
479                             elem)))
480                        articles " "))
481             "")
482           ")"))
483
484 ;;;###autoload
485 (defun gnus-msg-mail (&optional to subject other-headers continue
486                                 switch-action yank-action send-actions)
487   "Start editing a mail message to be sent.
488 Like `message-mail', but with Gnus paraphernalia, particularly the
489 Gcc: header for archiving purposes."
490   (interactive)
491   (let ((buf (current-buffer))
492         mail-buf)
493     (gnus-setup-message 'message
494       (message-mail to subject other-headers continue
495                     nil yank-action send-actions))
496     (when switch-action
497       (setq mail-buf (current-buffer))
498       (switch-to-buffer buf)
499       (apply switch-action mail-buf nil)))
500   ;; COMPOSEFUNC should return t if succeed.  Undocumented ???
501   t)
502
503 (defvar save-selected-window-window)
504
505 ;;;###autoload
506 (defun gnus-button-mailto (address)
507   "Mail to ADDRESS."
508   (set-buffer (gnus-copy-article-buffer))
509   (gnus-setup-message 'message
510     (message-reply address))
511   (and (boundp 'save-selected-window-window)
512        (not (window-live-p save-selected-window-window))
513        (setq save-selected-window-window (selected-window))))
514
515 ;;;###autoload
516 (defun gnus-button-reply (&optional to-address wide)
517   "Like `message-reply'."
518   (interactive)
519   (gnus-setup-message 'message
520     (message-reply to-address wide))
521   (and (boundp 'save-selected-window-window)
522        (not (window-live-p save-selected-window-window))
523        (setq save-selected-window-window (selected-window))))
524
525 ;;;###autoload
526 (define-mail-user-agent 'gnus-user-agent
527   'gnus-msg-mail 'message-send-and-exit
528   'message-kill-buffer 'message-send-hook)
529
530 (defun gnus-setup-posting-charset (group)
531   (let ((alist gnus-group-posting-charset-alist)
532         (group (or group ""))
533         elem)
534     (when group
535       (catch 'found
536         (while (setq elem (pop alist))
537           (when (or (and (stringp (car elem))
538                          (string-match (car elem) group))
539                     (and (functionp (car elem))
540                          (funcall (car elem) group))
541                     (and (symbolp (car elem))
542                          (symbol-value (car elem))))
543             (throw 'found (cons (cadr elem) (caddr elem)))))))))
544
545 (defun gnus-inews-add-send-actions (winconf buffer article
546                                             &optional config yanked)
547   (gnus-make-local-hook 'message-sent-hook)
548   (add-hook 'message-sent-hook (if gnus-agent 'gnus-agent-possibly-do-gcc
549                                  'gnus-inews-do-gcc) nil t)
550   (when gnus-agent
551     (gnus-make-local-hook 'message-header-hook)
552     (add-hook 'message-header-hook 'gnus-agent-possibly-save-gcc nil t))
553   (setq message-post-method
554         `(lambda (arg)
555            (gnus-post-method arg ,gnus-newsgroup-name)))
556   (setq message-user-agent (gnus-message-make-user-agent))
557   (unless message-use-multi-frames
558     (message-add-action
559      `(if (gnus-buffer-exists-p ,buffer)
560           (set-window-configuration ,winconf))
561      'exit 'postpone 'kill))
562   (let ((to-be-marked (cond
563                        (yanked
564                         (mapcar
565                          (lambda (x) (if (listp x) (car x) x)) yanked))
566                        (article (if (listp article) article (list article)))
567                        (t nil))))
568     (message-add-action
569      `(when (gnus-buffer-exists-p ,buffer)
570         (save-excursion
571           (set-buffer ,buffer)
572           ,(when to-be-marked
573              (if (eq config 'forward)
574                  `(gnus-summary-mark-article-as-forwarded ',to-be-marked)
575                `(gnus-summary-mark-article-as-replied ',to-be-marked)))))
576      'send)))
577
578 (put 'gnus-setup-message 'lisp-indent-function 1)
579 (put 'gnus-setup-message 'edebug-form-spec '(form body))
580
581 ;;; Post news commands of Gnus group mode and summary mode
582
583 (defun gnus-group-mail (&optional arg)
584   "Start composing a mail.
585 If ARG, use the group under the point to find a posting style.
586 If ARG is 1, prompt for a group name to find the posting style."
587   (interactive "P")
588   ;; We can't `let' gnus-newsgroup-name here, since that leads
589   ;; to local variables leaking.
590   (let ((group gnus-newsgroup-name)
591         ;; make sure last viewed article doesn't affect posting styles:
592         (gnus-article-copy)
593         (buffer (current-buffer)))
594     (unwind-protect
595         (progn
596           (setq gnus-newsgroup-name
597                 (if arg
598                     (if (= 1 (prefix-numeric-value arg))
599                         (completing-read "Use posting style of group: "
600                                          gnus-active-hashtb nil
601                                          (gnus-read-active-file-p))
602                       (gnus-group-group-name))
603                   ""))
604           ;; #### see comment in gnus-setup-message -- drv
605           (gnus-setup-message 'message (message-mail)))
606       (save-excursion
607         (set-buffer buffer)
608         (setq gnus-newsgroup-name group)))))
609
610 (defun gnus-group-news (&optional arg)
611   "Start composing a news.
612 If ARG, post to group under point.
613 If ARG is 1, prompt for group name to post to.
614
615 This function prepares a news even when using mail groups.  This is useful
616 for posting messages to mail groups without actually sending them over the
617 network.  The corresponding back end must have a 'request-post method."
618   (interactive "P")
619   ;; We can't `let' gnus-newsgroup-name here, since that leads
620   ;; to local variables leaking.
621   (let ((group gnus-newsgroup-name)
622         ;; make sure last viewed article doesn't affect posting styles:
623         (gnus-article-copy)
624         (buffer (current-buffer)))
625     (unwind-protect
626         (progn
627           (setq gnus-newsgroup-name
628                 (if arg
629                     (if (= 1 (prefix-numeric-value arg))
630                         (completing-read "Use group: "
631                                          gnus-active-hashtb nil
632                                          (gnus-read-active-file-p))
633                       (gnus-group-group-name))
634                   ""))
635           ;; #### see comment in gnus-setup-message -- drv
636           (gnus-setup-message 'message
637             (message-news (gnus-group-real-name gnus-newsgroup-name))))
638       (save-excursion
639         (set-buffer buffer)
640         (setq gnus-newsgroup-name group)))))
641
642 (defun gnus-group-post-news (&optional arg)
643   "Start composing a message (a news by default).
644 If ARG, post to group under point.  If ARG is 1, prompt for group name.
645 Depending on the selected group, the message might be either a mail or
646 a news."
647   (interactive "P")
648   ;; Bind this variable here to make message mode hooks work ok.
649   (let ((gnus-newsgroup-name
650          (if arg
651              (if (= 1 (prefix-numeric-value arg))
652                  (completing-read "Newsgroup: " gnus-active-hashtb nil
653                                   (gnus-read-active-file-p))
654                (gnus-group-group-name))
655            ""))
656         ;; make sure last viewed article doesn't affect posting styles:
657         (gnus-article-copy))
658     (gnus-post-news 'post gnus-newsgroup-name nil nil nil nil
659                     (string= gnus-newsgroup-name ""))))
660
661 (defun gnus-summary-mail-other-window (&optional arg)
662   "Start composing a mail in another window.
663 Use the posting of the current group by default.
664 If ARG, don't do that.  If ARG is 1, prompt for group name to find the
665 posting style."
666   (interactive "P")
667   ;; We can't `let' gnus-newsgroup-name here, since that leads
668   ;; to local variables leaking.
669   (let ((group gnus-newsgroup-name)
670         ;; make sure last viewed article doesn't affect posting styles:
671         (gnus-article-copy)
672         (buffer (current-buffer)))
673     (unwind-protect
674         (progn
675           (setq gnus-newsgroup-name
676                 (if arg
677                     (if (= 1 (prefix-numeric-value arg))
678                         (completing-read "Use group: "
679                                          gnus-active-hashtb nil
680                                          (gnus-read-active-file-p))
681                       "")
682                   gnus-newsgroup-name))
683           ;; #### see comment in gnus-setup-message -- drv
684           (gnus-setup-message 'message (message-mail)))
685       (save-excursion
686         (set-buffer buffer)
687         (setq gnus-newsgroup-name group)))))
688
689 (defun gnus-summary-news-other-window (&optional arg)
690   "Start composing a news in another window.
691 Post to the current group by default.
692 If ARG, don't do that.  If ARG is 1, prompt for group name to post to.
693
694 This function prepares a news even when using mail groups.  This is useful
695 for posting messages to mail groups without actually sending them over the
696 network.  The corresponding back end must have a 'request-post method."
697   (interactive "P")
698   ;; We can't `let' gnus-newsgroup-name here, since that leads
699   ;; to local variables leaking.
700   (let ((group gnus-newsgroup-name)
701         ;; make sure last viewed article doesn't affect posting styles:
702         (gnus-article-copy)
703         (buffer (current-buffer)))
704     (unwind-protect
705         (progn
706           (setq gnus-newsgroup-name
707                 (if arg
708                     (if (= 1 (prefix-numeric-value arg))
709                         (completing-read "Use group: "
710                                          gnus-active-hashtb nil
711                                          (gnus-read-active-file-p))
712                       "")
713                   gnus-newsgroup-name))
714           ;; #### see comment in gnus-setup-message -- drv
715           (gnus-setup-message 'message
716             (progn
717               (message-news (gnus-group-real-name gnus-newsgroup-name))
718               (set (make-local-variable 'gnus-discouraged-post-methods)
719                    (remove
720                     (car (gnus-find-method-for-group gnus-newsgroup-name))
721                     gnus-discouraged-post-methods)))))
722       (save-excursion
723         (set-buffer buffer)
724         (setq gnus-newsgroup-name group)))))
725
726 (defun gnus-summary-post-news (&optional arg)
727   "Start composing a message.  Post to the current group by default.
728 If ARG, don't do that.  If ARG is 1, prompt for a group name to post to.
729 Depending on the selected group, the message might be either a mail or
730 a news."
731   (interactive "P")
732   ;; Bind this variable here to make message mode hooks work ok.
733   (let ((gnus-newsgroup-name
734          (if arg
735              (if (= 1 (prefix-numeric-value arg))
736                  (completing-read "Newsgroup: " gnus-active-hashtb nil
737                                   (gnus-read-active-file-p))
738                "")
739            gnus-newsgroup-name))
740         ;; make sure last viewed article doesn't affect posting styles:
741         (gnus-article-copy))
742     (gnus-post-news 'post gnus-newsgroup-name)))
743
744
745 (defun gnus-summary-followup (yank &optional force-news)
746   "Compose a followup to an article.
747 If prefix argument YANK is non-nil, the original article is yanked
748 automatically.
749 YANK is a list of elements, where the car of each element is the
750 article number, and the cdr is the string to be yanked."
751   (interactive
752    (list (and current-prefix-arg
753               (gnus-summary-work-articles 1))))
754   (when yank
755     (gnus-summary-goto-subject
756      (if (listp (car yank))
757          (caar yank)
758        (car yank))))
759   (save-window-excursion
760     (gnus-summary-select-article))
761   (let ((headers (gnus-summary-article-header (gnus-summary-article-number)))
762         (gnus-newsgroup-name gnus-newsgroup-name))
763     ;; Send a followup.
764     (gnus-post-news nil gnus-newsgroup-name
765                     headers gnus-article-buffer
766                     yank nil force-news)
767     (gnus-summary-handle-replysign)))
768
769 (defun gnus-summary-followup-with-original (n &optional force-news)
770   "Compose a followup to an article and include the original article.
771 The text in the region will be yanked.  If the region isn't
772 active, the entire article will be yanked."
773   (interactive "P")
774   (gnus-summary-followup (gnus-summary-work-articles n) force-news))
775
776 (defun gnus-summary-followup-to-mail (&optional arg)
777   "Followup to the current mail message via news."
778   (interactive
779    (list (and current-prefix-arg
780               (gnus-summary-work-articles 1))))
781   (gnus-summary-followup arg t))
782
783 (defun gnus-summary-followup-to-mail-with-original (&optional arg)
784   "Followup to the current mail message via news."
785   (interactive "P")
786   (gnus-summary-followup (gnus-summary-work-articles arg) t))
787
788 (defun gnus-inews-yank-articles (articles)
789   (let (beg article yank-string
790             (more-than-one (cdr articles))
791             (cur (current-buffer))
792             refs window)
793     (message-goto-body)
794     (while (setq article (pop articles))
795       (when (listp article)
796         (setq yank-string (nth 1 article)
797               article (nth 0 article)))
798       (save-window-excursion
799         (set-buffer gnus-summary-buffer)
800         (gnus-summary-select-article nil nil nil article)
801         (gnus-summary-remove-process-mark article))
802
803       ;; Gathering references.
804       (when more-than-one
805         (setq refs (message-list-references
806                     refs
807                     (mail-header-references gnus-current-headers)
808                     (mail-header-message-id gnus-current-headers)))
809         (when message-use-multi-frames
810           (when (setq window (get-buffer-window cur t))
811             (select-frame (window-frame window)))))
812
813       (gnus-copy-article-buffer nil yank-string)
814       (let ((message-reply-buffer gnus-article-copy)
815             (message-reply-headers
816              ;; The headers are decoded.
817              (with-current-buffer gnus-article-copy
818                (save-restriction
819                  (nnheader-narrow-to-headers)
820                  (nnheader-parse-naked-head)))))
821         (message-yank-original)
822         (setq beg (or beg (mark t))))
823       (when articles
824         (insert "\n")))
825     (push-mark)
826
827     ;; Replace with the gathered references.
828     (when refs
829       (push-mark beg)
830       (save-restriction
831         (message-narrow-to-headers)
832         (let ((case-fold-search t))
833           (if (re-search-forward "^References:\\([\t ]+.+\n\\)+" nil t)
834               (replace-match "")
835             (goto-char (point-max))))
836         (mail-header-format
837          (list (or (assq 'References message-header-format-alist)
838                    '(References . message-shorten-references)))
839          (list (cons 'References
840                      (mapconcat 'identity (nreverse refs) " "))))
841         (backward-delete-char 1))
842       (setq beg (mark t))
843       (pop-mark))
844
845     (goto-char beg)))
846
847 (defun gnus-summary-cancel-article (&optional n symp)
848   "Cancel an article you posted.
849 Uses the process-prefix convention.  If given the symbolic
850 prefix `a', cancel using the standard posting method; if not
851 post using the current select method."
852   (interactive (gnus-interactive "P\ny"))
853   (let ((message-post-method
854          `(lambda (arg)
855             (gnus-post-method (eq ',symp 'a) ,gnus-newsgroup-name))))
856     (dolist (article (gnus-summary-work-articles n))
857       (when (gnus-summary-select-article t nil nil article)
858         (when (gnus-eval-in-buffer-window gnus-article-buffer
859                 (save-excursion
860                   (set-buffer gnus-original-article-buffer)
861                   (message-cancel-news)))
862           (gnus-summary-mark-as-read article gnus-canceled-mark)
863           (gnus-cache-remove-article 1))
864         (gnus-article-hide-headers-if-wanted))
865       (gnus-summary-remove-process-mark article))))
866
867 (defun gnus-summary-supersede-article ()
868   "Compose an article that will supersede a previous article.
869 This is done simply by taking the old article and adding a Supersedes
870 header line with the old Message-ID."
871   (interactive)
872   (let ((article (gnus-summary-article-number)))
873     (gnus-setup-message 'reply-yank
874       (gnus-summary-select-article t)
875       (set-buffer gnus-original-article-buffer)
876       (message-supersede)
877       (push
878        `((lambda ()
879            (when (gnus-buffer-exists-p ,gnus-summary-buffer)
880              (save-excursion
881                (set-buffer ,gnus-summary-buffer)
882                (gnus-cache-possibly-remove-article ,article nil nil nil t)
883                (gnus-summary-mark-as-read ,article gnus-canceled-mark)))))
884        message-send-actions))))
885
886 \f
887
888 (defun gnus-copy-article-buffer (&optional article-buffer yank-string)
889   ;; make a copy of the article buffer with all text properties removed
890   ;; this copy is in the buffer gnus-article-copy.
891   ;; if ARTICLE-BUFFER is nil, gnus-article-buffer is used
892   ;; this buffer should be passed to all mail/news reply/post routines.
893   (setq gnus-article-copy (gnus-get-buffer-create " *gnus article copy*"))
894   (save-excursion
895     (set-buffer gnus-article-copy)
896     (set-buffer-multibyte t))
897   (let ((article-buffer (or article-buffer gnus-article-buffer))
898         end beg)
899     (if (not (and (get-buffer article-buffer)
900                   (gnus-buffer-exists-p article-buffer)))
901         (error "Can't find any article buffer")
902       (save-excursion
903         (set-buffer article-buffer)
904         (let ((gnus-newsgroup-charset (or gnus-article-charset
905                                           gnus-newsgroup-charset))
906               (gnus-newsgroup-ignored-charsets
907                (or gnus-article-ignored-charsets
908                    gnus-newsgroup-ignored-charsets)))
909           (save-restriction
910             ;; Copy over the (displayed) article buffer, delete
911             ;; hidden text and remove text properties.
912             (widen)
913             (copy-to-buffer gnus-article-copy (point-min) (point-max))
914             (set-buffer gnus-article-copy)
915             ;; There's invisible and intangible text in T-gnus.  Especially,
916             ;; if there is a boundary line (X-Boundary: ------------------),
917             ;; in the end of a header, it will cause a serious problem.
918             (add-text-properties (point-min) (point-max)
919                                  '(invisible nil intangible nil))
920             (when yank-string
921               (message-goto-body)
922               (delete-region (point) (point-max))
923               (insert yank-string))
924             ;; Encode bitmap smileys to ordinary text.
925             ;; Possibly, the original text might be restored.
926             (static-unless (featurep 'xemacs)
927               (when (featurep 'smiley-mule)
928                 (smiley-encode-buffer)))
929             (gnus-article-delete-text-of-type 'annotation)
930             (gnus-remove-text-with-property 'gnus-prev)
931             (gnus-remove-text-with-property 'gnus-next)
932             (gnus-remove-text-with-property 'gnus-decoration)
933             (gnus-remove-text-with-property 'x-face-mule-bitmap-image)
934             (insert
935              (prog1
936                  (static-if (featurep 'xemacs)
937                      ;; Revome smiley extents for (possibly) XEmacs 21.1.
938                      (format "%s"
939                              (buffer-substring-no-properties (point-min)
940                                                              (point-max)))
941                    (buffer-substring-no-properties (point-min) (point-max)))
942                (erase-buffer)))
943             ;; Find the original headers.
944             (set-buffer gnus-original-article-buffer)
945             (goto-char (point-min))
946             (while (looking-at message-unix-mail-delimiter)
947               (forward-line 1))
948             (let ((mail-header-separator ""))
949               (setq beg (point)
950                     end (or (message-goto-body)
951                             ;; There may be just a header.
952                             (point-max))))
953             ;; Delete the headers from the displayed articles.
954             (set-buffer gnus-article-copy)
955             (let ((mail-header-separator ""))
956               (delete-region (goto-char (point-min))
957                              (or (message-goto-body) (point-max))))
958             ;; Insert the original article headers.
959             (insert-buffer-substring gnus-original-article-buffer beg end)
960             ;; Decode charsets.
961             (let ((gnus-article-decode-hook
962                    (delq 'article-decode-charset
963                          (copy-sequence gnus-article-decode-hook))))
964               ;; Needed for T-gnus.
965               (add-hook 'gnus-article-decode-hook
966                         'article-decode-encoded-words)
967               (run-hooks 'gnus-article-decode-hook)))))
968       gnus-article-copy)))
969
970 (defun gnus-post-news (post &optional group header article-buffer yank subject
971                             force-news)
972   (when article-buffer
973     (gnus-copy-article-buffer))
974   (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number)))
975         (gnus-article-yanked-articles yank)
976         (add-to-list gnus-add-to-list))
977     (gnus-setup-message (cond (yank 'reply-yank)
978                               (article-buffer 'reply)
979                               (t 'message))
980       (let* ((group (or group gnus-newsgroup-name))
981              (charset (gnus-group-name-charset nil group))
982              (pgroup group)
983              to-address to-group mailing-list to-list
984              newsgroup-p)
985         (when group
986           (setq to-address (gnus-parameter-to-address group)
987                 to-group (gnus-group-find-parameter group 'to-group)
988                 to-list (gnus-parameter-to-list group)
989                 newsgroup-p (gnus-group-find-parameter group 'newsgroup)
990                 mailing-list (when gnus-mailing-list-groups
991                                (string-match gnus-mailing-list-groups group))
992                 group (gnus-group-name-decode (gnus-group-real-name group)
993                                               charset)))
994         (if (or (and to-group
995                      (gnus-news-group-p to-group))
996                 newsgroup-p
997                 force-news
998                 (and (gnus-news-group-p
999                       (or pgroup gnus-newsgroup-name)
1000                       (or header gnus-current-article))
1001                      (not mailing-list)
1002                      (not to-list)
1003                      (not to-address)))
1004             ;; This is news.
1005             (if post
1006                 (message-news
1007                  (or to-group
1008                      (and (not (gnus-virtual-group-p pgroup)) group)))
1009               (set-buffer gnus-article-copy)
1010               (gnus-msg-treat-broken-reply-to)
1011               (message-followup (if (or newsgroup-p force-news)
1012                                     (if (save-restriction
1013                                           (article-narrow-to-head)
1014                                           (message-fetch-field "newsgroups"))
1015                                         nil
1016                                       "")
1017                                   to-group)))
1018           ;; The is mail.
1019           (if post
1020               (progn
1021                 (message-mail (or to-address to-list))
1022                 ;; Arrange for mail groups that have no `to-address' to
1023                 ;; get that when the user sends off the mail.
1024                 (when (and (not to-list)
1025                            (not to-address)
1026                            add-to-list)
1027                   (push (list 'gnus-inews-add-to-address pgroup)
1028                         message-send-actions)))
1029             (set-buffer gnus-article-copy)
1030             (gnus-msg-treat-broken-reply-to)
1031             (message-wide-reply to-address)))
1032         (when yank
1033           (gnus-inews-yank-articles yank))))))
1034
1035 (defun gnus-msg-treat-broken-reply-to (&optional force)
1036   "Remove the Reply-to header if broken-reply-to."
1037   (when (or force
1038             (gnus-group-find-parameter
1039              gnus-newsgroup-name 'broken-reply-to))
1040     (save-restriction
1041       (message-narrow-to-head)
1042       (message-remove-header "reply-to"))))
1043
1044 (defun gnus-post-method (arg group &optional silent)
1045   "Return the posting method based on GROUP and ARG.
1046 If SILENT, don't prompt the user."
1047   (let ((gnus-post-method (or (gnus-parameter-post-method group)
1048                               gnus-post-method))
1049         (group-method (gnus-find-method-for-group group)))
1050     (cond
1051      ;; If the group-method is nil (which shouldn't happen) we use
1052      ;; the default method.
1053      ((null group-method)
1054       (or (and (listp gnus-post-method) ;If not current/native/nil
1055                (not (listp (car gnus-post-method))) ; and not a list of methods
1056                gnus-post-method)        ;then use it.
1057           gnus-select-method
1058           message-post-method))
1059      ;; We want the inverse of the default
1060      ((and arg (not (eq arg 0)))
1061       (if (eq gnus-post-method 'current)
1062           gnus-select-method
1063         group-method))
1064      ;; We query the user for a post method.
1065      ((or arg
1066           (and (listp gnus-post-method)
1067                (listp (car gnus-post-method))))
1068       (let* ((methods
1069               ;; Collect all methods we know about.
1070               (append
1071                (when (listp gnus-post-method)
1072                  (if (listp (car gnus-post-method))
1073                      gnus-post-method
1074                    (list gnus-post-method)))
1075                gnus-secondary-select-methods
1076                (mapcar 'cdr gnus-server-alist)
1077                (mapcar 'car gnus-opened-servers)
1078                (list gnus-select-method)
1079                (list group-method)))
1080              method-alist post-methods method)
1081         ;; Weed out all mail methods.
1082         (while methods
1083           (setq method (gnus-server-get-method "" (pop methods)))
1084           (when (and (or (gnus-method-option-p method 'post)
1085                          (gnus-method-option-p method 'post-mail))
1086                      (not (member method post-methods)))
1087             (push method post-methods)))
1088         ;; Create a name-method alist.
1089         (setq method-alist
1090               (mapcar
1091                (lambda (m)
1092                  (if (equal (cadr m) "")
1093                      (list (symbol-name (car m)) m)
1094                    (list (concat (cadr m) " (" (symbol-name (car m)) ")") m)))
1095                post-methods))
1096         ;; Query the user.
1097         (cadr
1098          (assoc
1099           (setq gnus-last-posting-server
1100                 (if (and silent
1101                          gnus-last-posting-server)
1102                     ;; Just use the last value.
1103                     gnus-last-posting-server
1104                   (completing-read
1105                    "Posting method: " method-alist nil t
1106                    (cons (or gnus-last-posting-server "") 0))))
1107           method-alist))))
1108      ;; Override normal method.
1109      ((and (eq gnus-post-method 'current)
1110            (not (memq (car group-method) gnus-discouraged-post-methods))
1111            (gnus-get-function group-method 'request-post t))
1112       (assert (not arg))
1113       group-method)
1114      ;; Use gnus-post-method.
1115      ((listp gnus-post-method)          ;A method...
1116       (assert (not (listp (car gnus-post-method)))) ;... not a list of methods.
1117       gnus-post-method)
1118      ;; Use the normal select method (nil or native).
1119      (t gnus-select-method))))
1120
1121 \f
1122 (defun gnus-message-make-user-agent (&optional dummy max-column
1123                                                newline-product)
1124   "Return a user-agent info.  If MAX-COLUMN is specified, the return
1125 value will be folded up as it were filled.  NEWLINE-PRODUCT specifies
1126 whether a newline should be inserted in front of each product-token;
1127 if the value is t or `hard', it works strictly.  Otherwise, if it is
1128 non-nil (e.g. `soft'), it works semi-strictly."
1129   (let ((user-agent (gnus-extended-version)))
1130     (when max-column
1131       (unless (natnump max-column)
1132         (setq max-column 76))
1133       (with-temp-buffer
1134         (set-buffer-multibyte t)
1135         (insert (mapconcat 'identity (split-string user-agent) " "))
1136         (goto-char (point-min))
1137         (let ((bol t)
1138               start agent agents width element swidth)
1139           (while (re-search-forward "\\([^ ]+\\) ?" nil t)
1140             (setq start (match-beginning 0))
1141             (if (eq (char-after start) ?\()
1142                 (progn
1143                   (goto-char start)
1144                   (forward-list)
1145                   (push (buffer-substring start (point)) agent))
1146               (when agent
1147                 (push (nreverse agent) agents))
1148               (setq agent (list (match-string 1)))))
1149           (when agent
1150             (push (nreverse agent) agents))
1151           (setq agents (nreverse agents))
1152           (if (> (+ 12 (string-width (caar agents))) max-column)
1153               (setq user-agent "\n"
1154                     width 0)
1155             (setq user-agent ""
1156                   width 11))
1157           (while agents
1158             (setq agent (car agents)
1159                   agents (cdr agents))
1160             (when (and (not bol)
1161                        (or (memq newline-product '(t hard))
1162                            (and newline-product
1163                                 (> (+ width 1
1164                                       (string-width (mapconcat 'identity
1165                                                                agent " ")))
1166                                    max-column))))
1167               (setq user-agent (concat user-agent "\n")
1168                     width 0
1169                     bol t))
1170             (while agent
1171               (setq element (car agent)
1172                     swidth (string-width element)
1173                     agent (cdr agent))
1174               (if bol
1175                   (setq user-agent (if (member user-agent '("" "\n"))
1176                                        (concat user-agent element)
1177                                      (concat user-agent " " element))
1178                         width (+ width 1 swidth)
1179                         bol nil)
1180                 (if (> (+ width 1 swidth) max-column)
1181                     (setq user-agent (concat user-agent "\n " element)
1182                           width (1+ swidth))
1183                   (setq user-agent (concat user-agent " " element)
1184                         width (+ width 1 swidth)))))))))
1185     user-agent))
1186
1187 \f
1188 ;;;
1189 ;;; Gnus Mail Functions
1190 ;;;
1191
1192 ;;; Mail reply commands of Gnus summary mode
1193
1194 (defun gnus-summary-reply (&optional yank wide very-wide)
1195   "Start composing a mail reply to the current message.
1196 If prefix argument YANK is non-nil, the original article is yanked
1197 automatically.
1198 If WIDE, make a wide reply.
1199 If VERY-WIDE, make a very wide reply."
1200   (interactive
1201    (list (and current-prefix-arg
1202               (gnus-summary-work-articles 1))))
1203   ;; Allow user to require confirmation before replying by mail to the
1204   ;; author of a news article (or mail message).
1205   (when (or
1206             (not (or (gnus-news-group-p gnus-newsgroup-name)
1207                      gnus-confirm-treat-mail-like-news))
1208             (not (cond ((stringp gnus-confirm-mail-reply-to-news)
1209                         (string-match gnus-confirm-mail-reply-to-news
1210                                       gnus-newsgroup-name))
1211                        ((functionp gnus-confirm-mail-reply-to-news)
1212                         (funcall gnus-confirm-mail-reply-to-news gnus-newsgroup-name))
1213                        (t gnus-confirm-mail-reply-to-news)))
1214             (y-or-n-p "Really reply by mail to article author? "))
1215     (let* ((article
1216             (if (listp (car yank))
1217                 (caar yank)
1218               (car yank)))
1219            (gnus-article-reply (or article (gnus-summary-article-number)))
1220            (gnus-article-yanked-articles yank)
1221            (headers ""))
1222       ;; Stripping headers should be specified with mail-yank-ignored-headers.
1223       (when yank
1224         (gnus-summary-goto-subject article))
1225       (gnus-setup-message (if yank 'reply-yank 'reply)
1226         (if (not very-wide)
1227             (gnus-summary-select-article)
1228           (dolist (article very-wide)
1229             (gnus-summary-select-article nil nil nil article)
1230             (save-excursion
1231               (set-buffer (gnus-copy-article-buffer))
1232               (gnus-msg-treat-broken-reply-to)
1233               (save-restriction
1234                 (message-narrow-to-head)
1235                 (setq headers (concat headers (buffer-string)))))))
1236         (set-buffer (gnus-copy-article-buffer))
1237         (gnus-msg-treat-broken-reply-to gnus-msg-force-broken-reply-to)
1238         (save-restriction
1239           (message-narrow-to-head)
1240           (when very-wide
1241             (erase-buffer)
1242             (insert headers))
1243           (goto-char (point-max)))
1244         (message-reply nil wide)
1245         (when yank
1246           (gnus-inews-yank-articles yank))
1247         (gnus-summary-handle-replysign)))))
1248
1249 (defun gnus-summary-handle-replysign ()
1250   "Check the various replysign variables and take action accordingly."
1251   (when nil;;(or gnus-message-replysign gnus-message-replyencrypt)
1252     (let (signed encrypted)
1253       (save-excursion
1254         (set-buffer gnus-article-buffer)
1255         (setq signed (memq 'signed gnus-article-wash-types))
1256         (setq encrypted (memq 'encrypted gnus-article-wash-types)))
1257       (cond ((and gnus-message-replyencrypt encrypted)
1258              (mml-secure-message mml-default-encrypt-method
1259                                  (if gnus-message-replysignencrypted
1260                                      'signencrypt
1261                                    'encrypt)))
1262             ((and gnus-message-replysign signed)
1263              (mml-secure-message mml-default-sign-method 'sign))))))
1264
1265 (defun gnus-summary-reply-with-original (n &optional wide)
1266   "Start composing a reply mail to the current message.
1267 The original article will be yanked."
1268   (interactive "P")
1269   (gnus-summary-reply (gnus-summary-work-articles n) wide))
1270
1271 (defun gnus-summary-reply-broken-reply-to (&optional yank wide very-wide)
1272   "Like `gnus-summary-reply' except removing reply-to field.
1273 If prefix argument YANK is non-nil, the original article is yanked
1274 automatically.
1275 If WIDE, make a wide reply.
1276 If VERY-WIDE, make a very wide reply."
1277   (interactive
1278    (list (and current-prefix-arg
1279               (gnus-summary-work-articles 1))))
1280   (let ((gnus-msg-force-broken-reply-to t))
1281     (gnus-summary-reply yank wide very-wide)))
1282
1283 (defun gnus-summary-reply-broken-reply-to-with-original (n &optional wide)
1284   "Like `gnus-summary-reply-with-original' except removing reply-to field.
1285 The original article will be yanked."
1286   (interactive "P")
1287   (gnus-summary-reply-broken-reply-to (gnus-summary-work-articles n) wide))
1288
1289 (defun gnus-summary-wide-reply (&optional yank)
1290   "Start composing a wide reply mail to the current message.
1291 If prefix argument YANK is non-nil, the original article is yanked
1292 automatically."
1293   (interactive
1294    (list (and current-prefix-arg
1295               (gnus-summary-work-articles 1))))
1296   (gnus-summary-reply yank t))
1297
1298 (defun gnus-summary-wide-reply-with-original (n)
1299   "Start composing a wide reply mail to the current message.
1300 The original article will be yanked.
1301 Uses the process/prefix convention."
1302   (interactive "P")
1303   (gnus-summary-reply-with-original n t))
1304
1305 (defun gnus-summary-very-wide-reply (&optional yank)
1306   "Start composing a very wide reply mail to the current message.
1307 If prefix argument YANK is non-nil, the original article is yanked
1308 automatically."
1309   (interactive
1310    (list (and current-prefix-arg
1311               (gnus-summary-work-articles 1))))
1312   (gnus-summary-reply yank t (gnus-summary-work-articles yank)))
1313
1314 (defun gnus-summary-very-wide-reply-with-original (n)
1315   "Start composing a very wide reply mail to the current message.
1316 The original article will be yanked."
1317   (interactive "P")
1318   (gnus-summary-reply
1319    (gnus-summary-work-articles n) t (gnus-summary-work-articles n)))
1320
1321 (defun gnus-summary-mail-forward (&optional full-headers post)
1322   "Forward the current message(s) to another user.
1323 If process marks exist, forward all marked messages;
1324 If FULL-HEADERS (the prefix), include full headers when forwarding.
1325
1326 Note that this function definition for T-gnus is totally different
1327 from the original Gnus."
1328   (interactive "P")
1329   (if (cdr (gnus-summary-work-articles nil))
1330       ;; Process marks are given.
1331       (gnus-summary-digest-mail-forward nil post)
1332     ;; No process marks.
1333     (let* ((gnus-article-reply (gnus-summary-article-number))
1334            (gnus-article-yanked-articles (list gnus-article-reply))
1335            charset
1336            (message-included-forward-headers
1337             (if full-headers "" message-included-forward-headers)))
1338       (gnus-setup-message 'forward
1339         (gnus-summary-select-article)
1340         (setq charset default-mime-charset)
1341         (set-buffer gnus-original-article-buffer)
1342         (make-local-variable 'default-mime-charset)
1343         (setq default-mime-charset charset)
1344         (message-forward post)))))
1345
1346 (defun gnus-summary-digest-mail-forward (&optional n post)
1347   "Digests and forwards all articles in this series.
1348 If N is a positive number, forward the N next articles.
1349 If N is a negative number, forward the N previous articles.
1350 If N is nil and any articles have been marked with the process mark,
1351 forward those articles instead.
1352 Optional POST will use news to forward instead of mail."
1353   (interactive "P")
1354   (let* ((articles (gnus-summary-work-articles n))
1355          (gnus-article-yanked-articles (copy-sequence articles))
1356          (topics "Topics:\n")
1357          subject article frame)
1358     (when (car articles)
1359       (gnus-setup-message 'forward
1360         (gnus-summary-select-article)
1361         (if (cdr articles)
1362             (setq articles (sort articles '<)
1363                   subject "Digested Articles")
1364           (with-current-buffer gnus-original-article-buffer
1365             (setq subject (message-make-forward-subject))))
1366         (if post
1367             (message-news nil subject)
1368           (message-mail nil subject))
1369         (when (and message-use-multi-frames (cdr articles))
1370           (setq frame (window-frame (get-buffer-window (current-buffer)))))
1371         (message-goto-body)
1372         (while (setq article (pop articles))
1373           (save-window-excursion
1374             (set-buffer gnus-summary-buffer)
1375             (gnus-summary-select-article nil nil nil article)
1376             (setq topics (concat topics "    "
1377                                  (mail-header-subject gnus-current-headers)
1378                                  "\n"))
1379             (gnus-summary-remove-process-mark article))
1380           (when frame
1381             (select-frame frame))
1382           (insert (mime-make-tag "message" "rfc822") "\n")
1383           (narrow-to-region (point) (point))
1384           (insert-buffer-substring gnus-original-article-buffer)
1385           (save-restriction
1386             (article-narrow-to-head)
1387             (message-remove-header message-included-forward-headers t nil t))
1388           (goto-char (point-max))
1389           (widen))
1390         (push-mark)
1391         (message-goto-body)
1392         (insert topics)
1393         (message-goto-body)
1394         (mime-edit-enclose-digest-region (point)(mark t))))))
1395
1396 (defun gnus-summary-digest-post-forward (&optional n)
1397   "Digest and forwards all articles in this series to a newsgroup.
1398 If N is a positive number, forward the N next articles.
1399 If N is a negative number, forward the N previous articles.
1400 If N is nil and any articles have been marked with the process mark,
1401 forward those articles instead."
1402   (interactive "P")
1403   (gnus-summary-digest-mail-forward n t))
1404
1405 (defun gnus-summary-resend-message (address n)
1406   "Resend the current article to ADDRESS."
1407   (interactive
1408    (list (message-read-from-minibuffer
1409           "Resend message(s) to: "
1410           (when (and gnus-summary-resend-default-address
1411                      (gnus-buffer-live-p gnus-original-article-buffer))
1412             ;; If some other article is currently selected, the
1413             ;; initial-contents is wrong. Whatever, it is just the
1414             ;; initial-contents.
1415             (with-current-buffer gnus-original-article-buffer
1416               (nnmail-fetch-field "to"))))
1417          current-prefix-arg))
1418   (dolist (article (gnus-summary-work-articles n))
1419     (gnus-summary-select-article nil nil nil article)
1420     (save-excursion
1421       (set-buffer gnus-original-article-buffer)
1422       (message-resend address))
1423     (gnus-summary-mark-article-as-forwarded article)))
1424
1425 ;; From: Matthieu Moy <Matthieu.Moy@imag.fr>
1426 (defun gnus-summary-resend-message-edit ()
1427   "Resend an article that has already been sent.
1428 A new buffer will be created to allow the user to modify body and
1429 contents of the message, and then, everything will happen as when
1430 composing a new message."
1431   (interactive)
1432   (let ((article (gnus-summary-article-number)))
1433     (gnus-setup-message 'reply-yank
1434       (gnus-summary-select-article t)
1435       (set-buffer gnus-original-article-buffer)
1436       (let ((cur (current-buffer))
1437             (to (message-fetch-field "to")))
1438         ;; Get a normal message buffer.
1439         (message-pop-to-buffer (message-buffer-name "Resend" to))
1440         (insert-buffer-substring cur)
1441
1442         ;; T-gnus change: Use MIME-Edit to recompose a message.
1443         ;;(mime-to-mml)
1444         (let ((ofn (symbol-function 'mime-edit-decode-single-part-in-buffer)))
1445           (fset 'mime-edit-decode-single-part-in-buffer
1446                 (lambda (&rest args)
1447                   (if (let ((content-type (car args)))
1448                         (and (eq 'message (mime-content-type-primary-type
1449                                            content-type))
1450                              (eq 'rfc822 (mime-content-type-subtype
1451                                           content-type))))
1452                       (setcar (cdr args) 'not-decode-text))
1453                   (apply ofn args)))
1454           (unwind-protect
1455               (mime-edit-again nil t)
1456             (fset 'mime-edit-decode-single-part-in-buffer ofn)))
1457         (message-narrow-to-head-1)
1458         (insert "From: " (message-make-from) "\n")
1459         (while (re-search-forward "^From:" nil t)
1460           (beginning-of-line)
1461           (insert "Original-"))
1462         (message-remove-header "^>From[\t ]" t)
1463
1464         ;; Gnus will generate a new one when sending.
1465         (message-remove-header "Message-ID")
1466         (message-remove-header message-ignored-resent-headers t)
1467         ;; Remove unwanted headers.
1468         (goto-char (point-max))
1469         (insert mail-header-separator)
1470         (goto-char (point-min))
1471         (when (re-search-forward "^To:\\|^Newsgroups:" nil 'move)
1472           (forward-char 1))
1473         (widen)))))
1474
1475 (defun gnus-summary-post-forward (&optional full-headers)
1476   "Forward the current article to a newsgroup.
1477 If FULL-HEADERS (the prefix), include full headers when forwarding."
1478   (interactive "P")
1479   (gnus-summary-mail-forward full-headers t))
1480
1481 (defvar gnus-nastygram-message
1482   "The following article was inappropriately posted to %s.\n\n"
1483   "Format string to insert in nastygrams.
1484 The current group name will be inserted at \"%s\".")
1485
1486 (defun gnus-summary-mail-nastygram (n)
1487   "Send a nastygram to the author of the current article."
1488   (interactive "P")
1489   (when (or gnus-expert-user
1490             (gnus-y-or-n-p
1491              "Really send a nastygram to the author of the current article? "))
1492     (let ((group gnus-newsgroup-name))
1493       (gnus-summary-reply-with-original n)
1494       (set-buffer gnus-message-buffer)
1495       (message-goto-body)
1496       (insert (format gnus-nastygram-message group))
1497       (message-send-and-exit))))
1498
1499 (defun gnus-summary-mail-crosspost-complaint (n)
1500   "Send a complaint about crossposting to the current article(s)."
1501   (interactive "P")
1502   (dolist (article (gnus-summary-work-articles n))
1503     (set-buffer gnus-summary-buffer)
1504     (gnus-summary-goto-subject article)
1505     (let ((group (gnus-group-real-name gnus-newsgroup-name))
1506           newsgroups followup-to)
1507       (gnus-summary-select-article)
1508       (set-buffer gnus-original-article-buffer)
1509       (if (and (<= (length (message-tokenize-header
1510                             (setq newsgroups
1511                                   (mail-fetch-field "newsgroups"))
1512                             ", "))
1513                    1)
1514                (or (not (setq followup-to (mail-fetch-field "followup-to")))
1515                    (not (member group (message-tokenize-header
1516                                        followup-to ", ")))))
1517           (if followup-to
1518               (gnus-message 1 "Followup-to restricted")
1519             (gnus-message 1 "Not a crossposted article"))
1520         (set-buffer gnus-summary-buffer)
1521         (gnus-summary-reply-with-original 1)
1522         (set-buffer gnus-message-buffer)
1523         (message-goto-body)
1524         (insert (format gnus-crosspost-complaint newsgroups group))
1525         (message-goto-subject)
1526         (re-search-forward " *$")
1527         (replace-match " (crosspost notification)" t t)
1528         (gnus-deactivate-mark)
1529         (when (gnus-y-or-n-p "Send this complaint? ")
1530           (message-send-and-exit))))))
1531
1532 (defun gnus-mail-parse-comma-list ()
1533   (let (accumulated
1534         beg)
1535     (skip-chars-forward " ")
1536     (while (not (eobp))
1537       (setq beg (point))
1538       (skip-chars-forward "^,")
1539       (while (zerop
1540               (save-excursion
1541                 (save-restriction
1542                   (let ((i 0))
1543                     (narrow-to-region beg (point))
1544                     (goto-char beg)
1545                     (logand (progn
1546                               (while (search-forward "\"" nil t)
1547                                 (incf i))
1548                               (if (zerop i) 2 i))
1549                             2)))))
1550         (skip-chars-forward ",")
1551         (skip-chars-forward "^,"))
1552       (skip-chars-backward " ")
1553       (push (buffer-substring beg (point))
1554             accumulated)
1555       (skip-chars-forward "^,")
1556       (skip-chars-forward ", "))
1557     accumulated))
1558
1559 (defun gnus-inews-add-to-address (group)
1560   (let ((to-address (mail-fetch-field "to")))
1561     (when (and to-address
1562                (gnus-alive-p))
1563       ;; This mail group doesn't have a `to-list', so we add one
1564       ;; here.  Magic!
1565       (when (gnus-y-or-n-p
1566              (format "Do you want to add this as `to-list': %s? " to-address))
1567         (gnus-group-add-parameter group (cons 'to-list to-address))))))
1568
1569 (defun gnus-put-message ()
1570   "Put the current message in some group and return to Gnus."
1571   (interactive)
1572   (let ((reply gnus-article-reply)
1573         (winconf gnus-prev-winconf)
1574         (group gnus-newsgroup-name))
1575     (unless (and group
1576                  (not (gnus-group-read-only-p group)))
1577       (setq group (read-string "Put in group: " nil (gnus-writable-groups))))
1578
1579     (when (gnus-group-entry group)
1580       (error "No such group: %s" group))
1581     (save-excursion
1582       (save-restriction
1583         (widen)
1584         (message-narrow-to-headers)
1585         (let ((gnus-deletable-headers nil))
1586           (message-generate-headers
1587            (if (message-news-p)
1588                message-required-news-headers
1589              message-required-mail-headers)))
1590         (goto-char (point-max))
1591         (if (string-match " " group)
1592             (insert "Gcc: \"" group "\"\n")
1593           (insert "Gcc: " group "\n"))
1594         (widen)))
1595     (gnus-inews-do-gcc)
1596     (when (and (get-buffer gnus-group-buffer)
1597                (gnus-buffer-exists-p (car-safe reply))
1598                (cdr reply))
1599       (set-buffer (car reply))
1600       (gnus-summary-mark-article-as-replied (cdr reply)))
1601     (when winconf
1602       (set-window-configuration winconf))))
1603
1604 (defun gnus-article-mail (yank)
1605   "Send a reply to the address near point.
1606 If YANK is non-nil, include the original article."
1607   (interactive "P")
1608   (let ((address
1609          (buffer-substring
1610           (save-excursion (re-search-backward "[ \t\n]" nil t) (1+ (point)))
1611           (save-excursion (re-search-forward "[ \t\n]" nil t) (1- (point))))))
1612     (when address
1613       (gnus-msg-mail address)
1614       (when yank
1615         (gnus-inews-yank-articles (list (cdr gnus-article-current)))))))
1616
1617 (defvar nntp-server-type)
1618 (defun gnus-bug ()
1619   "Send a bug report to the Gnus maintainers."
1620   (interactive)
1621   (unless (gnus-alive-p)
1622     (error "Gnus has been shut down"))
1623   (gnus-setup-message (if (message-mail-user-agent) 'message 'bug)
1624     (unless (message-mail-user-agent)
1625       (message-pop-to-buffer "*Gnus Bug*")
1626       (delete-other-windows)
1627       (when gnus-bug-create-help-buffer
1628         (switch-to-buffer "*Gnus Help Bug*")
1629         (erase-buffer)
1630         (insert gnus-bug-message)
1631         (goto-char (point-min))
1632         (sit-for 0)
1633         (set-buffer "*Gnus Bug*")))
1634     (let ((message-this-is-mail t))
1635       (message-setup `((To . ,gnus-maintainer) (Subject . ""))))
1636     (when gnus-bug-create-help-buffer
1637       (push `(gnus-bug-kill-buffer) message-send-actions))
1638     (goto-char (point-min))
1639     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1640     (forward-line 1)
1641     (insert gnus-product-name " " gnus-version-number
1642             " (r" gnus-revision-number ") "
1643             "based on " gnus-original-product-name " v"
1644             gnus-original-version-number "\n"
1645             (emacs-version) "\n")
1646     (when (and (boundp 'nntp-server-type)
1647                (stringp nntp-server-type))
1648       (insert nntp-server-type))
1649     (insert "\n\n\n\n\n")
1650     (let (mime-content-types)
1651       (mime-edit-insert-tag
1652        "application" "emacs-lisp"
1653        "\nContent-Disposition: inline\nContent-Description: User settings"))
1654     (insert (with-temp-buffer
1655               (gnus-debug)
1656               (buffer-string)))
1657     (let (mime-content-types)
1658       (mime-edit-insert-tag "text" "plain"))
1659     (goto-char (point-min))
1660     (search-forward "Subject: " nil t)
1661     (message "")))
1662
1663 (defun gnus-bug-kill-buffer ()
1664   (when (get-buffer "*Gnus Help Bug*")
1665     (kill-buffer "*Gnus Help Bug*")))
1666
1667 (defun gnus-summary-yank-message (buffer n)
1668   "Yank the current article into a composed message."
1669   (interactive
1670    (list (completing-read "Buffer: " (mapcar 'list (message-buffers)) nil t)
1671          current-prefix-arg))
1672   (when (gnus-buffer-live-p buffer)
1673     (let ((summary-frame (selected-frame))
1674           (message-frame (when (static-if (featurep 'xemacs)
1675                                    (device-on-window-system-p)
1676                                  window-system)
1677                            (let ((window (get-buffer-window buffer t)))
1678                              (when window
1679                                (window-frame window)))))
1680           (separator (concat "^" (regexp-quote mail-header-separator)
1681                              "\n")))
1682       (gnus-summary-iterate n
1683         (gnus-summary-select-article)
1684         (gnus-copy-article-buffer)
1685         (when (frame-live-p message-frame)
1686           (raise-frame message-frame)
1687           (select-frame message-frame))
1688         (with-current-buffer buffer
1689           (when (save-excursion
1690                   (beginning-of-line)
1691                   (let (case-fold-search)
1692                     (and (not (re-search-backward separator nil t))
1693                          (re-search-forward separator nil t))))
1694             (goto-char (match-end 0)))
1695           (message-yank-buffer gnus-article-copy))
1696         (select-frame summary-frame))
1697       (when (frame-live-p message-frame)
1698         (select-frame message-frame)))))
1699
1700 (defun gnus-debug ()
1701   "Attempts to go through the Gnus source file and report what variables have been changed.
1702 The source file has to be in the Emacs load path."
1703   (interactive)
1704   (let ((files gnus-debug-files)
1705         (point (point))
1706         file expr olist sym)
1707     (gnus-message 4 "Please wait while we snoop your variables...")
1708     ;; Go through all the files looking for non-default values for variables.
1709     (save-excursion
1710       (sit-for 0)
1711       (set-buffer (gnus-get-buffer-create " *gnus bug info*"))
1712       (while files
1713         (erase-buffer)
1714         (when (and (setq file (locate-library (pop files)))
1715                    (file-exists-p file))
1716           (insert-file-contents file)
1717           (goto-char (point-min))
1718           (if (not (re-search-forward "^;;* *Internal variables" nil t))
1719               (gnus-message 4 "Malformed sources in file %s" file)
1720             (narrow-to-region (point-min) (point))
1721             (goto-char (point-min))
1722             (while (setq expr (ignore-errors (read (current-buffer))))
1723               (ignore-errors
1724                 (and (memq (car expr) '(defvar defcustom defvoo))
1725                      (stringp (nth 3 expr))
1726                      (not (memq (nth 1 expr) gnus-debug-exclude-variables))
1727                      (or (not (boundp (nth 1 expr)))
1728                          (not (equal (eval (nth 2 expr))
1729                                      (symbol-value (nth 1 expr)))))
1730                      (push (nth 1 expr) olist)))))))
1731       (kill-buffer (current-buffer)))
1732     (when (setq olist (nreverse olist))
1733       (insert ";----------------- Environment follows ------------------\n\n"))
1734     (while olist
1735       (if (boundp (car olist))
1736           (ignore-errors
1737            (gnus-pp
1738             `(setq ,(car olist)
1739                    ,(if (or (consp (setq sym (symbol-value (car olist))))
1740                             (and (symbolp sym)
1741                                  (not (or (eq sym nil)
1742                                           (eq sym t)))))
1743                         (list 'quote (symbol-value (car olist)))
1744                       (symbol-value (car olist))))))
1745         (insert ";; (makeunbound '" (symbol-name (car olist)) ")\n"))
1746       (setq olist (cdr olist)))
1747     ;; Remove any control chars - they seem to cause trouble for some
1748     ;; mailers.  (Byte-compiled output from the stuff above.)
1749     (goto-char point)
1750     (while (re-search-forward (string-as-multibyte
1751                                "[\000-\010\013-\037\200-\237]") nil t)
1752       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
1753                      t t))
1754     ;; Break MIME tags purposely.
1755     (goto-char point)
1756     (while (re-search-forward mime-edit-tag-regexp nil t)
1757       (goto-char (1+ (match-beginning 0)))
1758       (insert "X"))))
1759
1760 ;;; Treatment of rejected articles.
1761 ;;; Bounced mail.
1762
1763 (defun gnus-summary-resend-bounced-mail (&optional fetch)
1764   "Re-mail the current message.
1765 This only makes sense if the current message is a bounce message that
1766 contains some mail you have written which has been bounced back to
1767 you.
1768 If FETCH, try to fetch the article that this is a reply to, if indeed
1769 this is a reply."
1770   (interactive "P")
1771   (gnus-summary-select-article t)
1772   (set-buffer gnus-original-article-buffer)
1773   (gnus-setup-message 'compose-bounce
1774     (let* ((references (mail-fetch-field "references"))
1775            (parent (and references (gnus-parent-id references))))
1776       (message-bounce)
1777       ;; If there are references, we fetch the article we answered to.
1778       (and fetch parent
1779            (gnus-summary-refer-article parent)
1780            (gnus-summary-show-all-headers)))))
1781
1782 ;;; Gcc handling.
1783
1784 (defun gnus-inews-group-method (group)
1785   (cond
1786    ;; If the group doesn't exist, we assume
1787    ;; it's an archive group...
1788    ((and (null (gnus-get-info group))
1789          (eq (car (gnus-server-to-method gnus-message-archive-method))
1790              (car (gnus-server-to-method (gnus-group-method group)))))
1791     gnus-message-archive-method)
1792    ;; Use the method.
1793    ((gnus-info-method (gnus-get-info group))
1794     (gnus-info-method (gnus-get-info group)))
1795    ;; Find the method.
1796    (t (gnus-server-to-method (gnus-group-method group)))))
1797
1798 ;; Do Gcc handling, which copied the message over to some group.
1799 (defun gnus-inews-do-gcc (&optional gcc)
1800   (interactive)
1801   (save-excursion
1802     (save-restriction
1803       (message-narrow-to-headers)
1804       (let ((gcc (or gcc (mail-fetch-field "gcc" nil t)))
1805             (coding-system-for-write 'raw-text)
1806             groups group method group-art
1807             mml-externalize-attachments)
1808         (when gcc
1809           (message-remove-header "gcc")
1810           (widen)
1811           (setq groups (message-unquote-tokens
1812                         (message-tokenize-header gcc " ,")))
1813           ;; Copy the article over to some group(s).
1814           (while (setq group (pop groups))
1815             (unless (gnus-check-server
1816                      (setq method (gnus-inews-group-method group)))
1817               (error "Can't open server %s" (if (stringp method) method
1818                                               (car method))))
1819             (unless (gnus-request-group group nil method)
1820               (gnus-request-create-group group method))
1821             (setq mml-externalize-attachments
1822                   (if (stringp gnus-gcc-externalize-attachments)
1823                       (string-match gnus-gcc-externalize-attachments group)
1824                     gnus-gcc-externalize-attachments))
1825             (save-excursion
1826               (nnheader-set-temp-buffer " *acc*")
1827               (insert-buffer-substring message-encoding-buffer)
1828               (gnus-run-hooks 'gnus-before-do-gcc-hook)
1829               (goto-char (point-min))
1830               (when (re-search-forward
1831                      (concat "^" (regexp-quote mail-header-separator) "$")
1832                      nil t)
1833                 (replace-match "" t t ))
1834               (when (or (not (gnus-check-backend-function
1835                               'request-accept-article group))
1836                         (not (setq group-art
1837                                    (gnus-request-accept-article
1838                                     group method t t))))
1839                 (gnus-message 1 "Couldn't store article in group %s: %s"
1840                               group (gnus-status-message method)))
1841               (when (and group-art
1842                          ;; FIXME: Should gcc-mark-as-read work when
1843                          ;; Gnus is not running?
1844                          (gnus-alive-p)
1845                          (or gnus-gcc-mark-as-read
1846                              (and
1847                               (boundp 'gnus-inews-mark-gcc-as-read)
1848                               (symbol-value 'gnus-inews-mark-gcc-as-read))))
1849                 (gnus-group-mark-article-read group (cdr group-art)))
1850               (kill-buffer (current-buffer)))))))))
1851
1852 (defun gnus-inews-insert-gcc ()
1853   "Insert Gcc headers based on `gnus-outgoing-message-group'."
1854   (save-excursion
1855     (save-restriction
1856       (message-narrow-to-headers)
1857       (let* ((group gnus-outgoing-message-group)
1858              (gcc (cond
1859                    ((functionp group)
1860                     (funcall group))
1861                    ((or (stringp group) (list group))
1862                     group))))
1863         (when gcc
1864           (insert "Gcc: "
1865                   (if (stringp gcc)
1866                       (if (string-match " " gcc)
1867                           (concat "\"" gcc "\"")
1868                         gcc)
1869                     (mapconcat (lambda (group)
1870                                  (if (string-match " " group)
1871                                      (concat "\"" group "\"")
1872                                    group))
1873                                gcc " "))
1874                   "\n"))))))
1875
1876 (defun gnus-inews-insert-archive-gcc (&optional group)
1877   "Insert the Gcc to say where the article is to be archived."
1878   (let* ((var gnus-message-archive-group)
1879          (group (or group gnus-newsgroup-name ""))
1880          (gcc-self-val
1881           (and gnus-newsgroup-name
1882                (not (equal gnus-newsgroup-name ""))
1883                (gnus-group-find-parameter
1884                 gnus-newsgroup-name 'gcc-self)))
1885          result
1886          (groups
1887           (cond
1888            ((null gnus-message-archive-method)
1889             ;; Ignore.
1890             nil)
1891            ((stringp var)
1892             ;; Just a single group.
1893             (list var))
1894            ((null var)
1895             ;; We don't want this.
1896             nil)
1897            ((and (listp var) (stringp (car var)))
1898             ;; A list of groups.
1899             var)
1900            ((functionp var)
1901             ;; A function.
1902             (funcall var group))
1903            (t
1904             ;; An alist of regexps/functions/forms.
1905             (while (and var
1906                         (not
1907                          (setq result
1908                                (cond
1909                                 ((stringp (caar var))
1910                                  ;; Regexp.
1911                                  (when (string-match (caar var) group)
1912                                    (cdar var)))
1913                                 ((functionp (car var))
1914                                  ;; Function.
1915                                  (funcall (car var) group))
1916                                 (t
1917                                  (eval (car var)))))))
1918               (setq var (cdr var)))
1919             result)))
1920          name)
1921     (when (or groups gcc-self-val)
1922       (when (stringp groups)
1923         (setq groups (list groups)))
1924       (save-excursion
1925         (save-restriction
1926           (message-narrow-to-headers)
1927           (goto-char (point-max))
1928           (insert "Gcc: ")
1929           (if gcc-self-val
1930               ;; Use the `gcc-self' param value instead.
1931               (progn
1932                 (insert
1933                  (if (stringp gcc-self-val)
1934                      (if (string-match " " gcc-self-val)
1935                          (concat "\"" gcc-self-val "\"")
1936                        gcc-self-val)
1937                    ;; In nndoc groups, we use the parent group name
1938                    ;; instead of the current group.
1939                    (let ((group (or (gnus-group-find-parameter
1940                                      gnus-newsgroup-name 'parent-group)
1941                                     group)))
1942                      (if (string-match " " group)
1943                          (concat "\"" group "\"")
1944                        group))))
1945                 (if (not (eq gcc-self-val 'none))
1946                     (insert "\n")
1947                   (gnus-delete-line)))
1948             ;; Use the list of groups.
1949             (while (setq name (pop groups))
1950               (let ((str (if (string-match ":" name)
1951                              name
1952                            (gnus-group-prefixed-name
1953                             name gnus-message-archive-method))))
1954                 (insert (if (string-match " " str)
1955                             (concat "\"" str "\"")
1956                           str)))
1957               (when groups
1958                 (insert " ")))
1959             (insert "\n")))))))
1960
1961 (defun gnus-mailing-list-followup-to ()
1962   "Look at the headers in the current buffer and return a Mail-Followup-To address."
1963   (let ((x-been-there (gnus-fetch-original-field "x-beenthere"))
1964         (list-post (gnus-fetch-original-field "list-post")))
1965     (when (and list-post
1966                (string-match "mailto:\\([^>]+\\)" list-post))
1967       (setq list-post (match-string 1 list-post)))
1968     (or list-post
1969         x-been-there)))
1970
1971 ;;; Posting styles.
1972
1973 (defun gnus-configure-posting-styles (&optional group-name)
1974   "Configure posting styles according to `gnus-posting-styles'."
1975   (unless gnus-inhibit-posting-styles
1976     (let ((group (or group-name gnus-newsgroup-name ""))
1977           (styles gnus-posting-styles)
1978           style match attribute results
1979           name address)
1980       ;; If the group has a posting-style parameter, add it at the end with a
1981       ;; regexp matching everything, to be sure it takes precedence over all
1982       ;; the others.
1983       (when gnus-newsgroup-name
1984         (let ((tmp-style (gnus-group-find-parameter group 'posting-style t)))
1985           (when tmp-style
1986             (setq styles (append styles (list (cons ".*" tmp-style)))))))
1987       ;; Go through all styles and look for matches.
1988       (dolist (style styles)
1989         (setq match (pop style))
1990         (goto-char (point-min))
1991         (when (cond
1992                ((stringp match)
1993                 ;; Regexp string match on the group name.
1994                 (string-match match group))
1995                ((eq match 'header)
1996                 ;; Obsolete format of header match.
1997                 (and (gnus-buffer-live-p gnus-article-copy)
1998                      (with-current-buffer gnus-article-copy
1999                        (save-restriction
2000                          (nnheader-narrow-to-headers)
2001                          (let ((header (message-fetch-field (pop style))))
2002                            (and header
2003                                 (string-match (pop style) header)))))))
2004                ((or (symbolp match)
2005                     (functionp match))
2006                 (cond
2007                  ((functionp match)
2008                   ;; Function to be called.
2009                   (funcall match))
2010                  ((boundp match)
2011                   ;; Variable to be checked.
2012                   (symbol-value match))))
2013                ((listp match)
2014                 (cond
2015                  ((eq (car match) 'header)
2016                   ;; New format of header match.
2017                   (and (gnus-buffer-live-p gnus-article-copy)
2018                        (with-current-buffer gnus-article-copy
2019                          (save-restriction
2020                            (nnheader-narrow-to-headers)
2021                            (let ((header (message-fetch-field (nth 1 match))))
2022                              (and header
2023                                   (string-match (nth 2 match) header)))))))
2024                  (t
2025                   ;; This is a form to be evaled.
2026                   (eval match)))))
2027           ;; We have a match, so we set the variables.
2028           (setq style (gnus-configure-posting-style style nil))
2029           (dolist (attribute style)
2030             (setq results (delq (assoc (car attribute) results) results))
2031             (push attribute results))))
2032       ;; Now we have all the styles, so we insert them.
2033       (setq name (assq 'name results)
2034             address (assq 'address results))
2035       (setq results (delq name (delq address results)))
2036       (gnus-make-local-hook 'message-setup-hook)
2037       (setq results (sort results (lambda (x y)
2038                                     (string-lessp (car x) (car y)))))
2039       (dolist (result results)
2040         (add-hook 'message-setup-hook
2041                   (cond
2042                    ((eq 'eval (car result))
2043                     'ignore)
2044                    ((eq 'body (car result))
2045                     `(lambda ()
2046                        (save-excursion
2047                          (message-goto-body)
2048                          (insert ,(cdr result)))))
2049                    ((eq 'signature (car result))
2050                     (set (make-local-variable 'message-signature) nil)
2051                     (set (make-local-variable 'message-signature-file) nil)
2052                     (if (not (cdr result))
2053                         'ignore
2054                       `(lambda ()
2055                          (save-excursion
2056                            (let ((message-signature ,(cdr result)))
2057                              (when message-signature
2058                                (message-insert-signature)))))))
2059                    (t
2060                     (let ((header
2061                            (if (symbolp (car result))
2062                                (capitalize (symbol-name (car result)))
2063                              (car result))))
2064                       `(lambda ()
2065                          (save-excursion
2066                            (message-remove-header ,header)
2067                            (let ((value ,(cdr result)))
2068                              (when value
2069                                (message-goto-eoh)
2070                                (insert ,header ": " value)
2071                                (unless (bolp)
2072                                  (insert "\n")))))))))
2073                   nil 'local))
2074       (when (or name address)
2075         (add-hook 'message-setup-hook
2076                   `(lambda ()
2077                      (set (make-local-variable 'user-mail-address)
2078                           ,(or (cdr address) user-mail-address))
2079                      (let ((user-full-name ,(or (cdr name) (user-full-name)))
2080                            (user-mail-address
2081                             ,(or (cdr address) user-mail-address)))
2082                        (save-excursion
2083                          (message-remove-header "From")
2084                          (message-goto-eoh)
2085                          (insert "From: " (message-make-from) "\n"))))
2086                   nil 'local)))))
2087
2088 ;; splitted from gnus-configure-posting-styles to allow recursive traversal.
2089 (defun gnus-configure-posting-style (style stack)
2090   "Parse one posting style STYLE and returns the value as an alist."
2091   (let (results element variable filep value v)
2092     (dolist (attribute style)
2093       (setq element (pop attribute)
2094             variable nil
2095             filep nil)
2096       (setq value
2097             (cond
2098              ((eq (car attribute) ':file)
2099               (setq filep t)
2100               (cadr attribute))
2101              ((eq (car attribute) :value)
2102               (cadr attribute))
2103              (t
2104               (car attribute))))
2105       ;; We get the value.
2106       (setq v
2107             (cond
2108              ((stringp value)
2109               value)
2110              ((or (symbolp value)
2111                   (functionp value))
2112               (cond ((functionp value)
2113                      (funcall value))
2114                     ((boundp value)
2115                      (symbol-value value))))
2116              ((listp value)
2117               (eval value))))
2118       ;; Translate obsolescent value.
2119       (cond
2120        ((eq element 'signature-file)
2121         (setq element 'signature
2122               filep t))
2123        ((eq element 'x-face-file)
2124         (setq element 'x-face
2125               filep t)))
2126       ;; Get the contents of file elems.
2127       (when (and filep v)
2128         (setq v (with-temp-buffer
2129                   (insert-file-contents v)
2130                   (buffer-substring (point-min)
2131                                     (progn
2132                                       (goto-char (point-max))
2133                                       (if (zerop (skip-chars-backward "\n"))
2134                                           (point)
2135                                         (1+ (point))))))))
2136       (if (eq element 'import)
2137           (progn
2138             (if (member v stack)
2139                 (error "Circular import of \"%s\"" v))
2140             (setq results
2141                   (nconc (nreverse (gnus-configure-posting-style
2142                                     (cdr (assoc v gnus-named-posting-styles))
2143                                     (cons v stack)))
2144                          results)))
2145         (push (cons element v) results)))
2146     (nreverse results)))
2147
2148 (defun gnus-summary-execute-command-with-posting-style (style command)
2149   "Temporarily select a posting-style named STYLE and execute COMMAND."
2150   (interactive
2151    (let ((style (completing-read "Posting style: "
2152                                  gnus-named-posting-styles nil t)))
2153      (list style
2154            (key-binding
2155             (read-key-sequence
2156              (format "Command to execute with %s: " style))))))
2157   (let ((gnus-posting-styles (list (list ".*" (list 'import style)))))
2158     (call-interactively command)))
2159
2160
2161 ;;; @ for MIME Edit mode
2162 ;;;
2163
2164 (defun gnus-maybe-setup-default-charset ()
2165   (let ((charset
2166          (and (boundp 'gnus-summary-buffer)
2167               (buffer-live-p gnus-summary-buffer)
2168               (save-excursion
2169                 (set-buffer gnus-summary-buffer)
2170                 default-mime-charset))))
2171     (if charset
2172         (progn
2173           (make-local-variable 'default-mime-charset)
2174           (setq default-mime-charset charset)
2175           ))))
2176
2177
2178 ;;; @ for MIME view mode
2179 ;;;
2180
2181 (defun gnus-following-method (buf)
2182   (gnus-setup-message 'reply-yank
2183     (set-buffer buf)
2184     (if (message-news-p)
2185         (message-followup)
2186       (message-reply nil 'wide))
2187     (let ((message-reply-buffer buf))
2188       (message-yank-original))
2189     (message-goto-body))
2190   (kill-buffer buf))
2191
2192
2193 ;;; Allow redefinition of functions.
2194
2195 (gnus-ems-redefine)
2196
2197 (provide 'gnus-msg)
2198
2199 ;;; gnus-msg.el ends here