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