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