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