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