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