* gnus.el (gnus-agent-covered-methods): Move here.
[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 (defvar gnus-agent-cache t
1764   "Whether Gnus use agent cache.")
1765
1766 (defcustom gnus-default-charset 'iso-8859-1
1767   "Default charset assumed to be used when viewing non-ASCII characters.
1768 This variable is overridden on a group-to-group basis by the
1769 gnus-group-charset-alist variable and is only used on groups not
1770 covered by that variable."
1771   :type 'symbol
1772   :group 'gnus-charset)
1773
1774 \f
1775 ;;; Internal variables
1776
1777 (defvar gnus-agent-gcc-header "X-Gnus-Agent-Gcc")
1778 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information")
1779 (defvar gnus-draft-meta-information-header "X-Draft-From")
1780 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter)
1781 (defvar gnus-original-article-buffer " *Original Article*")
1782 (defvar gnus-newsgroup-name nil)
1783 (defvar gnus-ephemeral-servers nil)
1784
1785 (defvar gnus-agent nil
1786   "Whether we want to use the Gnus agent or not.")
1787
1788 (defvar gnus-agent-fetching nil
1789   "Whether Gnus agent is in fetching mode.")
1790
1791 (defvar gnus-agent-covered-methods nil)
1792
1793 (defvar gnus-command-method nil
1794   "Dynamically bound variable that says what the current backend is.")
1795
1796 (defvar gnus-current-select-method nil
1797   "The current method for selecting a newsgroup.")
1798
1799 (defvar gnus-tree-buffer "*Tree*"
1800   "Buffer where Gnus thread trees are displayed.")
1801
1802 ;; Dummy variable.
1803 (defvar gnus-use-generic-from nil)
1804
1805 ;; Variable holding the user answers to all method prompts.
1806 (defvar gnus-method-history nil)
1807
1808 ;; Variable holding the user answers to all mail method prompts.
1809 (defvar gnus-mail-method-history nil)
1810
1811 ;; Variable holding the user answers to all group prompts.
1812 (defvar gnus-group-history nil)
1813
1814 (defvar gnus-server-alist nil
1815   "List of available servers.")
1816
1817 (defcustom gnus-cache-directory
1818   (nnheader-concat gnus-directory "cache/")
1819   "*The directory where cached articles will be stored."
1820   :group 'gnus-cache
1821   :type 'directory)
1822
1823 (defvar gnus-predefined-server-alist
1824   `(("cache"
1825      nnspool "cache"
1826      (nnspool-spool-directory ,gnus-cache-directory)
1827      (nnspool-nov-directory ,gnus-cache-directory)
1828      (nnspool-active-file
1829       ,(nnheader-concat gnus-cache-directory "active"))))
1830   "List of predefined (convenience) servers.")
1831
1832 (defvar gnus-topic-indentation "") ;; Obsolete variable.
1833
1834 (defconst gnus-article-mark-lists
1835   '((marked . tick) (replied . reply)
1836     (expirable . expire) (killed . killed)
1837     (bookmarks . bookmark) (dormant . dormant)
1838     (scored . score) (saved . save)
1839     (cached . cache) (downloadable . download)
1840     (unsendable . unsend) (forwarded . forward)
1841     (recent . recent) (seen . seen)))
1842
1843 (defconst gnus-article-special-mark-lists
1844   '((seen range)
1845     (killed range)
1846     (bookmark tuple)
1847     (score tuple)))
1848
1849 ;; Propagate flags to server, with the following exceptions:
1850 ;; `seen' is private to each gnus installation
1851 ;; `cache' is a internal gnus flag for each gnus installation
1852 ;; `download' is a agent flag private to each gnus installation
1853 ;; `unsend' are for nndraft groups only
1854 ;; `score' is not a proper mark
1855 (defconst gnus-article-unpropagated-mark-lists
1856   '(seen cache download unsend score)
1857   "Marks that shouldn't be propagated to backends.
1858 Typical marks are those that make no sense in a standalone backend,
1859 such as a mark that says whether an article is stored in the cache
1860 (which doesn't make sense in a standalone backend).")
1861
1862 (defvar gnus-headers-retrieved-by nil)
1863 (defvar gnus-article-reply nil)
1864 (defvar gnus-override-method nil)
1865 (defvar gnus-article-check-size nil)
1866 (defvar gnus-opened-servers nil)
1867
1868 (defvar gnus-current-kill-article nil)
1869
1870 (defvar gnus-have-read-active-file nil)
1871
1872 (defconst gnus-maintainer
1873   "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)"
1874   "The mail address of the Gnus maintainers.")
1875
1876 (defvar gnus-info-nodes
1877   '((gnus-group-mode "(gnus)Group Buffer")
1878     (gnus-summary-mode "(gnus)Summary Buffer")
1879     (gnus-article-mode "(gnus)Article Buffer")
1880     (gnus-server-mode "(gnus)Server Buffer")
1881     (gnus-browse-mode "(gnus)Browse Foreign Server")
1882     (gnus-tree-mode "(gnus)Tree Display"))
1883   "Alist of major modes and related Info nodes.")
1884
1885 (defvar gnus-group-buffer "*Group*")
1886 (defvar gnus-summary-buffer "*Summary*")
1887 (defvar gnus-article-buffer "*Article*")
1888 (defvar gnus-server-buffer "*Server*")
1889
1890 (defvar gnus-slave nil
1891   "Whether this Gnus is a slave or not.")
1892
1893 (defvar gnus-batch-mode nil
1894   "Whether this Gnus is running in batch mode or not.")
1895
1896 (defvar gnus-variable-list
1897   '(gnus-newsrc-options gnus-newsrc-options-n
1898                         gnus-newsrc-last-checked-date
1899                         gnus-newsrc-alist gnus-server-alist
1900                         gnus-killed-list gnus-zombie-list
1901                         gnus-topic-topology gnus-topic-alist
1902                         gnus-format-specs)
1903   "Gnus variables saved in the quick startup file.")
1904
1905 (defvar gnus-newsrc-alist nil
1906   "Assoc list of read articles.
1907 gnus-newsrc-hashtb should be kept so that both hold the same information.")
1908
1909 (defvar gnus-newsrc-hashtb nil
1910   "Hashtable of gnus-newsrc-alist.")
1911
1912 (defvar gnus-killed-list nil
1913   "List of killed newsgroups.")
1914
1915 (defvar gnus-killed-hashtb nil
1916   "Hash table equivalent of gnus-killed-list.")
1917
1918 (defvar gnus-zombie-list nil
1919   "List of almost dead newsgroups.")
1920
1921 (defvar gnus-description-hashtb nil
1922   "Descriptions of newsgroups.")
1923
1924 (defvar gnus-list-of-killed-groups nil
1925   "List of newsgroups that have recently been killed by the user.")
1926
1927 (defvar gnus-active-hashtb nil
1928   "Hashtable of active articles.")
1929
1930 (defvar gnus-moderated-hashtb nil
1931   "Hashtable of moderated newsgroups.")
1932
1933 ;; Save window configuration.
1934 (defvar gnus-prev-winconf nil)
1935
1936 (defvar gnus-reffed-article-number nil)
1937
1938 ;;; Let the byte-compiler know that we know about this variable.
1939 (defvar rmail-default-rmail-file)
1940
1941 (defvar gnus-dead-summary nil)
1942
1943 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$"
1944   "Regexp matching invalid groups.")
1945
1946 ;;; End of variables.
1947
1948 ;; Define some autoload functions Gnus might use.
1949 (eval-and-compile
1950
1951   ;; This little mapcar goes through the list below and marks the
1952   ;; symbols in question as autoloaded functions.
1953   (mapcar
1954    (lambda (package)
1955      (let ((interactive (nth 1 (memq ':interactive package))))
1956        (mapcar
1957         (lambda (function)
1958           (let (keymap)
1959             (when (consp function)
1960               (setq keymap (car (memq 'keymap function)))
1961               (setq function (car function)))
1962             (unless (fboundp function)
1963               (autoload function (car package) nil interactive keymap))))
1964         (if (eq (nth 1 package) ':interactive)
1965             (nthcdr 3 package)
1966           (cdr package)))))
1967    '(("info" :interactive t Info-goto-node)
1968      ("pp" pp-to-string)
1969      ("qp" quoted-printable-decode-region quoted-printable-decode-string)
1970      ("ps-print" ps-print-preprint)
1971      ("message" :interactive t
1972       message-send-and-exit message-yank-original)
1973      ("babel" babel-as-string)
1974      ("nnmail" nnmail-split-fancy nnmail-article-group)
1975      ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers)
1976      ("rmailout" rmail-output rmail-output-to-rmail-file)
1977      ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages
1978       rmail-show-message rmail-summary-exists
1979       rmail-select-summary rmail-update-summary)
1980      ("gnus-audio" :interactive t gnus-audio-play)
1981      ("gnus-xmas" gnus-xmas-splash)
1982      ("gnus-soup" :interactive t
1983       gnus-group-brew-soup gnus-brew-soup gnus-soup-add-article
1984       gnus-soup-send-replies gnus-soup-save-areas gnus-soup-pack-packet)
1985      ("nnsoup" nnsoup-pack-replies)
1986      ("score-mode" :interactive t gnus-score-mode)
1987      ("gnus-mh" gnus-summary-save-article-folder
1988       gnus-Folder-save-name gnus-folder-save-name)
1989      ("gnus-mh" :interactive t gnus-summary-save-in-folder)
1990      ("gnus-demon" gnus-demon-add-nocem gnus-demon-add-scanmail
1991       gnus-demon-add-rescan gnus-demon-add-scan-timestamps
1992       gnus-demon-add-disconnection gnus-demon-add-handler
1993       gnus-demon-remove-handler)
1994      ("gnus-demon" :interactive t
1995       gnus-demon-init gnus-demon-cancel)
1996      ("gnus-fun" gnus-convert-gray-x-face-to-xpm gnus-display-x-face-in-from
1997       gnus-convert-image-to-gray-x-face)
1998      ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree
1999       gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer)
2000      ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close
2001       gnus-nocem-unwanted-article-p)
2002      ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info
2003       gnus-server-server-name)
2004      ("gnus-srvr" gnus-browse-foreign-server)
2005      ("gnus-cite" :interactive t
2006       gnus-article-highlight-citation gnus-article-hide-citation-maybe
2007       gnus-article-hide-citation gnus-article-fill-cited-article
2008       gnus-article-hide-citation-in-followups)
2009      ("gnus-kill" gnus-kill gnus-apply-kill-file-internal
2010       gnus-kill-file-edit-file gnus-kill-file-raise-followups-to-author
2011       gnus-execute gnus-expunge gnus-batch-kill gnus-batch-score)
2012      ("gnus-cache" gnus-cache-possibly-enter-article gnus-cache-save-buffers
2013       gnus-cache-possibly-remove-articles gnus-cache-request-article
2014       gnus-cache-retrieve-headers gnus-cache-possibly-alter-active
2015       gnus-cache-enter-remove-article gnus-cached-article-p
2016       gnus-cache-open gnus-cache-close gnus-cache-update-article
2017       gnus-cache-articles-in-group)
2018      ("gnus-cache" :interactive t gnus-jog-cache gnus-cache-enter-article
2019       gnus-cache-remove-article gnus-summary-insert-cached-articles)
2020      ("gnus-score" :interactive t
2021       gnus-summary-increase-score gnus-summary-set-score
2022       gnus-summary-raise-thread gnus-summary-raise-same-subject
2023       gnus-summary-raise-score gnus-summary-raise-same-subject-and-select
2024       gnus-summary-lower-thread gnus-summary-lower-same-subject
2025       gnus-summary-lower-score gnus-summary-lower-same-subject-and-select
2026       gnus-summary-current-score gnus-score-delta-default
2027       gnus-score-flush-cache gnus-score-close
2028       gnus-possibly-score-headers gnus-score-followup-article
2029       gnus-score-followup-thread)
2030      ("gnus-score"
2031       (gnus-summary-score-map keymap) gnus-score-save gnus-score-headers
2032       gnus-current-score-file-nondirectory gnus-score-adaptive
2033       gnus-score-find-trace gnus-score-file-name)
2034      ("gnus-cus" :interactive t gnus-group-customize gnus-score-customize)
2035      ("gnus-topic" :interactive t gnus-topic-mode)
2036      ("gnus-topic" gnus-topic-remove-group gnus-topic-set-parameters
2037       gnus-subscribe-topics)
2038      ("gnus-salt" :interactive t gnus-pick-mode gnus-binary-mode)
2039      ("gnus-uu" (gnus-uu-extract-map keymap) (gnus-uu-mark-map keymap))
2040      ("gnus-uu" :interactive t
2041       gnus-uu-digest-mail-forward gnus-uu-digest-post-forward
2042       gnus-uu-mark-series gnus-uu-mark-region gnus-uu-mark-buffer
2043       gnus-uu-mark-by-regexp gnus-uu-mark-all
2044       gnus-uu-mark-sparse gnus-uu-mark-thread gnus-uu-decode-uu
2045       gnus-uu-decode-uu-and-save gnus-uu-decode-unshar
2046       gnus-uu-decode-unshar-and-save gnus-uu-decode-save
2047       gnus-uu-decode-binhex gnus-uu-decode-uu-view
2048       gnus-uu-decode-uu-and-save-view gnus-uu-decode-unshar-view
2049       gnus-uu-decode-unshar-and-save-view gnus-uu-decode-save-view
2050       gnus-uu-decode-binhex-view gnus-uu-unmark-thread
2051       gnus-uu-mark-over gnus-uu-post-news)
2052      ("gnus-uu" gnus-uu-delete-work-dir gnus-uu-unmark-thread)
2053      ("gnus-msg" (gnus-summary-send-map keymap)
2054       gnus-article-mail gnus-copy-article-buffer gnus-extended-version)
2055      ("gnus-msg" :interactive t
2056       gnus-group-post-news gnus-group-mail gnus-group-news
2057       gnus-summary-post-news gnus-summary-news-other-window
2058       gnus-summary-followup gnus-summary-followup-with-original
2059       gnus-summary-cancel-article gnus-summary-supersede-article
2060       gnus-post-news gnus-summary-reply gnus-summary-reply-with-original
2061       gnus-summary-mail-forward gnus-summary-mail-other-window
2062       gnus-summary-resend-message gnus-summary-resend-bounced-mail
2063       gnus-summary-wide-reply gnus-summary-followup-to-mail
2064       gnus-summary-followup-to-mail-with-original gnus-bug
2065       gnus-summary-wide-reply-with-original
2066       gnus-summary-post-forward gnus-summary-wide-reply-with-original
2067       gnus-summary-post-forward)
2068      ("gnus-picon" :interactive t gnus-treat-from-picon)
2069      ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p
2070       gnus-grouplens-mode)
2071      ("smiley" :interactive t smiley-region)
2072      ("gnus-win" gnus-configure-windows gnus-add-configuration)
2073      ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group
2074       gnus-list-of-unread-articles gnus-list-of-read-articles
2075       gnus-offer-save-summaries gnus-make-thread-indent-array
2076       gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject
2077       gnus-summary-skip-intangible gnus-summary-article-number
2078       gnus-data-header gnus-data-find)
2079      ("gnus-group" gnus-group-insert-group-line gnus-group-quit
2080       gnus-group-list-groups gnus-group-first-unread-group
2081       gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc
2082       gnus-group-setup-buffer gnus-group-get-new-news
2083       gnus-group-make-help-group gnus-group-update-group
2084       gnus-group-iterate gnus-group-group-name)
2085      ("gnus-bcklg" gnus-backlog-request-article gnus-backlog-enter-article
2086       gnus-backlog-remove-article)
2087      ("gnus-art" gnus-article-read-summary-keys gnus-article-save
2088       gnus-article-prepare gnus-article-set-window-start
2089       gnus-article-next-page gnus-article-prev-page
2090       gnus-request-article-this-buffer gnus-article-mode
2091       gnus-article-setup-buffer gnus-narrow-to-page
2092       gnus-article-delete-invisible-text gnus-treat-article)
2093      ("gnus-art" :interactive t
2094       gnus-article-hide-headers gnus-article-hide-boring-headers
2095       gnus-article-treat-overstrike
2096       gnus-article-remove-cr gnus-article-remove-trailing-blank-lines
2097       gnus-article-display-x-face gnus-article-de-quoted-unreadable
2098       gnus-article-de-base64-unreadable
2099       gnus-article-decode-HZ
2100       gnus-article-wash-html
2101       gnus-article-hide-pgp
2102       gnus-article-hide-pem gnus-article-hide-signature
2103       gnus-article-strip-leading-blank-lines gnus-article-date-local
2104       gnus-article-date-original gnus-article-date-lapsed
2105       gnus-article-show-all-headers
2106       gnus-article-edit-mode gnus-article-edit-article
2107       gnus-article-edit-done gnus-article-decode-encoded-words
2108       gnus-start-date-timer gnus-stop-date-timer
2109       gnus-mime-view-all-parts)
2110      ("gnus-int" gnus-request-type)
2111      ("gnus-start" gnus-newsrc-parse-options gnus-1 gnus-no-server-1
2112       gnus-dribble-enter gnus-read-init-file gnus-dribble-touch)
2113      ("gnus-dup" gnus-dup-suppress-articles gnus-dup-unsuppress-article
2114       gnus-dup-enter-articles)
2115      ("gnus-range" gnus-copy-sequence)
2116      ("gnus-eform" gnus-edit-form)
2117      ("gnus-move" :interactive t
2118       gnus-group-move-group-to-server gnus-change-server)
2119      ("gnus-logic" gnus-score-advanced)
2120      ("gnus-undo" gnus-undo-mode gnus-undo-register)
2121      ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next
2122       gnus-async-prefetch-article gnus-async-prefetch-remove-group
2123       gnus-async-halt-prefetch)
2124      ("gnus-agent" gnus-open-agent gnus-agent-get-function
2125       gnus-agent-save-groups gnus-agent-save-active gnus-agent-method-p
2126       gnus-agent-get-undownloaded-list gnus-agent-fetch-session
2127       gnus-summary-set-agent-mark gnus-agent-save-group-info
2128       gnus-agent-request-article gnus-agent-retrieve-headers)
2129      ("gnus-agent" :interactive t
2130       gnus-unplugged gnus-agentize gnus-agent-batch)
2131      ("gnus-vm" :interactive t gnus-summary-save-in-vm
2132       gnus-summary-save-article-vm)
2133      ("compface" uncompface)
2134      ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-queue)
2135      ("gnus-mlspl" gnus-group-split gnus-group-split-fancy)
2136      ("gnus-mlspl" :interactive t gnus-group-split-setup
2137       gnus-group-split-update))))
2138
2139 ;;; gnus-sum.el thingies
2140
2141
2142 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n"
2143   "*The format specification of the lines in the summary buffer.
2144
2145 It works along the same lines as a normal formatting string,
2146 with some simple extensions.
2147
2148 %N   Article number, left padded with spaces (string)
2149 %S   Subject (string)
2150 %s   Subject if it is at the root of a thread, and \"\" otherwise (string)
2151 %n   Name of the poster (string)
2152 %a   Extracted name of the poster (string)
2153 %A   Extracted address of the poster (string)
2154 %F   Contents of the From: header (string)
2155 %f   Contents of the From: or To: headers (string)
2156 %x   Contents of the Xref: header (string)
2157 %D   Date of the article (string)
2158 %d   Date of the article (string) in DD-MMM format
2159 %o   Date of the article (string) in YYYYMMDD`T'HHMMSS format
2160 %M   Message-id of the article (string)
2161 %r   References of the article (string)
2162 %c   Number of characters in the article (integer)
2163 %L   Number of lines in the article (integer)
2164 %I   Indentation based on thread level (a string of spaces)
2165 %B   A complex trn-style thread tree (string)
2166      The variables `gnus-sum-thread-*' can be used for customization.
2167 %T   A string with two possible values: 80 spaces if the article
2168      is on thread level two or larger and 0 spaces on level one
2169 %R   \"A\" if this article has been replied to, \" \" otherwise (character)
2170 %U   Status of this article (character, \"R\", \"K\", \"-\" or \" \")
2171 %[   Opening bracket (character, \"[\" or \"<\")
2172 %]   Closing bracket (character, \"]\" or \">\")
2173 %>   Spaces of length thread-level (string)
2174 %<   Spaces of length (- 20 thread-level) (string)
2175 %i   Article score (number)
2176 %z   Article zcore (character)
2177 %t   Number of articles under the current thread (number).
2178 %e   Whether the thread is empty or not (character).
2179 %l   GroupLens score (string).
2180 %V   Total thread score (number).
2181 %P   The line number (number).
2182 %O   Download mark (character).
2183 %u   User defined specifier.  The next character in the format string should
2184      be a letter.  Gnus will call the function gnus-user-format-function-X,
2185      where X is the letter following %u.  The function will be passed the
2186      current header as argument.  The function should return a string, which
2187      will be inserted into the summary just like information from any other
2188      summary specifier.
2189
2190 The %U (status), %R (replied) and %z (zcore) specs have to be handled
2191 with care.  For reasons of efficiency, Gnus will compute what column
2192 these characters will end up in, and \"hard-code\" that.  This means that
2193 it is invalid to have these specs after a variable-length spec.  Well,
2194 you might not be arrested, but your summary buffer will look strange,
2195 which is bad enough.
2196
2197 The smart choice is to have these specs as far to the left as
2198 possible.
2199
2200 This restriction may disappear in later versions of Gnus.
2201
2202 General format specifiers can also be used.  
2203 See (gnus)Formatting Variables."
2204   :link '(custom-manual "(gnus)Formatting Variables")
2205   :type 'string
2206   :group 'gnus-summary-format)
2207
2208 ;;;
2209 ;;; Skeleton keymaps
2210 ;;;
2211
2212 (defun gnus-suppress-keymap (keymap)
2213   (suppress-keymap keymap)
2214   (let ((keys `([backspace] [delete] "\177" "\M-u"))) ;gnus-mouse-2
2215     (while keys
2216       (define-key keymap (pop keys) 'undefined))))
2217
2218 (defvar gnus-article-mode-map
2219   (let ((keymap (make-sparse-keymap)))
2220     (gnus-suppress-keymap keymap)
2221     keymap))
2222 (defvar gnus-summary-mode-map
2223   (let ((keymap (make-keymap)))
2224     (gnus-suppress-keymap keymap)
2225     keymap))
2226 (defvar gnus-group-mode-map
2227   (let ((keymap (make-keymap)))
2228     (gnus-suppress-keymap keymap)
2229     keymap))
2230
2231 \f
2232
2233 ;; Fix by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
2234 ;; If you want the cursor to go somewhere else, set these two
2235 ;; functions in some startup hook to whatever you want.
2236 (defalias 'gnus-summary-position-point 'gnus-goto-colon)
2237 (defalias 'gnus-group-position-point 'gnus-goto-colon)
2238
2239 ;;; Various macros and substs.
2240
2241 (defun gnus-header-from (header)
2242   (mail-header-from header))
2243
2244 (defmacro gnus-gethash (string hashtable)
2245   "Get hash value of STRING in HASHTABLE."
2246   `(symbol-value (intern-soft ,string ,hashtable)))
2247
2248 (defmacro gnus-sethash (string value hashtable)
2249   "Set hash value.  Arguments are STRING, VALUE, and HASHTABLE."
2250   `(set (intern ,string ,hashtable) ,value))
2251 (put 'gnus-sethash 'edebug-form-spec '(form form form))
2252
2253 (defmacro gnus-group-unread (group)
2254   "Get the currently computed number of unread articles in GROUP."
2255   `(car (gnus-gethash ,group gnus-newsrc-hashtb)))
2256
2257 (defmacro gnus-group-entry (group)
2258   "Get the newsrc entry for GROUP."
2259   `(gnus-gethash ,group gnus-newsrc-hashtb))
2260
2261 (defmacro gnus-active (group)
2262   "Get active info on GROUP."
2263   `(gnus-gethash ,group gnus-active-hashtb))
2264
2265 (defmacro gnus-set-active (group active)
2266   "Set GROUP's active info."
2267   `(gnus-sethash ,group ,active gnus-active-hashtb))
2268
2269 ;; Info access macros.
2270
2271 (defmacro gnus-info-group (info)
2272   `(nth 0 ,info))
2273 (defmacro gnus-info-rank (info)
2274   `(nth 1 ,info))
2275 (defmacro gnus-info-read (info)
2276   `(nth 2 ,info))
2277 (defmacro gnus-info-marks (info)
2278   `(nth 3 ,info))
2279 (defmacro gnus-info-method (info)
2280   `(nth 4 ,info))
2281 (defmacro gnus-info-params (info)
2282   `(nth 5 ,info))
2283
2284 (defmacro gnus-info-level (info)
2285   `(let ((rank (gnus-info-rank ,info)))
2286      (if (consp rank)
2287          (car rank)
2288        rank)))
2289 (defmacro gnus-info-score (info)
2290   `(let ((rank (gnus-info-rank ,info)))
2291      (or (and (consp rank) (cdr rank)) 0)))
2292
2293 (defmacro gnus-info-set-group (info group)
2294   `(setcar ,info ,group))
2295 (defmacro gnus-info-set-rank (info rank)
2296   `(setcar (nthcdr 1 ,info) ,rank))
2297 (defmacro gnus-info-set-read (info read)
2298   `(setcar (nthcdr 2 ,info) ,read))
2299 (defmacro gnus-info-set-marks (info marks &optional extend)
2300   (if extend
2301       `(gnus-info-set-entry ,info ,marks 3)
2302     `(setcar (nthcdr 3 ,info) ,marks)))
2303 (defmacro gnus-info-set-method (info method &optional extend)
2304   (if extend
2305       `(gnus-info-set-entry ,info ,method 4)
2306     `(setcar (nthcdr 4 ,info) ,method)))
2307 (defmacro gnus-info-set-params (info params &optional extend)
2308   (if extend
2309       `(gnus-info-set-entry ,info ,params 5)
2310     `(setcar (nthcdr 5 ,info) ,params)))
2311
2312 (defun gnus-info-set-entry (info entry number)
2313   ;; Extend the info until we have enough elements.
2314   (while (<= (length info) number)
2315     (nconc info (list nil)))
2316   ;; Set the entry.
2317   (setcar (nthcdr number info) entry))
2318
2319 (defmacro gnus-info-set-level (info level)
2320   `(let ((rank (cdr ,info)))
2321      (if (consp (car rank))
2322          (setcar (car rank) ,level)
2323        (setcar rank ,level))))
2324 (defmacro gnus-info-set-score (info score)
2325   `(let ((rank (cdr ,info)))
2326      (if (consp (car rank))
2327          (setcdr (car rank) ,score)
2328        (setcar rank (cons (car rank) ,score)))))
2329
2330 (defmacro gnus-get-info (group)
2331   `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb)))
2332
2333 ;;; Load the compatability functions.
2334
2335 (require 'gnus-ems)
2336
2337 \f
2338 ;;;
2339 ;;; Shutdown
2340 ;;;
2341
2342 (defvar gnus-shutdown-alist nil)
2343
2344 (defun gnus-add-shutdown (function &rest symbols)
2345   "Run FUNCTION whenever one of SYMBOLS is shut down."
2346   (push (cons function symbols) gnus-shutdown-alist))
2347
2348 (defun gnus-shutdown (symbol)
2349   "Shut down everything that waits for SYMBOL."
2350   (let ((alist gnus-shutdown-alist)
2351         entry)
2352     (while (setq entry (pop alist))
2353       (when (memq symbol (cdr entry))
2354         (funcall (car entry))))))
2355
2356 \f
2357 ;;;
2358 ;;; Gnus Utility Functions
2359 ;;;
2360
2361 (defun gnus-find-subscribed-addresses ()
2362   "Return a regexp matching the addresses of all subscribed mail groups.
2363 It consists of the `to-address' or `to-list' parameter of all groups
2364 with a `subscribed' parameter."
2365   (let (group address addresses)
2366     (dolist (entry (cdr gnus-newsrc-alist))
2367       (setq group (car entry))
2368       (when (gnus-group-find-parameter group 'subscribed)
2369         (setq address (or (gnus-group-fast-parameter group 'to-address)
2370                           (gnus-group-fast-parameter group 'to-list)))
2371         (when address
2372           (push address addresses))))
2373     (list (mapconcat 'regexp-quote addresses "\\|"))))
2374
2375 (defmacro gnus-string-or (&rest strings)
2376   "Return the first element of STRINGS that is a non-blank string.
2377 STRINGS will be evaluated in normal `or' order."
2378   `(gnus-string-or-1 ',strings))
2379
2380 (defun gnus-string-or-1 (strings)
2381   (let (string)
2382     (while strings
2383       (setq string (eval (pop strings)))
2384       (if (string-match "^[ \t]*$" string)
2385           (setq string nil)
2386         (setq strings nil)))
2387     string))
2388
2389 (defun gnus-version (&optional arg)
2390   "Version number of this version of Gnus.
2391 If ARG, insert string at point."
2392   (interactive "P")
2393   (if arg
2394       (insert (message gnus-version))
2395     (message gnus-version)))
2396
2397 (defun gnus-continuum-version (&optional version)
2398   "Return VERSION as a floating point number."
2399   (interactive)
2400   (unless version
2401     (setq version gnus-version))
2402   (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version)
2403             (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version))
2404     (let ((alpha (and (match-beginning 1) (match-string 1 version)))
2405           (number (match-string 2 version))
2406           major minor least)
2407       (unless (string-match
2408                "\\([0-9]\\)\\.\\([0-9]+\\)\\.?\\([0-9]+\\)?" number)
2409         (error "Invalid version string: %s" version))
2410       (setq major (string-to-number (match-string 1 number))
2411             minor (string-to-number (match-string 2 number))
2412             least (if (match-beginning 3)
2413                       (string-to-number (match-string 3 number))
2414                     0))
2415       (string-to-number
2416        (if (zerop major)
2417              (format "%s00%02d%02d"
2418                      (if (member alpha '("(ding)" "d"))
2419                          "4.99"
2420                        (+ 5 (* 0.02
2421                                (abs
2422                                 (- (mm-char-int (aref (downcase alpha) 0))
2423                                    (mm-char-int ?t))))
2424                           -0.01))
2425                      minor least)
2426          (format "%d.%02d%02d" major minor least))))))
2427
2428 (defun gnus-info-find-node (&optional nodename)
2429   "Find Info documentation of Gnus."
2430   (interactive)
2431   ;; Enlarge info window if needed.
2432   (let (gnus-info-buffer)
2433     (Info-goto-node (or nodename (cadr (assq major-mode gnus-info-nodes))))
2434     (setq gnus-info-buffer (current-buffer))
2435     (gnus-configure-windows 'info)))
2436
2437 ;;;
2438 ;;; gnus-interactive
2439 ;;;
2440
2441 (defvar gnus-current-prefix-symbol nil
2442   "Current prefix symbol.")
2443
2444 (defvar gnus-current-prefix-symbols nil
2445   "List of current prefix symbols.")
2446
2447 (defun gnus-interactive (string &optional params)
2448   "Return a list that can be fed to `interactive'.
2449 See `interactive' for full documentation.
2450
2451 Adds the following specs:
2452
2453 y -- The current symbolic prefix.
2454 Y -- A list of the current symbolic prefix(es).
2455 A -- Article number.
2456 H -- Article header.
2457 g -- Group name."
2458   (let ((i 0)
2459         out c prompt)
2460     (while (< i (length string))
2461       (string-match ".\\([^\n]*\\)\n?" string i)
2462       (setq c (aref string i))
2463       (when (match-end 1)
2464         (setq prompt (match-string 1 string)))
2465       (setq i (match-end 0))
2466       ;; We basically emulate just about everything that
2467       ;; `interactive' does, but add the specs listed above.
2468       (push
2469        (cond
2470         ((= c ?a)
2471          (completing-read prompt obarray 'fboundp t))
2472         ((= c ?b)
2473          (read-buffer prompt (current-buffer) t))
2474         ((= c ?B)
2475          (read-buffer prompt (other-buffer (current-buffer))))
2476         ((= c ?c)
2477          (read-char))
2478         ((= c ?C)
2479          (completing-read prompt obarray 'commandp t))
2480         ((= c ?d)
2481          (point))
2482         ((= c ?D)
2483          (read-file-name prompt nil default-directory 'lambda))
2484         ((= c ?f)
2485          (read-file-name prompt nil nil 'lambda))
2486         ((= c ?F)
2487          (read-file-name prompt))
2488         ((= c ?k)
2489          (read-key-sequence prompt))
2490         ((= c ?K)
2491          (error "Not implemented spec"))
2492         ((= c ?e)
2493          (error "Not implemented spec"))
2494         ((= c ?m)
2495          (mark))
2496         ((= c ?N)
2497          (error "Not implemented spec"))
2498         ((= c ?n)
2499          (string-to-number (read-from-minibuffer prompt)))
2500         ((= c ?p)
2501          (prefix-numeric-value current-prefix-arg))
2502         ((= c ?P)
2503          current-prefix-arg)
2504         ((= c ?r)
2505          'gnus-prefix-nil)
2506         ((= c ?s)
2507          (read-string prompt))
2508         ((= c ?S)
2509          (intern (read-string prompt)))
2510         ((= c ?v)
2511          (read-variable prompt))
2512         ((= c ?x)
2513          (read-minibuffer prompt))
2514         ((= c ?x)
2515          (eval-minibuffer prompt))
2516         ;; And here the new specs come.
2517         ((= c ?y)
2518          gnus-current-prefix-symbol)
2519         ((= c ?Y)
2520          gnus-current-prefix-symbols)
2521         ((= c ?g)
2522          (gnus-group-group-name))
2523         ((= c ?A)
2524          (gnus-summary-skip-intangible)
2525          (or (get-text-property (point) 'gnus-number)
2526              (gnus-summary-last-subject)))
2527         ((= c ?H)
2528          (gnus-data-header (gnus-data-find (gnus-summary-article-number))))
2529         (t
2530          (error "Non-implemented spec")))
2531        out)
2532       (cond
2533        ((= c ?r)
2534         (push (if (< (point) (mark)) (point) (mark)) out)
2535         (push (if (> (point) (mark)) (point) (mark)) out))))
2536     (setq out (delq 'gnus-prefix-nil out))
2537     (nreverse out)))
2538
2539 (defun gnus-symbolic-argument (&optional arg)
2540   "Read a symbolic argument and a command, and then execute command."
2541   (interactive "P")
2542   (let* ((in-command (this-command-keys))
2543          (command in-command)
2544          gnus-current-prefix-symbols
2545          gnus-current-prefix-symbol
2546          syms)
2547     (while (equal in-command command)
2548       (message "%s-" (key-description (this-command-keys)))
2549       (push (intern (char-to-string (read-char))) syms)
2550       (setq command (read-key-sequence nil t)))
2551     (setq gnus-current-prefix-symbols (nreverse syms)
2552           gnus-current-prefix-symbol (car gnus-current-prefix-symbols))
2553     (call-interactively (key-binding command t))))
2554
2555 ;;; More various functions.
2556
2557 (defsubst gnus-check-backend-function (func group)
2558   "Check whether GROUP supports function FUNC.
2559 GROUP can either be a string (a group name) or a select method."
2560   (ignore-errors
2561     (let ((method (if (stringp group)
2562                       (car (gnus-find-method-for-group group))
2563                     group)))
2564       (unless (featurep method)
2565         (require method))
2566       (fboundp (intern (format "%s-%s" method func))))))
2567
2568 (defun gnus-group-read-only-p (&optional group)
2569   "Check whether GROUP supports editing or not.
2570 If GROUP is nil, `gnus-newsgroup-name' will be checked instead.  Note
2571 that that variable is buffer-local to the summary buffers."
2572   (let ((group (or group gnus-newsgroup-name)))
2573     (not (gnus-check-backend-function 'request-replace-article group))))
2574
2575 (defun gnus-virtual-group-p (group)
2576   "Say whether GROUP is virtual or not."
2577   (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group)))
2578                         gnus-valid-select-methods)))
2579
2580 (defun gnus-news-group-p (group &optional article)
2581   "Return non-nil if GROUP (and ARTICLE) come from a news server."
2582   (cond ((gnus-member-of-valid 'post group) ;Ordinary news group
2583          t)                             ;is news of course.
2584         ((not (gnus-member-of-valid 'post-mail group)) ;Non-combined.
2585          nil)                           ;must be mail then.
2586         ((vectorp article)              ;Has header info.
2587          (eq (gnus-request-type group (mail-header-id article)) 'news))
2588         ((null article)                 ;Hasn't header info
2589          (eq (gnus-request-type group) 'news)) ;(unknown ==> mail)
2590         ((< article 0)                  ;Virtual message
2591          nil)                           ;we don't know, guess mail.
2592         (t                              ;Has positive number
2593          (eq (gnus-request-type group article) 'news)))) ;use it.
2594
2595 ;; Returns a list of writable groups.
2596 (defun gnus-writable-groups ()
2597   (let ((alist gnus-newsrc-alist)
2598         groups group)
2599     (while (setq group (car (pop alist)))
2600       (unless (gnus-group-read-only-p group)
2601         (push group groups)))
2602     (nreverse groups)))
2603
2604 ;; Check whether to use long file names.
2605 (defun gnus-use-long-file-name (symbol)
2606   ;; The variable has to be set...
2607   (and gnus-use-long-file-name
2608        ;; If it isn't a list, then we return t.
2609        (or (not (listp gnus-use-long-file-name))
2610            ;; If it is a list, and the list contains `symbol', we
2611            ;; return nil.
2612            (not (memq symbol gnus-use-long-file-name)))))
2613
2614 ;; Generate a unique new group name.
2615 (defun gnus-generate-new-group-name (leaf)
2616   (let ((name leaf)
2617         (num 0))
2618     (while (gnus-gethash name gnus-newsrc-hashtb)
2619       (setq name (concat leaf "<" (int-to-string (setq num (1+ num))) ">")))
2620     name))
2621
2622 (defun gnus-ephemeral-group-p (group)
2623   "Say whether GROUP is ephemeral or not."
2624   (gnus-group-get-parameter group 'quit-config t))
2625
2626 (defun gnus-group-quit-config (group)
2627   "Return the quit-config of GROUP."
2628   (gnus-group-get-parameter group 'quit-config t))
2629
2630 (defun gnus-kill-ephemeral-group (group)
2631   "Remove ephemeral GROUP from relevant structures."
2632   (gnus-sethash group nil gnus-newsrc-hashtb))
2633
2634 (defun gnus-simplify-mode-line ()
2635   "Make mode lines a bit simpler."
2636   (setq mode-line-modified (cdr gnus-mode-line-modified))
2637   (when (listp mode-line-format)
2638     (make-local-variable 'mode-line-format)
2639     (setq mode-line-format (copy-sequence mode-line-format))
2640     (when (equal (nth 3 mode-line-format) "   ")
2641       (setcar (nthcdr 3 mode-line-format) " "))))
2642
2643 ;;; Servers and groups.
2644
2645 (defsubst gnus-server-add-address (method)
2646   (let ((method-name (symbol-name (car method))))
2647     (if (and (memq 'address (assoc method-name gnus-valid-select-methods))
2648              (not (assq (intern (concat method-name "-address")) method))
2649              (memq 'physical-address (assq (car method)
2650                                            gnus-valid-select-methods)))
2651         (append method (list (list (intern (concat method-name "-address"))
2652                                    (nth 1 method))))
2653       method)))
2654
2655 (defsubst gnus-server-get-method (group method)
2656   ;; Input either a server name, and extended server name, or a
2657   ;; select method, and return a select method.
2658   (cond ((stringp method)
2659          (gnus-server-to-method method))
2660         ((equal method gnus-select-method)
2661          gnus-select-method)
2662         ((and (stringp (car method))
2663               group)
2664          (gnus-server-extend-method group method))
2665         ((and method
2666               (not group)
2667               (equal (cadr method) ""))
2668          method)
2669         (t
2670          (gnus-server-add-address method))))
2671
2672 (defun gnus-server-to-method (server)
2673   "Map virtual server names to select methods."
2674   (or
2675    ;; Is this a method, perhaps?
2676    (and server (listp server) server)
2677    ;; Perhaps this is the native server?
2678    (and (equal server "native") gnus-select-method)
2679    ;; It should be in the server alist.
2680    (cdr (assoc server gnus-server-alist))
2681    ;; It could be in the predefined server alist.
2682    (cdr (assoc server gnus-predefined-server-alist))
2683    ;; If not, we look through all the opened server
2684    ;; to see whether we can find it there.
2685    (let ((opened gnus-opened-servers))
2686      (while (and opened
2687                  (not (equal server (format "%s:%s" (caaar opened)
2688                                             (cadaar opened)))))
2689        (pop opened))
2690      (caar opened))
2691    ;; It could be a named method, search all servers
2692    (let ((servers gnus-secondary-select-methods))
2693      (while (and servers
2694                  (not (equal server (format "%s:%s" (caar servers)
2695                                             (cadar servers)))))
2696        (pop servers))
2697      (car servers))))
2698
2699 (defmacro gnus-method-equal (ss1 ss2)
2700   "Say whether two servers are equal."
2701   `(let ((s1 ,ss1)
2702          (s2 ,ss2))
2703      (or (equal s1 s2)
2704          (and (= (length s1) (length s2))
2705               (progn
2706                 (while (and s1 (member (car s1) s2))
2707                   (setq s1 (cdr s1)))
2708                 (null s1))))))
2709
2710 (defun gnus-methods-equal-p (m1 m2)
2711   (let ((m1 (or m1 gnus-select-method))
2712         (m2 (or m2 gnus-select-method)))
2713     (or (equal m1 m2)
2714         (and (eq (car m1) (car m2))
2715              (or (not (memq 'address (assoc (symbol-name (car m1))
2716                                             gnus-valid-select-methods)))
2717                  (equal (nth 1 m1) (nth 1 m2)))))))
2718
2719 (defun gnus-server-equal (m1 m2)
2720   "Say whether two methods are equal."
2721   (let ((m1 (cond ((null m1) gnus-select-method)
2722                   ((stringp m1) (gnus-server-to-method m1))
2723                   (t m1)))
2724         (m2 (cond ((null m2) gnus-select-method)
2725                   ((stringp m2) (gnus-server-to-method m2))
2726                   (t m2))))
2727     (gnus-method-equal m1 m2)))
2728
2729 (defun gnus-servers-using-backend (backend)
2730   "Return a list of known servers using BACKEND."
2731   (let ((opened gnus-opened-servers)
2732         out)
2733     (while opened
2734       (when (eq backend (caaar opened))
2735         (push (caar opened) out))
2736       (pop opened))
2737     out))
2738
2739 (defun gnus-archive-server-wanted-p ()
2740   "Say whether the user wants to use the archive server."
2741   (cond
2742    ((or (not gnus-message-archive-method)
2743         (not gnus-message-archive-group))
2744     nil)
2745    ((and gnus-message-archive-method gnus-message-archive-group)
2746     t)
2747    (t
2748     (let ((active (cadr (assq 'nnfolder-active-file
2749                               gnus-message-archive-method))))
2750       (and active
2751            (file-exists-p active))))))
2752
2753 (defsubst gnus-method-to-server-name (method)
2754   (concat
2755    (format "%s" (car method))
2756    (when (and
2757           (or (assoc (format "%s" (car method))
2758                      (gnus-methods-using 'address))
2759               (gnus-server-equal method gnus-message-archive-method))
2760           (nth 1 method)
2761           (not (string= (nth 1 method) "")))
2762      (concat "+" (nth 1 method)))))
2763
2764 (defsubst gnus-method-to-full-server-name (method)
2765   (format "%s+%s" (car method) (nth 1 method)))
2766
2767 (defun gnus-group-prefixed-name (group method)
2768   "Return the whole name from GROUP and METHOD."
2769   (and (stringp method) (setq method (gnus-server-to-method method)))
2770   (if (or (not method)
2771           (gnus-server-equal method "native")
2772           (string-match ":" group))
2773       group
2774     (concat (gnus-method-to-server-name method) ":" group)))
2775
2776 (defun gnus-group-real-prefix (group)
2777   "Return the prefix of the current group name."
2778   (if (string-match "^[^:]+:" group)
2779       (substring group 0 (match-end 0))
2780     ""))
2781
2782 (defun gnus-group-method (group)
2783   "Return the server or method used for selecting GROUP.
2784 You should probably use `gnus-find-method-for-group' instead."
2785   (let ((prefix (gnus-group-real-prefix group)))
2786     (if (equal prefix "")
2787         gnus-select-method
2788       (let ((servers gnus-opened-servers)
2789             (server "")
2790             backend possible found)
2791         (if (string-match "^[^\\+]+\\+" prefix)
2792             (setq backend (intern (substring prefix 0 (1- (match-end 0))))
2793                   server (substring prefix (match-end 0) (1- (length prefix))))
2794           (setq backend (intern (substring prefix 0 (1- (length prefix))))))
2795         (while servers
2796           (when (eq (caaar servers) backend)
2797             (setq possible (caar servers))
2798             (when (equal (cadaar servers) server)
2799               (setq found (caar servers))))
2800           (pop servers))
2801         (or (car (rassoc found gnus-server-alist))
2802             found
2803             (car (rassoc possible gnus-server-alist))
2804             possible
2805             (list backend server))))))
2806
2807 (defsubst gnus-native-method-p (method)
2808   "Return whether METHOD is the native select method."
2809   (gnus-method-equal method gnus-select-method))
2810
2811 (defsubst gnus-secondary-method-p (method)
2812   "Return whether METHOD is a secondary select method."
2813   (let ((methods gnus-secondary-select-methods)
2814         (gmethod (gnus-server-get-method nil method)))
2815     (while (and methods
2816                 (not (gnus-method-equal
2817                       (gnus-server-get-method nil (car methods))
2818                       gmethod)))
2819       (setq methods (cdr methods)))
2820     methods))
2821
2822 (defun gnus-method-simplify (method)
2823   "Return the shortest uniquely identifying string or method for METHOD."
2824   (cond ((stringp method)
2825          method)
2826         ((gnus-native-method-p method)
2827          nil)
2828         ((gnus-secondary-method-p method)
2829          (format "%s:%s" (nth 0 method) (nth 1 method)))
2830         (t
2831          method)))
2832
2833 (defun gnus-groups-from-server (server)
2834   "Return a list of all groups that are fetched from SERVER."
2835   (let ((alist (cdr gnus-newsrc-alist))
2836         info groups)
2837     (while (setq info (pop alist))
2838       (when (gnus-server-equal (gnus-info-method info) server)
2839         (push (gnus-info-group info) groups)))
2840     (sort groups 'string<)))
2841
2842 (defun gnus-group-foreign-p (group)
2843   "Say whether a group is foreign or not."
2844   (and (not (gnus-group-native-p group))
2845        (not (gnus-group-secondary-p group))))
2846
2847 (defun gnus-group-native-p (group)
2848   "Say whether the group is native or not."
2849   (not (string-match ":" group)))
2850
2851 (defun gnus-group-secondary-p (group)
2852   "Say whether the group is secondary or not."
2853   (gnus-secondary-method-p (gnus-find-method-for-group group)))
2854
2855 (defun gnus-parameters-get-parameter (group)
2856   "Return the group parameters for GROUP from `gnus-parameters'."
2857   (let (params-list)
2858     (dolist (elem gnus-parameters)
2859       (when (string-match (car elem) group)
2860         (setq params-list
2861               (nconc (gnus-expand-group-parameters
2862                       (car elem) (cdr elem) group)
2863                      params-list))))
2864     params-list))
2865
2866 (defun gnus-expand-group-parameter (match value group)
2867   "Use MATCH to expand VALUE in GROUP."
2868   (with-temp-buffer
2869     (insert group)
2870     (goto-char (point-min))
2871     (while (re-search-forward match nil t)
2872       (replace-match value))
2873     (buffer-string)))
2874
2875 (defun gnus-expand-group-parameters (match parameters group)
2876   "Go through PARAMETERS and expand them according to the match data."
2877   (let (new)
2878     (dolist (elem parameters)
2879       (if (and (stringp (cdr elem))
2880                (string-match "\\\\[0-9&]" (cdr elem)))
2881           (push (cons (car elem)
2882                       (gnus-expand-group-parameter match (cdr elem) group))
2883                 new)
2884         (push elem new)))
2885     new))
2886
2887 (defun gnus-group-fast-parameter (group symbol &optional allow-list)
2888   "For GROUP, return the value of SYMBOL.
2889
2890 You should call this in the `gnus-group-buffer' buffer.
2891 The function `gnus-group-find-parameter' will do that for you."
2892   ;; The speed trick:  No cons'ing and quit early.
2893   (or (let ((params (funcall gnus-group-get-parameter-function group)))
2894         ;; Start easy, check the "real" group parameters.
2895         (gnus-group-parameter-value params symbol allow-list))
2896       ;; We didn't found it there, try `gnus-parameters'.
2897       (let ((result nil)
2898             (head nil)
2899             (tail gnus-parameters))
2900         ;; A good old-fashioned non-cl loop.
2901         (while tail
2902           (setq head (car tail)
2903                 tail (cdr tail))
2904           ;; The car is regexp matching for matching the group name.
2905           (when (string-match (car head) group)
2906             ;; The cdr is the parameters.
2907             (setq result (gnus-group-parameter-value (cdr head)
2908                                                      symbol allow-list))
2909             (when result
2910               ;; Expand if necessary.
2911               (if (and (stringp result) (string-match "\\\\" result))
2912                   (setq result (gnus-expand-group-parameter (car head)
2913                                                             result group)))
2914               ;; Exit the loop early.
2915               (setq tail nil))))
2916         ;; Done.
2917         result)))
2918
2919 (defun gnus-group-find-parameter (group &optional symbol allow-list)
2920   "Return the group parameters for GROUP.
2921 If SYMBOL, return the value of that symbol in the group parameters.
2922
2923 If you call this function inside a loop, consider using the faster
2924 `gnus-group-fast-parameter' instead."
2925   (save-excursion
2926     (set-buffer gnus-group-buffer)
2927     (if symbol
2928         (gnus-group-fast-parameter group symbol allow-list)
2929       (let ((parameters
2930              (nconc
2931               (copy-sequence
2932                (funcall gnus-group-get-parameter-function group))
2933               (gnus-parameters-get-parameter group))))
2934         parameters))))
2935
2936 (defun gnus-group-get-parameter (group &optional symbol allow-list)
2937   "Return the group parameters for GROUP.
2938 If SYMBOL, return the value of that symbol in the group parameters.
2939 Most functions should use `gnus-group-find-parameter', which
2940 also examines the topic parameters."
2941   (let ((params (gnus-info-params (gnus-get-info group))))
2942     (if symbol
2943         (gnus-group-parameter-value params symbol allow-list)
2944       params)))
2945
2946 (defun gnus-group-parameter-value (params symbol &optional allow-list)
2947   "Return the value of SYMBOL in group PARAMS."
2948   ;; We only wish to return group parameters (dotted lists) and
2949   ;; not local variables, which may have the same names.
2950   ;; But first we handle single elements...
2951   (or (car (memq symbol params))
2952       ;; Handle alist.
2953       (let (elem)
2954         (catch 'found
2955           (while (setq elem (pop params))
2956             (when (and (consp elem)
2957                        (eq (car elem) symbol)
2958                        (or allow-list
2959                            (atom (cdr elem))))
2960               (throw 'found (cdr elem))))))))
2961
2962 (defun gnus-group-add-parameter (group param)
2963   "Add parameter PARAM to GROUP."
2964   (let ((info (gnus-get-info group)))
2965     (when info
2966       (gnus-group-remove-parameter group (if (consp param) (car param) param))
2967       ;; Cons the new param to the old one and update.
2968       (gnus-group-set-info (cons param (gnus-info-params info))
2969                            group 'params))))
2970
2971 (defun gnus-group-set-parameter (group name value)
2972   "Set parameter NAME to VALUE in GROUP."
2973   (let ((info (gnus-get-info group)))
2974     (when info
2975       (gnus-group-remove-parameter group name)
2976       (let ((old-params (gnus-info-params info))
2977             (new-params (list (cons name value))))
2978         (while old-params
2979           (when (or (not (listp (car old-params)))
2980                     (not (eq (caar old-params) name)))
2981             (setq new-params (append new-params (list (car old-params)))))
2982           (setq old-params (cdr old-params)))
2983         (gnus-group-set-info new-params group 'params)))))
2984
2985 (defun gnus-group-remove-parameter (group name)
2986   "Remove parameter NAME from GROUP."
2987   (let ((info (gnus-get-info group)))
2988     (when info
2989       (let ((params (gnus-info-params info)))
2990         (when params
2991           (setq params (delq name params))
2992           (while (assq name params)
2993             (gnus-pull name params))
2994           (gnus-info-set-params info params))))))
2995
2996 (defun gnus-group-add-score (group &optional score)
2997   "Add SCORE to the GROUP score.
2998 If SCORE is nil, add 1 to the score of GROUP."
2999   (let ((info (gnus-get-info group)))
3000     (when info
3001       (gnus-info-set-score info (+ (gnus-info-score info) (or score 1))))))
3002
3003 (defun gnus-short-group-name (group &optional levels)
3004   "Collapse GROUP name LEVELS.
3005 Select methods are stripped and any remote host name is stripped down to
3006 just the host name."
3007   (let* ((name "")
3008          (foreign "")
3009          (depth 0)
3010          (skip 1)
3011          (levels (or levels
3012                      gnus-group-uncollapsed-levels
3013                      (progn
3014                        (while (string-match "\\." group skip)
3015                          (setq skip (match-end 0)
3016                                depth (+ depth 1)))
3017                        depth))))
3018     ;; Separate foreign select method from group name and collapse.
3019    ;; If method contains a server, collapse to non-domain server name,
3020     ;; otherwise collapse to select method.
3021     (let* ((colon (string-match ":" group))
3022            (server (and colon (substring group 0 colon)))
3023            (plus (and server (string-match "+" server))))
3024       (when server
3025         (if plus
3026             (setq foreign (substring server (+ 1 plus)
3027                                      (string-match "\\." server))
3028                   group (substring group (+ 1 colon)))
3029           (setq foreign server
3030                 group (substring group (+ 1 colon))))
3031         (setq foreign (concat foreign ":")))
3032       ;; Collapse group name leaving LEVELS uncollapsed elements
3033       (let* ((slist (split-string group "/"))
3034              (slen (length slist))
3035              (dlist (split-string group "\\."))
3036              (dlen (length dlist))
3037              glist
3038              glen
3039              gsep
3040              res)
3041         (if (> slen dlen)
3042             (setq glist slist
3043                   glen slen
3044                   gsep "/")
3045           (setq glist dlist
3046                 glen dlen
3047                 gsep "."))
3048         (setq levels (- glen levels))
3049         (dolist (g glist)
3050           (push (if (>= (decf levels) 0)
3051                     (if (zerop (length g))
3052                         ""
3053                       (substring g 0 1))
3054                   g)
3055                 res))
3056         (concat foreign (mapconcat 'identity (nreverse res) gsep))))))
3057
3058 (defun gnus-narrow-to-body ()
3059   "Narrow to the body of an article."
3060   (narrow-to-region
3061    (progn
3062      (goto-char (point-min))
3063      (or (search-forward "\n\n" nil t)
3064          (point-max)))
3065    (point-max)))
3066
3067 \f
3068 ;;;
3069 ;;; Kill file handling.
3070 ;;;
3071
3072 (defun gnus-apply-kill-file ()
3073   "Apply a kill file to the current newsgroup.
3074 Returns the number of articles marked as read."
3075   (if (or (file-exists-p (gnus-newsgroup-kill-file nil))
3076           (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name)))
3077       (gnus-apply-kill-file-internal)
3078     0))
3079
3080 (defun gnus-kill-save-kill-buffer ()
3081   (let ((file (gnus-newsgroup-kill-file gnus-newsgroup-name)))
3082     (when (get-file-buffer file)
3083       (save-excursion
3084         (set-buffer (get-file-buffer file))
3085         (when (buffer-modified-p)
3086           (save-buffer))
3087         (kill-buffer (current-buffer))))))
3088
3089 (defcustom gnus-kill-file-name "KILL"
3090   "Suffix of the kill files."
3091   :group 'gnus-score-kill
3092   :group 'gnus-score-files
3093   :type 'string)
3094
3095 (defun gnus-newsgroup-kill-file (newsgroup)
3096   "Return the name of a kill file name for NEWSGROUP.
3097 If NEWSGROUP is nil, return the global kill file name instead."
3098   (cond
3099    ;; The global KILL file is placed at top of the directory.
3100    ((or (null newsgroup)
3101         (string-equal newsgroup ""))
3102     (expand-file-name gnus-kill-file-name
3103                       gnus-kill-files-directory))
3104    ;; Append ".KILL" to newsgroup name.
3105    ((gnus-use-long-file-name 'not-kill)
3106     (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup)
3107                               "." gnus-kill-file-name)
3108                       gnus-kill-files-directory))
3109    ;; Place "KILL" under the hierarchical directory.
3110    (t
3111     (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
3112                               "/" gnus-kill-file-name)
3113                       gnus-kill-files-directory))))
3114
3115 ;;; Server things.
3116
3117 (defun gnus-member-of-valid (symbol group)
3118   "Find out if GROUP has SYMBOL as part of its \"valid\" spec."
3119   (memq symbol (assoc
3120                 (symbol-name (car (gnus-find-method-for-group group)))
3121                 gnus-valid-select-methods)))
3122
3123 (defun gnus-method-option-p (method option)
3124   "Return non-nil if select METHOD has OPTION as a parameter."
3125   (when (stringp method)
3126     (setq method (gnus-server-to-method method)))
3127   (memq option (assoc (format "%s" (car method))
3128                       gnus-valid-select-methods)))
3129
3130 (defun gnus-similar-server-opened (method)
3131   (let ((opened gnus-opened-servers))
3132     (while (and method opened)
3133       (when (and (equal (cadr method) (cadaar opened))
3134                  (equal (car method) (caaar opened))
3135                  (not (equal method (caar opened))))
3136         (setq method nil))
3137       (pop opened))
3138     (not method)))
3139
3140 (defun gnus-server-extend-method (group method)
3141   ;; This function "extends" a virtual server.  If the server is
3142   ;; "hello", and the select method is ("hello" (my-var "something"))
3143   ;; in the group "alt.alt", this will result in a new virtual server
3144   ;; called "hello+alt.alt".
3145   (if (or (not (inline (gnus-similar-server-opened method)))
3146           (not (cddr method)))
3147       method
3148     `(,(car method) ,(concat (cadr method) "+" group)
3149       (,(intern (format "%s-address" (car method))) ,(cadr method))
3150       ,@(cddr method))))
3151
3152 (defun gnus-server-status (method)
3153   "Return the status of METHOD."
3154   (nth 1 (assoc method gnus-opened-servers)))
3155
3156 (defun gnus-group-name-to-method (group)
3157   "Guess a select method based on GROUP."
3158   (if (string-match ":" group)
3159       (let ((server (substring group 0 (match-beginning 0))))
3160         (if (string-match "\\+" server)
3161             (list (intern (substring server 0 (match-beginning 0)))
3162                   (substring server (match-end 0)))
3163           (list (intern server) "")))
3164     gnus-select-method))
3165
3166 (defun gnus-server-string (server)
3167   "Return a readable string that describes SERVER."
3168   (let* ((server (gnus-server-to-method server))
3169          (address (nth 1 server)))
3170     (if (and address
3171              (not (zerop (length address))))
3172         (format "%s via %s" address (car server))
3173       (format "%s" (car server)))))
3174
3175 (defun gnus-find-method-for-group (group &optional info)
3176   "Find the select method that GROUP uses."
3177   (or gnus-override-method
3178       (and (not group)
3179            gnus-select-method)
3180       (and (not (gnus-group-entry group)) ;; a new group
3181            (gnus-group-name-to-method group))
3182       (let ((info (or info (gnus-get-info group)))
3183             method)
3184         (if (or (not info)
3185                 (not (setq method (gnus-info-method info)))
3186                 (equal method "native"))
3187             gnus-select-method
3188           (setq method
3189                 (cond ((stringp method)
3190                        (inline (gnus-server-to-method method)))
3191                       ((stringp (cadr method))
3192                        (inline (gnus-server-extend-method group method)))
3193                       (t
3194                        method)))
3195           (cond ((equal (cadr method) "")
3196                  method)
3197                 ((null (cadr method))
3198                  (list (car method) ""))
3199                 (t
3200                  (gnus-server-add-address method)))))))
3201
3202 (defun gnus-methods-using (feature)
3203   "Find all methods that have FEATURE."
3204   (let ((valids gnus-valid-select-methods)
3205         outs)
3206     (while valids
3207       (when (memq feature (car valids))
3208         (push (car valids) outs))
3209       (setq valids (cdr valids)))
3210     outs))
3211
3212 (defun gnus-read-group (prompt &optional default)
3213   "Prompt the user for a group name.
3214 Disallow invalid group names."
3215   (let ((prefix "")
3216         group)
3217     (while (not group)
3218       (when (string-match
3219              gnus-invalid-group-regexp
3220              (setq group (read-string (concat prefix prompt)
3221                                       (cons (or default "") 0)
3222                                       'gnus-group-history)))
3223         (setq prefix (format "Invalid group name: \"%s\".  " group)
3224               group nil)))
3225     group))
3226
3227 (defun gnus-read-method (prompt)
3228   "Prompt the user for a method.
3229 Allow completion over sensible values."
3230   (let* ((open-servers
3231           (mapcar (lambda (i) (cons (format "%s:%s" (caar i) (cadar i)) i))
3232                   gnus-opened-servers))
3233          (valid-methods
3234           (let (methods)
3235             (dolist (method gnus-valid-select-methods)
3236               (if (or (memq 'prompt-address method)
3237                       (not (assoc (format "%s:" (car method)) open-servers)))
3238                   (push method methods)))
3239             methods))
3240          (servers
3241           (append valid-methods
3242                   open-servers
3243                   gnus-predefined-server-alist
3244                   gnus-server-alist))
3245          (method
3246           (completing-read
3247            prompt servers
3248            nil t nil 'gnus-method-history)))
3249     (cond
3250      ((equal method "")
3251       (setq method gnus-select-method))
3252      ((assoc method gnus-valid-select-methods)
3253       (let ((address (if (memq 'prompt-address
3254                                (assoc method gnus-valid-select-methods))
3255                          (read-string "Address: ")
3256                        "")))
3257         (or (cadr (assoc (format "%s:%s" method address) open-servers))
3258             (list (intern method) address))))
3259      ((assoc method servers)
3260       method)
3261      (t
3262       (list (intern method) "")))))
3263
3264 ;;; Agent functions
3265
3266 (defun gnus-agent-method-p (method)
3267   "Say whether METHOD is covered by the agent."
3268   (member method gnus-agent-covered-methods))
3269
3270 (defun gnus-online (method)
3271   (not
3272    (if gnus-plugged
3273        (eq (cadr (assoc method gnus-opened-servers)) 'offline)
3274      (gnus-agent-method-p method))))
3275
3276 ;;; User-level commands.
3277
3278 ;;;###autoload
3279 (defun gnus-slave-no-server (&optional arg)
3280   "Read network news as a slave, without connecting to local server."
3281   (interactive "P")
3282   (gnus-no-server arg t))
3283
3284 ;;;###autoload
3285 (defun gnus-no-server (&optional arg slave)
3286   "Read network news.
3287 If ARG is a positive number, Gnus will use that as the
3288 startup level.  If ARG is nil, Gnus will be started at level 2.
3289 If ARG is non-nil and not a positive number, Gnus will
3290 prompt the user for the name of an NNTP server to use.
3291 As opposed to `gnus', this command will not connect to the local server."
3292   (interactive "P")
3293   (gnus-no-server-1 arg slave))
3294
3295 ;;;###autoload
3296 (defun gnus-slave (&optional arg)
3297   "Read news as a slave."
3298   (interactive "P")
3299   (gnus arg nil 'slave))
3300
3301 ;;;###autoload
3302 (defun gnus-other-frame (&optional arg)
3303   "Pop up a frame to read news."
3304   (interactive "P")
3305   (let ((window (get-buffer-window gnus-group-buffer)))
3306     (cond (window
3307            (select-frame (window-frame window)))
3308           (t
3309            (select-frame (make-frame)))))
3310   (gnus arg))
3311
3312 ;;(setq thing ?                         ; this is a comment
3313 ;;      more 'yes)
3314
3315 ;;;###autoload
3316 (defun gnus (&optional arg dont-connect slave)
3317   "Read network news.
3318 If ARG is non-nil and a positive number, Gnus will use that as the
3319 startup level.  If ARG is non-nil and not a positive number, Gnus will
3320 prompt the user for the name of an NNTP server to use."
3321   (interactive "P")
3322   (unless (byte-code-function-p (symbol-function 'gnus))
3323     (message "You should byte-compile Gnus")
3324     (sit-for 2))
3325   (gnus-1 arg dont-connect slave))
3326
3327 ;; Allow redefinition of Gnus functions.
3328
3329 (gnus-ems-redefine)
3330
3331 (provide 'gnus)
3332
3333 ;;; gnus.el ends here