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