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