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