af67acaf9c5a42c18bb517169946ba44bfe9a8c7
[elisp/gnus.git-] / lisp / gnus.el
1 ;;; gnus.el --- a newsreader for GNU Emacs
2
3 ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997,
4 ;; 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5
6 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
7 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;;      Tatsuya Ichikawa <t-ichi@po.shiojiri.ne.jp>
9 ;;      Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
10 ;; Keywords: news, mail
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 (eval '(run-hooks 'gnus-load-hook))
34
35 (eval-when-compile (require 'cl))
36 (eval-when-compile (require 'static))
37
38 (require 'wid-edit)
39 (require 'nnheader)
40
41 (require 'gnus-vers)
42
43 (defgroup gnus nil
44   "The coffee-brewing, all singing, all dancing, kitchen sink newsreader."
45   :group 'news
46   :group 'mail)
47
48 (defgroup gnus-format nil
49   "Dealing with formatting issues."
50   :group 'gnus)
51
52 (defgroup gnus-charset nil
53   "Group character set issues."
54   :link '(custom-manual "(gnus)Charsets")
55   :version "21.1"
56   :group 'gnus)
57
58 (defgroup gnus-cache nil
59   "Cache interface."
60   :link '(custom-manual "(gnus)Article Caching")
61   :group 'gnus)
62
63 (defgroup gnus-registry nil
64   "Article Registry."
65   :group 'gnus)
66
67 (defgroup gnus-start nil
68   "Starting your favorite newsreader."
69   :group 'gnus)
70
71 (defgroup gnus-start-server nil
72   "Server options at startup."
73   :group 'gnus-start)
74
75 ;; These belong to gnus-group.el.
76 (defgroup gnus-group nil
77   "Group buffers."
78   :link '(custom-manual "(gnus)The Group Buffer")
79   :group 'gnus)
80
81 (defgroup gnus-group-foreign nil
82   "Foreign groups."
83   :link '(custom-manual "(gnus)Foreign Groups")
84   :group 'gnus-group)
85
86 (defgroup gnus-group-new nil
87   "Automatic subscription of new groups."
88   :group 'gnus-group)
89
90 (defgroup gnus-group-levels nil
91   "Group levels."
92   :link '(custom-manual "(gnus)Group Levels")
93   :group 'gnus-group)
94
95 (defgroup gnus-group-select nil
96   "Selecting a Group."
97   :link '(custom-manual "(gnus)Selecting a Group")
98   :group 'gnus-group)
99
100 (defgroup gnus-group-listing nil
101   "Showing slices of the group list."
102   :link '(custom-manual "(gnus)Listing Groups")
103   :group 'gnus-group)
104
105 (defgroup gnus-group-visual nil
106   "Sorting the group buffer."
107   :link '(custom-manual "(gnus)Group Buffer Format")
108   :group 'gnus-group
109   :group 'gnus-visual)
110
111 (defgroup gnus-group-various nil
112   "Various group options."
113   :link '(custom-manual "(gnus)Scanning New Messages")
114   :group 'gnus-group)
115
116 ;; These belong to gnus-sum.el.
117 (defgroup gnus-summary nil
118   "Summary buffers."
119   :link '(custom-manual "(gnus)The Summary Buffer")
120   :group 'gnus)
121
122 (defgroup gnus-summary-exit nil
123   "Leaving summary buffers."
124   :link '(custom-manual "(gnus)Exiting the Summary Buffer")
125   :group 'gnus-summary)
126
127 (defgroup gnus-summary-marks nil
128   "Marks used in summary buffers."
129   :link '(custom-manual "(gnus)Marking Articles")
130   :group 'gnus-summary)
131
132 (defgroup gnus-thread nil
133   "Ordering articles according to replies."
134   :link '(custom-manual "(gnus)Threading")
135   :group 'gnus-summary)
136
137 (defgroup gnus-summary-format nil
138   "Formatting of the summary buffer."
139   :link '(custom-manual "(gnus)Summary Buffer Format")
140   :group 'gnus-summary)
141
142 (defgroup gnus-summary-choose nil
143   "Choosing Articles."
144   :link '(custom-manual "(gnus)Choosing Articles")
145   :group 'gnus-summary)
146
147 (defgroup gnus-summary-maneuvering nil
148   "Summary movement commands."
149   :link '(custom-manual "(gnus)Summary Maneuvering")
150   :group 'gnus-summary)
151
152 (defgroup gnus-picon nil
153   "Show pictures of people, domains, and newsgroups."
154   :group 'gnus-visual)
155
156 (defgroup gnus-summary-mail nil
157   "Mail group commands."
158   :link '(custom-manual "(gnus)Mail Group Commands")
159   :group 'gnus-summary)
160
161 (defgroup gnus-summary-sort nil
162   "Sorting the summary buffer."
163   :link '(custom-manual "(gnus)Sorting")
164   :group 'gnus-summary)
165
166 (defgroup gnus-summary-visual nil
167   "Highlighting and menus in the summary buffer."
168   :link '(custom-manual "(gnus)Summary Highlighting")
169   :group 'gnus-visual
170   :group 'gnus-summary)
171
172 (defgroup gnus-summary-various nil
173   "Various summary buffer options."
174   :link '(custom-manual "(gnus)Various Summary Stuff")
175   :group 'gnus-summary)
176
177 (defgroup gnus-summary-pick nil
178   "Pick mode in the summary buffer."
179   :link '(custom-manual "(gnus)Pick and Read")
180   :prefix "gnus-pick-"
181   :group 'gnus-summary)
182
183 (defgroup gnus-summary-tree nil
184   "Tree display of threads in the summary buffer."
185   :link '(custom-manual "(gnus)Tree Display")
186   :prefix "gnus-tree-"
187   :group 'gnus-summary)
188
189 ;; Belongs to gnus-uu.el
190 (defgroup gnus-extract-view nil
191   "Viewing extracted files."
192   :link '(custom-manual "(gnus)Viewing Files")
193   :group 'gnus-extract)
194
195 ;; Belongs to gnus-score.el
196 (defgroup gnus-score nil
197   "Score and kill file handling."
198   :group 'gnus)
199
200 (defgroup gnus-score-kill nil
201   "Kill files."
202   :group 'gnus-score)
203
204 (defgroup gnus-score-adapt nil
205   "Adaptive score files."
206   :group 'gnus-score)
207
208 (defgroup gnus-score-default nil
209   "Default values for score files."
210   :group 'gnus-score)
211
212 (defgroup gnus-score-expire nil
213   "Expiring score rules."
214   :group 'gnus-score)
215
216 (defgroup gnus-score-decay nil
217   "Decaying score rules."
218   :group 'gnus-score)
219
220 (defgroup gnus-score-files nil
221   "Score and kill file names."
222   :group 'gnus-score
223   :group 'gnus-files)
224
225 (defgroup gnus-score-various nil
226   "Various scoring and killing options."
227   :group 'gnus-score)
228
229 ;; Other
230 (defgroup gnus-visual nil
231   "Options controlling the visual fluff."
232   :group 'gnus
233   :group 'faces)
234
235 (defgroup gnus-agent nil
236   "Offline support for Gnus."
237   :group 'gnus)
238
239 (defgroup gnus-files nil
240   "Files used by Gnus."
241   :group 'gnus)
242
243 (defgroup gnus-dribble-file nil
244   "Auto save file."
245   :link '(custom-manual "(gnus)Auto Save")
246   :group 'gnus-files)
247
248 (defgroup gnus-newsrc nil
249   "Storing Gnus state."
250   :group 'gnus-files)
251
252 (defgroup gnus-server nil
253   "Options related to newsservers and other servers used by Gnus."
254   :group 'gnus)
255
256 (defgroup gnus-server-visual nil
257   "Highlighting and menus in the server buffer."
258   :group 'gnus-visual
259   :group 'gnus-server)
260
261 (defgroup gnus-message '((message custom-group))
262   "Composing replies and followups in Gnus."
263   :group 'gnus)
264
265 (defgroup gnus-meta nil
266   "Meta variables controlling major portions of Gnus.
267 In general, modifying these variables does not take affect until Gnus
268 is restarted, and sometimes reloaded."
269   :group 'gnus)
270
271 (defgroup gnus-various nil
272   "Other Gnus options."
273   :link '(custom-manual "(gnus)Various Various")
274   :group 'gnus)
275
276 (defgroup gnus-mime nil
277   "Variables for controlling the Gnus MIME interface."
278   :group 'gnus)
279
280 (defgroup gnus-exit nil
281   "Exiting gnus."
282   :link '(custom-manual "(gnus)Exiting Gnus")
283   :group 'gnus)
284
285 (defgroup gnus-fun nil
286   "Frivolous Gnus extensions."
287   :link '(custom-manual "(gnus)Exiting Gnus")
288   :group 'gnus)
289
290 (defcustom gnus-inhibit-startup-message nil
291   "If non-nil, the startup message will not be displayed.
292 This variable is used before `.gnus.el' is loaded, so it should
293 be set in `.emacs' instead."
294   :group 'gnus-start
295   :type 'boolean)
296
297 (defcustom gnus-play-startup-jingle nil
298   "If non-nil, play the Gnus jingle at startup."
299   :group 'gnus-start
300   :type 'boolean)
301
302 (unless (fboundp 'gnus-group-remove-excess-properties)
303   (defalias 'gnus-group-remove-excess-properties 'ignore))
304
305 (unless (fboundp 'gnus-set-text-properties)
306   (defalias 'gnus-set-text-properties 'set-text-properties))
307
308 (unless (featurep 'gnus-xmas)
309   (defalias 'gnus-make-overlay 'make-overlay)
310   (defalias 'gnus-delete-overlay 'delete-overlay)
311   (defalias 'gnus-overlay-put 'overlay-put)
312   (defalias 'gnus-move-overlay 'move-overlay)
313   (defalias 'gnus-overlay-buffer 'overlay-buffer)
314   (defalias 'gnus-overlay-start 'overlay-start)
315   (defalias 'gnus-overlay-end 'overlay-end)
316   (defalias 'gnus-extent-detached-p 'ignore)
317   (defalias 'gnus-extent-start-open 'ignore)
318   (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window)
319   (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names)
320   (defalias 'gnus-character-to-event 'identity)
321   (defalias 'gnus-add-text-properties 'add-text-properties)
322   (defalias 'gnus-put-text-property 'put-text-property)
323   (defvar gnus-mode-line-image-cache t)
324   (if (fboundp 'find-image)
325       (defun gnus-mode-line-buffer-identification (line)
326         (let ((str (car-safe line)))
327           (if (and (stringp str)
328                    (string-match "^Gnus:" str))
329               (progn (add-text-properties
330                       0 5
331                       (list 'display
332                             (if (eq t gnus-mode-line-image-cache)
333                                 (setq gnus-mode-line-image-cache
334                                       (find-image
335                                        '((:type xpm :file "gnus-pointer.xpm"
336                                                 :ascent center)
337                                          (:type xbm :file "gnus-pointer.xbm"
338                                                 :ascent center))))
339                               gnus-mode-line-image-cache)
340                             'help-echo "This is Gnus")
341                       str)
342                      (list str))
343             line)))
344     (defalias 'gnus-mode-line-buffer-identification 'identity))
345   (defalias 'gnus-characterp 'numberp)
346   (defalias 'gnus-deactivate-mark 'deactivate-mark)
347   (defalias 'gnus-window-edges 'window-edges)
348   (defalias 'gnus-key-press-event-p 'numberp)
349   ;;(defalias 'gnus-decode-rfc1522 'ignore)
350   )
351
352 ;; We define these group faces here to avoid the display
353 ;; update forced when creating new faces.
354
355 (defface gnus-group-news-1-face
356   '((((class color)
357       (background dark))
358      (:foreground "PaleTurquoise" :bold t))
359     (((class color)
360       (background light))
361      (:foreground "ForestGreen" :bold t))
362     (t
363      ()))
364   "Level 1 newsgroup face.")
365
366 (defface gnus-group-news-1-empty-face
367   '((((class color)
368       (background dark))
369      (:foreground "PaleTurquoise"))
370     (((class color)
371       (background light))
372      (:foreground "ForestGreen"))
373     (t
374      ()))
375   "Level 1 empty newsgroup face.")
376
377 (defface gnus-group-news-2-face
378   '((((class color)
379       (background dark))
380      (:foreground "turquoise" :bold t))
381     (((class color)
382       (background light))
383      (:foreground "CadetBlue4" :bold t))
384     (t
385      ()))
386   "Level 2 newsgroup face.")
387
388 (defface gnus-group-news-2-empty-face
389   '((((class color)
390       (background dark))
391      (:foreground "turquoise"))
392     (((class color)
393       (background light))
394      (:foreground "CadetBlue4"))
395     (t
396      ()))
397   "Level 2 empty newsgroup face.")
398
399 (defface gnus-group-news-3-face
400   '((((class color)
401       (background dark))
402      (:bold t))
403     (((class color)
404       (background light))
405      (:bold t))
406     (t
407      ()))
408   "Level 3 newsgroup face.")
409
410 (defface gnus-group-news-3-empty-face
411   '((((class color)
412       (background dark))
413      ())
414     (((class color)
415       (background light))
416      ())
417     (t
418      ()))
419   "Level 3 empty newsgroup face.")
420
421 (defface gnus-group-news-4-face
422   '((((class color)
423       (background dark))
424      (:bold t))
425     (((class color)
426       (background light))
427      (:bold t))
428     (t
429      ()))
430   "Level 4 newsgroup face.")
431
432 (defface gnus-group-news-4-empty-face
433   '((((class color)
434       (background dark))
435      ())
436     (((class color)
437       (background light))
438      ())
439     (t
440      ()))
441   "Level 4 empty newsgroup face.")
442
443 (defface gnus-group-news-5-face
444   '((((class color)
445       (background dark))
446      (:bold t))
447     (((class color)
448       (background light))
449      (:bold t))
450     (t
451      ()))
452   "Level 5 newsgroup face.")
453
454 (defface gnus-group-news-5-empty-face
455   '((((class color)
456       (background dark))
457      ())
458     (((class color)
459       (background light))
460      ())
461     (t
462      ()))
463   "Level 5 empty newsgroup face.")
464
465 (defface gnus-group-news-6-face
466   '((((class color)
467       (background dark))
468      (:bold t))
469     (((class color)
470       (background light))
471      (:bold t))
472     (t
473      ()))
474   "Level 6 newsgroup face.")
475
476 (defface gnus-group-news-6-empty-face
477   '((((class color)
478       (background dark))
479      ())
480     (((class color)
481       (background light))
482      ())
483     (t
484      ()))
485   "Level 6 empty newsgroup face.")
486
487 (defface gnus-group-news-low-face
488   '((((class color)
489       (background dark))
490      (:foreground "DarkTurquoise" :bold t))
491     (((class color)
492       (background light))
493      (:foreground "DarkGreen" :bold t))
494     (t
495      ()))
496   "Low level newsgroup face.")
497
498 (defface gnus-group-news-low-empty-face
499   '((((class color)
500       (background dark))
501      (:foreground "DarkTurquoise"))
502     (((class color)
503       (background light))
504      (:foreground "DarkGreen"))
505     (t
506      ()))
507   "Low level empty newsgroup face.")
508
509 (defface gnus-group-mail-1-face
510   '((((class color)
511       (background dark))
512      (:foreground "aquamarine1" :bold t))
513     (((class color)
514       (background light))
515      (:foreground "DeepPink3" :bold t))
516     (t
517      (:bold t)))
518   "Level 1 mailgroup face.")
519
520 (defface gnus-group-mail-1-empty-face
521   '((((class color)
522       (background dark))
523      (:foreground "aquamarine1"))
524     (((class color)
525       (background light))
526      (:foreground "DeepPink3"))
527     (t
528      (:italic t :bold t)))
529   "Level 1 empty mailgroup face.")
530
531 (defface gnus-group-mail-2-face
532   '((((class color)
533       (background dark))
534      (:foreground "aquamarine2" :bold t))
535     (((class color)
536       (background light))
537      (:foreground "HotPink3" :bold t))
538     (t
539      (:bold t)))
540   "Level 2 mailgroup face.")
541
542 (defface gnus-group-mail-2-empty-face
543   '((((class color)
544       (background dark))
545      (:foreground "aquamarine2"))
546     (((class color)
547       (background light))
548      (:foreground "HotPink3"))
549     (t
550      (:bold t)))
551   "Level 2 empty mailgroup face.")
552
553 (defface gnus-group-mail-3-face
554   '((((class color)
555       (background dark))
556      (:foreground "aquamarine3" :bold t))
557     (((class color)
558       (background light))
559      (:foreground "magenta4" :bold t))
560     (t
561      (:bold t)))
562   "Level 3 mailgroup face.")
563
564 (defface gnus-group-mail-3-empty-face
565   '((((class color)
566       (background dark))
567      (:foreground "aquamarine3"))
568     (((class color)
569       (background light))
570      (:foreground "magenta4"))
571     (t
572      ()))
573   "Level 3 empty mailgroup face.")
574
575 (defface gnus-group-mail-low-face
576   '((((class color)
577       (background dark))
578      (:foreground "aquamarine4" :bold t))
579     (((class color)
580       (background light))
581      (:foreground "DeepPink4" :bold t))
582     (t
583      (:bold t)))
584   "Low level mailgroup face.")
585
586 (defface gnus-group-mail-low-empty-face
587   '((((class color)
588       (background dark))
589      (:foreground "aquamarine4"))
590     (((class color)
591       (background light))
592      (:foreground "DeepPink4"))
593     (t
594      (:bold t)))
595   "Low level empty mailgroup face.")
596
597 ;; Summary mode faces.
598
599 (defface gnus-summary-selected-face '((t
600                                        (:underline t)))
601   "Face used for selected articles.")
602
603 (defface gnus-summary-cancelled-face
604   '((((class color))
605      (:foreground "yellow" :background "black")))
606   "Face used for cancelled articles.")
607
608 (defface gnus-summary-high-ticked-face
609   '((((class color)
610       (background dark))
611      (:foreground "pink" :bold t))
612     (((class color)
613       (background light))
614      (:foreground "firebrick" :bold t))
615     (t
616      (:bold t)))
617   "Face used for high interest ticked articles.")
618
619 (defface gnus-summary-low-ticked-face
620   '((((class color)
621       (background dark))
622      (:foreground "pink" :italic t))
623     (((class color)
624       (background light))
625      (:foreground "firebrick" :italic t))
626     (t
627      (:italic t)))
628   "Face used for low interest ticked articles.")
629
630 (defface gnus-summary-normal-ticked-face
631   '((((class color)
632       (background dark))
633      (:foreground "pink"))
634     (((class color)
635       (background light))
636      (:foreground "firebrick"))
637     (t
638      ()))
639   "Face used for normal interest ticked articles.")
640
641 (defface gnus-summary-high-ancient-face
642   '((((class color)
643       (background dark))
644      (:foreground "SkyBlue" :bold t))
645     (((class color)
646       (background light))
647      (:foreground "RoyalBlue" :bold t))
648     (t
649      (:bold t)))
650   "Face used for high interest ancient articles.")
651
652 (defface gnus-summary-low-ancient-face
653   '((((class color)
654       (background dark))
655      (:foreground "SkyBlue" :italic t))
656     (((class color)
657       (background light))
658      (:foreground "RoyalBlue" :italic t))
659     (t
660      (:italic t)))
661   "Face used for low interest ancient articles.")
662
663 (defface gnus-summary-normal-ancient-face
664   '((((class color)
665       (background dark))
666      (:foreground "SkyBlue"))
667     (((class color)
668       (background light))
669      (:foreground "RoyalBlue"))
670     (t
671      ()))
672   "Face used for normal interest ancient articles.")
673
674 (defface gnus-summary-high-undownloaded-face
675    '((((class color)
676        (background light))
677       (:bold t :foreground "cyan4"))
678      (((class color) (background dark))
679       (:bold t :foreground "LightGray"))
680      (t (:inverse-video t :bold t)))
681   "Face used for high interest uncached articles.")
682
683 (defface gnus-summary-low-undownloaded-face
684    '((((class color)
685        (background light))
686       (:italic t :foreground "cyan4" :bold nil))
687      (((class color) (background dark))
688       (:italic t :foreground "LightGray" :bold nil))
689      (t (:inverse-video t :italic t)))
690   "Face used for low interest uncached articles.")
691
692 (defface gnus-summary-normal-undownloaded-face
693    '((((class color)
694        (background light))
695       (:foreground "cyan4" :bold nil))
696      (((class color) (background dark))
697       (:foreground "LightGray" :bold nil))
698      (t (:inverse-video t)))
699   "Face used for normal interest uncached articles.")
700
701 (defface gnus-summary-high-unread-face
702   '((t
703      (:bold t)))
704   "Face used for high interest unread articles.")
705
706 (defface gnus-summary-low-unread-face
707   '((t
708      (:italic t)))
709   "Face used for low interest unread articles.")
710
711 (defface gnus-summary-normal-unread-face
712   '((t
713      ()))
714   "Face used for normal interest unread articles.")
715
716 (defface gnus-summary-incorporated-face
717   '((t
718      ()))
719   "Face used for incorporated articles.")
720
721 (defface gnus-summary-high-read-face
722   '((((class color)
723       (background dark))
724      (:foreground "PaleGreen"
725                   :bold t))
726     (((class color)
727       (background light))
728      (:foreground "DarkGreen"
729                   :bold t))
730     (t
731      (:bold t)))
732   "Face used for high interest read articles.")
733
734 (defface gnus-summary-low-read-face
735   '((((class color)
736       (background dark))
737      (:foreground "PaleGreen"
738                   :italic t))
739     (((class color)
740       (background light))
741      (:foreground "DarkGreen"
742                   :italic t))
743     (t
744      (:italic t)))
745   "Face used for low interest read articles.")
746
747 (defface gnus-summary-normal-read-face
748   '((((class color)
749       (background dark))
750      (:foreground "PaleGreen"))
751     (((class color)
752       (background light))
753      (:foreground "DarkGreen"))
754     (t
755      ()))
756   "Face used for normal interest read articles.")
757
758
759 ;;;
760 ;;; Gnus buffers
761 ;;;
762
763 (defvar gnus-buffers nil)
764
765 (defun gnus-get-buffer-create (name)
766   "Do the same as `get-buffer-create', but store the created buffer."
767   (or (get-buffer name)
768       (car (push (get-buffer-create name) gnus-buffers))))
769
770 (defun gnus-add-buffer ()
771   "Add the current buffer to the list of Gnus buffers."
772   (push (current-buffer) gnus-buffers))
773
774 (defmacro gnus-kill-buffer (buffer)
775   "Kill BUFFER and remove from the list of Gnus buffers."
776   `(let ((buf ,buffer))
777      (when (gnus-buffer-exists-p buf)
778        (setq gnus-buffers (delete (get-buffer buf) gnus-buffers))
779        (kill-buffer buf))))
780
781 (defun gnus-buffers ()
782   "Return a list of live Gnus buffers."
783   (while (and gnus-buffers
784               (not (buffer-name (car gnus-buffers))))
785     (pop gnus-buffers))
786   (let ((buffers gnus-buffers))
787     (while (cdr buffers)
788       (if (buffer-name (cadr buffers))
789           (pop buffers)
790         (setcdr buffers (cddr buffers)))))
791   gnus-buffers)
792
793 ;;; Splash screen.
794
795 (defvar gnus-group-buffer "*Group*")
796
797 (eval-and-compile
798   (autoload 'gnus-play-jingle "gnus-audio"))
799
800 (defface gnus-splash-face
801   '((((class color)
802       (background dark))
803      (:foreground "#888888"))
804     (((class color)
805       (background light))
806      (:foreground "#888888"))
807     (t
808      ()))
809   "Face for the splash screen.")
810
811 (defun gnus-splash ()
812   (save-excursion
813     (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer))
814     (let ((buffer-read-only nil))
815       (erase-buffer)
816       (unless gnus-inhibit-startup-message
817         (gnus-group-startup-message)
818         (sit-for 0)
819         (when gnus-play-startup-jingle
820           (gnus-play-jingle))))))
821
822 (defun gnus-indent-rigidly (start end arg)
823   "Indent rigidly using only spaces and no tabs."
824   (save-excursion
825     (save-restriction
826       (narrow-to-region start end)
827       (let ((tab-width 8))
828         (indent-rigidly start end arg)
829         ;; We translate tabs into spaces -- not everybody uses
830         ;; an 8-character tab.
831         (goto-char (point-min))
832         (while (search-forward "\t" nil t)
833           (replace-match "        " t t))))))
834
835 (defvar gnus-simple-splash nil)
836
837 ;;(format "%02x%02x%02x" 114 66 20) "724214"
838
839 (defvar gnus-logo-color-alist
840   '((flame "#cc3300" "#ff2200")
841     (pine "#c0cc93" "#f8ffb8")
842     (moss "#a1cc93" "#d2ffb8")
843     (irish "#04cc90" "#05ff97")
844     (sky "#049acc" "#05deff")
845     (tin "#6886cc" "#82b6ff")
846     (velvet "#7c68cc" "#8c82ff")
847     (grape "#b264cc" "#cf7df")
848     (labia "#cc64c2" "#fd7dff")
849     (berry "#cc6485" "#ff7db5")
850     (dino "#724214" "#1e3f03")
851     (oort "#cccccc" "#888888")
852     (storm "#666699" "#99ccff")
853     (pdino "#9999cc" "#99ccff")
854     (purp "#9999cc" "#666699")
855     (neutral "#b4b4b4" "#878787")
856     (september "#bf9900" "#ffcc00"))
857   "Color alist used for the Gnus logo.")
858
859 (defcustom gnus-logo-color-style 'oort
860   "*Color styles used for the Gnus logo."
861   :type `(choice ,@(mapcar (lambda (elem) (list 'const (car elem)))
862                            gnus-logo-color-alist))
863   :group 'gnus-xmas)
864
865 (defvar gnus-logo-colors
866   (cdr (assq gnus-logo-color-style gnus-logo-color-alist))
867   "Colors used for the Gnus logo.")
868
869 (defun gnus-group-startup-message (&optional x y)
870   "Insert startup message in current buffer."
871   ;; Insert the message.
872   (erase-buffer)
873   (cond
874    ((and (fboundp 'find-image)
875          (display-graphic-p)
876          (let* ((bg (face-background 'default))
877                 (fg (face-foreground 'gnus-splash-face))
878                 (data-directory (nnheader-find-etc-directory "gnus"))
879                 (image (find-image
880                         `((:type xpm :file "gnus.xpm"
881                                  :color-symbols
882                                  (("thing" . ,(car gnus-logo-colors))
883                                   ("shadow" . ,(cadr gnus-logo-colors))
884                                   ("oort" . "#eeeeee")
885                                   ("background" . ,bg)))
886                           (:type pbm :file "gnus.pbm"
887                                  ;; Account for the pbm's blackground.
888                                  :background ,bg :foreground ,fg)
889                           (:type xbm :file "gnus.xbm"
890                                  ;; Account for the xbm's blackground.
891                                  :background ,bg :foreground ,fg)))))
892            (when image
893              (insert
894               (propertize
895                (concat gnus-product-name " " gnus-version-number
896                        (if (zerop (string-to-number gnus-revision-number))
897                            ""
898                          (concat " (r" gnus-revision-number ")"))
899                        " based on " gnus-original-product-name " v"
900                        gnus-original-version-number)
901                'face `(variable-pitch :background ,bg :foreground ,fg)))
902              (let ((fill-column (window-width)))
903                (center-region (point-min) (point)))
904              (let ((size (image-size image)))
905                (insert-char ?\n (max 1 (round (- (window-height)
906                                                  (or y (cdr size))) 2)))
907                (insert
908                 (propertize " " 'display
909                             `(space :align-to
910                                     ,(max 0 (round (- (window-width)
911                                                       (or x (car size))) 2)))))
912                (insert-image image))
913              (setq gnus-simple-splash nil)
914              t))))
915    (t
916     (insert "
917           _    ___ _             _
918           _ ___ __ ___  __    _ ___
919           __   _     ___    __  ___
920               _           ___     _
921              _  _ __             _
922              ___   __            _
923                    __           _
924                     _      _   _
925                    _      _    _
926                       _  _    _
927                   __  ___
928                  _   _ _     _
929                 _   _
930               _    _
931              _    _
932             _
933           __
934
935 "
936             )
937     (goto-char (point-min))
938     (insert gnus-product-name " " gnus-version-number
939             (if (zerop (string-to-number gnus-revision-number))
940                 ""
941               (concat " (r" gnus-revision-number ")"))
942             " based on " gnus-original-product-name " v"
943             gnus-original-version-number)
944     (insert-char ?\  (prog1
945                          (max 0 (/ (- (window-width) (point)) 2))
946                        (goto-char (point-min))))
947     (forward-line 1)
948     ;; And then hack it.
949     (gnus-indent-rigidly (point) (point-max)
950                          (/ (max (- (window-width) (or x 46)) 0) 2))
951     (goto-char (point-min))
952     (forward-line 1)
953     (let* ((pheight (count-lines (point-min) (point-max)))
954            (wheight (window-height))
955            (rest (- wheight pheight)))
956       (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n)))
957     ;; Fontify some.
958     (put-text-property (point-min) (point-max) 'face 'gnus-splash-face)
959     (setq gnus-simple-splash t)))
960   (goto-char (point-min))
961   (setq mode-line-buffer-identification (concat " " gnus-version))
962   (set-buffer-modified-p t))
963
964 (eval-when (load)
965   (let ((command (format "%s" this-command)))
966     (if (and (string-match "gnus" command)
967              (not (string-match "gnus-other-frame" command)))
968         (gnus-splash)
969       (gnus-get-buffer-create gnus-group-buffer))))
970
971 ;;; Do the rest.
972
973 (require 'gnus-util)
974 (require 'nnheader)
975
976 (defcustom gnus-parameters nil
977   "Alist of group parameters.
978
979 For example:
980    ((\"mail\\\\..*\"  (gnus-show-threads nil)
981                   (gnus-use-scoring nil)
982                   (gnus-summary-line-format
983                         \"%U%R%z%I%(%[%d:%ub%-23,23f%]%) %s\\n\")
984                   (gcc-self . t)
985                   (display . all))
986      (\"mail\\\\.me\" (gnus-use-scoring  t))
987      (\"list\\\\..*\" (total-expire . t)
988                   (broken-reply-to . t)))"
989   :group 'gnus-group-various
990   :type '(repeat (cons regexp
991                        (repeat sexp))))
992
993 (defvar gnus-group-parameters-more nil)
994
995 (defvar gnus-colon-keywords
996   (eval-when-compile
997     (when (boundp 'dgnushack-colon-keywords)
998       (symbol-value 'dgnushack-colon-keywords)))
999   "List of the colon keywords should be bound at run-time.  This variable
1000 defaults to a proper value only if this file is byte-compiled by make.")
1001
1002 (dolist (keyword gnus-colon-keywords)
1003   (set keyword keyword))
1004
1005 (defmacro gnus-define-group-parameter (param &rest rest)
1006   "Define a group parameter PARAM.
1007 REST is a plist of following:
1008 :type               One of `bool', `list' or nil.
1009 :function           The name of the function.
1010 :function-document  The documentation of the function.
1011 :parameter-type     The type for customizing the parameter.
1012 :parameter-document The documentation for the parameter.
1013 :variable           The name of the variable.
1014 :variable-document  The documentation for the variable.
1015 :variable-group     The group for customizing the variable.
1016 :variable-type      The type for customizing the variable.
1017 :variable-default   The default value of the variable."
1018   (let* ((type (plist-get rest :type))
1019          (parameter-type (plist-get rest :parameter-type))
1020          (parameter-document (plist-get rest :parameter-document))
1021          (function (or (plist-get rest :function)
1022                        (intern (format "gnus-parameter-%s" param))))
1023          (function-document (or (plist-get rest :function-document) ""))
1024          (variable (or (plist-get rest :variable)
1025                        (intern (format "gnus-parameter-%s-alist" param))))
1026          (variable-document (or (plist-get rest :variable-document) ""))
1027          (variable-group (plist-get rest :variable-group))
1028          (variable-type (or (plist-get rest :variable-type)
1029                             `(quote (repeat
1030                                      (list (regexp :tag "Group")
1031                                            ,(car (cdr parameter-type)))))))
1032          (variable-default (plist-get rest :variable-default)))
1033     (list
1034      'progn
1035      `(defcustom ,variable ,variable-default
1036         ,variable-document
1037         :group 'gnus-group-parameter
1038         :group ',variable-group
1039         :type ,variable-type)
1040      `(setq gnus-group-parameters-more
1041             (delq (assq ',param gnus-group-parameters-more)
1042                   gnus-group-parameters-more))
1043      `(add-to-list 'gnus-group-parameters-more
1044                    (list ',param
1045                          ,parameter-type
1046                          ,parameter-document))
1047      (if (eq type 'bool)
1048          `(defun ,function (name)
1049             ,function-document
1050             (let ((params (gnus-group-find-parameter name))
1051                   val)
1052               (cond
1053                ((memq ',param params)
1054                 t)
1055                ((setq val (assq ',param params))
1056                 (cdr val))
1057                ((stringp ,variable)
1058                 (string-match ,variable name))
1059                (,variable
1060                 (let ((alist ,variable)
1061                       elem value)
1062                   (while (setq elem (pop alist))
1063                     (when (and name
1064                                (string-match (car elem) name))
1065                       (setq alist nil
1066                             value (cdr elem))))
1067                   (if (consp value) (car value) value))))))
1068        `(defun ,function (name)
1069           ,function-document
1070           (and name
1071                (or (gnus-group-find-parameter name ',param ,(and type t))
1072                    (let ((alist ,variable)
1073                          elem value)
1074                      (while (setq elem (pop alist))
1075                        (when (and name
1076                                   (string-match (car elem) name))
1077                          (setq alist nil
1078                                value (cdr elem))))
1079                      ,(if type
1080                           'value
1081                         '(if (consp value) (car value) value))))))))))
1082
1083 (defcustom gnus-home-directory "~/"
1084   "Directory variable that specifies the \"home\" directory.
1085 All other Gnus file and directory variables are initialized from this variable."
1086   :group 'gnus-files
1087   :type 'directory)
1088
1089 (defcustom gnus-directory (or (getenv "SAVEDIR")
1090                               (nnheader-concat gnus-home-directory "News/"))
1091   "*Directory variable from which all other Gnus file variables are derived.
1092
1093 Note that Gnus is mostly loaded when the `.gnus.el' file is read.
1094 This means that other directory variables that are initialized from
1095 this variable won't be set properly if you set this variable in `.gnus.el'.
1096 Set this variable in `.emacs' instead."
1097   :group 'gnus-files
1098   :type 'directory)
1099
1100 (defcustom gnus-default-directory nil
1101   "*Default directory for all Gnus buffers."
1102   :group 'gnus-files
1103   :type '(choice (const :tag "current" nil)
1104                  directory))
1105
1106 ;; Site dependent variables.  These variables should be defined in
1107 ;; paths.el.
1108
1109 (defvar gnus-default-nntp-server nil
1110   "Specify a default NNTP server.
1111 This variable should be defined in paths.el, and should never be set
1112 by the user.
1113 If you want to change servers, you should use `gnus-select-method'.
1114 See the documentation to that variable.")
1115
1116 ;; Don't touch this variable.
1117 (defvar gnus-nntp-service "nntp"
1118   "NNTP service name (\"nntp\" or 119).
1119 This is an obsolete variable, which is scarcely used.  If you use an
1120 nntp server for your newsgroup and want to change the port number
1121 used to 899, you would say something along these lines:
1122
1123  (setq gnus-select-method '(nntp \"my.nntp.server\" (nntp-port-number 899)))")
1124
1125 (defcustom gnus-nntpserver-file "/etc/nntpserver"
1126   "A file with only the name of the nntp server in it."
1127   :group 'gnus-files
1128   :group 'gnus-server
1129   :type 'file)
1130
1131 ;; This function is used to check both the environment variable
1132 ;; NNTPSERVER and the /etc/nntpserver file to see whether one can find
1133 ;; an nntp server name default.
1134 (defun gnus-getenv-nntpserver ()
1135   (or (getenv "NNTPSERVER")
1136       (and (file-readable-p gnus-nntpserver-file)
1137            (save-excursion
1138              (set-buffer (gnus-get-buffer-create " *gnus nntp*"))
1139              (insert-file-contents gnus-nntpserver-file)
1140              (let ((name (buffer-string)))
1141                (prog1
1142                    (if (string-match "\\'[ \t\n]*$" name)
1143                        nil
1144                      name)
1145                  (kill-buffer (current-buffer))))))))
1146
1147 (defcustom gnus-select-method
1148   (condition-case nil
1149       (nconc
1150        (list 'nntp (or (condition-case nil
1151                            (gnus-getenv-nntpserver)
1152                          (error nil))
1153                        (when (and gnus-default-nntp-server
1154                                   (not (string= gnus-default-nntp-server "")))
1155                          gnus-default-nntp-server)
1156                        "news"))
1157        (if (or (null gnus-nntp-service)
1158                (equal gnus-nntp-service "nntp"))
1159            nil
1160          (list gnus-nntp-service)))
1161     (error nil))
1162   "Default method for selecting a newsgroup.
1163 This variable should be a list, where the first element is how the
1164 news is to be fetched, the second is the address.
1165
1166 For instance, if you want to get your news via \"flab.flab.edu\" using
1167 NNTP, you could say:
1168
1169 \(setq gnus-select-method '(nntp \"flab.flab.edu\"))
1170
1171 If you want to use your local spool, say:
1172
1173 \(setq gnus-select-method (list 'nnspool (system-name)))
1174
1175 If you use this variable, you must set `gnus-nntp-server' to nil.
1176
1177 There is a lot more to know about select methods and virtual servers -
1178 see the manual for details."
1179   :group 'gnus-server
1180   :type 'gnus-select-method)
1181
1182 (defcustom gnus-message-archive-method "archive"
1183   "*Method used for archiving messages you've sent.
1184 This should be a mail method."
1185   :group 'gnus-server
1186   :group 'gnus-message
1187   :type 'gnus-select-method)
1188
1189 (defcustom gnus-message-archive-group nil
1190   "*Name of the group in which to save the messages you've written.
1191 This can either be a string; a list of strings; or an alist
1192 of regexps/functions/forms to be evaluated to return a string (or a list
1193 of strings).  The functions are called with the name of the current
1194 group (or nil) as a parameter.
1195
1196 If you want to save your mail in one group and the news articles you
1197 write in another group, you could say something like:
1198
1199  \(setq gnus-message-archive-group
1200         '((if (message-news-p)
1201               \"misc-news\"
1202             \"misc-mail\")))
1203
1204 Normally the group names returned by this variable should be
1205 unprefixed -- which implicitly means \"store on the archive server\".
1206 However, you may wish to store the message on some other server.  In
1207 that case, just return a fully prefixed name of the group --
1208 \"nnml+private:mail.misc\", for instance."
1209   :group 'gnus-message
1210   :type '(choice (const :tag "none" nil)
1211                  function
1212                  sexp
1213                  string))
1214
1215 (defcustom gnus-secondary-servers nil
1216   "List of NNTP servers that the user can choose between interactively.
1217 To make Gnus query you for a server, you have to give `gnus' a
1218 non-numeric prefix - `C-u M-x gnus', in short."
1219   :group 'gnus-server
1220   :type '(repeat string))
1221
1222 (defcustom gnus-nntp-server nil
1223   "*The name of the host running the NNTP server.
1224 This variable is semi-obsolete.  Use the `gnus-select-method'
1225 variable instead."
1226   :group 'gnus-server
1227   :type '(choice (const :tag "disable" nil)
1228                  string))
1229
1230 (defcustom gnus-secondary-select-methods nil
1231   "A list of secondary methods that will be used for reading news.
1232 This is a list where each element is a complete select method (see
1233 `gnus-select-method').
1234
1235 If, for instance, you want to read your mail with the nnml back end,
1236 you could set this variable:
1237
1238 \(setq gnus-secondary-select-methods '((nnml \"\")))"
1239   :group 'gnus-server
1240   :type '(repeat gnus-select-method))
1241
1242 (defvar gnus-backup-default-subscribed-newsgroups
1243   '("news.announce.newusers" "news.groups.questions" "gnu.emacs.gnus")
1244   "Default default new newsgroups the first time Gnus is run.
1245 Should be set in paths.el, and shouldn't be touched by the user.")
1246
1247 (defcustom gnus-local-domain nil
1248   "Local domain name without a host name.
1249 The DOMAINNAME environment variable is used instead if it is defined.
1250 If the function `system-name' returns the full Internet name, there is
1251 no need to set this variable."
1252   :group 'gnus-message
1253   :type '(choice (const :tag "default" nil)
1254                  string))
1255
1256 (defvar gnus-local-organization nil
1257   "String with a description of what organization (if any) the user belongs to.
1258 Obsolete variable; use `message-user-organization' instead.")
1259
1260 ;; Customization variables
1261
1262 (defcustom gnus-refer-article-method nil
1263   "Preferred method for fetching an article by Message-ID.
1264 If you are reading news from the local spool (with nnspool), fetching
1265 articles by Message-ID is painfully slow.  By setting this method to an
1266 nntp method, you might get acceptable results.
1267
1268 The value of this variable must be a valid select method as discussed
1269 in the documentation of `gnus-select-method'.
1270
1271 It can also be a list of select methods, as well as the special symbol
1272 `current', which means to use the current select method.  If it is a
1273 list, Gnus will try all the methods in the list until it finds a match."
1274   :group 'gnus-server
1275   :type '(choice (const :tag "default" nil)
1276                  (const :tag "Google" (nnweb "refer" (nnweb-type google)))
1277                  gnus-select-method
1278                  (repeat :menu-tag "Try multiple"
1279                          :tag "Multiple"
1280                          :value (current (nnweb "refer" (nnweb-type google)))
1281                          (choice :tag "Method"
1282                                  (const current)
1283                                  (const :tag "Google"
1284                                         (nnweb "refer" (nnweb-type google)))
1285                                  gnus-select-method))))
1286
1287 (defcustom gnus-group-faq-directory
1288   '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/"
1289     "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/"
1290     "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/"
1291     "/ftp@ftp.seas.gwu.edu:/pub/rtfm/"
1292     "/ftp@ftp.pasteur.fr:/pub/FAQ/"
1293     "/ftp@rtfm.mit.edu:/pub/usenet/"
1294     "/ftp@ftp.uni-paderborn.de:/pub/FAQ/"
1295     "/ftp@ftp.sunet.se:/pub/usenet/"
1296     "/ftp@nctuccca.edu.tw:/USENET/FAQ/"
1297     "/ftp@hwarang.postech.ac.kr:/pub/usenet/"
1298     "/ftp@ftp.hk.super.net:/mirror/faqs/")
1299   "*Directory where the group FAQs are stored.
1300 This will most commonly be on a remote machine, and the file will be
1301 fetched by ange-ftp.
1302
1303 This variable can also be a list of directories.  In that case, the
1304 first element in the list will be used by default.  The others can
1305 be used when being prompted for a site.
1306
1307 Note that Gnus uses an aol machine as the default directory.  If this
1308 feels fundamentally unclean, just think of it as a way to finally get
1309 something of value back from them.
1310
1311 If the default site is too slow, try one of these:
1312
1313    North America: mirrors.aol.com                /pub/rtfm/usenet
1314                   ftp.seas.gwu.edu               /pub/rtfm
1315                   rtfm.mit.edu                   /pub/usenet
1316    Europe:        ftp.uni-paderborn.de           /pub/FAQ
1317                   src.doc.ic.ac.uk               /usenet/news-FAQS
1318                   ftp.sunet.se                   /pub/usenet
1319                   ftp.pasteur.fr                 /pub/FAQ
1320    Asia:          nctuccca.edu.tw                /USENET/FAQ
1321                   hwarang.postech.ac.kr          /pub/usenet
1322                   ftp.hk.super.net               /mirror/faqs"
1323   :group 'gnus-group-various
1324   :type '(choice directory
1325                  (repeat directory)))
1326
1327 (defcustom gnus-group-charter-alist
1328   '(("no" . (concat "http://no.news-admin.org/charter/" name ".txt"))
1329     ("de" . (concat "http://purl.net/charta/" name ".html"))
1330     ("dk" . (concat "http://www.usenet.dk/grupper.pl?get=" name))
1331     ("england" . (concat "http://england.news-admin.org/charters/" name))
1332     ("fr" . (concat "http://www.usenet-fr.net/fur/chartes/" name ".html"))
1333     ("europa" . (concat "http://www.europa.usenet.eu.org/chartas/charta-en-" 
1334                         (gnus-replace-in-string name "europa\\." "") ".html"))
1335     ("nl" . (concat "http://www.xs4all.nl/~sister/usenet/charters/" name))
1336     ("aus" . (concat "http://aus.news-admin.org/groupinfo.php/" name))
1337     ("pl" . (concat "http://www.usenet.pl/opisy/" name))
1338     ("ch" . (concat "http://www.use-net.ch/Usenet/charter.html#" name))
1339     ("at" . (concat "http://www.usenet.at/chartas/" name "/charta"))
1340     ("uk" . (concat "http://www.usenet.org.uk/" name ".html"))
1341     ("wales" . (concat "http://www.wales-usenet.org/english/groups/" name ".html"))
1342     ("dfw" . (concat "http://www.cirr.com/dfw/charters/" name ".html"))
1343     ("se" . (concat "http://www.usenet-se.net/Reglementen/" 
1344                     (gnus-replace-in-string name "\\." "_") ".html"))
1345     ("milw" . (concat "http://usenet.mil.wi.us/" 
1346                       (gnus-replace-in-string name "milw\\." "") "-charter"))
1347     ("ca" . (concat "http://www.sbay.org/ca/charter-" name ".html"))
1348     ("netins" . (concat "http://www.netins.net/usenet/charter/" 
1349                         (gnus-replace-in-string name "\\." "-") "-charter.html")))
1350   "*An alist of (HIERARCHY . FORM) pairs used to construct the URL of a charter.
1351 When FORM is evaluated `name' is bound to the name of the group."
1352   :group 'gnus-group-various
1353   :type '(repeat (cons (string :tag "Hierarchy") (sexp :tag "Form"))))
1354
1355 (defcustom gnus-group-fetch-control-use-browse-url nil
1356   "*Non-nil means that control messages are displayed using `browse-url'.
1357 Otherwise they are fetched with ange-ftp and displayed in an ephemeral
1358 group."
1359   :group 'gnus-group-various
1360   :type 'boolean)
1361
1362 (defcustom gnus-use-cross-reference t
1363   "*Non-nil means that cross referenced articles will be marked as read.
1364 If nil, ignore cross references.  If t, mark articles as read in
1365 subscribed newsgroups.  If neither t nor nil, mark as read in all
1366 newsgroups."
1367   :group 'gnus-server
1368   :type '(choice (const :tag "off" nil)
1369                  (const :tag "subscribed" t)
1370                  (sexp :format "all"
1371                        :value always)))
1372
1373 (defcustom gnus-process-mark ?#
1374   "*Process mark."
1375   :group 'gnus-group-visual
1376   :group 'gnus-summary-marks
1377   :type 'character)
1378
1379 (defcustom gnus-large-newsgroup 200
1380   "*The number of articles which indicates a large newsgroup.
1381 If the number of articles in a newsgroup is greater than this value,
1382 confirmation is required for selecting the newsgroup.
1383 If it is nil, no confirmation is required."
1384   :group 'gnus-group-select
1385   :type '(choice (const :tag "No limit" nil)
1386                  integer))
1387
1388 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix)))
1389   "*Non-nil means that the default name of a file to save articles in is the group name.
1390 If it's nil, the directory form of the group name is used instead.
1391
1392 If this variable is a list, and the list contains the element
1393 `not-score', long file names will not be used for score files; if it
1394 contains the element `not-save', long file names will not be used for
1395 saving; and if it contains the element `not-kill', long file names
1396 will not be used for kill files.
1397
1398 Note that the default for this variable varies according to what system
1399 type you're using.  On `usg-unix-v' and `xenix' this variable defaults
1400 to nil while on all other systems it defaults to t."
1401   :group 'gnus-start
1402   :type 'boolean)
1403
1404 (defcustom gnus-kill-files-directory gnus-directory
1405   "*Name of the directory where kill files will be stored (default \"~/News\")."
1406   :group 'gnus-score-files
1407   :group 'gnus-score-kill
1408   :type 'directory)
1409
1410 (defcustom gnus-save-score nil
1411   "*If non-nil, save group scoring info."
1412   :group 'gnus-score-various
1413   :group 'gnus-start
1414   :type 'boolean)
1415
1416 (defcustom gnus-use-undo t
1417   "*If non-nil, allow undoing in Gnus group mode buffers."
1418   :group 'gnus-meta
1419   :type 'boolean)
1420
1421 (defcustom gnus-use-adaptive-scoring nil
1422   "*If non-nil, use some adaptive scoring scheme.
1423 If a list, then the values `word' and `line' are meaningful.  The
1424 former will perform adaption on individual words in the subject
1425 header while `line' will perform adaption on several headers."
1426   :group 'gnus-meta
1427   :group 'gnus-score-adapt
1428   :type '(set (const word) (const line)))
1429
1430 (defcustom gnus-use-cache 'passive
1431   "*If nil, Gnus will ignore the article cache.
1432 If `passive', it will allow entering (and reading) articles
1433 explicitly entered into the cache.  If anything else, use the
1434 cache to the full extent of the law."
1435   :group 'gnus-meta
1436   :group 'gnus-cache
1437   :type '(choice (const :tag "off" nil)
1438                  (const :tag "passive" passive)
1439                  (const :tag "active" t)))
1440
1441 (defcustom gnus-use-trees nil
1442   "*If non-nil, display a thread tree buffer."
1443   :group 'gnus-meta
1444   :type 'boolean)
1445
1446 (defcustom gnus-use-grouplens nil
1447   "*If non-nil, use GroupLens ratings."
1448   :group 'gnus-meta
1449   :type 'boolean)
1450
1451 (defcustom gnus-keep-backlog 20
1452   "*If non-nil, Gnus will keep read articles for later re-retrieval.
1453 If it is a number N, then Gnus will only keep the last N articles
1454 read.  If it is neither nil nor a number, Gnus will keep all read
1455 articles.  This is not a good idea."
1456   :group 'gnus-meta
1457   :type '(choice (const :tag "off" nil)
1458                  integer
1459                  (sexp :format "all"
1460                        :value t)))
1461
1462 (defcustom gnus-use-nocem nil
1463   "*If non-nil, Gnus will read NoCeM cancel messages."
1464   :group 'gnus-meta
1465   :type 'boolean)
1466
1467 (defcustom gnus-suppress-duplicates nil
1468   "*If non-nil, Gnus will mark duplicate copies of the same article as read."
1469   :group 'gnus-meta
1470   :type 'boolean)
1471
1472 (defcustom gnus-use-scoring t
1473   "*If non-nil, enable scoring."
1474   :group 'gnus-meta
1475   :type 'boolean)
1476
1477 (defcustom gnus-summary-prepare-exit-hook
1478   '(gnus-summary-expire-articles)
1479   "*A hook called when preparing to exit from the summary buffer.
1480 It calls `gnus-summary-expire-articles' by default."
1481   :group 'gnus-summary-exit
1482   :type 'hook)
1483
1484 (defcustom gnus-novice-user t
1485   "*Non-nil means that you are a usenet novice.
1486 If non-nil, verbose messages may be displayed and confirmations may be
1487 required."
1488   :group 'gnus-meta
1489   :type 'boolean)
1490
1491 (defcustom gnus-expert-user nil
1492   "*Non-nil means that you will never be asked for confirmation about anything.
1493 That doesn't mean *anything* anything; particularly destructive
1494 commands will still require prompting."
1495   :group 'gnus-meta
1496   :type 'boolean)
1497
1498 (defcustom gnus-interactive-catchup t
1499   "*If non-nil, require your confirmation when catching up a group."
1500   :group 'gnus-group-select
1501   :type 'boolean)
1502
1503 (defcustom gnus-interactive-exit t
1504   "*If non-nil, require your confirmation when exiting Gnus."
1505   :group 'gnus-exit
1506   :type 'boolean)
1507
1508 (defcustom gnus-extract-address-components 'gnus-extract-address-components
1509   "Function for extracting address components from a From header.
1510 Three pre-defined functions exist: `gnus-extract-address-components',
1511 which is the default, quite fast, and too simplistic solution,
1512 `mail-extract-address-components', which works much better, but is
1513 slower, and `std11-extract-address-components'."
1514   :group 'gnus-summary-format
1515   :type '(radio (function-item gnus-extract-address-components)
1516                 (function-item mail-extract-address-components)
1517                 (function-item std11-extract-address-components)
1518                 (function :tag "Other")))
1519
1520 (defcustom gnus-carpal nil
1521   "*If non-nil, display clickable icons."
1522   :group 'gnus-meta
1523   :type 'boolean)
1524
1525 (defcustom gnus-shell-command-separator ";"
1526   "String used to separate shell commands."
1527   :group 'gnus-files
1528   :type 'string)
1529
1530 (defcustom gnus-valid-select-methods
1531   '(("nntp" post address prompt-address physical-address)
1532     ("nnspool" post address)
1533     ("nnvirtual" post-mail virtual prompt-address)
1534     ("nnmbox" mail respool address)
1535     ("nnml" post-mail respool address)
1536     ("nnmh" mail respool address)
1537     ("nndir" post-mail prompt-address physical-address)
1538     ("nneething" none address prompt-address physical-address)
1539     ("nndoc" none address prompt-address)
1540     ("nnbabyl" mail address respool)
1541     ("nnkiboze" post virtual)
1542     ("nnsoup" post-mail address)
1543     ("nndraft" post-mail)
1544     ("nnfolder" mail respool address)
1545     ("nngateway" post-mail address prompt-address physical-address)
1546     ("nnweb" none)
1547     ("nngoogle" post)
1548     ("nnslashdot" post)
1549     ("nnultimate" none)
1550     ("nnrss" none)
1551     ("nnwfm" none)
1552     ("nnwarchive" none)
1553     ("nnlistserv" none)
1554     ("nnagent" post-mail)
1555     ("nnimap" post-mail address prompt-address physical-address)
1556     ("nnmaildir" mail respool address)
1557     ("nnnil" none))
1558   "*An alist of valid select methods.
1559 The first element of each list lists should be a string with the name
1560 of the select method.  The other elements may be the category of
1561 this method (i. e., `post', `mail', `none' or whatever) or other
1562 properties that this method has (like being respoolable).
1563 If you implement a new select method, all you should have to change is
1564 this variable.  I think."
1565   :group 'gnus-server
1566   :type '(repeat (group (string :tag "Name")
1567                         (radio-button-choice (const :format "%v " post)
1568                                              (const :format "%v " mail)
1569                                              (const :format "%v " none)
1570                                              (const post-mail))
1571                         (checklist :inline t
1572                                    (const :format "%v " address)
1573                                    (const :format "%v " prompt-address)
1574                                    (const :format "%v " physical-address)
1575                                    (const :format "%v " virtual)
1576                                    (const respool)))))
1577
1578 (defun gnus-redefine-select-method-widget ()
1579   "Recomputes the select-method widget based on the value of
1580 `gnus-valid-select-methods'."
1581   (define-widget 'gnus-select-method 'list
1582     "Widget for entering a select method."
1583     :value '(nntp "")
1584     :tag "Select Method"
1585     :args `((choice :tag "Method"
1586                     ,@(mapcar (lambda (entry)
1587                                 (list 'const :format "%v\n"
1588                                       (intern (car entry))))
1589                               gnus-valid-select-methods)
1590                     (symbol :tag "other"))
1591             (string :tag "Address")
1592             (repeat :tag "Options"
1593                     :inline t
1594                     (list :format "%v"
1595                           variable
1596                           (sexp :tag "Value"))))))
1597
1598 (gnus-redefine-select-method-widget)
1599
1600 (defcustom gnus-updated-mode-lines '(group article summary tree)
1601   "List of buffers that should update their mode lines.
1602 The list may contain the symbols `group', `article', `tree' and
1603 `summary'.  If the corresponding symbol is present, Gnus will keep
1604 that mode line updated with information that may be pertinent.
1605 If this variable is nil, screen refresh may be quicker."
1606   :group 'gnus-various
1607   :type '(set (const group)
1608               (const article)
1609               (const summary)
1610               (const tree)))
1611
1612 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>.
1613 (defcustom gnus-mode-non-string-length nil
1614   "*Max length of mode-line non-string contents.
1615 If this is nil, Gnus will take space as is needed, leaving the rest
1616 of the modeline intact.  Note that the default of nil is unlikely
1617 to be desirable; see the manual for further details."
1618   :group 'gnus-various
1619   :type '(choice (const nil)
1620                  integer))
1621
1622 ;; There should be special validation for this.
1623 (define-widget 'gnus-email-address 'string
1624   "An email address.")
1625
1626 (gnus-define-group-parameter
1627  to-address
1628  :function-document
1629  "Return GROUP's to-address."
1630  :variable-document
1631  "*Alist of group regexps and correspondent to-addresses."
1632  :parameter-type '(gnus-email-address :tag "To Address")
1633  :parameter-document "\
1634 This will be used when doing followups and posts.
1635
1636 This is primarily useful in mail groups that represent closed
1637 mailing lists--mailing lists where it's expected that everybody that
1638 writes to the mailing list is subscribed to it.  Since using this
1639 parameter ensures that the mail only goes to the mailing list itself,
1640 it means that members won't receive two copies of your followups.
1641
1642 Using `to-address' will actually work whether the group is foreign or
1643 not.  Let's say there's a group on the server that is called
1644 `fa.4ad-l'.  This is a real newsgroup, but the server has gotten the
1645 articles from a mail-to-news gateway.  Posting directly to this group
1646 is therefore impossible--you have to send mail to the mailing list
1647 address instead.
1648
1649 The gnus-group-split mail splitting mechanism will behave as if this
1650 address was listed in gnus-group-split Addresses (see below).")
1651
1652 (gnus-define-group-parameter
1653  to-list
1654  :function-document
1655  "Return GROUP's to-list."
1656  :variable-document
1657  "*Alist of group regexps and correspondent to-lists."
1658  :parameter-type '(gnus-email-address :tag "To List")
1659  :parameter-document "\
1660 This address will be used when doing a `a' in the group.
1661
1662 It is totally ignored when doing a followup--except that if it is
1663 present in a news group, you'll get mail group semantics when doing
1664 `f'.
1665
1666 The gnus-group-split mail splitting mechanism will behave as if this
1667 address was listed in gnus-group-split Addresses (see below).")
1668
1669 (gnus-define-group-parameter
1670  subscribed
1671  :type bool
1672  :function-document
1673  "Return GROUP's subscription status."
1674  :variable-document
1675  "*Groups which are automatically considered subscribed."
1676  :parameter-type '(const :tag "Subscribed" t)
1677  :parameter-document "\
1678 Gnus assumed that you are subscribed to the To/List address.
1679
1680 When constructing a list of subscribed groups using
1681 `gnus-find-subscribed-addresses', Gnus includes the To address given
1682 above, or the list address (if the To address has not been set).")
1683
1684 (gnus-define-group-parameter
1685  auto-expire
1686  :type bool
1687  :function gnus-group-auto-expirable-p
1688  :function-document
1689  "Check whether GROUP is auto-expirable or not."
1690  :variable gnus-auto-expirable-newsgroups
1691  :variable-default nil
1692  :variable-document
1693  "*Groups in which to automatically mark read articles as expirable.
1694 If non-nil, this should be a regexp that should match all groups in
1695 which to perform auto-expiry.  This only makes sense for mail groups."
1696  :variable-group nnmail-expire
1697  :variable-type '(choice (const nil)
1698                          regexp)
1699  :parameter-type '(const :tag "Automatic Expire" t)
1700  :parameter-document
1701  "All articles that are read will be marked as expirable.")
1702
1703 (gnus-define-group-parameter
1704  total-expire
1705  :type bool
1706  :function gnus-group-total-expirable-p
1707  :function-document
1708  "Check whether GROUP is total-expirable or not."
1709  :variable gnus-total-expirable-newsgroups
1710  :variable-default nil
1711  :variable-document
1712  "*Groups in which to perform expiry of all read articles.
1713 Use with extreme caution.  All groups that match this regexp will be
1714 expiring - which means that all read articles will be deleted after
1715 \(say) one week.         (This only goes for mail groups and the like, of
1716 course.)"
1717  :variable-group nnmail-expire
1718  :variable-type '(choice (const nil)
1719                          regexp)
1720  :parameter-type '(const :tag "Total Expire" t)
1721  :parameter-document
1722  "All read articles will be put through the expiry process
1723
1724 This happens even if they are not marked as expirable.
1725 Use with caution.")
1726
1727 (gnus-define-group-parameter
1728  charset
1729  :function-document
1730  "Return the default charset of GROUP."
1731  :variable gnus-group-charset-alist
1732  :variable-default
1733  '(("\\(^\\|:\\)hk\\>\\|\\(^\\|:\\)tw\\>\\|\\<big5\\>" cn-big5)
1734    ("\\(^\\|:\\)cn\\>\\|\\<chinese\\>" cn-gb-2312)
1735    ("\\(^\\|:\\)fj\\>\\|\\(^\\|:\\)japan\\>" iso-2022-jp-2)
1736    ("\\(^\\|:\\)tnn\\>\\|\\(^\\|:\\)pin\\>\\|\\(^\\|:\\)sci.lang.japan" iso-2022-7bit)
1737    ("\\(^\\|:\\)relcom\\>" koi8-r)
1738    ("\\(^\\|:\\)fido7\\>" koi8-r)
1739    ("\\(^\\|:\\)\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2)
1740    ("\\(^\\|:\\)israel\\>" iso-8859-1)
1741    ("\\(^\\|:\\)han\\>" euc-kr)
1742    ("\\(^\\|:\\)alt.chinese.text.big5\\>" chinese-big5)
1743    ("\\(^\\|:\\)soc.culture.vietnamese\\>" vietnamese-viqr)
1744    ("\\(^\\|:\\)\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1))
1745  :variable-document
1746  "Alist of regexps (to match group names) and default charsets to be used when reading."
1747  :variable-group gnus-charset
1748  :variable-type '(repeat (list (regexp :tag "Group")
1749                                (symbol :tag "Charset")))
1750  :parameter-type '(symbol :tag "Charset")
1751  :parameter-document "\
1752 The default charset to use in the group.")
1753
1754 (gnus-define-group-parameter
1755  post-method
1756  :type list
1757  :function-document
1758  "Return a posting method for GROUP."
1759  :variable gnus-post-method-alist
1760  :variable-document
1761  "Alist of regexps (to match group names) and method to be used when
1762 posting an article."
1763  :variable-group gnus-group-foreign
1764  :parameter-type
1765  '(choice :tag "Posting Method"
1766           (const :tag "Use native server" native)
1767           (const :tag "Use current server" current)
1768           (list :convert-widget
1769                 (lambda (widget)
1770                   (list 'sexp :tag "Methods"
1771                         :value gnus-select-method))))
1772  :parameter-document
1773  "Posting method for this group.")
1774
1775 (gnus-define-group-parameter
1776  large-newsgroup-initial
1777  :type integer
1778  :function-document
1779  "Return GROUP's initial input of the number of articles."
1780  :variable-document
1781  "*Alist of group regexps and its initial input of the number of articles."
1782  :parameter-type '(choice :tag "Initial Input for Large Newsgroup"
1783                           (const :tag "All" nil)
1784                           (integer))
1785  :parameter-document "\
1786
1787 This number will be prompted as the initial value of the number of
1788 articles to list when the group is a large newsgroup (see
1789 `gnus-large-newsgroup').  If it is nil, the default value is the
1790 total number of articles in the group.")
1791
1792 ;; group parameters for spam processing added by Ted Zlatanov <tzz@lifelogs.com>
1793 (defcustom gnus-install-group-spam-parameters t
1794   "*Disable the group parameters for spam detection.  
1795 Enable if `G c' in XEmacs is giving you trouble, and make sure to submit a bug report."
1796   :type 'boolean
1797   :group 'gnus-start)
1798
1799 (when gnus-install-group-spam-parameters
1800   (defvar gnus-group-spam-classification-spam t
1801     "Spam group classification (requires spam.el).
1802 This group contains spam messages.  On summary entry, unread messages
1803 will be marked as spam.  On summary exit, the specified spam
1804 processors will be invoked on spam-marked messages, then those
1805 messages will be expired, so the spam processor will only see a
1806 spam-marked message once.")
1807
1808   (defvar gnus-group-spam-classification-ham 'ask
1809     "The ham value for the spam group parameter (requires spam.el).
1810 On summary exit, the specified ham processors will be invoked on
1811 ham-marked messages.  Exercise caution, since the ham processor will
1812 see the same message more than once because there is no ham message
1813 registry.")
1814
1815   (gnus-define-group-parameter
1816    spam-contents
1817    :type list
1818    :function-document
1819    "The spam type (spam, ham, or neither) of the group."
1820    :variable gnus-spam-newsgroup-contents
1821    :variable-default nil
1822    :variable-document
1823    "*Groups in which to automatically mark new articles as spam on
1824 summary entry.  If non-nil, this should be a list of group name
1825 regexps that should match all groups in which to do automatic spam
1826 tagging, associated with a classification (spam, ham, or neither).
1827 This only makes sense for mail groups."
1828    :variable-group spam
1829    :variable-type '(repeat 
1830                     (list :tag "Group contents spam/ham classification"
1831                           (regexp :tag "Group")
1832                           (choice
1833                            (variable-item gnus-group-spam-classification-spam)
1834                            (variable-item gnus-group-spam-classification-ham)
1835                            (const :tag "Unclassified" nil))))
1836
1837    :parameter-type '(list :tag "Group contents spam/ham classification"
1838                           (choice :tag "Group contents classification for spam sorting"
1839                                   (variable-item gnus-group-spam-classification-spam)
1840                                   (variable-item gnus-group-spam-classification-ham)
1841                                   (const :tag "Unclassified" nil)))
1842    :parameter-document
1843    "The spam classification (spam, ham, or neither) of this group.
1844 When a spam group is entered, all unread articles are marked as spam.")
1845
1846   (defvar gnus-group-spam-exit-processor-ifile "ifile"
1847     "The ifile summary exit spam processor.
1848 Only applicable to spam groups.")
1849
1850   (defvar gnus-group-spam-exit-processor-stat "stat"
1851     "The spam-stat summary exit spam processor.
1852 Only applicable to spam groups.")
1853
1854   (defvar gnus-group-spam-exit-processor-bogofilter "bogofilter"
1855     "The Bogofilter summary exit spam processor.
1856 Only applicable to spam groups.")
1857
1858   (defvar gnus-group-spam-exit-processor-blacklist "blacklist"
1859     "The Blacklist summary exit spam processor.
1860 Only applicable to spam groups.")
1861
1862   (defvar gnus-group-ham-exit-processor-ifile "ifile-ham"
1863     "The ifile summary exit ham processor.
1864 Only applicable to non-spam (unclassified and ham) groups.")
1865
1866   (defvar gnus-group-ham-exit-processor-bogofilter "bogofilter-ham"
1867     "The Bogofilter summary exit ham processor.
1868 Only applicable to non-spam (unclassified and ham) groups.")
1869
1870   (defvar gnus-group-ham-exit-processor-stat "stat-ham"
1871     "The spam-stat summary exit ham processor.
1872 Only applicable to non-spam (unclassified and ham) groups.")
1873
1874   (defvar gnus-group-ham-exit-processor-whitelist "whitelist"
1875     "The whitelist summary exit ham processor.
1876 Only applicable to non-spam (unclassified and ham) groups.")
1877
1878   (defvar gnus-group-ham-exit-processor-BBDB "bbdb"
1879     "The BBDB summary exit ham processor.
1880 Only applicable to non-spam (unclassified and ham) groups.")
1881
1882   (defvar gnus-group-ham-exit-processor-copy "copy"
1883     "The ham copy exit ham processor.
1884 Only applicable to non-spam (unclassified and ham) groups.")
1885
1886   (gnus-define-group-parameter
1887    spam-process
1888    :type list
1889    :parameter-type '(choice :tag "Spam Summary Exit Processor"
1890                             :value nil
1891                             (list :tag "Spam Summary Exit Processor Choices"
1892                                   (set 
1893                                    (variable-item gnus-group-spam-exit-processor-ifile)
1894                                    (variable-item gnus-group-spam-exit-processor-stat)
1895                                    (variable-item gnus-group-spam-exit-processor-bogofilter)
1896                                    (variable-item gnus-group-spam-exit-processor-blacklist)
1897                                    (variable-item gnus-group-ham-exit-processor-bogofilter)
1898                                    (variable-item gnus-group-ham-exit-processor-ifile)
1899                                    (variable-item gnus-group-ham-exit-processor-stat)
1900                                    (variable-item gnus-group-ham-exit-processor-whitelist)
1901                                    (variable-item gnus-group-ham-exit-processor-BBDB)
1902                                    (variable-item gnus-group-ham-exit-processor-copy))))
1903    :function-document
1904    "Which spam or ham processors will be applied to the GROUP articles at summary exit."
1905    :variable gnus-spam-process-newsgroups
1906    :variable-default nil
1907    :variable-document
1908    "*Groups in which to automatically process spam or ham articles with
1909 a backend on summary exit.  If non-nil, this should be a list of group
1910 name regexps that should match all groups in which to do automatic
1911 spam processing, associated with the appropriate processor.  This only makes sense
1912 for mail groups."
1913    :variable-group spam
1914    :variable-type '(repeat :tag "Spam/Ham Processors" 
1915                            (list :tag "Spam Summary Exit Processor Choices"
1916                                  (regexp :tag "Group Regexp") 
1917                                  (set :tag "Spam/Ham Summary Exit Processor"
1918                                       (variable-item gnus-group-spam-exit-processor-ifile)
1919                                       (variable-item gnus-group-spam-exit-processor-stat)
1920                                       (variable-item gnus-group-spam-exit-processor-bogofilter)
1921                                       (variable-item gnus-group-spam-exit-processor-blacklist)
1922                                       (variable-item gnus-group-ham-exit-processor-bogofilter)
1923                                       (variable-item gnus-group-ham-exit-processor-ifile)
1924                                       (variable-item gnus-group-ham-exit-processor-stat)
1925                                       (variable-item gnus-group-ham-exit-processor-whitelist)
1926                                       (variable-item gnus-group-ham-exit-processor-BBDB)
1927                                       (variable-item gnus-group-ham-exit-processor-copy))))
1928    :parameter-document
1929    "Which spam processors will be applied to the spam or ham GROUP articles at summary exit.")
1930
1931   (gnus-define-group-parameter
1932    spam-process-destination
1933    :parameter-type '(choice :tag "Destination for spam-processed articles at summary exit"
1934                             (string :tag "Move to a group")
1935                             (const :tag "Expire" nil))
1936    :function-document
1937    "Where spam-processed articles will go at summary exit."
1938    :variable gnus-spam-process-destinations
1939    :variable-default nil
1940    :variable-document
1941    "*Groups in which to explicitly send spam-processed articles to
1942 another group, or expire them (the default).  If non-nil, this should
1943 be a list of group name regexps that should match all groups in which
1944 to do spam-processed article moving, associated with the destination
1945 group or nil for explicit expiration.  This only makes sense for
1946 mail groups."
1947    :variable-group spam
1948    :variable-type '(repeat 
1949                     :tag "Spam-processed articles destination" 
1950                     (list
1951                      (regexp :tag "Group Regexp") 
1952                      (choice 
1953                       :tag "Destination for spam-processed articles at summary exit"
1954                       (string :tag "Move to a group")
1955                       (const :tag "Expire" nil))))
1956    :parameter-document
1957    "Where spam-processed articles will go at summary exit.")
1958
1959   (gnus-define-group-parameter
1960    ham-process-destination
1961    :parameter-type '(choice 
1962                      :tag "Destination for ham articles at summary exit from a spam group"
1963                      (string :tag "Move to a group")
1964                      (const :tag "Do nothing" nil))
1965    :function-document
1966    "Where ham articles will go at summary exit from a spam group."
1967    :variable gnus-ham-process-destinations
1968    :variable-default nil
1969    :variable-document
1970    "*Groups in which to explicitly send ham articles to
1971 another group, or do nothing (the default).  If non-nil, this should
1972 be a list of group name regexps that should match all groups in which
1973 to do ham article moving, associated with the destination
1974 group or nil for explicit ignoring.  This only makes sense for
1975 mail groups, and only works in spam groups."
1976    :variable-group spam
1977    :variable-type '(repeat 
1978                     :tag "Ham articles destination" 
1979                     (list
1980                      (regexp :tag "Group Regexp") 
1981                      (choice 
1982                       :tag "Destination for ham articles at summary exit from spam group"
1983                       (string :tag "Move to a group")
1984                       (const :tag "Expire" nil))))
1985    :parameter-document
1986    "Where ham articles will go at summary exit from a spam group.")
1987
1988   (gnus-define-group-parameter 
1989    ham-marks
1990    :type 'list
1991    :parameter-type '(list :tag "Ham mark choices"
1992                           (set 
1993                            (variable-item gnus-del-mark)
1994                            (variable-item gnus-read-mark)
1995                            (variable-item gnus-killed-mark)
1996                            (variable-item gnus-kill-file-mark)
1997                            (variable-item gnus-low-score-mark)))
1998
1999    :parameter-document
2000    "Marks considered ham (positively not spam).  Such articles will be
2001 processed as ham (non-spam) on group exit.  When nil, the global
2002 spam-ham-marks variable takes precedence."
2003    :variable-default '((".*" ((gnus-del-mark 
2004                                gnus-read-mark
2005                                gnus-killed-mark 
2006                                gnus-kill-file-mark
2007                                gnus-low-score-mark))))
2008    :variable-group spam
2009    :variable-document
2010    "*Groups in which to explicitly set the ham marks to some value.")
2011
2012   (gnus-define-group-parameter 
2013    spam-marks
2014    :type 'list
2015    :parameter-type '(list :tag "Spam mark choices"
2016                           (set 
2017                            (variable-item gnus-spam-mark)
2018                            (variable-item gnus-killed-mark)
2019                            (variable-item gnus-kill-file-mark)
2020                            (variable-item gnus-low-score-mark)))
2021
2022    :parameter-document
2023    "Marks considered spam.
2024 Such articles will be processed as spam on group exit.  When nil, the global
2025 spam-spam-marks variable takes precedence."
2026    :variable-default '((".*" ((gnus-spam-mark))))
2027    :variable-group spam
2028    :variable-document
2029    "*Groups in which to explicitly set the spam marks to some value."))
2030
2031 (defcustom gnus-group-uncollapsed-levels 1
2032   "Number of group name elements to leave alone when making a short group name."
2033   :group 'gnus-group-visual
2034   :type 'integer)
2035
2036 (defcustom gnus-group-use-permanent-levels nil
2037   "*If non-nil, once you set a level, Gnus will use this level."
2038   :group 'gnus-group-levels
2039   :type 'boolean)
2040
2041 ;; Hooks.
2042
2043 (defcustom gnus-load-hook nil
2044   "A hook run while Gnus is loaded."
2045   :group 'gnus-start
2046   :type 'hook)
2047
2048 (defcustom gnus-apply-kill-hook '(gnus-apply-kill-file)
2049   "A hook called to apply kill files to a group.
2050 This hook is intended to apply a kill file to the selected newsgroup.
2051 The function `gnus-apply-kill-file' is called by default.
2052
2053 Since a general kill file is too heavy to use only for a few
2054 newsgroups, I recommend you to use a lighter hook function.  For
2055 example, if you'd like to apply a kill file to articles which contains
2056 a string `rmgroup' in subject in newsgroup `control', you can use the
2057 following hook:
2058
2059  (setq gnus-apply-kill-hook
2060       (list
2061         (lambda ()
2062           (cond ((string-match \"control\" gnus-newsgroup-name)
2063                  (gnus-kill \"Subject\" \"rmgroup\")
2064                  (gnus-expunge \"X\"))))))"
2065   :group 'gnus-score-kill
2066   :options '(gnus-apply-kill-file)
2067   :type 'hook)
2068
2069 (defcustom gnus-group-change-level-function nil
2070   "Function run when a group level is changed.
2071 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL."
2072   :group 'gnus-group-levels
2073   :type 'function)
2074
2075 ;;; Face thingies.
2076
2077 (defcustom gnus-visual
2078   '(summary-highlight group-highlight article-highlight
2079                       mouse-face
2080                       summary-menu group-menu article-menu
2081                       tree-highlight menu highlight
2082                       browse-menu server-menu
2083                       page-marker tree-menu binary-menu pick-menu
2084                       grouplens-menu)
2085   "*Enable visual features.
2086 If `visual' is disabled, there will be no menus and few faces.  Most of
2087 the visual customization options below will be ignored.  Gnus will use
2088 less space and be faster as a result.
2089
2090 This variable can also be a list of visual elements to switch on.  For
2091 instance, to switch off all visual things except menus, you can say:
2092
2093    (setq gnus-visual '(menu))
2094
2095 Valid elements include `summary-highlight', `group-highlight',
2096 `article-highlight', `mouse-face', `summary-menu', `group-menu',
2097 `article-menu', `tree-highlight', `menu', `highlight', `browse-menu',
2098 `server-menu', `page-marker', `tree-menu', `binary-menu', `pick-menu',
2099 and `grouplens-menu'."
2100   :group 'gnus-meta
2101   :group 'gnus-visual
2102   :type '(set (const summary-highlight)
2103               (const group-highlight)
2104               (const article-highlight)
2105               (const mouse-face)
2106               (const summary-menu)
2107               (const group-menu)
2108               (const article-menu)
2109               (const tree-highlight)
2110               (const menu)
2111               (const highlight)
2112               (const browse-menu)
2113               (const server-menu)
2114               (const page-marker)
2115               (const tree-menu)
2116               (const binary-menu)
2117               (const pick-menu)
2118               (const grouplens-menu)))
2119
2120 ;; Byte-compiler warning.
2121 (defvar gnus-visual)
2122 ;; Find out whether the gnus-visual TYPE is wanted.
2123 (defun gnus-visual-p (&optional type class)
2124   (and gnus-visual                      ; Has to be non-nil, at least.
2125        (if (not type)                   ; We don't care about type.
2126            gnus-visual
2127          (if (listp gnus-visual)        ; It's a list, so we check it.
2128              (or (memq type gnus-visual)
2129                  (memq class gnus-visual))
2130            t))))
2131
2132 (defcustom gnus-mouse-face
2133   (condition-case ()
2134       (if (gnus-visual-p 'mouse-face 'highlight)
2135           (if (boundp 'gnus-mouse-face)
2136               (or gnus-mouse-face 'highlight)
2137             'highlight)
2138         'default)
2139     (error 'highlight))
2140   "*Face used for group or summary buffer mouse highlighting.
2141 The line beneath the mouse pointer will be highlighted with this
2142 face."
2143   :group 'gnus-visual
2144   :type 'face)
2145
2146 (defcustom gnus-article-save-directory gnus-directory
2147   "*Name of the directory articles will be saved in (default \"~/News\")."
2148   :group 'gnus-article-saving
2149   :type 'directory)
2150
2151 (defvar gnus-plugged t
2152   "Whether Gnus is plugged or not.")
2153
2154 (defcustom gnus-agent-cache t
2155   "Controls use of the agent cache while plugged.  When set, Gnus will prefer
2156 using the locally stored content rather than re-fetching it from the server.
2157 You also need to enable `gnus-agent' for this to have any affect."
2158   :version "21.3"
2159   :group 'gnus-agent
2160   :type 'boolean)
2161
2162 (defcustom gnus-default-charset 'iso-8859-1
2163   "Default charset assumed to be used when viewing non-ASCII characters.
2164 This variable is overridden on a group-to-group basis by the
2165 `gnus-group-charset-alist' variable and is only used on groups not
2166 covered by that variable."
2167   :type 'symbol
2168   :group 'gnus-charset)
2169
2170 (defcustom gnus-agent t
2171   "Whether we want to use the Gnus agent or not.
2172 Putting (gnus-agentize) in ~/.gnus is obsolete by (setq gnus-agent t)."
2173   :version "21.3"
2174   :group 'gnus-agent
2175   :type 'boolean)
2176
2177 (defcustom gnus-other-frame-function 'gnus
2178   "Function called by the command `gnus-other-frame'."
2179   :group 'gnus-start
2180   :type '(choice (function-item gnus)
2181                  (function-item gnus-no-server)
2182                  (function-item gnus-slave)
2183                  (function-item gnus-slave-no-server)))
2184
2185 (defcustom gnus-other-frame-parameters nil
2186   "Frame parameters used by `gnus-other-frame' to create a Gnus frame.
2187 This should be an alist for Emacs, or a plist for XEmacs."
2188   :group 'gnus-start
2189   :type (if (featurep 'xemacs)
2190             '(repeat (list :inline t :format "%v"
2191                            (symbol :tag "Property")
2192                            (sexp :tag "Value")))
2193           '(repeat (cons :format "%v"
2194                          (symbol :tag "Parameter")
2195                          (sexp :tag "Value")))))
2196
2197 \f
2198 ;;; Internal variables
2199
2200 (defvar gnus-agent-gcc-header "X-Gnus-Agent-Gcc")
2201 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information")
2202 (defvar gnus-agent-target-move-group-header "X-Gnus-Agent-Move-To")
2203 (defvar gnus-draft-meta-information-header "X-Draft-From")
2204 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter)
2205 (defvar gnus-original-article-buffer " *Original Article*")
2206 (defvar gnus-newsgroup-name nil)
2207 (defvar gnus-ephemeral-servers nil)
2208 (defvar gnus-server-method-cache nil)
2209
2210 (defvar gnus-agent-fetching nil
2211   "Whether Gnus agent is in fetching mode.")
2212
2213 (defvar gnus-agent-covered-methods nil)
2214
2215 (defvar gnus-command-method nil
2216   "Dynamically bound variable that says what the current back end is.")
2217
2218 (defvar gnus-current-select-method nil
2219   "The current method for selecting a newsgroup.")
2220
2221 (defvar gnus-tree-buffer "*Tree*"
2222   "Buffer where Gnus thread trees are displayed.")
2223
2224 ;; Dummy variable.
2225 (defvar gnus-use-generic-from nil)
2226
2227 ;; Variable holding the user answers to all method prompts.
2228 (defvar gnus-method-history nil)
2229
2230 ;; Variable holding the user answers to all mail method prompts.
2231 (defvar gnus-mail-method-history nil)
2232
2233 ;; Variable holding the user answers to all group prompts.
2234 (defvar gnus-group-history nil)
2235
2236 (defvar gnus-server-alist nil
2237   "List of available servers.")
2238
2239 (defcustom gnus-cache-directory
2240   (nnheader-concat gnus-directory "cache/")
2241   "*The directory where cached articles will be stored."
2242   :group 'gnus-cache
2243   :type 'directory)
2244
2245 (defvar gnus-predefined-server-alist
2246   `(("cache"
2247      nnspool "cache"
2248      (nnspool-spool-directory ,gnus-cache-directory)
2249      (nnspool-nov-directory ,gnus-cache-directory)
2250      (nnspool-active-file
2251       ,(nnheader-concat gnus-cache-directory "active"))))
2252   "List of predefined (convenience) servers.")
2253
2254 (defvar gnus-topic-indentation "");; Obsolete variable.
2255
2256 (defconst gnus-article-mark-lists
2257   '((marked . tick) (replied . reply)
2258     (expirable . expire) (killed . killed)
2259     (bookmarks . bookmark) (dormant . dormant)
2260     (scored . score) (saved . save)
2261     (cached . cache) (downloadable . download)
2262     (unsendable . unsend) (forwarded . forward)
2263     (recent . recent) (seen . seen)))
2264
2265 (defconst gnus-article-special-mark-lists
2266   '((seen range)
2267     (killed range)
2268     (bookmark tuple)
2269     (score tuple)))
2270
2271 ;; Propagate flags to server, with the following exceptions:
2272 ;; `seen' is private to each gnus installation
2273 ;; `cache' is a internal gnus flag for each gnus installation
2274 ;; `download' is a agent flag private to each gnus installation
2275 ;; `unsend' are for nndraft groups only
2276 ;; `score' is not a proper mark
2277 ;; `bookmark': don't propagated it, or fix the bug in update-mark.
2278 (defconst gnus-article-unpropagated-mark-lists
2279   '(seen cache download unsend score bookmark)
2280   "Marks that shouldn't be propagated to back ends.
2281 Typical marks are those that make no sense in a standalone back end,
2282 such as a mark that says whether an article is stored in the cache
2283 \(which doesn't make sense in a standalone back end).")
2284
2285 (defvar gnus-headers-retrieved-by nil)
2286 (defvar gnus-article-reply nil)
2287 (defvar gnus-override-method nil)
2288 (defvar gnus-article-check-size nil)
2289 (defvar gnus-opened-servers nil)
2290
2291 (defvar gnus-current-kill-article nil)
2292
2293 (defvar gnus-have-read-active-file nil)
2294
2295 (defconst gnus-maintainer
2296   "semi-gnus-ja@meadowy.org (T-gnus Bugfixing Girls + Boys)"
2297   "The mail address of the T-gnus maintainers.")
2298
2299 (defcustom gnus-info-filename nil
2300   "*Controls language of gnus Info.
2301 If nil and current-language-environment is Japanese, go to gnus-ja.
2302 Otherwise go to corresponding Info.
2303 This variable can be nil, gnus or gnus-ja."
2304   :group 'gnus-start
2305   :type '(choice (const nil)
2306                  (const :tag "English" gnus)
2307                  (const :tag "Japanese" gnus-ja)))
2308
2309 (defvar gnus-info-nodes
2310   '((gnus-group-mode "Group Buffer")
2311     (gnus-summary-mode "Summary Buffer")
2312     (gnus-article-mode "Article Buffer")
2313     (gnus-server-mode "Server Buffer")
2314     (gnus-browse-mode "Browse Foreign Server")
2315     (gnus-tree-mode "Tree Display"))
2316   "Alist of major modes and related Info nodes.")
2317
2318 (defvar gnus-group-buffer "*Group*")
2319 (defvar gnus-summary-buffer "*Summary*")
2320 (defvar gnus-article-buffer "*Article*")
2321 (defvar gnus-server-buffer "*Server*")
2322
2323 (defvar gnus-slave nil
2324   "Whether this Gnus is a slave or not.")
2325
2326 (defvar gnus-batch-mode nil
2327   "Whether this Gnus is running in batch mode or not.")
2328
2329 (defvar gnus-variable-list
2330   '(gnus-newsrc-options gnus-newsrc-options-n
2331                         gnus-newsrc-last-checked-date
2332                         gnus-newsrc-alist gnus-server-alist
2333                         gnus-registry-alist
2334                         gnus-killed-list gnus-zombie-list
2335                         gnus-topic-topology gnus-topic-alist
2336                         gnus-agent-covered-methods)
2337   "Gnus variables saved in the quick startup file.")
2338
2339 (defvar gnus-product-variable-file-list
2340   (let ((version (product-version (product-find 'gnus-vers)))
2341         (codesys (static-if (boundp 'MULE) '*ctext* 'ctext)))
2342     `(("strict-cache"
2343        ((product-version ,version)
2344         (emacs-version)
2345         (correct-string-widths))
2346        binary
2347        gnus-format-specs-compiled)
2348       ("cache"
2349        ((product-version ,version)
2350         (emacs-version)
2351         (correct-string-widths))
2352        ,codesys
2353        gnus-format-specs)))
2354   "Alist of the methods for checking whether the contents of the T-gnus
2355 quick startup files are valid.  One is for the byte-compiled format
2356 specifications, the other is for the source form.  Each element should
2357 be a list which looks like follows:
2358
2359 \(\"FILE_NAME\"
2360  ((VARIABLE EXPECTED_VALUE_or_NIL)
2361   (VARIABLE EXPECTED_VALUE_or_NIL)
2362   ...)
2363  CODING-SYSTEM_FOR_READING_FILE
2364  SYMBOL_OF_FORMAT_SPECS)")
2365
2366 (defcustom gnus-compile-user-specs t
2367   "If non-nil, the user-defined format specs will be byte-compiled
2368 automatically.
2369 It has an effect on the values of `gnus-*-line-format-spec'."
2370   :group 'gnus
2371   :type 'boolean)
2372
2373 (defvar gnus-newsrc-alist nil
2374   "Assoc list of read articles.
2375 gnus-newsrc-hashtb should be kept so that both hold the same information.")
2376
2377 (defvar gnus-registry-alist nil
2378   "Assoc list of registry data.
2379 gnus-registry.el will populate this if it's loaded.")
2380
2381 (defvar gnus-newsrc-hashtb nil
2382   "Hashtable of gnus-newsrc-alist.")
2383
2384 (defvar gnus-killed-list nil
2385   "List of killed newsgroups.")
2386
2387 (defvar gnus-killed-hashtb nil
2388   "Hash table equivalent of gnus-killed-list.")
2389
2390 (defvar gnus-zombie-list nil
2391   "List of almost dead newsgroups.")
2392
2393 (defvar gnus-description-hashtb nil
2394   "Descriptions of newsgroups.")
2395
2396 (defvar gnus-list-of-killed-groups nil
2397   "List of newsgroups that have recently been killed by the user.")
2398
2399 (defvar gnus-active-hashtb nil
2400   "Hashtable of active articles.")
2401
2402 (defvar gnus-moderated-hashtb nil
2403   "Hashtable of moderated newsgroups.")
2404
2405 ;; Save window configuration.
2406 (defvar gnus-prev-winconf nil)
2407
2408 (defvar gnus-reffed-article-number nil)
2409
2410 ;;; Let the byte-compiler know that we know about this variable.
2411 (defvar rmail-default-rmail-file)
2412
2413 (defvar gnus-dead-summary nil)
2414
2415 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$"
2416   "Regexp matching invalid groups.")
2417
2418 (defvar gnus-other-frame-object nil
2419   "A frame object which will be created by `gnus-other-frame'.")
2420
2421 ;;; End of variables.
2422
2423 ;; Define some autoload functions Gnus might use.
2424 (eval-and-compile
2425
2426   ;; This little mapcar goes through the list below and marks the
2427   ;; symbols in question as autoloaded functions.
2428   (mapcar
2429    (lambda (package)
2430      (let ((interactive (nth 1 (memq ':interactive package))))
2431        (mapcar
2432         (lambda (function)
2433           (let (keymap)
2434             (when (consp function)
2435               (setq keymap (car (memq 'keymap function)))
2436               (setq function (car function)))
2437             (unless (fboundp function)
2438               (autoload function (car package) nil interactive keymap))))
2439         (if (eq (nth 1 package) ':interactive)
2440             (nthcdr 3 package)
2441           (cdr package)))))
2442    '(("info" :interactive t Info-goto-node)
2443      ("pp" pp-to-string)
2444      ("ps-print" ps-print-preprint)
2445      ("message" :interactive t
2446       message-send-and-exit message-yank-original)
2447      ("babel" babel-as-string)
2448      ("nnmail" nnmail-split-fancy nnmail-article-group)
2449      ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers)
2450      ("rmailout" rmail-output rmail-output-to-rmail-file)
2451      ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages
2452       rmail-show-message rmail-summary-exists
2453       rmail-select-summary rmail-update-summary)
2454      ("gnus-audio" :interactive t gnus-audio-play)
2455      ("gnus-xmas" gnus-xmas-splash)
2456      ("gnus-soup" :interactive t
2457       gnus-group-brew-soup gnus-brew-soup gnus-soup-add-article
2458       gnus-soup-send-replies gnus-soup-save-areas gnus-soup-pack-packet)
2459      ("nnsoup" nnsoup-pack-replies)
2460      ("score-mode" :interactive t gnus-score-mode)
2461      ("gnus-mh" gnus-summary-save-article-folder
2462       gnus-Folder-save-name gnus-folder-save-name)
2463      ("gnus-mh" :interactive t gnus-summary-save-in-folder)
2464      ("gnus-demon" gnus-demon-add-nocem gnus-demon-add-scanmail
2465       gnus-demon-add-rescan gnus-demon-add-scan-timestamps
2466       gnus-demon-add-disconnection gnus-demon-add-handler
2467       gnus-demon-remove-handler)
2468      ("gnus-demon" :interactive t
2469       gnus-demon-init gnus-demon-cancel)
2470      ("gnus-fun" gnus-convert-gray-x-face-to-xpm gnus-display-x-face-in-from
2471       gnus-convert-image-to-gray-x-face gnus-convert-face-to-png
2472       gnus-face-from-file)
2473      ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree
2474       gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer)
2475      ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close
2476       gnus-nocem-unwanted-article-p)
2477      ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info
2478       gnus-server-server-name)
2479      ("gnus-srvr" gnus-browse-foreign-server)
2480      ("gnus-cite" :interactive t
2481       gnus-article-highlight-citation gnus-article-hide-citation-maybe
2482       gnus-article-hide-citation gnus-article-fill-cited-article
2483       gnus-article-hide-citation-in-followups)
2484      ("gnus-kill" gnus-kill gnus-apply-kill-file-internal
2485       gnus-kill-file-edit-file gnus-kill-file-raise-followups-to-author
2486       gnus-execute gnus-expunge gnus-batch-kill gnus-batch-score)
2487      ("gnus-cache" gnus-cache-possibly-enter-article gnus-cache-save-buffers
2488       gnus-cache-possibly-remove-articles gnus-cache-request-article
2489       gnus-cache-retrieve-headers gnus-cache-possibly-alter-active
2490       gnus-cache-enter-remove-article gnus-cached-article-p
2491       gnus-cache-open gnus-cache-close gnus-cache-update-article
2492       gnus-cache-articles-in-group)
2493      ("gnus-cache" :interactive t gnus-jog-cache gnus-cache-enter-article
2494       gnus-cache-remove-article gnus-summary-insert-cached-articles)
2495      ("gnus-score" :interactive t
2496       gnus-summary-increase-score gnus-summary-set-score
2497       gnus-summary-raise-thread gnus-summary-raise-same-subject
2498       gnus-summary-raise-score gnus-summary-raise-same-subject-and-select
2499       gnus-summary-lower-thread gnus-summary-lower-same-subject
2500       gnus-summary-lower-score gnus-summary-lower-same-subject-and-select
2501       gnus-summary-current-score gnus-score-delta-default
2502       gnus-score-flush-cache gnus-score-close
2503       gnus-possibly-score-headers gnus-score-followup-article
2504       gnus-score-followup-thread)
2505      ("gnus-score"
2506       (gnus-summary-score-map keymap) gnus-score-save gnus-score-headers
2507       gnus-current-score-file-nondirectory gnus-score-adaptive
2508       gnus-score-find-trace gnus-score-file-name)
2509      ("gnus-cus" :interactive t gnus-custom-mode gnus-group-customize
2510       gnus-score-customize)
2511      ("gnus-topic" :interactive t gnus-topic-mode)
2512      ("gnus-topic" gnus-topic-remove-group gnus-topic-set-parameters
2513       gnus-subscribe-topics)
2514      ("gnus-salt" :interactive t gnus-pick-mode gnus-binary-mode)
2515      ("gnus-uu" (gnus-uu-extract-map keymap) (gnus-uu-mark-map keymap))
2516      ("gnus-uu" :interactive t
2517       gnus-uu-digest-mail-forward gnus-uu-digest-post-forward
2518       gnus-uu-mark-series gnus-uu-mark-region gnus-uu-mark-buffer
2519       gnus-uu-mark-by-regexp gnus-uu-mark-all
2520       gnus-uu-mark-sparse gnus-uu-mark-thread gnus-uu-decode-uu
2521       gnus-uu-decode-uu-and-save gnus-uu-decode-unshar
2522       gnus-uu-decode-unshar-and-save gnus-uu-decode-save
2523       gnus-uu-decode-binhex gnus-uu-decode-uu-view
2524       gnus-uu-decode-uu-and-save-view gnus-uu-decode-unshar-view
2525       gnus-uu-decode-unshar-and-save-view gnus-uu-decode-save-view
2526       gnus-uu-decode-binhex-view gnus-uu-unmark-thread
2527       gnus-uu-mark-over gnus-uu-post-news)
2528      ("gnus-uu" gnus-uu-delete-work-dir gnus-quote-arg-for-sh-or-csh
2529       gnus-uu-unmark-thread)
2530      ("gnus-msg" (gnus-summary-send-map keymap)
2531       gnus-article-mail gnus-copy-article-buffer gnus-following-method)
2532      ("gnus-msg" :interactive t
2533       gnus-group-post-news gnus-group-mail gnus-group-news
2534       gnus-summary-post-news gnus-summary-news-other-window
2535       gnus-summary-followup gnus-summary-followup-with-original
2536       gnus-summary-cancel-article gnus-summary-supersede-article
2537       gnus-post-news gnus-summary-reply gnus-summary-reply-with-original
2538       gnus-summary-mail-forward gnus-summary-mail-other-window
2539       gnus-summary-resend-message gnus-summary-resend-bounced-mail
2540       gnus-summary-wide-reply gnus-summary-followup-to-mail
2541       gnus-summary-followup-to-mail-with-original gnus-bug
2542       gnus-summary-wide-reply-with-original gnus-summary-post-forward
2543       gnus-summary-digest-mail-forward gnus-summary-digest-post-forward)
2544      ("gnus-picon" :interactive t gnus-treat-from-picon)
2545      ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p
2546       gnus-grouplens-mode)
2547      ("smiley" :interactive t smiley-region)
2548      ("gnus-win" gnus-configure-windows gnus-add-configuration)
2549      ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group
2550       gnus-list-of-unread-articles gnus-list-of-read-articles
2551       gnus-offer-save-summaries gnus-make-thread-indent-array
2552       gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject
2553       gnus-summary-skip-intangible gnus-summary-article-number
2554       gnus-data-header gnus-data-find gnus-summary-jump-to-other-group)
2555      ("gnus-group" gnus-group-insert-group-line gnus-group-quit
2556       gnus-group-list-groups gnus-group-first-unread-group
2557       gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc
2558       gnus-group-setup-buffer gnus-group-get-new-news
2559       gnus-group-make-help-group gnus-group-update-group
2560       gnus-group-iterate gnus-group-group-name)
2561      ("gnus-bcklg" gnus-backlog-request-article gnus-backlog-enter-article
2562       gnus-backlog-remove-article)
2563      ("gnus-art" gnus-article-read-summary-keys gnus-article-save
2564       gnus-article-prepare gnus-article-set-window-start
2565       gnus-article-next-page gnus-article-prev-page
2566       gnus-request-article-this-buffer gnus-article-mode
2567       gnus-article-setup-buffer gnus-narrow-to-page
2568       gnus-article-delete-invisible-text gnus-treat-article)
2569      ("gnus-art" :interactive t
2570       gnus-article-hide-headers gnus-article-hide-boring-headers
2571       gnus-article-treat-overstrike
2572       gnus-article-remove-cr gnus-article-remove-trailing-blank-lines
2573       gnus-article-display-x-face
2574       gnus-article-decode-HZ
2575       gnus-article-wash-html
2576       gnus-article-unsplit-urls
2577       gnus-article-hide-pem gnus-article-hide-signature
2578       gnus-article-strip-leading-blank-lines gnus-article-date-local
2579       gnus-article-date-original gnus-article-date-lapsed
2580       gnus-article-show-all-headers
2581       ;; gnus-article-show-all
2582       gnus-article-edit-mode gnus-article-edit-article
2583       gnus-article-edit-done article-decode-encoded-words
2584       gnus-start-date-timer gnus-stop-date-timer)
2585      ("gnus-int" gnus-request-type)
2586      ("gnus-start" gnus-newsrc-parse-options gnus-1 gnus-no-server-1
2587       gnus-dribble-enter gnus-read-init-file gnus-dribble-touch)
2588      ("gnus-dup" gnus-dup-suppress-articles gnus-dup-unsuppress-article
2589       gnus-dup-enter-articles)
2590      ("gnus-range" gnus-copy-sequence)
2591      ("gnus-eform" gnus-edit-form)
2592      ("gnus-move" :interactive t
2593       gnus-group-move-group-to-server gnus-change-server)
2594      ("gnus-logic" gnus-score-advanced)
2595      ("gnus-undo" gnus-undo-mode gnus-undo-register)
2596      ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next
2597       gnus-async-prefetch-article gnus-async-prefetch-remove-group
2598       gnus-async-halt-prefetch)
2599      ("gnus-offline"
2600       gnus-offline-setup)
2601      ("gnus-offline" :interactive t
2602       gnus-offline-toggle-plugged
2603       gnus-offline-set-unplugged-state
2604       gnus-offline-toggle-auto-hangup
2605       gnus-offline-toggle-on/off-send-mail
2606       gnus-offline-toggle-articles-to-fetch
2607       gnus-offline-set-interval-time
2608       gnus-offline-agent-expire)
2609      ("miee" :interactive t gnspool-get-news
2610       mail-spool-send news-spool-post)
2611      ("international/mw32misc" define-process-argument-editing
2612       general-process-argument-editing-function)
2613      ("gnus-agent" gnus-open-agent gnus-agent-get-function
2614       gnus-agent-save-groups gnus-agent-save-active gnus-agent-method-p
2615       gnus-agent-get-undownloaded-list gnus-agent-fetch-session
2616       gnus-summary-set-agent-mark gnus-agent-save-group-info
2617       gnus-agent-request-article gnus-agent-retrieve-headers)
2618      ("gnus-agent" :interactive t
2619       gnus-unplugged gnus-agentize gnus-agent-batch)
2620      ("gnus-vm" :interactive t gnus-summary-save-in-vm
2621       gnus-summary-save-article-vm)
2622      ("compface" uncompface)
2623      ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-queue)
2624      ("gnus-mlspl" gnus-group-split gnus-group-split-fancy)
2625      ("gnus-mlspl" :interactive t gnus-group-split-setup
2626       gnus-group-split-update)
2627      ("gnus-delay" gnus-delay-initialize))))
2628
2629 (eval-and-compile
2630   (unless (featurep 'xemacs)
2631     (if (>= emacs-major-version 21)
2632         (autoload 'x-face-decode-message-header "x-face-e21")
2633       (autoload 'x-face-mule-gnus-article-display-x-face "x-face-mule"))))
2634
2635 (unless (and (fboundp 'base64-encode-string)
2636              (subrp (symbol-function 'base64-encode-string)))
2637   (require 'base64))
2638
2639 ;; To search articles with Namazu.
2640 (autoload 'gnus-namazu-search "gnus-namazu" nil t)
2641 (autoload 'gnus-namazu-create-index "gnus-namazu" nil t)
2642 (autoload 'gnus-namazu-update-index "gnus-namazu" nil t)
2643 (autoload 'gnus-namazu-update-all-indices "gnus-namazu" nil t)
2644
2645 ;; To make nnir groups.
2646 (autoload 'gnus-group-make-nnir-group "nnir" nil t)
2647
2648 ;; To make shimbun groups.
2649 (autoload 'gnus-group-make-shimbun-group "nnshimbun" nil t)
2650
2651 ;; A tool for the developers.
2652 (autoload 'find-cl-run-time-functions "gnus-clfns" nil t)
2653
2654 ;;; gnus-sum.el thingies
2655
2656
2657 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n"
2658   "*The format specification of the lines in the summary buffer.
2659
2660 It works along the same lines as a normal formatting string,
2661 with some simple extensions.
2662
2663 %N   Article number, left padded with spaces (string)
2664 %S   Subject (string)
2665 %s   Subject if it is at the root of a thread, and \"\" otherwise (string)
2666 %n   Name of the poster (string)
2667 %a   Extracted name of the poster (string)
2668 %A   Extracted address of the poster (string)
2669 %F   Contents of the From: header (string)
2670 %f   Contents of the From: or To: headers (string)
2671 %x   Contents of the Xref: header (string)
2672 %D   Date of the article (string)
2673 %d   Date of the article (string) in DD-MMM format
2674 %o   Date of the article (string) in YYYYMMDD`T'HHMMSS format
2675 %M   Message-id of the article (string)
2676 %r   References of the article (string)
2677 %c   Number of characters in the article (integer)
2678 %k   Pretty-printed version of the above (string)
2679      For example, \"1.2k\" or \"0.4M\".
2680 %L   Number of lines in the article (integer)
2681 %I   Indentation based on thread level (a string of spaces)
2682 %B   A complex trn-style thread tree (string)
2683      The variables `gnus-sum-thread-*' can be used for customization.
2684 %T   A string with two possible values: 80 spaces if the article
2685      is on thread level two or larger and 0 spaces on level one
2686 %R   \"A\" if this article has been replied to, \" \" otherwise (character)
2687 %U   Status of this article (character, \"R\", \"K\", \"-\" or \" \")
2688 %[   Opening bracket (character, \"[\" or \"<\")
2689 %]   Closing bracket (character, \"]\" or \">\")
2690 %>   Spaces of length thread-level (string)
2691 %<   Spaces of length (- 20 thread-level) (string)
2692 %i   Article score (number)
2693 %z   Article zcore (character)
2694 %t   Number of articles under the current thread (number).
2695 %e   Whether the thread is empty or not (character).
2696 %l   GroupLens score (string).
2697 %V   Total thread score (number).
2698 %P   The line number (number).
2699 %O   Download mark (character).
2700 %*   If present, indicates desired cursor position
2701      (instead of after first colon).
2702 %u   User defined specifier.  The next character in the format string should
2703      be a letter.  Gnus will call the function gnus-user-format-function-X,
2704      where X is the letter following %u.  The function will be passed the
2705      current header as argument.  The function should return a string, which
2706      will be inserted into the summary just like information from any other
2707      summary specifier.
2708
2709 The %U (status), %R (replied) and %z (zcore) specs have to be handled
2710 with care.  For reasons of efficiency, Gnus will compute what column
2711 these characters will end up in, and \"hard-code\" that.  This means that
2712 it is invalid to have these specs after a variable-length spec.  Well,
2713 you might not be arrested, but your summary buffer will look strange,
2714 which is bad enough.
2715
2716 The smart choice is to have these specs as far to the left as
2717 possible.
2718
2719 This restriction may disappear in later versions of Gnus.
2720
2721 General format specifiers can also be used.
2722 See Info node `(gnus)Formatting Variables'."
2723   :link '(custom-manual "(gnus)Formatting Variables")
2724   :type 'string
2725   :group 'gnus-summary-format)
2726
2727 ;;;
2728 ;;; Skeleton keymaps
2729 ;;;
2730
2731 (defun gnus-suppress-keymap (keymap)
2732   (suppress-keymap keymap)
2733   (let ((keys `([backspace] [delete] "\177" "\M-u"))) ;gnus-mouse-2
2734     (while keys
2735       (define-key keymap (pop keys) 'undefined))))
2736
2737 (defvar gnus-article-mode-map
2738   (let ((keymap (make-sparse-keymap)))
2739     (gnus-suppress-keymap keymap)
2740     keymap))
2741 (defvar gnus-summary-mode-map
2742   (let ((keymap (make-keymap)))
2743     (gnus-suppress-keymap keymap)
2744     keymap))
2745 (defvar gnus-group-mode-map
2746   (let ((keymap (make-keymap)))
2747     (gnus-suppress-keymap keymap)
2748     keymap))
2749
2750 \f
2751
2752 ;; Fix by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
2753 ;; If you want the cursor to go somewhere else, set these two
2754 ;; functions in some startup hook to whatever you want.
2755 (defalias 'gnus-summary-position-point 'gnus-goto-colon)
2756 (defalias 'gnus-group-position-point 'gnus-goto-colon)
2757
2758 ;;; Various macros and substs.
2759
2760 (defun gnus-header-from (header)
2761   (mail-header-from header))
2762
2763 (defmacro gnus-gethash (string hashtable)
2764   "Get hash value of STRING in HASHTABLE."
2765   `(symbol-value (intern-soft ,string ,hashtable)))
2766
2767 (defmacro gnus-gethash-safe (string hashtable)
2768   "Get hash value of STRING in HASHTABLE.
2769 Return nil if not defined."
2770   `(let ((sym (intern-soft ,string ,hashtable)))
2771      (and (boundp sym) (symbol-value sym))))
2772
2773 (defmacro gnus-sethash (string value hashtable)
2774   "Set hash value.  Arguments are STRING, VALUE, and HASHTABLE."
2775   `(set (intern ,string ,hashtable) ,value))
2776 (put 'gnus-sethash 'edebug-form-spec '(form form form))
2777
2778 (defmacro gnus-group-unread (group)
2779   "Get the currently computed number of unread articles in GROUP."
2780   `(car (gnus-gethash ,group gnus-newsrc-hashtb)))
2781
2782 (defmacro gnus-group-entry (group)
2783   "Get the newsrc entry for GROUP."
2784   `(gnus-gethash ,group gnus-newsrc-hashtb))
2785
2786 (defmacro gnus-active (group)
2787   "Get active info on GROUP."
2788   `(gnus-gethash ,group gnus-active-hashtb))
2789
2790 (defmacro gnus-set-active (group active)
2791   "Set GROUP's active info."
2792   `(gnus-sethash ,group ,active gnus-active-hashtb))
2793
2794 ;; Info access macros.
2795
2796 (defmacro gnus-info-group (info)
2797   `(nth 0 ,info))
2798 (defmacro gnus-info-rank (info)
2799   `(nth 1 ,info))
2800 (defmacro gnus-info-read (info)
2801   `(nth 2 ,info))
2802 (defmacro gnus-info-marks (info)
2803   `(nth 3 ,info))
2804 (defmacro gnus-info-method (info)
2805   `(nth 4 ,info))
2806 (defmacro gnus-info-params (info)
2807   `(nth 5 ,info))
2808
2809 (defmacro gnus-info-level (info)
2810   `(let ((rank (gnus-info-rank ,info)))
2811      (if (consp rank)
2812          (car rank)
2813        rank)))
2814 (defmacro gnus-info-score (info)
2815   `(let ((rank (gnus-info-rank ,info)))
2816      (or (and (consp rank) (cdr rank)) 0)))
2817
2818 (defmacro gnus-info-set-group (info group)
2819   `(setcar ,info ,group))
2820 (defmacro gnus-info-set-rank (info rank)
2821   `(setcar (nthcdr 1 ,info) ,rank))
2822 (defmacro gnus-info-set-read (info read)
2823   `(setcar (nthcdr 2 ,info) ,read))
2824 (defmacro gnus-info-set-marks (info marks &optional extend)
2825   (if extend
2826       `(gnus-info-set-entry ,info ,marks 3)
2827     `(setcar (nthcdr 3 ,info) ,marks)))
2828 (defmacro gnus-info-set-method (info method &optional extend)
2829   (if extend
2830       `(gnus-info-set-entry ,info ,method 4)
2831     `(setcar (nthcdr 4 ,info) ,method)))
2832 (defmacro gnus-info-set-params (info params &optional extend)
2833   (if extend
2834       `(gnus-info-set-entry ,info ,params 5)
2835     `(setcar (nthcdr 5 ,info) ,params)))
2836
2837 (defun gnus-info-set-entry (info entry number)
2838   ;; Extend the info until we have enough elements.
2839   (while (<= (length info) number)
2840     (nconc info (list nil)))
2841   ;; Set the entry.
2842   (setcar (nthcdr number info) entry))
2843
2844 (defmacro gnus-info-set-level (info level)
2845   `(let ((rank (cdr ,info)))
2846      (if (consp (car rank))
2847          (setcar (car rank) ,level)
2848        (setcar rank ,level))))
2849 (defmacro gnus-info-set-score (info score)
2850   `(let ((rank (cdr ,info)))
2851      (if (consp (car rank))
2852          (setcdr (car rank) ,score)
2853        (setcar rank (cons (car rank) ,score)))))
2854
2855 (defmacro gnus-get-info (group)
2856   `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb)))
2857
2858 ;;; Load the compatibility functions.
2859
2860 (require 'gnus-ems)
2861
2862 \f
2863 ;;;
2864 ;;; Shutdown
2865 ;;;
2866
2867 (defvar gnus-shutdown-alist nil)
2868
2869 (defun gnus-add-shutdown (function &rest symbols)
2870   "Run FUNCTION whenever one of SYMBOLS is shut down."
2871   (push (cons function symbols) gnus-shutdown-alist))
2872
2873 (defun gnus-shutdown (symbol)
2874   "Shut down everything that waits for SYMBOL."
2875   (let ((alist gnus-shutdown-alist)
2876         entry)
2877     (while (setq entry (pop alist))
2878       (when (memq symbol (cdr entry))
2879         (funcall (car entry))))))
2880
2881 \f
2882 ;;;
2883 ;;; Gnus Utility Functions
2884 ;;;
2885
2886 (defun gnus-find-subscribed-addresses ()
2887   "Return a regexp matching the addresses of all subscribed mail groups.
2888 It consists of the `to-address' or `to-list' parameter of all groups
2889 with a `subscribed' parameter."
2890   (let (group address addresses)
2891     (dolist (entry (cdr gnus-newsrc-alist))
2892       (setq group (car entry))
2893       (when (gnus-parameter-subscribed group)
2894         (setq address (mail-strip-quoted-names
2895                        (or (gnus-group-fast-parameter group 'to-address)
2896                            (gnus-group-fast-parameter group 'to-list))))
2897         (when address
2898           (add-to-list 'addresses address))))
2899     (when addresses
2900       (list (mapconcat 'regexp-quote addresses "\\|")))))
2901
2902 (defmacro gnus-string-or (&rest strings)
2903   "Return the first element of STRINGS that is a non-blank string.
2904 STRINGS will be evaluated in normal `or' order."
2905   `(gnus-string-or-1 ',strings))
2906
2907 (defun gnus-string-or-1 (strings)
2908   (let (string)
2909     (while strings
2910       (setq string (eval (pop strings)))
2911       (if (string-match "^[ \t]*$" string)
2912           (setq string nil)
2913         (setq strings nil)))
2914     string))
2915
2916 (defun gnus-info-find-node (&optional nodename)
2917   "Find Info documentation of Gnus."
2918   (interactive)
2919   ;; Enlarge info window if needed.
2920   (let (gnus-info-buffer)
2921     (Info-goto-node
2922      (format "(%s)%s"
2923              (or gnus-info-filename
2924                  (get-language-info current-language-environment 'gnus-info)
2925                  "gnus")
2926              (or nodename
2927                  (cadr (assq major-mode gnus-info-nodes))
2928                  (and (eq (current-buffer) (get-buffer gnus-article-buffer))
2929                       (cadr (assq 'gnus-article-mode gnus-info-nodes))))))
2930     (setq gnus-info-buffer (current-buffer))
2931     (gnus-configure-windows 'info)))
2932
2933 ;;;
2934 ;;; gnus-interactive
2935 ;;;
2936
2937 (defvar gnus-current-prefix-symbol nil
2938   "Current prefix symbol.")
2939
2940 (defvar gnus-current-prefix-symbols nil
2941   "List of current prefix symbols.")
2942
2943 (defun gnus-interactive (string &optional params)
2944   "Return a list that can be fed to `interactive'.
2945 See `interactive' for full documentation.
2946
2947 Adds the following specs:
2948
2949 y -- The current symbolic prefix.
2950 Y -- A list of the current symbolic prefix(es).
2951 A -- Article number.
2952 H -- Article header.
2953 g -- Group name."
2954   (let ((i 0)
2955         out c prompt)
2956     (while (< i (length string))
2957       (string-match ".\\([^\n]*\\)\n?" string i)
2958       (setq c (aref string i))
2959       (when (match-end 1)
2960         (setq prompt (match-string 1 string)))
2961       (setq i (match-end 0))
2962       ;; We basically emulate just about everything that
2963       ;; `interactive' does, but add the specs listed above.
2964       (push
2965        (cond
2966         ((= c ?a)
2967          (completing-read prompt obarray 'fboundp t))
2968         ((= c ?b)
2969          (read-buffer prompt (current-buffer) t))
2970         ((= c ?B)
2971          (read-buffer prompt (other-buffer (current-buffer))))
2972         ((= c ?c)
2973          (read-char))
2974         ((= c ?C)
2975          (completing-read prompt obarray 'commandp t))
2976         ((= c ?d)
2977          (point))
2978         ((= c ?D)
2979          (read-file-name prompt nil default-directory 'lambda))
2980         ((= c ?f)
2981          (read-file-name prompt nil nil 'lambda))
2982         ((= c ?F)
2983          (read-file-name prompt))
2984         ((= c ?k)
2985          (read-key-sequence prompt))
2986         ((= c ?K)
2987          (error "Not implemented spec"))
2988         ((= c ?e)
2989          (error "Not implemented spec"))
2990         ((= c ?m)
2991          (mark))
2992         ((= c ?N)
2993          (error "Not implemented spec"))
2994         ((= c ?n)
2995          (string-to-number (read-from-minibuffer prompt)))
2996         ((= c ?p)
2997          (prefix-numeric-value current-prefix-arg))
2998         ((= c ?P)
2999          current-prefix-arg)
3000         ((= c ?r)
3001          'gnus-prefix-nil)
3002         ((= c ?s)
3003          (read-string prompt))
3004         ((= c ?S)
3005          (intern (read-string prompt)))
3006         ((= c ?v)
3007          (read-variable prompt))
3008         ((= c ?x)
3009          (read-minibuffer prompt))
3010         ((= c ?x)
3011          (eval-minibuffer prompt))
3012         ;; And here the new specs come.
3013         ((= c ?y)
3014          gnus-current-prefix-symbol)
3015         ((= c ?Y)
3016          gnus-current-prefix-symbols)
3017         ((= c ?g)
3018          (gnus-group-group-name))
3019         ((= c ?A)
3020          (gnus-summary-skip-intangible)
3021          (or (get-text-property (point) 'gnus-number)
3022              (gnus-summary-last-subject)))
3023         ((= c ?H)
3024          (gnus-data-header (gnus-data-find (gnus-summary-article-number))))
3025         (t
3026          (error "Non-implemented spec")))
3027        out)
3028       (cond
3029        ((= c ?r)
3030         (push (if (< (point) (mark)) (point) (mark)) out)
3031         (push (if (> (point) (mark)) (point) (mark)) out))))
3032     (setq out (delq 'gnus-prefix-nil out))
3033     (nreverse out)))
3034
3035 (defun gnus-symbolic-argument (&optional arg)
3036   "Read a symbolic argument and a command, and then execute command."
3037   (interactive "P")
3038   (let* ((in-command (this-command-keys))
3039          (command in-command)
3040          gnus-current-prefix-symbols
3041          gnus-current-prefix-symbol
3042          syms)
3043     (while (equal in-command command)
3044       (message "%s-" (key-description (this-command-keys)))
3045       (push (intern (char-to-string (read-char))) syms)
3046       (setq command (read-key-sequence nil t)))
3047     (setq gnus-current-prefix-symbols (nreverse syms)
3048           gnus-current-prefix-symbol (car gnus-current-prefix-symbols))
3049     (call-interactively (key-binding command t))))
3050
3051 ;;; More various functions.
3052
3053 (defsubst gnus-check-backend-function (func group)
3054   "Check whether GROUP supports function FUNC.
3055 GROUP can either be a string (a group name) or a select method."
3056   (ignore-errors
3057     (let ((method (if (stringp group)
3058                       (car (gnus-find-method-for-group group))
3059                     group)))
3060       (unless (featurep method)
3061         (require method))
3062       (fboundp (intern (format "%s-%s" method func))))))
3063
3064 (defun gnus-group-read-only-p (&optional group)
3065   "Check whether GROUP supports editing or not.
3066 If GROUP is nil, `gnus-newsgroup-name' will be checked instead.  Note
3067 that that variable is buffer-local to the summary buffers."
3068   (let ((group (or group gnus-newsgroup-name)))
3069     (not (gnus-check-backend-function 'request-replace-article group))))
3070
3071 (defun gnus-virtual-group-p (group)
3072   "Say whether GROUP is virtual or not."
3073   (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group)))
3074                         gnus-valid-select-methods)))
3075
3076 (defun gnus-news-group-p (group &optional article)
3077   "Return non-nil if GROUP (and ARTICLE) come from a news server."
3078   (cond ((gnus-member-of-valid 'post group) ;Ordinary news group
3079          t)                             ;is news of course.
3080         ((not (gnus-member-of-valid 'post-mail group)) ;Non-combined.
3081          nil)                           ;must be mail then.
3082         ((vectorp article)              ;Has header info.
3083          (eq (gnus-request-type group (mail-header-id article)) 'news))
3084         ((null article)                 ;Hasn't header info
3085          (eq (gnus-request-type group) 'news)) ;(unknown ==> mail)
3086         ((< article 0)                  ;Virtual message
3087          nil)                           ;we don't know, guess mail.
3088         (t                              ;Has positive number
3089          (eq (gnus-request-type group article) 'news)))) ;use it.
3090
3091 ;; Returns a list of writable groups.
3092 (defun gnus-writable-groups ()
3093   (let ((alist gnus-newsrc-alist)
3094         groups group)
3095     (while (setq group (car (pop alist)))
3096       (unless (gnus-group-read-only-p group)
3097         (push group groups)))
3098     (nreverse groups)))
3099
3100 ;; Check whether to use long file names.
3101 (defun gnus-use-long-file-name (symbol)
3102   ;; The variable has to be set...
3103   (and gnus-use-long-file-name
3104        ;; If it isn't a list, then we return t.
3105        (or (not (listp gnus-use-long-file-name))
3106            ;; If it is a list, and the list contains `symbol', we
3107            ;; return nil.
3108            (not (memq symbol gnus-use-long-file-name)))))
3109
3110 ;; Generate a unique new group name.
3111 (defun gnus-generate-new-group-name (leaf)
3112   (let ((name leaf)
3113         (num 0))
3114     (while (gnus-gethash name gnus-newsrc-hashtb)
3115       (setq name (concat leaf "<" (int-to-string (setq num (1+ num))) ">")))
3116     name))
3117
3118 (defun gnus-ephemeral-group-p (group)
3119   "Say whether GROUP is ephemeral or not."
3120   (gnus-group-get-parameter group 'quit-config t))
3121
3122 (defun gnus-group-quit-config (group)
3123   "Return the quit-config of GROUP."
3124   (gnus-group-get-parameter group 'quit-config t))
3125
3126 (defun gnus-kill-ephemeral-group (group)
3127   "Remove ephemeral GROUP from relevant structures."
3128   (gnus-sethash group nil gnus-newsrc-hashtb))
3129
3130 (defun gnus-simplify-mode-line ()
3131   "Make mode lines a bit simpler."
3132   (setq mode-line-modified (cdr gnus-mode-line-modified))
3133   (when (listp mode-line-format)
3134     (make-local-variable 'mode-line-format)
3135     (setq mode-line-format (copy-sequence mode-line-format))
3136     (when (equal (nth 3 mode-line-format) "   ")
3137       (setcar (nthcdr 3 mode-line-format) " "))))
3138
3139 ;;; Servers and groups.
3140
3141 (defsubst gnus-server-add-address (method)
3142   (let ((method-name (symbol-name (car method))))
3143     (if (and (memq 'address (assoc method-name gnus-valid-select-methods))
3144              (not (assq (intern (concat method-name "-address")) method))
3145              (memq 'physical-address (assq (car method)
3146                                            gnus-valid-select-methods)))
3147         (append method (list (list (intern (concat method-name "-address"))
3148                                    (nth 1 method))))
3149       method)))
3150
3151 (defsubst gnus-server-to-method (server)
3152   "Map virtual server names to select methods."
3153   (or (and server (listp server) server)
3154       (cdr (assoc server gnus-server-method-cache))
3155       (let ((result
3156              (or
3157               ;; Perhaps this is the native server?
3158               (and (equal server "native") gnus-select-method)
3159               ;; It should be in the server alist.
3160               (cdr (assoc server gnus-server-alist))
3161               ;; It could be in the predefined server alist.
3162               (cdr (assoc server gnus-predefined-server-alist))
3163               ;; If not, we look through all the opened server
3164               ;; to see whether we can find it there.
3165               (let ((opened gnus-opened-servers))
3166                 (while (and opened
3167                             (not (equal server (format "%s:%s" (caaar opened)
3168                                                        (cadaar opened)))))
3169                   (pop opened))
3170                 (caar opened))
3171               ;; It could be a named method, search all servers
3172               (let ((servers gnus-secondary-select-methods))
3173                 (while (and servers
3174                             (not (equal server (format "%s:%s" (caar servers)
3175                                                        (cadar servers)))))
3176                   (pop servers))
3177                 (car servers)))))
3178         (push (cons server result) gnus-server-method-cache)
3179         result)))
3180
3181 (defsubst gnus-server-get-method (group method)
3182   ;; Input either a server name, and extended server name, or a
3183   ;; select method, and return a select method.
3184   (cond ((stringp method)
3185          (gnus-server-to-method method))
3186         ((equal method gnus-select-method)
3187          gnus-select-method)
3188         ((and (stringp (car method))
3189               group)
3190          (gnus-server-extend-method group method))
3191         ((and method
3192               (not group)
3193               (equal (cadr method) ""))
3194          method)
3195         (t
3196          (gnus-server-add-address method))))
3197
3198 (defmacro gnus-method-equal (ss1 ss2)
3199   "Say whether two servers are equal."
3200   `(let ((s1 ,ss1)
3201          (s2 ,ss2))
3202      (or (equal s1 s2)
3203          (and (= (length s1) (length s2))
3204               (progn
3205                 (while (and s1 (member (car s1) s2))
3206                   (setq s1 (cdr s1)))
3207                 (null s1))))))
3208
3209 (defun gnus-methods-equal-p (m1 m2)
3210   (let ((m1 (or m1 gnus-select-method))
3211         (m2 (or m2 gnus-select-method)))
3212     (or (equal m1 m2)
3213         (and (eq (car m1) (car m2))
3214              (or (not (memq 'address (assoc (symbol-name (car m1))
3215                                             gnus-valid-select-methods)))
3216                  (equal (nth 1 m1) (nth 1 m2)))))))
3217
3218 (defun gnus-server-equal (m1 m2)
3219   "Say whether two methods are equal."
3220   (let ((m1 (cond ((null m1) gnus-select-method)
3221                   ((stringp m1) (gnus-server-to-method m1))
3222                   (t m1)))
3223         (m2 (cond ((null m2) gnus-select-method)
3224                   ((stringp m2) (gnus-server-to-method m2))
3225                   (t m2))))
3226     (gnus-method-equal m1 m2)))
3227
3228 (defun gnus-servers-using-backend (backend)
3229   "Return a list of known servers using BACKEND."
3230   (let ((opened gnus-opened-servers)
3231         out)
3232     (while opened
3233       (when (eq backend (caaar opened))
3234         (push (caar opened) out))
3235       (pop opened))
3236     out))
3237
3238 (defun gnus-archive-server-wanted-p ()
3239   "Say whether the user wants to use the archive server."
3240   (cond
3241    ((or (not gnus-message-archive-method)
3242         (not gnus-message-archive-group))
3243     nil)
3244    ((and gnus-message-archive-method gnus-message-archive-group)
3245     t)
3246    (t
3247     (let ((active (cadr (assq 'nnfolder-active-file
3248                               gnus-message-archive-method))))
3249       (and active
3250            (file-exists-p active))))))
3251
3252 (defsubst gnus-method-to-server-name (method)
3253   (concat
3254    (format "%s" (car method))
3255    (when (and
3256           (or (assoc (format "%s" (car method))
3257                      (gnus-methods-using 'address))
3258               (gnus-server-equal method gnus-message-archive-method))
3259           (nth 1 method)
3260           (not (string= (nth 1 method) "")))
3261      (concat "+" (nth 1 method)))))
3262
3263 (defsubst gnus-method-to-full-server-name (method)
3264   (format "%s+%s" (car method) (nth 1 method)))
3265
3266 (defun gnus-group-prefixed-name (group method &optional full)
3267   "Return the whole name from GROUP and METHOD.  Call with full set to
3268 get the fully qualified group name (even if the server is native)."
3269   (and (stringp method) (setq method (gnus-server-to-method method)))
3270   (if (or (not method)
3271           (and (not full) (gnus-server-equal method "native"))
3272           (string-match ":" group))
3273       group
3274     (concat (gnus-method-to-server-name method) ":" group)))
3275
3276 (defun gnus-group-guess-prefixed-name (group)
3277   "Guess the whole name from GROUP and METHOD."
3278   (gnus-group-prefixed-name group (gnus-find-method-for-group
3279                                group)))
3280
3281 (defun gnus-group-full-name (group method)
3282   "Return the full name from GROUP and METHOD, even if the method is
3283 native."
3284   (gnus-group-prefixed-name group method t))
3285
3286 (defun gnus-group-guess-full-name (group)
3287   "Guess the full name from GROUP, even if the method is native."
3288   (gnus-group-full-name group (gnus-find-method-for-group group)))
3289
3290 (defun gnus-group-real-prefix (group)
3291   "Return the prefix of the current group name."
3292   (if (string-match "^[^:]+:" group)
3293       (substring group 0 (match-end 0))
3294     ""))
3295
3296 (defun gnus-summary-buffer-name (group)
3297   "Return the summary buffer name of GROUP."
3298   (concat "*Summary " (gnus-group-decoded-name group) "*"))
3299
3300 (defun gnus-group-method (group)
3301   "Return the server or method used for selecting GROUP.
3302 You should probably use `gnus-find-method-for-group' instead."
3303   (let ((prefix (gnus-group-real-prefix group)))
3304     (if (equal prefix "")
3305         gnus-select-method
3306       (let ((servers gnus-opened-servers)
3307             (server "")
3308             backend possible found)
3309         (if (string-match "^[^\\+]+\\+" prefix)
3310             (setq backend (intern (substring prefix 0 (1- (match-end 0))))
3311                   server (substring prefix (match-end 0) (1- (length prefix))))
3312           (setq backend (intern (substring prefix 0 (1- (length prefix))))))
3313         (while servers
3314           (when (eq (caaar servers) backend)
3315             (setq possible (caar servers))
3316             (when (equal (cadaar servers) server)
3317               (setq found (caar servers))))
3318           (pop servers))
3319         (or (car (rassoc found gnus-server-alist))
3320             found
3321             (car (rassoc possible gnus-server-alist))
3322             possible
3323             (list backend server))))))
3324
3325 (defsubst gnus-native-method-p (method)
3326   "Return whether METHOD is the native select method."
3327   (gnus-method-equal method gnus-select-method))
3328
3329 (defsubst gnus-secondary-method-p (method)
3330   "Return whether METHOD is a secondary select method."
3331   (let ((methods gnus-secondary-select-methods)
3332         (gmethod (gnus-server-get-method nil method)))
3333     (while (and methods
3334                 (not (gnus-method-equal
3335                       (gnus-server-get-method nil (car methods))
3336                       gmethod)))
3337       (setq methods (cdr methods)))
3338     methods))
3339
3340 (defun gnus-method-simplify (method)
3341   "Return the shortest uniquely identifying string or method for METHOD."
3342   (cond ((stringp method)
3343          method)
3344         ((gnus-native-method-p method)
3345          nil)
3346         ((gnus-secondary-method-p method)
3347          (format "%s:%s" (nth 0 method) (nth 1 method)))
3348         (t
3349          method)))
3350
3351 (defun gnus-groups-from-server (server)
3352   "Return a list of all groups that are fetched from SERVER."
3353   (let ((alist (cdr gnus-newsrc-alist))
3354         info groups)
3355     (while (setq info (pop alist))
3356       (when (gnus-server-equal (gnus-info-method info) server)
3357         (push (gnus-info-group info) groups)))
3358     (sort groups 'string<)))
3359
3360 (defun gnus-group-foreign-p (group)
3361   "Say whether a group is foreign or not."
3362   (and (not (gnus-group-native-p group))
3363        (not (gnus-group-secondary-p group))))
3364
3365 (defun gnus-group-native-p (group)
3366   "Say whether the group is native or not."
3367   (not (string-match ":" group)))
3368
3369 (defun gnus-group-secondary-p (group)
3370   "Say whether the group is secondary or not."
3371   (gnus-secondary-method-p (gnus-find-method-for-group group)))
3372
3373 (defun gnus-parameters-get-parameter (group)
3374   "Return the group parameters for GROUP from `gnus-parameters'."
3375   (let (params-list)
3376     (dolist (elem gnus-parameters)
3377       (when (string-match (car elem) group)
3378         (setq params-list
3379               (nconc (gnus-expand-group-parameters
3380                       (car elem) (cdr elem) group)
3381                      params-list))))
3382     params-list))
3383
3384 (defun gnus-expand-group-parameter (match value group)
3385   "Use MATCH to expand VALUE in GROUP."
3386   (with-temp-buffer
3387     (insert group)
3388     (goto-char (point-min))
3389     (while (re-search-forward match nil t)
3390       (replace-match value))
3391     (buffer-string)))
3392
3393 (defun gnus-expand-group-parameters (match parameters group)
3394   "Go through PARAMETERS and expand them according to the match data."
3395   (let (new)
3396     (dolist (elem parameters)
3397       (if (and (stringp (cdr elem))
3398                (string-match "\\\\[0-9&]" (cdr elem)))
3399           (push (cons (car elem)
3400                       (gnus-expand-group-parameter match (cdr elem) group))
3401                 new)
3402         (push elem new)))
3403     new))
3404
3405 (defun gnus-group-fast-parameter (group symbol &optional allow-list)
3406   "For GROUP, return the value of SYMBOL.
3407
3408 You should call this in the `gnus-group-buffer' buffer.
3409 The function `gnus-group-find-parameter' will do that for you."
3410   ;; The speed trick:  No cons'ing and quit early.
3411   (let* ((params (funcall gnus-group-get-parameter-function group))
3412          ;; Start easy, check the "real" group parameters.
3413          (simple-results
3414           (gnus-group-parameter-value params symbol allow-list t)))
3415     (if simple-results
3416         ;; Found results; return them.
3417         (car simple-results)
3418       ;; We didn't found it there, try `gnus-parameters'.
3419       (let ((result nil)
3420             (head nil)
3421             (tail gnus-parameters))
3422         ;; A good old-fashioned non-cl loop.
3423         (while tail
3424           (setq head (car tail)
3425                 tail (cdr tail))
3426           ;; The car is regexp matching for matching the group name.
3427           (when (string-match (car head) group)
3428             ;; The cdr is the parameters.
3429             (setq result (gnus-group-parameter-value (cdr head)
3430                                                      symbol allow-list))
3431             (when result
3432               ;; Expand if necessary.
3433               (if (and (stringp result) (string-match "\\\\[0-9&]" result))
3434                   (setq result (gnus-expand-group-parameter (car head)
3435                                                             result group)))
3436               ;; Exit the loop early.
3437               (setq tail nil))))
3438         ;; Done.
3439         result))))
3440
3441 (defun gnus-group-find-parameter (group &optional symbol allow-list)
3442   "Return the group parameters for GROUP.
3443 If SYMBOL, return the value of that symbol in the group parameters.
3444
3445 If you call this function inside a loop, consider using the faster
3446 `gnus-group-fast-parameter' instead."
3447   (save-excursion
3448     (set-buffer gnus-group-buffer)
3449     (if symbol
3450         (gnus-group-fast-parameter group symbol allow-list)
3451       (nconc
3452        (copy-sequence
3453         (funcall gnus-group-get-parameter-function group))
3454        (gnus-parameters-get-parameter group)))))
3455
3456 (defun gnus-group-get-parameter (group &optional symbol allow-list)
3457   "Return the group parameters for GROUP.
3458 If SYMBOL, return the value of that symbol in the group parameters.
3459 Most functions should use `gnus-group-find-parameter', which
3460 also examines the topic parameters."
3461   (let ((params (gnus-info-params (gnus-get-info group))))
3462     (if symbol
3463         (gnus-group-parameter-value params symbol allow-list)
3464       params)))
3465
3466 (defun gnus-group-parameter-value (params symbol &optional
3467                                           allow-list present-p)
3468   "Return the value of SYMBOL in group PARAMS."
3469   ;; We only wish to return group parameters (dotted lists) and
3470   ;; not local variables, which may have the same names.
3471   ;; But first we handle single elements...
3472   (or (car (memq symbol params))
3473       ;; Handle alist.
3474       (let (elem)
3475         (catch 'found
3476           (while (setq elem (pop params))
3477             (when (and (consp elem)
3478                        (eq (car elem) symbol)
3479                        (or allow-list
3480                            (atom (cdr elem))))
3481               (throw 'found (if present-p (list (cdr elem))
3482                               (cdr elem)))))))))
3483
3484 (defun gnus-group-add-parameter (group param)
3485   "Add parameter PARAM to GROUP."
3486   (let ((info (gnus-get-info group)))
3487     (when info
3488       (gnus-group-remove-parameter group (if (consp param) (car param) param))
3489       ;; Cons the new param to the old one and update.
3490       (gnus-group-set-info (cons param (gnus-info-params info))
3491                            group 'params))))
3492
3493 (defun gnus-group-set-parameter (group name value)
3494   "Set parameter NAME to VALUE in GROUP."
3495   (let ((info (gnus-get-info group)))
3496     (when info
3497       (gnus-group-remove-parameter group name)
3498       (let ((old-params (gnus-info-params info))
3499             (new-params (list (cons name value))))
3500         (while old-params
3501           (when (or (not (listp (car old-params)))
3502                     (not (eq (caar old-params) name)))
3503             (setq new-params (append new-params (list (car old-params)))))
3504           (setq old-params (cdr old-params)))
3505         (gnus-group-set-info new-params group 'params)))))
3506
3507 (defun gnus-group-remove-parameter (group name)
3508   "Remove parameter NAME from GROUP."
3509   (let ((info (gnus-get-info group)))
3510     (when info
3511       (let ((params (gnus-info-params info)))
3512         (when params
3513           (setq params (delq name params))
3514           (while (assq name params)
3515             (gnus-pull name params))
3516           (gnus-info-set-params info params))))))
3517
3518 (defun gnus-group-add-score (group &optional score)
3519   "Add SCORE to the GROUP score.
3520 If SCORE is nil, add 1 to the score of GROUP."
3521   (let ((info (gnus-get-info group)))
3522     (when info
3523       (gnus-info-set-score info (+ (gnus-info-score info) (or score 1))))))
3524
3525 (defun gnus-short-group-name (group &optional levels)
3526   "Collapse GROUP name LEVELS.
3527 Select methods are stripped and any remote host name is stripped down to
3528 just the host name."
3529   (let* ((name "")
3530          (foreign "")
3531          (depth 0)
3532          (skip 1)
3533          (levels (or levels
3534                      gnus-group-uncollapsed-levels
3535                      (progn
3536                        (while (string-match "\\." group skip)
3537                          (setq skip (match-end 0)
3538                                depth (+ depth 1)))
3539                        depth))))
3540     ;; Separate foreign select method from group name and collapse.
3541     ;; If method contains a server, collapse to non-domain server name,
3542     ;; otherwise collapse to select method.
3543     (let* ((colon (string-match ":" group))
3544            (server (and colon (substring group 0 colon)))
3545            (plus (and server (string-match "+" server))))
3546       (when server
3547         (if plus
3548             (setq foreign (substring server (+ 1 plus)
3549                                      (string-match "\\." server))
3550                   group (substring group (+ 1 colon)))
3551           (setq foreign server
3552                 group (substring group (+ 1 colon))))
3553         (setq foreign (concat foreign ":")))
3554       ;; Collapse group name leaving LEVELS uncollapsed elements
3555       (let* ((slist (split-string group "/"))
3556              (slen (length slist))
3557              (dlist (split-string group "\\."))
3558              (dlen (length dlist))
3559              glist
3560              glen
3561              gsep
3562              res)
3563         (if (> slen dlen)
3564             (setq glist slist
3565                   glen slen
3566                   gsep "/")
3567           (setq glist dlist
3568                 glen dlen
3569                 gsep "."))
3570         (setq levels (- glen levels))
3571         (dolist (g glist)
3572           (push (if (>= (decf levels) 0)
3573                     (if (zerop (length g))
3574                         ""
3575                       (substring g 0 1))
3576                   g)
3577                 res))
3578         (concat foreign (mapconcat 'identity (nreverse res) gsep))))))
3579
3580 (defun gnus-narrow-to-body ()
3581   "Narrow to the body of an article."
3582   (narrow-to-region
3583    (progn
3584      (goto-char (point-min))
3585      (or (search-forward "\n\n" nil t)
3586          (point-max)))
3587    (point-max)))
3588
3589 \f
3590 ;;;
3591 ;;; Kill file handling.
3592 ;;;
3593
3594 (defun gnus-apply-kill-file ()
3595   "Apply a kill file to the current newsgroup.
3596 Returns the number of articles marked as read."
3597   (if (or (file-exists-p (gnus-newsgroup-kill-file nil))
3598           (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name)))
3599       (gnus-apply-kill-file-internal)
3600     0))
3601
3602 (defun gnus-kill-save-kill-buffer ()
3603   (let ((file (gnus-newsgroup-kill-file gnus-newsgroup-name)))
3604     (when (get-file-buffer file)
3605       (save-excursion
3606         (set-buffer (get-file-buffer file))
3607         (when (buffer-modified-p)
3608           (save-buffer))
3609         (kill-buffer (current-buffer))))))
3610
3611 (defcustom gnus-kill-file-name "KILL"
3612   "Suffix of the kill files."
3613   :group 'gnus-score-kill
3614   :group 'gnus-score-files
3615   :type 'string)
3616
3617 (defun gnus-newsgroup-kill-file (newsgroup)
3618   "Return the name of a kill file name for NEWSGROUP.
3619 If NEWSGROUP is nil, return the global kill file name instead."
3620   (cond
3621    ;; The global KILL file is placed at top of the directory.
3622    ((or (null newsgroup)
3623         (string-equal newsgroup ""))
3624     (expand-file-name gnus-kill-file-name
3625                       gnus-kill-files-directory))
3626    ;; Append ".KILL" to newsgroup name.
3627    ((gnus-use-long-file-name 'not-kill)
3628     (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup)
3629                               "." gnus-kill-file-name)
3630                       gnus-kill-files-directory))
3631    ;; Place "KILL" under the hierarchical directory.
3632    (t
3633     (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
3634                               "/" gnus-kill-file-name)
3635                       gnus-kill-files-directory))))
3636
3637 ;;; Server things.
3638
3639 (defun gnus-member-of-valid (symbol group)
3640   "Find out if GROUP has SYMBOL as part of its \"valid\" spec."
3641   (memq symbol (assoc
3642                 (symbol-name (car (gnus-find-method-for-group group)))
3643                 gnus-valid-select-methods)))
3644
3645 (defun gnus-method-option-p (method option)
3646   "Return non-nil if select METHOD has OPTION as a parameter."
3647   (when (stringp method)
3648     (setq method (gnus-server-to-method method)))
3649   (memq option (assoc (format "%s" (car method))
3650                       gnus-valid-select-methods)))
3651
3652 (defun gnus-similar-server-opened (method)
3653   (let ((opened gnus-opened-servers))
3654     (while (and method opened)
3655       (when (and (equal (cadr method) (cadaar opened))
3656                  (equal (car method) (caaar opened))
3657                  (not (equal method (caar opened))))
3658         (setq method nil))
3659       (pop opened))
3660     (not method)))
3661
3662 (defun gnus-server-extend-method (group method)
3663   ;; This function "extends" a virtual server.  If the server is
3664   ;; "hello", and the select method is ("hello" (my-var "something"))
3665   ;; in the group "alt.alt", this will result in a new virtual server
3666   ;; called "hello+alt.alt".
3667   (if (or (not (inline (gnus-similar-server-opened method)))
3668           (not (cddr method)))
3669       method
3670     `(,(car method) ,(concat (cadr method) "+" group)
3671       (,(intern (format "%s-address" (car method))) ,(cadr method))
3672       ,@(cddr method))))
3673
3674 (defun gnus-server-status (method)
3675   "Return the status of METHOD."
3676   (nth 1 (assoc method gnus-opened-servers)))
3677
3678 (defun gnus-group-name-to-method (group)
3679   "Guess a select method based on GROUP."
3680   (if (string-match ":" group)
3681       (let ((server (substring group 0 (match-beginning 0))))
3682         (if (string-match "\\+" server)
3683             (list (intern (substring server 0 (match-beginning 0)))
3684                   (substring server (match-end 0)))
3685           (list (intern server) "")))
3686     gnus-select-method))
3687
3688 (defun gnus-server-string (server)
3689   "Return a readable string that describes SERVER."
3690   (let* ((server (gnus-server-to-method server))
3691          (address (nth 1 server)))
3692     (if (and address
3693              (not (zerop (length address))))
3694         (format "%s using %s" address (car server))
3695       (format "%s" (car server)))))
3696
3697 (defun gnus-find-method-for-group (group &optional info)
3698   "Find the select method that GROUP uses."
3699   (or gnus-override-method
3700       (and (not group)
3701            gnus-select-method)
3702       (and (not (gnus-group-entry group));; a new group
3703            (gnus-group-name-to-method group))
3704       (let ((info (or info (gnus-get-info group)))
3705             method)
3706         (if (or (not info)
3707                 (not (setq method (gnus-info-method info)))
3708                 (equal method "native"))
3709             gnus-select-method
3710           (setq method
3711                 (cond ((stringp method)
3712                        (inline (gnus-server-to-method method)))
3713                       ((stringp (cadr method))
3714                        (inline (gnus-server-extend-method group method)))
3715                       (t
3716                        method)))
3717           (cond ((equal (cadr method) "")
3718                  method)
3719                 ((null (cadr method))
3720                  (list (car method) ""))
3721                 (t
3722                  (gnus-server-add-address method)))))))
3723
3724 (defun gnus-methods-using (feature)
3725   "Find all methods that have FEATURE."
3726   (let ((valids gnus-valid-select-methods)
3727         outs)
3728     (while valids
3729       (when (memq feature (car valids))
3730         (push (car valids) outs))
3731       (setq valids (cdr valids)))
3732     outs))
3733
3734 (defun gnus-read-group (prompt &optional default)
3735   "Prompt the user for a group name.
3736 Disallow invalid group names."
3737   (let ((prefix "")
3738         group)
3739     (while (not group)
3740       (when (string-match
3741              gnus-invalid-group-regexp
3742              (setq group (read-string (concat prefix prompt)
3743                                       (cons (or default "") 0)
3744                                       'gnus-group-history)))
3745         (setq prefix (format "Invalid group name: \"%s\".  " group)
3746               group nil)))
3747     group))
3748
3749 (defun gnus-read-method (prompt)
3750   "Prompt the user for a method.
3751 Allow completion over sensible values."
3752   (let* ((open-servers
3753           (mapcar (lambda (i) (cons (format "%s:%s" (caar i) (cadar i)) i))
3754                   gnus-opened-servers))
3755          (valid-methods
3756           (let (methods)
3757             (dolist (method gnus-valid-select-methods)
3758               (if (or (memq 'prompt-address method)
3759                       (not (assoc (format "%s:" (car method)) open-servers)))
3760                   (push method methods)))
3761             methods))
3762          (servers
3763           (append valid-methods
3764                   open-servers
3765                   gnus-predefined-server-alist
3766                   gnus-server-alist))
3767          (method
3768           (completing-read
3769            prompt servers
3770            nil t nil 'gnus-method-history)))
3771     (cond
3772      ((equal method "")
3773       (setq method gnus-select-method))
3774      ((assoc method gnus-valid-select-methods)
3775       (let ((address (if (memq 'prompt-address
3776                                (assoc method gnus-valid-select-methods))
3777                          (read-string "Address: ")
3778                        "")))
3779         (or (cadr (assoc (format "%s:%s" method address) open-servers))
3780             (list (intern method) address))))
3781      ((assoc method servers)
3782       method)
3783      (t
3784       (list (intern method) "")))))
3785
3786 ;;; Agent functions
3787
3788 (defun gnus-agent-method-p (method)
3789   "Say whether METHOD is covered by the agent."
3790   (member method gnus-agent-covered-methods))
3791
3792 (defun gnus-online (method)
3793   (not
3794    (if gnus-plugged
3795        (eq (cadr (assoc method gnus-opened-servers)) 'offline)
3796      (gnus-agent-method-p method))))
3797
3798 ;;; User-level commands.
3799
3800 ;;;###autoload
3801 (defun gnus-slave-no-server (&optional arg)
3802   "Read network news as a slave, without connecting to the local server."
3803   (interactive "P")
3804   (gnus-no-server arg t))
3805
3806 ;;;###autoload
3807 (defun gnus-no-server (&optional arg slave)
3808   "Read network news.
3809 If ARG is a positive number, Gnus will use that as the startup
3810 level. If ARG is nil, Gnus will be started at level 2.  If ARG is
3811 non-nil and not a positive number, Gnus will prompt the user for the
3812 name of an NNTP server to use.
3813 As opposed to `gnus', this command will not connect to the local
3814 server."
3815   (interactive "P")
3816   (gnus-no-server-1 arg slave))
3817
3818 ;;;###autoload
3819 (defun gnus-slave (&optional arg)
3820   "Read news as a slave."
3821   (interactive "P")
3822   (gnus arg nil 'slave))
3823
3824 (defcustom gnus-frame-properties nil
3825   "The properties of the frame in which gnus is displayed. Under XEmacs,
3826 the variable `toolbar-news-frame-plist' will be refered instead."
3827   :type '(repeat (cons :format "%v"
3828                        (symbol :tag "Parameter")
3829                        (sexp :tag "Value")))
3830   :group 'gnus)
3831
3832 ;;;###autoload
3833 (defun gnus-other-frame (&optional arg display)
3834   "Pop up a frame to read news.
3835 This will call one of the Gnus commands which is specified by the user
3836 option `gnus-other-frame-function' (default `gnus') with the argument
3837 ARG if Gnus is not running, otherwise just pop up a Gnus frame.  The
3838 optional second argument DISPLAY should be a standard display string
3839 such as \"unix:0\" to specify where to pop up a frame.  If DISPLAY is
3840 omitted or the function `make-frame-on-display' is not available, the
3841 current display is used."
3842   (interactive "P")
3843   (if (fboundp 'make-frame-on-display)
3844       (unless display
3845         (setq display (gnus-frame-or-window-display-name (selected-frame))))
3846     (setq display nil))
3847   (let ((alive (gnus-alive-p)))
3848     (unless (and alive
3849                  (catch 'found
3850                    (walk-windows
3851                     (lambda (window)
3852                       (when (and (or (not display)
3853                                      (equal display
3854                                             (gnus-frame-or-window-display-name
3855                                              window)))
3856                                  (with-current-buffer (window-buffer window)
3857                                    (string-match "\\`gnus-"
3858                                                  (symbol-name major-mode))))
3859                         (gnus-select-frame-set-input-focus
3860                          (setq gnus-other-frame-object (window-frame window)))
3861                         (select-window window)
3862                         (throw 'found t)))
3863                     'ignore t)))
3864       (gnus-select-frame-set-input-focus
3865        (setq gnus-other-frame-object
3866              (if display
3867                  (make-frame-on-display display gnus-other-frame-parameters)
3868                (make-frame gnus-other-frame-parameters))))
3869       (if alive
3870           (switch-to-buffer gnus-group-buffer)
3871         (funcall gnus-other-frame-function arg)
3872         (add-hook 'gnus-exit-gnus-hook
3873                   (lambda nil
3874                     (when (and (frame-live-p gnus-other-frame-object)
3875                                (cdr (frame-list)))
3876                       (delete-frame gnus-other-frame-object))
3877                     (setq gnus-other-frame-object nil)))))))
3878
3879 ;;;###autoload
3880 (defun gnus (&optional arg dont-connect slave)
3881   "Read network news.
3882 If ARG is non-nil and a positive number, Gnus will use that as the
3883 startup level.  If ARG is non-nil and not a positive number, Gnus will
3884 prompt the user for the name of an NNTP server to use."
3885   (interactive "P")
3886   (unless (byte-code-function-p (symbol-function 'gnus))
3887     (message "You should byte-compile Gnus")
3888     (sit-for 2))
3889   (gnus-1 arg dont-connect slave))
3890
3891 ;; Allow redefinition of Gnus functions.
3892
3893 (gnus-ems-redefine)
3894
3895 (product-provide (provide 'gnus) 'gnus-vers)
3896
3897 ;;; gnus.el ends here