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