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