annotate lisp/gnus/gnus.el @ 20:859a2309aef8 r19-15b93

Import from CVS: tag r19-15b93
author cvs
date Mon, 13 Aug 2007 08:50:05 +0200
parents d95e72db5c07
children 8fc7fe29b841
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus.el --- a newsreader for GNU Emacs
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2 ;; Copyright (C) 1987,88,89,90,93,94,95,96,97 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Keywords: news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (eval '(run-hooks 'gnus-load-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
31 (require 'custom)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
32 (require 'gnus-load)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
34 (defgroup gnus nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
35 "The coffee-brewing, all singing, all dancing, kitchen sink newsreader."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
36 :group 'emacs)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
38 (defgroup gnus-start nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
39 "Starting your favorite newsreader."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
40 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
42 ;; These belong to gnus-group.el.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
43 (defgroup gnus-group nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
44 "Group buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
45 :link '(custom-manual "(gnus)The Group Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
46 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
48 (defgroup gnus-group-foreign nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
49 "Foreign groups."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
50 :link '(custom-manual "(gnus)Foreign Groups")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
51 :group 'gnus-group)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
53 (defgroup gnus-group-levels nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
54 "Group levels."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
55 :link '(custom-manual "(gnus)Group Levels")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
56 :group 'gnus-group)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
58 (defgroup gnus-group-select nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
59 "Selecting a Group."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
60 :link '(custom-manual "(gnus)Selecting a Group")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
61 :group 'gnus-group)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
63 (defgroup gnus-group-listing nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
64 "Showing slices of the group list."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
65 :link '(custom-manual "(gnus)Listing Groups")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
66 :group 'gnus-group)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
68 (defgroup gnus-group-visual nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
69 "Sorting the group buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
70 :link '(custom-manual "(gnus)Group Buffer Format")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
71 :group 'gnus-group
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
72 :group 'gnus-visual)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
74 (defgroup gnus-group-various nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
75 "Various group options."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
76 :link '(custom-manual "(gnus)Scanning New Messages")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
77 :group 'gnus-group)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
78
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
79 ;; These belong to gnus-sum.el.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
80 (defgroup gnus-summary nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
81 "Summary buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
82 :link '(custom-manual "(gnus)The Summary Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
83 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
85 (defgroup gnus-summary-exit nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
86 "Leaving summary buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
87 :link '(custom-manual "(gnus)Exiting the Summary Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
88 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
90 (defgroup gnus-summary-marks nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
91 "Marks used in summary buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
92 :link '(custom-manual "(gnus)Marking Articles")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
93 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
95 (defgroup gnus-thread nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
96 "Ordering articles according to replies."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
97 :link '(custom-manual "(gnus)Threading")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
98 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
100 (defgroup gnus-summary-format nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
101 "Formatting of the summary buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
102 :link '(custom-manual "(gnus)Summary Buffer Format")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
103 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
105 (defgroup gnus-summary-choose nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
106 "Choosing Articles."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
107 :link '(custom-manual "(gnus)Choosing Articles")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
108 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
110 (defgroup gnus-summary-maneuvering nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
111 "Summary movement commands."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
112 :link '(custom-manual "(gnus)Summary Maneuvering")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
113 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
115 (defgroup gnus-summary-mail nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
116 "Mail group commands."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
117 :link '(custom-manual "(gnus)Mail Group Commands")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
118 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
120 (defgroup gnus-summary-sort nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
121 "Sorting the summary buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
122 :link '(custom-manual "(gnus)Sorting")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
123 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
125 (defgroup gnus-summary-visual nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
126 "Highlighting and menus in the summary buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
127 :link '(custom-manual "(gnus)Summary Highlighting")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
128 :group 'gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
129 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
131 (defgroup gnus-summary-various nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
132 "Various summary buffer options."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
133 :link '(custom-manual "(gnus)Various Summary Stuff")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
134 :group 'gnus-summary)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
136 ;; Belongs to gnus-uu.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
137 (defgroup gnus-extract-view nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
138 "Viewing extracted files."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
139 :link '(custom-manual "(gnus)Viewing Files")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
140 :group 'gnus-extract)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
142 ;; Belongs to gnus-score.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
143 (defgroup gnus-score nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
144 "Score and kill file handling."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
145 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
147 (defgroup gnus-score-kill nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
148 "Kill files."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
149 :group 'gnus-score)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
151 (defgroup gnus-score-adapt nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
152 "Adaptive score files."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
153 :group 'gnus-score)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
155 (defgroup gnus-score-files nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
156 "Score and kill file names."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
157 :group 'gnus-score
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
158 :group 'gnus-files)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
160 (defgroup gnus-score-various nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
161 "Various scoring and killing options."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
162 :group 'gnus-score)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
164 ;; Other
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
165 (defgroup gnus-visual nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
166 "Options controling the visual fluff."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
167 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
169 (defgroup gnus-mail-expire nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
170 "Expiring articles in mail backends."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
171 :group 'gnus-mail)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
173 (defgroup gnus-files nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
174 "Files used by Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
175 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
177 (defgroup gnus-server nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
178 "Options related to newsservers and other servers used by Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
179 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
181 (defgroup gnus-message '((message custom-group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
182 "Composing replies and followups in Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
183 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
185 (defgroup gnus-meta nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
186 "Meta variables controling major portions of Gnus.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
187 In general, modifying these variables does not take affect until Gnus
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
188 is restarted, and sometimes reloaded."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
189 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
191 (defgroup gnus-various nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
192 "Other Gnus options."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
193 :link '(custom-manual "(gnus)Various Various")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
194 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
196 (defgroup gnus-exit nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
197 "Exiting gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
198 :link '(custom-manual "(gnus)Exiting Gnus")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
199 :group 'gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
201 (defconst gnus-version-number "5.4.11"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 "Version number for this version of Gnus.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (defconst gnus-version (format "Gnus v%s" gnus-version-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 "Version string for this version of Gnus.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
207 (defcustom gnus-inhibit-startup-message nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
208 "If non-nil, the startup message will not be displayed.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
209 This variable is used before `.gnus.el' is loaded, so it should
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
210 be set in `.emacs' instead."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
211 :group 'gnus-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
212 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
213
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
214 (defcustom gnus-play-startup-jingle nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
215 "If non-nil, play the Gnus jingle at startup."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
216 :group 'gnus-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
217 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
218
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
219 ;;; Kludges to help the transition from the old `custom.el'.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
220
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
221 (unless (featurep 'gnus-xmas)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
222 (defalias 'gnus-make-overlay 'make-overlay)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
223 (defalias 'gnus-overlay-put 'overlay-put)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
224 (defalias 'gnus-move-overlay 'move-overlay)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
225 (defalias 'gnus-overlay-end 'overlay-end)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
226 (defalias 'gnus-extent-detached-p 'ignore)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
227 (defalias 'gnus-extent-start-open 'ignore)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
228 (defalias 'gnus-set-text-properties 'set-text-properties)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
229 (defalias 'gnus-group-remove-excess-properties 'ignore)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
230 (defalias 'gnus-topic-remove-excess-properties 'ignore)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
231 (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
232 (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
233 (defalias 'gnus-make-local-hook 'make-local-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
234 (defalias 'gnus-add-hook 'add-hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
235 (defalias 'gnus-character-to-event 'identity)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
236 (defalias 'gnus-add-text-properties 'add-text-properties)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
237 (defalias 'gnus-put-text-property 'put-text-property)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
238 (defalias 'gnus-mode-line-buffer-identification 'identity)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
239 (defalias 'gnus-characterp 'numberp)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
240 (defalias 'gnus-key-press-event-p 'numberp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
241
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
242 ;; The XEmacs people think this is evil, so it must go.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
243 (defun custom-face-lookup (&optional fg bg stipple bold italic underline)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
244 "Lookup or create a face with specified attributes."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
245 (let ((name (intern (format "custom-face-%s-%s-%s-%S-%S-%S"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
246 (or fg "default")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
247 (or bg "default")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
248 (or stipple "default")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
249 bold italic underline))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
250 (if (and (custom-facep name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
251 (fboundp 'make-face))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
252 ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
253 (copy-face 'default name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
254 (when (and fg
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
255 (not (string-equal fg "default")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
256 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
257 (set-face-foreground name fg)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
258 (when (and bg
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
259 (not (string-equal bg "default")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
260 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
261 (set-face-background name bg)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
262 (when (and stipple
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
263 (not (string-equal stipple "default"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
264 (not (eq stipple 'custom:asis))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
265 (fboundp 'set-face-stipple))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
266 (set-face-stipple name stipple))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
267 (when (and bold
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
268 (not (eq bold 'custom:asis)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
269 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
270 (make-face-bold name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
271 (when (and italic
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
272 (not (eq italic 'custom:asis)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
273 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
274 (make-face-italic name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
275 (when (and underline
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
276 (not (eq underline 'custom:asis)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
277 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
278 (set-face-underline-p name t))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
279 name))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
280
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
281 ;; We define these group faces here to avoid the display
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
282 ;; update forced when creating new faces.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
283
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
284 (defface gnus-group-news-1-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
285 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
286 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
287 (:foreground "PaleTurquoise" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
288 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
289 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
290 (:foreground "ForestGreen" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
291 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
292 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
293 "Level 1 newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
294
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
295 (defface gnus-group-news-1-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
296 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
297 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
298 (:foreground "PaleTurquoise"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
299 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
300 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
301 (:foreground "ForestGreen"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
302 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
303 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
304 "Level 1 empty newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
305
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
306 (defface gnus-group-news-2-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
307 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
308 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
309 (:foreground "turquoise" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
310 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
311 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
312 (:foreground "CadetBlue4" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
313 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
314 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
315 "Level 2 newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
316
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
317 (defface gnus-group-news-2-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
318 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
319 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
320 (:foreground "turquoise"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
321 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
322 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
323 (:foreground "CadetBlue4"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
324 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
325 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
326 "Level 2 empty newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
327
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
328 (defface gnus-group-news-3-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
329 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
330 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
331 (:bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
332 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
333 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
334 (:bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
335 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
336 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
337 "Level 3 newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
338
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
339 (defface gnus-group-news-3-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
340 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
341 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
342 ())
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
343 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
344 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
345 ())
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
346 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
347 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
348 "Level 3 empty newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
349
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
350 (defface gnus-group-news-low-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
351 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
352 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
353 (:foreground "DarkTurquoise" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
354 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
355 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
356 (:foreground "DarkGreen" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
357 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
358 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
359 "Low level newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
360
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
361 (defface gnus-group-news-low-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
362 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
363 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
364 (:foreground "DarkTurquoise"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
365 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
366 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
367 (:foreground "DarkGreen"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
368 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
369 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
370 "Low level empty newsgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
371
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
372 (defface gnus-group-mail-1-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
373 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
374 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
375 (:foreground "aquamarine1" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
376 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
377 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
378 (:foreground "DeepPink3" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
379 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
380 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
381 "Level 1 mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
382
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
383 (defface gnus-group-mail-1-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
384 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
385 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
386 (:foreground "aquamarine1"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
387 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
388 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
389 (:foreground "DeepPink3"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
390 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
391 (:italic t :bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
392 "Level 1 empty mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
393
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
394 (defface gnus-group-mail-2-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
395 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
396 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
397 (:foreground "aquamarine2" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
398 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
399 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
400 (:foreground "HotPink3" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
401 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
402 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
403 "Level 2 mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
404
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
405 (defface gnus-group-mail-2-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
406 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
407 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
408 (:foreground "aquamarine2"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
409 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
410 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
411 (:foreground "HotPink3"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
412 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
413 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
414 "Level 2 empty mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
415
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
416 (defface gnus-group-mail-3-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
417 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
418 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
419 (:foreground "aquamarine3" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
420 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
421 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
422 (:foreground "magenta4" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
423 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
424 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
425 "Level 3 mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
426
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
427 (defface gnus-group-mail-3-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
428 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
429 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
430 (:foreground "aquamarine3"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
431 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
432 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
433 (:foreground "magenta4"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
434 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
435 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
436 "Level 3 empty mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
437
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
438 (defface gnus-group-mail-low-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
439 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
440 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
441 (:foreground "aquamarine4" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
442 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
443 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
444 (:foreground "DeepPink4" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
445 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
446 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
447 "Low level mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
448
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
449 (defface gnus-group-mail-low-empty-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
450 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
451 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
452 (:foreground "aquamarine4"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
453 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
454 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
455 (:foreground "DeepPink4"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
456 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
457 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
458 "Low level empty mailgroup face.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
459
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
460 ;; Summary mode faces.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
461
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
462 (defface gnus-summary-selected-face '((t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
463 (:underline t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
464 "Face used for selected articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
465
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
466 (defface gnus-summary-cancelled-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
467 '((((class color))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
468 (:foreground "yellow" :background "black")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
469 "Face used for cancelled articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
470
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
471 (defface gnus-summary-high-ticked-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
472 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
473 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
474 (:foreground "pink" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
475 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
476 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
477 (:foreground "firebrick" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
478 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
479 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
480 "Face used for high interest ticked articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
481
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
482 (defface gnus-summary-low-ticked-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
483 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
484 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
485 (:foreground "pink" :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
486 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
487 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
488 (:foreground "firebrick" :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
489 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
490 (:italic t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
491 "Face used for low interest ticked articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
492
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
493 (defface gnus-summary-normal-ticked-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
494 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
495 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
496 (:foreground "pink"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
497 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
498 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
499 (:foreground "firebrick"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
500 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
501 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
502 "Face used for normal interest ticked articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
503
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
504 (defface gnus-summary-high-ancient-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
505 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
506 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
507 (:foreground "SkyBlue" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
508 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
509 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
510 (:foreground "RoyalBlue" :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
511 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
512 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
513 "Face used for high interest ancient articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
514
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
515 (defface gnus-summary-low-ancient-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
516 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
517 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
518 (:foreground "SkyBlue" :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
519 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
520 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
521 (:foreground "RoyalBlue" :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
522 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
523 (:italic t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
524 "Face used for low interest ancient articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
525
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
526 (defface gnus-summary-normal-ancient-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
527 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
528 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
529 (:foreground "SkyBlue"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
530 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
531 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
532 (:foreground "RoyalBlue"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
533 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
534 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
535 "Face used for normal interest ancient articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
536
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
537 (defface gnus-summary-high-unread-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
538 '((t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
539 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
540 "Face used for high interest unread articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
541
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
542 (defface gnus-summary-low-unread-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
543 '((t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
544 (:italic t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
545 "Face used for low interest unread articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
546
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
547 (defface gnus-summary-normal-unread-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
548 '((t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
549 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
550 "Face used for normal interest unread articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
551
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
552 (defface gnus-summary-high-read-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
553 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
554 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
555 (:foreground "PaleGreen"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
556 :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
557 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
558 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
559 (:foreground "DarkGreen"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
560 :bold t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
561 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
562 (:bold t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
563 "Face used for high interest read articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
564
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
565 (defface gnus-summary-low-read-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
566 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
567 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
568 (:foreground "PaleGreen"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
569 :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
570 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
571 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
572 (:foreground "DarkGreen"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
573 :italic t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
574 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
575 (:italic t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
576 "Face used for low interest read articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
577
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
578 (defface gnus-summary-normal-read-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
579 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
580 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
581 (:foreground "PaleGreen"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
582 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
583 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
584 (:foreground "DarkGreen"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
585 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
586 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
587 "Face used for normal interest read articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
588
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
589
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
590 ;;; Splash screen.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (defvar gnus-group-buffer "*Group*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (eval-and-compile
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
595 (autoload 'gnus-play-jingle "gnus-audio"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
597 (defface gnus-splash-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
598 '((((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
599 (background dark))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
600 (:foreground "red"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
601 (((class color)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
602 (background light))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
603 (:foreground "red"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
604 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
605 ()))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
606 "Level 1 newsgroup face.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
608 (defun gnus-splash ()
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (save-excursion
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
610 (switch-to-buffer gnus-group-buffer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (erase-buffer)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
613 (unless gnus-inhibit-startup-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
614 (gnus-group-startup-message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
615 (sit-for 0)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
616 (when gnus-play-startup-jingle
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
617 (gnus-play-jingle))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (defun gnus-indent-rigidly (start end arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 "Indent rigidly using only spaces and no tabs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (narrow-to-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (indent-rigidly start end arg)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
625 ;; We translate tabs into spaces -- not everybody uses
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
626 ;; an 8-character tab.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (while (search-forward "\t" nil t)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
629 (replace-match " " t t)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
630
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
631 (defvar gnus-simple-splash nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (defun gnus-group-startup-message (&optional x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 "Insert startup message in current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 ;; Insert the message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (format " %s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 _ ___ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 _ ___ __ ___ __ _ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 __ _ ___ __ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 _ ___ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 _ _ __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 ___ __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 __ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 _ _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 __
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;; And then hack it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (gnus-indent-rigidly (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (/ (max (- (window-width) (or x 46)) 0) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (let* ((pheight (count-lines (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (wheight (window-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (rest (- wheight pheight)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 ;; Fontify some.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
669 (put-text-property (point-min) (point-max) 'face 'gnus-splash-face)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (goto-char (point-min))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
671 (setq mode-line-buffer-identification (concat " " gnus-version))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
672 (setq gnus-simple-splash t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
673 (set-buffer-modified-p t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
674
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
675 (eval-when (load)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
676 (let ((command (format "%s" this-command)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
677 (when (and (string-match "gnus" command)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
678 (not (string-match "gnus-other-frame" command)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
679 (gnus-splash))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
680
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
681 ;;; Do the rest.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
682
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
683 (require 'custom)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
684 (require 'gnus-util)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
685 (require 'nnheader)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
686
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
687 (defcustom gnus-directory (or (getenv "SAVEDIR") "~/News/")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
688 "Directory variable from which all other Gnus file variables are derived."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
689 :group 'gnus-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
690 :type 'directory)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
691
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
692 (defcustom gnus-default-directory nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
693 "*Default directory for all Gnus buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
694 :group 'gnus-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
695 :type '(choice (const :tag "current" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
696 directory))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
697
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
698 ;; Site dependent variables. These variables should be defined in
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
699 ;; paths.el.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
700
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
701 (defvar gnus-default-nntp-server nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
702 "Specify a default NNTP server.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
703 This variable should be defined in paths.el, and should never be set
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
704 by the user.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
705 If you want to change servers, you should use `gnus-select-method'.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
706 See the documentation to that variable.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
707
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
708 ;; Don't touch this variable.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
709 (defvar gnus-nntp-service "nntp"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
710 "NNTP service name (\"nntp\" or 119).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
711 This is an obsolete variable, which is scarcely used. If you use an
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
712 nntp server for your newsgroup and want to change the port number
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
713 used to 899, you would say something along these lines:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
714
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
715 (setq gnus-select-method '(nntp \"my.nntp.server\" (nntp-port-number 899)))")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
716
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
717 (defcustom gnus-nntpserver-file "/etc/nntpserver"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
718 "A file with only the name of the nntp server in it."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
719 :group 'gnus-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
720 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
721 :type 'file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
722
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
723 ;; This function is used to check both the environment variable
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
724 ;; NNTPSERVER and the /etc/nntpserver file to see whether one can find
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
725 ;; an nntp server name default.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
726 (defun gnus-getenv-nntpserver ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
727 (or (getenv "NNTPSERVER")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
728 (and (file-readable-p gnus-nntpserver-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
729 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
730 (set-buffer (get-buffer-create " *gnus nntp*"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
731 (buffer-disable-undo (current-buffer))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
732 (insert-file-contents gnus-nntpserver-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
733 (let ((name (buffer-string)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
734 (prog1
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
735 (if (string-match "^[ \t\n]*$" name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
736 nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
737 name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
738 (kill-buffer (current-buffer))))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
739
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
740 (defcustom gnus-select-method
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
741 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
742 (nconc
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
743 (list 'nntp (or (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
744 (gnus-getenv-nntpserver))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
745 (when (and gnus-default-nntp-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
746 (not (string= gnus-default-nntp-server "")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
747 gnus-default-nntp-server)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
748 (system-name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
749 (if (or (null gnus-nntp-service)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
750 (equal gnus-nntp-service "nntp"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
751 nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
752 (list gnus-nntp-service))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
753 "Default method for selecting a newsgroup.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
754 This variable should be a list, where the first element is how the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
755 news is to be fetched, the second is the address.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
756
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
757 For instance, if you want to get your news via NNTP from
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
758 \"flab.flab.edu\", you could say:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
759
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
760 \(setq gnus-select-method '(nntp \"flab.flab.edu\"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
761
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
762 If you want to use your local spool, say:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
763
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
764 \(setq gnus-select-method (list 'nnspool (system-name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
765
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
766 If you use this variable, you must set `gnus-nntp-server' to nil.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
767
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
768 There is a lot more to know about select methods and virtual servers -
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
769 see the manual for details."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
770 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
771 :type 'gnus-select-method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
772
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
773 (defcustom gnus-message-archive-method
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
774 `(nnfolder
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
775 "archive"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
776 (nnfolder-directory ,(nnheader-concat message-directory "archive"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
777 (nnfolder-active-file
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
778 ,(nnheader-concat message-directory "archive/active"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
779 (nnfolder-get-new-mail nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
780 (nnfolder-inhibit-expiry t))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
781 "Method used for archiving messages you've sent.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
782 This should be a mail method.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
783
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
784 It's probably not a very effective to change this variable once you've
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
785 run Gnus once. After doing that, you must edit this server from the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
786 server buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
787 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
788 :group 'gnus-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
789 :type 'gnus-select-method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
790
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
791 (defcustom gnus-message-archive-group nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
792 "*Name of the group in which to save the messages you've written.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
793 This can either be a string, a list of strings; or an alist
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
794 of regexps/functions/forms to be evaluated to return a string (or a list
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
795 of strings). The functions are called with the name of the current
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
796 group (or nil) as a parameter.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
797
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
798 If you want to save your mail in one group and the news articles you
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
799 write in another group, you could say something like:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
800
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
801 \(setq gnus-message-archive-group
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
802 '((if (message-news-p)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
803 \"misc-news\"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
804 \"misc-mail\")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
805
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
806 Normally the group names returned by this variable should be
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
807 unprefixed -- which implicitly means \"store on the archive server\".
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
808 However, you may wish to store the message on some other server. In
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
809 that case, just return a fully prefixed name of the group --
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
810 \"nnml+private:mail.misc\", for instance."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
811 :group 'gnus-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
812 :type '(choice (const :tag "none" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
813 string))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
814
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
815 (defcustom gnus-secondary-servers nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
816 "List of NNTP servers that the user can choose between interactively.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
817 To make Gnus query you for a server, you have to give `gnus' a
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
818 non-numeric prefix - `C-u M-x gnus', in short."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
819 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
820 :type '(repeat string))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
821
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
822 (defcustom gnus-nntp-server nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
823 "*The name of the host running the NNTP server.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
824 This variable is semi-obsolete. Use the `gnus-select-method'
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
825 variable instead."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
826 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
827 :type '(choice (const :tag "disable" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
828 string))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
829
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
830 (defcustom gnus-secondary-select-methods nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
831 "A list of secondary methods that will be used for reading news.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
832 This is a list where each element is a complete select method (see
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
833 `gnus-select-method').
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
834
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
835 If, for instance, you want to read your mail with the nnml backend,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
836 you could set this variable:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
838 \(setq gnus-secondary-select-methods '((nnml \"\")))"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
839 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
840 :type '(repeat gnus-select-method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
841
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
842 (defvar gnus-backup-default-subscribed-newsgroups
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
843 '("news.announce.newusers" "news.groups.questions" "gnu.emacs.gnus")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
844 "Default default new newsgroups the first time Gnus is run.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
845 Should be set in paths.el, and shouldn't be touched by the user.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
846
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
847 (defcustom gnus-local-domain nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
848 "Local domain name without a host name.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
849 The DOMAINNAME environment variable is used instead if it is defined.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
850 If the `system-name' function returns the full Internet name, there is
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
851 no need to set this variable."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
852 :group 'gnus-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
853 :type '(choice (const :tag "default" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
854 string))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
855
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
856 (defcustom gnus-local-organization nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
857 "String with a description of what organization (if any) the user belongs to.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
858 The ORGANIZATION environment variable is used instead if it is defined.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
859 If this variable contains a function, this function will be called
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
860 with the current newsgroup name as the argument. The function should
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
861 return a string.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
862
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
863 In any case, if the string (either in the variable, in the environment
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
864 variable, or returned by the function) is a file name, the contents of
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
865 this file will be used as the organization."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
866 :group 'gnus-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
867 :type '(choice (const :tag "default" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
868 string))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
869
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
870 ;; Customization variables
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
871
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
872 (defcustom gnus-refer-article-method nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
873 "Preferred method for fetching an article by Message-ID.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
874 If you are reading news from the local spool (with nnspool), fetching
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
875 articles by Message-ID is painfully slow. By setting this method to an
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
876 nntp method, you might get acceptable results.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
877
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
878 The value of this variable must be a valid select method as discussed
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
879 in the documentation of `gnus-select-method'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
880 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
881 :type '(choice (const :tag "default" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
882 gnus-select-method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
883
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
884 (defcustom gnus-group-faq-directory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
885 '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
886 "/ftp@sunsite.auc.dk:/pub/usenet/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
887 "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
888 "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
889 "/ftp@ftp.seas.gwu.edu:/pub/rtfm/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
890 "/ftp@rtfm.mit.edu:/pub/usenet/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
891 "/ftp@ftp.uni-paderborn.de:/pub/FAQ/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
892 "/ftp@ftp.sunet.se:/pub/usenet/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
893 "/ftp@nctuccca.edu.tw:/USENET/FAQ/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
894 "/ftp@hwarang.postech.ac.kr:/pub/usenet/"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
895 "/ftp@ftp.hk.super.net:/mirror/faqs/")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
896 "Directory where the group FAQs are stored.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
897 This will most commonly be on a remote machine, and the file will be
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
898 fetched by ange-ftp.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
899
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
900 This variable can also be a list of directories. In that case, the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
901 first element in the list will be used by default. The others can
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
902 be used when being prompted for a site.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
903
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
904 Note that Gnus uses an aol machine as the default directory. If this
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
905 feels fundamentally unclean, just think of it as a way to finally get
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
906 something of value back from them.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
907
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
908 If the default site is too slow, try one of these:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
909
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
910 North America: mirrors.aol.com /pub/rtfm/usenet
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
911 ftp.seas.gwu.edu /pub/rtfm
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
912 rtfm.mit.edu /pub/usenet
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
913 Europe: ftp.uni-paderborn.de /pub/FAQ
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
914 src.doc.ic.ac.uk /usenet/news-FAQS
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
915 ftp.sunet.se /pub/usenet
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
916 sunsite.auc.dk /pub/usenet
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
917 Asia: nctuccca.edu.tw /USENET/FAQ
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
918 hwarang.postech.ac.kr /pub/usenet
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
919 ftp.hk.super.net /mirror/faqs"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
920 :group 'gnus-group-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
921 :type '(choice directory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
922 (repeat directory)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
923
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
924 (defcustom gnus-use-cross-reference t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
925 "*Non-nil means that cross referenced articles will be marked as read.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
926 If nil, ignore cross references. If t, mark articles as read in
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
927 subscribed newsgroups. If neither t nor nil, mark as read in all
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
928 newsgroups."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
929 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
930 :type '(choice (const :tag "off" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
931 (const :tag "subscribed" t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
932 (sexp :format "all"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
933 :value always)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
934
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
935 (defcustom gnus-process-mark ?#
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
936 "*Process mark."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
937 :group 'gnus-group-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
938 :group 'gnus-summary-marks
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
939 :type 'character)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
940
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
941 (defcustom gnus-asynchronous nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
942 "*If non-nil, Gnus will supply backends with data needed for async article fetching."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
943 :group 'gnus-asynchronous
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
944 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
945
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
946 (defcustom gnus-large-newsgroup 200
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
947 "*The number of articles which indicates a large newsgroup.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
948 If the number of articles in a newsgroup is greater than this value,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
949 confirmation is required for selecting the newsgroup."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
950 :group 'gnus-group-select
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
951 :type 'integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
952
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
953 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
954 "*Non-nil means that the default name of a file to save articles in is the group name.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
955 If it's nil, the directory form of the group name is used instead.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
956
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
957 If this variable is a list, and the list contains the element
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
958 `not-score', long file names will not be used for score files; if it
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
959 contains the element `not-save', long file names will not be used for
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
960 saving; and if it contains the element `not-kill', long file names
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
961 will not be used for kill files.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
962
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
963 Note that the default for this variable varies according to what system
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
964 type you're using. On `usg-unix-v' and `xenix' this variable defaults
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
965 to nil while on all other systems it defaults to t."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
966 :group 'gnus-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
967 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
968
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
969 (defcustom gnus-kill-files-directory gnus-directory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
970 "*Name of the directory where kill files will be stored (default \"~/News\")."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
971 :group 'gnus-score-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
972 :group 'gnus-score-kill
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
973 :type 'directory)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
974
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
975 (defcustom gnus-save-score nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
976 "*If non-nil, save group scoring info."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
977 :group 'gnus-score-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
978 :group 'gnus-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
979 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
980
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
981 (defcustom gnus-use-undo t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
982 "*If non-nil, allow undoing in Gnus group mode buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
983 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
984 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
985
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
986 (defcustom gnus-use-adaptive-scoring nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
987 "*If non-nil, use some adaptive scoring scheme.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
988 If a list, then the values `word' and `line' are meaningful. The
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
989 former will perform adaption on individual words in the subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
990 header while `line' will perform adaption on several headers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
991 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
992 :group 'gnus-score-adapt
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
993 :type '(set (const word) (const line)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
994
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
995 (defcustom gnus-use-cache 'passive
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
996 "*If nil, Gnus will ignore the article cache.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
997 If `passive', it will allow entering (and reading) articles
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
998 explicitly entered into the cache. If anything else, use the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
999 cache to the full extent of the law."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1000 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1001 :group 'gnus-cache
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1002 :type '(choice (const :tag "off" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1003 (const :tag "passive" passive)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1004 (const :tag "active" t)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1006 (defcustom gnus-use-trees nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1007 "*If non-nil, display a thread tree buffer."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1008 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1009 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1010
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1011 (defcustom gnus-use-grouplens nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1012 "*If non-nil, use GroupLens ratings."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1013 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1014 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1015
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1016 (defcustom gnus-keep-backlog nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1017 "*If non-nil, Gnus will keep read articles for later re-retrieval.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1018 If it is a number N, then Gnus will only keep the last N articles
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1019 read. If it is neither nil nor a number, Gnus will keep all read
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1020 articles. This is not a good idea."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1021 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1022 :type '(choice (const :tag "off" nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1023 integer
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1024 (sexp :format "all"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1025 :value t)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1026
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1027 (defcustom gnus-use-nocem nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1028 "*If non-nil, Gnus will read NoCeM cancel messages."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1029 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1030 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1031
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1032 (defcustom gnus-suppress-duplicates nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1033 "*If non-nil, Gnus will mark duplicate copies of the same article as read."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1034 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1035 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1036
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1037 (defcustom gnus-use-demon nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1038 "If non-nil, Gnus might use some demons."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1039 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1040 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1041
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1042 (defcustom gnus-use-scoring t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1043 "*If non-nil, enable scoring."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1044 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1045 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1046
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1047 (defcustom gnus-use-picons nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1048 "*If non-nil, display picons."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1049 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1050 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1051
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1052 (defcustom gnus-summary-prepare-exit-hook
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1053 '(gnus-summary-expire-articles)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1054 "A hook called when preparing to exit from the summary buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1055 It calls `gnus-summary-expire-articles' by default."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1056 :group 'gnus-summary-exit
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1057 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1058
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1059 (defcustom gnus-novice-user t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1060 "*Non-nil means that you are a usenet novice.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1061 If non-nil, verbose messages may be displayed and confirmations may be
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1062 required."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1063 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1064 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1065
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1066 (defcustom gnus-expert-user nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1067 "*Non-nil means that you will never be asked for confirmation about anything.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1068 And that means *anything*."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1069 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1070 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1071
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1072 (defcustom gnus-interactive-catchup t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1073 "*If non-nil, require your confirmation when catching up a group."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1074 :group 'gnus-group-select
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1075 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1076
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1077 (defcustom gnus-interactive-exit t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1078 "*If non-nil, require your confirmation when exiting Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1079 :group 'gnus-exit
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1080 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1081
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1082 (defcustom gnus-extract-address-components 'gnus-extract-address-components
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1083 "*Function for extracting address components from a From header.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1084 Two pre-defined function exist: `gnus-extract-address-components',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1085 which is the default, quite fast, and too simplistic solution, and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1086 `mail-extract-address-components', which works much better, but is
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1087 slower."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1088 :group 'gnus-summary-format
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1089 :type '(radio (function-item gnus-extract-address-components)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1090 (function-item mail-extract-address-components)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1091 (function :tag "Other")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1092
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1093 (defcustom gnus-carpal nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1094 "*If non-nil, display clickable icons."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1095 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1096 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1097
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1098 (defcustom gnus-shell-command-separator ";"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1099 "String used to separate to shell commands."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1100 :group 'gnus-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1101 :type 'string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1102
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1103 (defcustom gnus-valid-select-methods
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1104 '(("nntp" post address prompt-address physical-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1105 ("nnspool" post address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1106 ("nnvirtual" post-mail virtual prompt-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1107 ("nnmbox" mail respool address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1108 ("nnml" mail respool address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1109 ("nnmh" mail respool address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1110 ("nndir" post-mail prompt-address physical-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1111 ("nneething" none address prompt-address physical-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1112 ("nndoc" none address prompt-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1113 ("nnbabyl" mail address respool)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1114 ("nnkiboze" post virtual)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1115 ("nnsoup" post-mail address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1116 ("nndraft" post-mail)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1117 ("nnfolder" mail respool address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1118 ("nngateway" none address prompt-address physical-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1119 ("nnweb" none))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1120 "An alist of valid select methods.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1121 The first element of each list lists should be a string with the name
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1122 of the select method. The other elements may be the category of
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1123 this method (i. e., `post', `mail', `none' or whatever) or other
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1124 properties that this method has (like being respoolable).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1125 If you implement a new select method, all you should have to change is
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1126 this variable. I think."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1127 :group 'gnus-server
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1128 :type '(repeat (group (string :tag "Name")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1129 (radio-button-choice (const :format "%v " post)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1130 (const :format "%v " mail)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1131 (const :format "%v " none)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1132 (const post-mail))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1133 (checklist :inline t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1134 (const :format "%v " address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1135 (const :format "%v " prompt-address)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1136 (const :format "%v " virtual)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1137 (const respool)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1138
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1139 (define-widget 'gnus-select-method 'list
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1140 "Widget for entering a select method."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1141 :args `((choice :tag "Method"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1142 ,@(mapcar (lambda (entry)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1143 (list 'const :format "%v\n"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1144 (intern (car entry))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1145 gnus-valid-select-methods))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1146 (string :tag "Address")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1147 (editable-list :inline t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1148 (list :format "%v"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1149 variable
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1150 (sexp :tag "Value")))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1151
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1152 (defcustom gnus-updated-mode-lines '(group article summary tree)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1153 "List of buffers that should update their mode lines.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1154 The list may contain the symbols `group', `article', `tree' and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1155 `summary'. If the corresponding symbol is present, Gnus will keep
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1156 that mode line updated with information that may be pertinent.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1157 If this variable is nil, screen refresh may be quicker."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1158 :group 'gnus-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1159 :type '(set (const group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1160 (const article)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1161 (const summary)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1162 (const tree)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1163
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1164 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1165 (defcustom gnus-mode-non-string-length nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1166 "*Max length of mode-line non-string contents.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1167 If this is nil, Gnus will take space as is needed, leaving the rest
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
1168 of the modeline intact. Note that the default of nil is unlikely
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
1169 to be desirable; see the manual for further details."
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1170 :group 'gnus-various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1171 :type '(choice (const nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1172 integer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1174 (defcustom gnus-auto-expirable-newsgroups nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1175 "*Groups in which to automatically mark read articles as expirable.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1176 If non-nil, this should be a regexp that should match all groups in
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1177 which to perform auto-expiry. This only makes sense for mail groups."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1178 :group 'gnus-mail-expire
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1179 :type '(choice (const nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1180 regexp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1181
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1182 (defcustom gnus-total-expirable-newsgroups nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1183 "*Groups in which to perform expiry of all read articles.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1184 Use with extreme caution. All groups that match this regexp will be
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1185 expiring - which means that all read articles will be deleted after
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1186 \(say) one week. (This only goes for mail groups and the like, of
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1187 course.)"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1188 :group 'gnus-mail-expire
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1189 :type '(choice (const nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1190 regexp))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1191
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1192 (defcustom gnus-group-uncollapsed-levels 1
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1193 "Number of group name elements to leave alone when making a short group name."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1194 :group 'gnus-group-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1195 :type 'integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1196
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1197 (defcustom gnus-group-use-permanent-levels nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1198 "*If non-nil, once you set a level, Gnus will use this level."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1199 :group 'gnus-group-levels
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1200 :type 'boolean)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1201
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1202 ;; Hooks.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1203
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1204 (defcustom gnus-load-hook nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1205 "A hook run while Gnus is loaded."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1206 :group 'gnus-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1207 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1208
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1209 (defcustom gnus-apply-kill-hook '(gnus-apply-kill-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1210 "A hook called to apply kill files to a group.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1211 This hook is intended to apply a kill file to the selected newsgroup.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1212 The function `gnus-apply-kill-file' is called by default.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1213
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1214 Since a general kill file is too heavy to use only for a few
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1215 newsgroups, I recommend you to use a lighter hook function. For
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1216 example, if you'd like to apply a kill file to articles which contains
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1217 a string `rmgroup' in subject in newsgroup `control', you can use the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1218 following hook:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1219
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1220 (setq gnus-apply-kill-hook
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1221 (list
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1222 (lambda ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1223 (cond ((string-match \"control\" gnus-newsgroup-name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1224 (gnus-kill \"Subject\" \"rmgroup\")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1225 (gnus-expunge \"X\"))))))"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1226 :group 'gnus-score-kill
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1227 :options '(gnus-apply-kill-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1228 :type 'hook)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1229
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1230 (defcustom gnus-group-change-level-function nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1231 "Function run when a group level is changed.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1232 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1233 :group 'gnus-group-level
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1234 :type 'function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1235
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1236 ;;; Face thingies.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1237
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1238 (defcustom gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1239 '(summary-highlight group-highlight article-highlight
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1240 mouse-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1241 summary-menu group-menu article-menu
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1242 tree-highlight menu highlight
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1243 browse-menu server-menu
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1244 page-marker tree-menu binary-menu pick-menu
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1245 grouplens-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1246 "Enable visual features.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1247 If `visual' is disabled, there will be no menus and few faces. Most of
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1248 the visual customization options below will be ignored. Gnus will use
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1249 less space and be faster as a result.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1250
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1251 This variable can also be a list of visual elements to switch on. For
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1252 instance, to switch off all visual things except menus, you can say:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1253
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1254 (setq gnus-visual '(menu))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1255
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1256 Valid elements include `summary-highlight', `group-highlight',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1257 `article-highlight', `mouse-face', `summary-menu', `group-menu',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1258 `article-menu', `tree-highlight', `menu', `highlight', `browse-menu',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1259 `server-menu', `page-marker', `tree-menu', `binary-menu', `pick-menu',
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1260 and `grouplens-menu'."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1261 :group 'gnus-meta
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1262 :group 'gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1263 :type '(set (const summary-highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1264 (const group-highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1265 (const article-highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1266 (const mouse-face)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1267 (const summary-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1268 (const group-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1269 (const article-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1270 (const tree-highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1271 (const menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1272 (const highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1273 (const browse-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1274 (const server-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1275 (const page-marker)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1276 (const tree-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1277 (const binary-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1278 (const pick-menu)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1279 (const grouplens-menu)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1280
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1281 (defcustom gnus-mouse-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1282 (condition-case ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1283 (if (gnus-visual-p 'mouse-face 'highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1284 (if (boundp 'gnus-mouse-face)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1285 (or gnus-mouse-face 'highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1286 'highlight)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1287 'default)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1288 (error 'highlight))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1289 "Face used for group or summary buffer mouse highlighting.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1290 The line beneath the mouse pointer will be highlighted with this
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1291 face."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1292 :group 'gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1293 :type 'face)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1294
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1295 (defcustom gnus-article-display-hook
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1296 (if (and (string-match "XEmacs" emacs-version)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1297 (featurep 'xface))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1298 '(gnus-article-hide-headers-if-wanted
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1299 gnus-article-hide-boring-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1300 gnus-article-treat-overstrike
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1301 gnus-article-maybe-highlight
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1302 gnus-article-display-x-face)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1303 '(gnus-article-hide-headers-if-wanted
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1304 gnus-article-hide-boring-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1305 gnus-article-treat-overstrike
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1306 gnus-article-maybe-highlight))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1307 "Controls how the article buffer will look.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1308
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1309 If you leave the list empty, the article will appear exactly as it is
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1310 stored on the disk. The list entries will hide or highlight various
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1311 parts of the article, making it easier to find the information you
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1312 want."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1313 :group 'gnus-article-highlight
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1314 :group 'gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1315 :type 'hook
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1316 :options '(gnus-article-add-buttons
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1317 gnus-article-add-buttons-to-head
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1318 gnus-article-emphasize
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1319 gnus-article-fill-cited-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1320 gnus-article-remove-cr
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1321 gnus-article-de-quoted-unreadable
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1322 gnus-article-display-x-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1323 gnus-summary-stop-page-breaking
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1324 ;; gnus-summary-caesar-message
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1325 ;; gnus-summary-verbose-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1326 gnus-summary-toggle-mime
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1327 gnus-article-hide
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1328 gnus-article-hide-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1329 gnus-article-hide-boring-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1330 gnus-article-hide-signature
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1331 gnus-article-hide-citation
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1332 gnus-article-hide-pgp
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1333 gnus-article-hide-pem
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1334 gnus-article-highlight
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1335 gnus-article-highlight-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1336 gnus-article-highlight-citation
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1337 gnus-article-highlight-signature
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1338 gnus-article-date-ut
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1339 gnus-article-date-local
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1340 gnus-article-date-lapsed
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1341 gnus-article-date-original
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1342 gnus-article-remove-trailing-blank-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1343 gnus-article-strip-leading-blank-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1344 gnus-article-strip-multiple-blank-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1345 gnus-article-strip-blank-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1346 gnus-article-treat-overstrike
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1347 ))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1349
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1350 ;;; Internal variables
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1351
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1352 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1353 (defvar gnus-original-article-buffer " *Original Article*")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1354 (defvar gnus-newsgroup-name nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1355
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1356 (defvar gnus-current-select-method nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1357 "The current method for selecting a newsgroup.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1358
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1359 (defvar gnus-tree-buffer "*Tree*"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1360 "Buffer where Gnus thread trees are displayed.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1361
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1362 ;; Dummy variable.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1363 (defvar gnus-use-generic-from nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1364
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1365 ;; Variable holding the user answers to all method prompts.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1366 (defvar gnus-method-history nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1367 (defvar gnus-group-history nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1368
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1369 ;; Variable holding the user answers to all mail method prompts.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1370 (defvar gnus-mail-method-history nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1371
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1372 ;; Variable holding the user answers to all group prompts.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1373 (defvar gnus-group-history nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1374
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1375 (defvar gnus-server-alist nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1376 "List of available servers.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1377
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1378 (defvar gnus-predefined-server-alist
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1379 `(("cache"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1380 (nnspool "cache"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1381 (nnspool-spool-directory "~/News/cache/")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1382 (nnspool-nov-directory "~/News/cache/")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1383 (nnspool-active-file "~/News/cache/active"))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1384 "List of predefined (convenience) servers.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1385
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1386 (defvar gnus-topic-indentation "") ;; Obsolete variable.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1387
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1388 (defconst gnus-article-mark-lists
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1389 '((marked . tick) (replied . reply)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1390 (expirable . expire) (killed . killed)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1391 (bookmarks . bookmark) (dormant . dormant)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1392 (scored . score) (saved . save)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1393 (cached . cache)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1394
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1395 (defvar gnus-headers-retrieved-by nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1396 (defvar gnus-article-reply nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1397 (defvar gnus-override-method nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1398 (defvar gnus-article-check-size nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1399 (defvar gnus-opened-servers nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1400
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1401 (defvar gnus-current-kill-article nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1402
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1403 (defvar gnus-have-read-active-file nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1404
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1405 (defconst gnus-maintainer
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1406 "gnus-bug@ifi.uio.no (The Gnus Bugfixing Girls + Boys)"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1407 "The mail address of the Gnus maintainers.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1408
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1409 (defvar gnus-info-nodes
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1410 '((gnus-group-mode "(gnus)The Group Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1411 (gnus-summary-mode "(gnus)The Summary Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1412 (gnus-article-mode "(gnus)The Article Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1413 (mime/viewer-mode "(gnus)The Article Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1414 (gnus-server-mode "(gnus)The Server Buffer")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1415 (gnus-browse-mode "(gnus)Browse Foreign Server")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1416 (gnus-tree-mode "(gnus)Tree Display"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1417 "Alist of major modes and related Info nodes.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1418
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1419 (defvar gnus-group-buffer "*Group*")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1420 (defvar gnus-summary-buffer "*Summary*")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1421 (defvar gnus-article-buffer "*Article*")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1422 (defvar gnus-server-buffer "*Server*")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1423
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1424 (defvar gnus-buffer-list nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1425 "Gnus buffers that should be killed on exit.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1426
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1427 (defvar gnus-slave nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1428 "Whether this Gnus is a slave or not.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1429
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1430 (defvar gnus-batch-mode nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1431 "Whether this Gnus is running in batch mode or not.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1432
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1433 (defvar gnus-variable-list
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1434 '(gnus-newsrc-options gnus-newsrc-options-n
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1435 gnus-newsrc-last-checked-date
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1436 gnus-newsrc-alist gnus-server-alist
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1437 gnus-killed-list gnus-zombie-list
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1438 gnus-topic-topology gnus-topic-alist
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1439 gnus-format-specs)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1440 "Gnus variables saved in the quick startup file.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1441
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1442 (defvar gnus-newsrc-alist nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1443 "Assoc list of read articles.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1444 gnus-newsrc-hashtb should be kept so that both hold the same information.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1445
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1446 (defvar gnus-newsrc-hashtb nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1447 "Hashtable of gnus-newsrc-alist.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1448
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1449 (defvar gnus-killed-list nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1450 "List of killed newsgroups.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1451
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1452 (defvar gnus-killed-hashtb nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1453 "Hash table equivalent of gnus-killed-list.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1454
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1455 (defvar gnus-zombie-list nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1456 "List of almost dead newsgroups.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1457
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1458 (defvar gnus-description-hashtb nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1459 "Descriptions of newsgroups.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1460
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1461 (defvar gnus-list-of-killed-groups nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1462 "List of newsgroups that have recently been killed by the user.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1463
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1464 (defvar gnus-active-hashtb nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1465 "Hashtable of active articles.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1466
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1467 (defvar gnus-moderated-hashtb nil
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1468 "Hashtable of moderated newsgroups.")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1469
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1470 ;; Save window configuration.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1471 (defvar gnus-prev-winconf nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1472
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1473 (defvar gnus-reffed-article-number nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1474
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1475 ;;; Let the byte-compiler know that we know about this variable.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1476 (defvar rmail-default-rmail-file)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1477
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1478 (defvar gnus-dead-summary nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1479
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1480 ;;; End of variables.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1481
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1482 ;; Define some autoload functions Gnus might use.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1483 (eval-and-compile
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1484
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1485 ;; This little mapcar goes through the list below and marks the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1486 ;; symbols in question as autoloaded functions.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1487 (mapcar
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1488 (lambda (package)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1489 (let ((interactive (nth 1 (memq ':interactive package))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1490 (mapcar
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1491 (lambda (function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1492 (let (keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1493 (when (consp function)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1494 (setq keymap (car (memq 'keymap function)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1495 (setq function (car function)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1496 (autoload function (car package) nil interactive keymap)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1497 (if (eq (nth 1 package) ':interactive)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1498 (cdddr package)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1499 (cdr package)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1500 '(("metamail" metamail-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1501 ("info" Info-goto-node)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1502 ("hexl" hexl-hex-string-to-integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1503 ("pp" pp pp-to-string pp-eval-expression)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1504 ("ps-print" ps-print-preprint)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1505 ("mail-extr" mail-extract-address-components)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1506 ("message" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1507 message-send-and-exit message-yank-original)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1508 ("nnmail" nnmail-split-fancy nnmail-article-group nnmail-date-to-time)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1509 ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1510 ("timezone" timezone-make-date-arpa-standard timezone-fix-time
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1511 timezone-make-sortable-date timezone-make-time-string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1512 ("rmailout" rmail-output)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1513 ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1514 rmail-show-message)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1515 ("gnus-audio" :interactive t gnus-audio-play)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1516 ("gnus-xmas" gnus-xmas-splash)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1517 ("gnus-soup" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1518 gnus-group-brew-soup gnus-brew-soup gnus-soup-add-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1519 gnus-soup-send-replies gnus-soup-save-areas gnus-soup-pack-packet)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1520 ("nnsoup" nnsoup-pack-replies)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1521 ("score-mode" :interactive t gnus-score-mode)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1522 ("gnus-mh" gnus-summary-save-article-folder
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1523 gnus-Folder-save-name gnus-folder-save-name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1524 ("gnus-mh" :interactive t gnus-summary-save-in-folder)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1525 ("gnus-demon" gnus-demon-add-nocem gnus-demon-add-scanmail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1526 gnus-demon-add-rescan gnus-demon-add-scan-timestamps
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1527 gnus-demon-add-disconnection gnus-demon-add-handler
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1528 gnus-demon-remove-handler)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1529 ("gnus-demon" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1530 gnus-demon-init gnus-demon-cancel)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1531 ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1532 gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1533 ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1534 gnus-nocem-unwanted-article-p)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1535 ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1536 ("gnus-srvr" gnus-browse-foreign-server)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1537 ("gnus-cite" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1538 gnus-article-highlight-citation gnus-article-hide-citation-maybe
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1539 gnus-article-hide-citation gnus-article-fill-cited-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1540 gnus-article-hide-citation-in-followups)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1541 ("gnus-kill" gnus-kill gnus-apply-kill-file-internal
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1542 gnus-kill-file-edit-file gnus-kill-file-raise-followups-to-author
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1543 gnus-execute gnus-expunge)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1544 ("gnus-cache" gnus-cache-possibly-enter-article gnus-cache-save-buffers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1545 gnus-cache-possibly-remove-articles gnus-cache-request-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1546 gnus-cache-retrieve-headers gnus-cache-possibly-alter-active
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1547 gnus-cache-enter-remove-article gnus-cached-article-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1548 gnus-cache-open gnus-cache-close gnus-cache-update-article)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1549 ("gnus-cache" :interactive t gnus-jog-cache gnus-cache-enter-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1550 gnus-cache-remove-article gnus-summary-insert-cached-articles)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1551 ("gnus-score" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1552 gnus-summary-increase-score gnus-summary-set-score
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1553 gnus-summary-raise-thread gnus-summary-raise-same-subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1554 gnus-summary-raise-score gnus-summary-raise-same-subject-and-select
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1555 gnus-summary-lower-thread gnus-summary-lower-same-subject
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1556 gnus-summary-lower-score gnus-summary-lower-same-subject-and-select
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1557 gnus-summary-current-score gnus-score-default
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1558 gnus-score-flush-cache gnus-score-close
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1559 gnus-possibly-score-headers gnus-score-followup-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1560 gnus-score-followup-thread)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1561 ("gnus-score"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1562 (gnus-summary-score-map keymap) gnus-score-save gnus-score-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1563 gnus-current-score-file-nondirectory gnus-score-adaptive
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1564 gnus-score-find-trace gnus-score-file-name)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1565 ("gnus-cus" :interactive t gnus-group-customize gnus-score-customize)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1566 ("gnus-topic" :interactive t gnus-topic-mode)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1567 ("gnus-topic" gnus-topic-remove-group gnus-topic-set-parameters)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1568 ("gnus-salt" :interactive t gnus-pick-mode gnus-binary-mode)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1569 ("gnus-uu" (gnus-uu-extract-map keymap) (gnus-uu-mark-map keymap))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1570 ("gnus-uu" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1571 gnus-uu-digest-mail-forward gnus-uu-digest-post-forward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1572 gnus-uu-mark-series gnus-uu-mark-region gnus-uu-mark-buffer
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1573 gnus-uu-mark-by-regexp gnus-uu-mark-all
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1574 gnus-uu-mark-sparse gnus-uu-mark-thread gnus-uu-decode-uu
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1575 gnus-uu-decode-uu-and-save gnus-uu-decode-unshar
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1576 gnus-uu-decode-unshar-and-save gnus-uu-decode-save
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1577 gnus-uu-decode-binhex gnus-uu-decode-uu-view
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1578 gnus-uu-decode-uu-and-save-view gnus-uu-decode-unshar-view
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1579 gnus-uu-decode-unshar-and-save-view gnus-uu-decode-save-view
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1580 gnus-uu-decode-binhex-view)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1581 ("gnus-uu" gnus-uu-delete-work-dir)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1582 ("gnus-msg" (gnus-summary-send-map keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1583 gnus-article-mail gnus-copy-article-buffer gnus-extended-version)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1584 ("gnus-msg" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1585 gnus-group-post-news gnus-group-mail gnus-summary-post-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1586 gnus-summary-followup gnus-summary-followup-with-original
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1587 gnus-summary-cancel-article gnus-summary-supersede-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1588 gnus-post-news gnus-summary-reply gnus-summary-reply-with-original
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1589 gnus-summary-mail-forward gnus-summary-mail-other-window
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1590 gnus-summary-resend-message gnus-summary-resend-bounced-mail
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1591 gnus-bug)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1592 ("gnus-picon" :interactive t gnus-article-display-picons
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1593 gnus-group-display-picons gnus-picons-article-display-x-face
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1594 gnus-picons-display-x-face)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1595 ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1596 gnus-grouplens-mode)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1597 ("smiley" :interactive t gnus-smiley-display)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1598 ("gnus-win" gnus-configure-windows gnus-add-configuration)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1599 ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1600 gnus-list-of-unread-articles gnus-list-of-read-articles
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1601 gnus-offer-save-summaries gnus-make-thread-indent-array
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1602 gnus-summary-exit gnus-update-read-articles)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1603 ("gnus-group" gnus-group-insert-group-line gnus-group-quit
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1604 gnus-group-list-groups gnus-group-first-unread-group
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1605 gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1606 gnus-group-setup-buffer gnus-group-get-new-news
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1607 gnus-group-make-help-group gnus-group-update-group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1608 ("gnus-bcklg" gnus-backlog-request-article gnus-backlog-enter-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1609 gnus-backlog-remove-article)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1610 ("gnus-art" gnus-article-read-summary-keys gnus-article-save
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1611 gnus-article-prepare gnus-article-set-window-start
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1612 gnus-article-next-page gnus-article-prev-page
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1613 gnus-request-article-this-buffer gnus-article-mode
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1614 gnus-article-setup-buffer gnus-narrow-to-page)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1615 ("gnus-art" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1616 gnus-article-hide-headers gnus-article-hide-boring-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1617 gnus-article-treat-overstrike gnus-article-word-wrap
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1618 gnus-article-remove-cr gnus-article-remove-trailing-blank-lines
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1619 gnus-article-display-x-face gnus-article-de-quoted-unreadable
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1620 gnus-article-mime-decode-quoted-printable gnus-article-hide-pgp
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1621 gnus-article-hide-pem gnus-article-hide-signature
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1622 gnus-article-strip-leading-blank-lines gnus-article-date-local
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1623 gnus-article-date-original gnus-article-date-lapsed
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1624 gnus-article-show-all-headers
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1625 gnus-article-edit-mode gnus-article-edit-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1626 gnus-article-edit-done gnus-decode-rfc1522 article-decode-rfc1522)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1627 ("gnus-int" gnus-request-type)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1628 ("gnus-start" gnus-newsrc-parse-options gnus-1 gnus-no-server-1
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1629 gnus-dribble-enter)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1630 ("gnus-dup" gnus-dup-suppress-articles gnus-dup-unsuppress-article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1631 gnus-dup-enter-articles)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1632 ("gnus-range" gnus-copy-sequence)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1633 ("gnus-eform" gnus-edit-form)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1634 ("gnus-move" :interactive t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1635 gnus-group-move-group-to-server gnus-change-server)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1636 ("gnus-logic" gnus-score-advanced)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1637 ("gnus-undo" gnus-undo-mode gnus-undo-register)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1638 ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1639 gnus-async-prefetch-article gnus-async-prefetch-remove-group
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1640 gnus-async-halt-prefetch)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1641 ("gnus-vm" :interactive t gnus-summary-save-in-vm
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1642 gnus-summary-save-article-vm))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1643
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1644 ;;; gnus-sum.el thingies
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1645
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1646
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1647 (defcustom gnus-summary-line-format "%U\%R\%z\%I\%(%[%4L: %-20,20n%]%) %s\n"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1648 "*The format specification of the lines in the summary buffer.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1649
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1650 It works along the same lines as a normal formatting string,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1651 with some simple extensions.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1652
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1653 %N Article number, left padded with spaces (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1654 %S Subject (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1655 %s Subject if it is at the root of a thread, and \"\" otherwise (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1656 %n Name of the poster (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1657 %a Extracted name of the poster (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1658 %A Extracted address of the poster (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1659 %F Contents of the From: header (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1660 %x Contents of the Xref: header (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1661 %D Date of the article (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1662 %d Date of the article (string) in DD-MMM format
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1663 %M Message-id of the article (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1664 %r References of the article (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1665 %c Number of characters in the article (integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1666 %L Number of lines in the article (integer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1667 %I Indentation based on thread level (a string of spaces)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1668 %T A string with two possible values: 80 spaces if the article
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1669 is on thread level two or larger and 0 spaces on level one
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1670 %R \"A\" if this article has been replied to, \" \" otherwise (character)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1671 %U Status of this article (character, \"R\", \"K\", \"-\" or \" \")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1672 %[ Opening bracket (character, \"[\" or \"<\")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1673 %] Closing bracket (character, \"]\" or \">\")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1674 %> Spaces of length thread-level (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1675 %< Spaces of length (- 20 thread-level) (string)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1676 %i Article score (number)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1677 %z Article zcore (character)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1678 %t Number of articles under the current thread (number).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1679 %e Whether the thread is empty or not (character).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1680 %l GroupLens score (string).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1681 %V Total thread score (number).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1682 %P The line number (number).
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1683 %u User defined specifier. The next character in the format string should
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1684 be a letter. Gnus will call the function gnus-user-format-function-X,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1685 where X is the letter following %u. The function will be passed the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1686 current header as argument. The function should return a string, which
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1687 will be inserted into the summary just like information from any other
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1688 summary specifier.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1690 Text between %( and %) will be highlighted with `gnus-mouse-face'
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1691 when the mouse point is placed inside the area. There can only be one
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1692 such area.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1693
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1694 The %U (status), %R (replied) and %z (zcore) specs have to be handled
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1695 with care. For reasons of efficiency, Gnus will compute what column
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1696 these characters will end up in, and \"hard-code\" that. This means that
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1697 it is illegal to have these specs after a variable-length spec. Well,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1698 you might not be arrested, but your summary buffer will look strange,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1699 which is bad enough.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1700
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1701 The smart choice is to have these specs as for to the left as
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1702 possible.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1703
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1704 This restriction may disappear in later versions of Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1705 :type 'string
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1706 :group 'gnus-summary-format)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1707
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1708 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1709 ;;; Skeleton keymaps
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1710 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1711
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1712 (defun gnus-suppress-keymap (keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1713 (suppress-keymap keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1714 (let ((keys `([delete] "\177" "\M-u"))) ;gnus-mouse-2
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1715 (while keys
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1716 (define-key keymap (pop keys) 'undefined))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1717
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1718 (defvar gnus-article-mode-map
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1719 (let ((keymap (make-keymap)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1720 (gnus-suppress-keymap keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1721 keymap))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1722 (defvar gnus-summary-mode-map
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1723 (let ((keymap (make-keymap)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1724 (gnus-suppress-keymap keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1725 keymap))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1726 (defvar gnus-group-mode-map
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1727 (let ((keymap (make-keymap)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1728 (gnus-suppress-keymap keymap)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1729 keymap))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1730
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1731
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1732
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1733 ;; Fix by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1734 ;; If you want the cursor to go somewhere else, set these two
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1735 ;; functions in some startup hook to whatever you want.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1736 (defalias 'gnus-summary-position-point 'gnus-goto-colon)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1737 (defalias 'gnus-group-position-point 'gnus-goto-colon)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1738
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1739 ;;; Various macros and substs.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1740
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1741 (defun gnus-header-from (header)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1742 (mail-header-from header))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1743
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1744 (defmacro gnus-gethash (string hashtable)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1745 "Get hash value of STRING in HASHTABLE."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1746 `(symbol-value (intern-soft ,string ,hashtable)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1747
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1748 (defmacro gnus-sethash (string value hashtable)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1749 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1750 `(set (intern ,string ,hashtable) ,value))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1751 (put 'gnus-sethash 'edebug-form-spec '(form form form))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1752
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1753 (defmacro gnus-group-unread (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1754 "Get the currently computed number of unread articles in GROUP."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1755 `(car (gnus-gethash ,group gnus-newsrc-hashtb)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1756
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1757 (defmacro gnus-group-entry (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1758 "Get the newsrc entry for GROUP."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1759 `(gnus-gethash ,group gnus-newsrc-hashtb))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1760
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1761 (defmacro gnus-active (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1762 "Get active info on GROUP."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1763 `(gnus-gethash ,group gnus-active-hashtb))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1764
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1765 (defmacro gnus-set-active (group active)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1766 "Set GROUP's active info."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1767 `(gnus-sethash ,group ,active gnus-active-hashtb))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1769 (defun gnus-alive-p ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1770 "Say whether Gnus is running or not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1771 (and gnus-group-buffer
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1772 (get-buffer gnus-group-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1773 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1774 (set-buffer gnus-group-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1775 (eq major-mode 'gnus-group-mode))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1776
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1777 ;; Info access macros.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1778
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1779 (defmacro gnus-info-group (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1780 `(nth 0 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1781 (defmacro gnus-info-rank (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1782 `(nth 1 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1783 (defmacro gnus-info-read (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1784 `(nth 2 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1785 (defmacro gnus-info-marks (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1786 `(nth 3 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1787 (defmacro gnus-info-method (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1788 `(nth 4 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1789 (defmacro gnus-info-params (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1790 `(nth 5 ,info))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1791
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1792 (defmacro gnus-info-level (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1793 `(let ((rank (gnus-info-rank ,info)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1794 (if (consp rank)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1795 (car rank)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1796 rank)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1797 (defmacro gnus-info-score (info)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1798 `(let ((rank (gnus-info-rank ,info)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1799 (or (and (consp rank) (cdr rank)) 0)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1800
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1801 (defmacro gnus-info-set-group (info group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1802 `(setcar ,info ,group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1803 (defmacro gnus-info-set-rank (info rank)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1804 `(setcar (nthcdr 1 ,info) ,rank))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1805 (defmacro gnus-info-set-read (info read)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1806 `(setcar (nthcdr 2 ,info) ,read))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1807 (defmacro gnus-info-set-marks (info marks &optional extend)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1808 (if extend
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1809 `(gnus-info-set-entry ,info ,marks 3)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1810 `(setcar (nthcdr 3 ,info) ,marks)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1811 (defmacro gnus-info-set-method (info method &optional extend)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1812 (if extend
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1813 `(gnus-info-set-entry ,info ,method 4)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1814 `(setcar (nthcdr 4 ,info) ,method)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1815 (defmacro gnus-info-set-params (info params &optional extend)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1816 (if extend
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1817 `(gnus-info-set-entry ,info ,params 5)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1818 `(setcar (nthcdr 5 ,info) ,params)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1819
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1820 (defun gnus-info-set-entry (info entry number)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1821 ;; Extend the info until we have enough elements.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1822 (while (<= (length info) number)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1823 (nconc info (list nil)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1824 ;; Set the entry.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1825 (setcar (nthcdr number info) entry))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1826
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1827 (defmacro gnus-info-set-level (info level)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1828 `(let ((rank (cdr ,info)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1829 (if (consp (car rank))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1830 (setcar (car rank) ,level)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1831 (setcar rank ,level))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1832 (defmacro gnus-info-set-score (info score)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1833 `(let ((rank (cdr ,info)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1834 (if (consp (car rank))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1835 (setcdr (car rank) ,score)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1836 (setcar rank (cons (car rank) ,score)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1837
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1838 (defmacro gnus-get-info (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1839 `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1840
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1841 ;; Byte-compiler warning.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1842 (defvar gnus-visual)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1843 ;; Find out whether the gnus-visual TYPE is wanted.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1844 (defun gnus-visual-p (&optional type class)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1845 (and gnus-visual ; Has to be non-nil, at least.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1846 (if (not type) ; We don't care about type.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1847 gnus-visual
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1848 (if (listp gnus-visual) ; It's a list, so we check it.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1849 (or (memq type gnus-visual)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1850 (memq class gnus-visual))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1851 t))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1852
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1853 ;;; Load the compatability functions.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1854
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1855 (require 'gnus-ems)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1857
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1858 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1859 ;;; Shutdown
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1860 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1861
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1862 (defvar gnus-shutdown-alist nil)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1863
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1864 (defun gnus-add-shutdown (function &rest symbols)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1865 "Run FUNCTION whenever one of SYMBOLS is shut down."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1866 (push (cons function symbols) gnus-shutdown-alist))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1867
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1868 (defun gnus-shutdown (symbol)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1869 "Shut down everything that waits for SYMBOL."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1870 (let ((alist gnus-shutdown-alist)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1871 entry)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1872 (while (setq entry (pop alist))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1873 (when (memq symbol (cdr entry))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1874 (funcall (car entry))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1875
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1876
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1877 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1878 ;;; Gnus Utility Functions
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1879 ;;;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1880
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1881 ;; Add the current buffer to the list of buffers to be killed on exit.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1882 (defun gnus-add-current-to-buffer-list ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1883 (or (memq (current-buffer) gnus-buffer-list)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1884 (push (current-buffer) gnus-buffer-list)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1885
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1886 (defun gnus-version (&optional arg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1887 "Version number of this version of Gnus.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1888 If ARG, insert string at point."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1889 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1890 (let ((methods gnus-valid-select-methods)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1891 (mess gnus-version)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1892 meth)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1893 ;; Go through all the legal select methods and add their version
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1894 ;; numbers to the total version string. Only the backends that are
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1895 ;; currently in use will have their message numbers taken into
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1896 ;; consideration.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1897 (while methods
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1898 (setq meth (intern (concat (caar methods) "-version")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1899 (and (boundp meth)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1900 (stringp (symbol-value meth))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1901 (setq mess (concat mess "; " (symbol-value meth))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1902 (setq methods (cdr methods)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1903 (if arg
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1904 (insert (message mess))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1905 (message mess))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1906
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1907 (defun gnus-continuum-version (version)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1908 "Return VERSION as a floating point number."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1909 (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1910 (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1911 (let* ((alpha (and (match-beginning 1) (match-string 1 version)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1912 (number (match-string 2 version))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1913 major minor least)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1914 (string-match "\\([0-9]\\)\\.\\([0-9]+\\)\\.?\\([0-9]+\\)?" number)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1915 (setq major (string-to-number (match-string 1 number)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1916 (setq minor (string-to-number (match-string 2 number)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1917 (setq least (if (match-beginning 3)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1918 (string-to-number (match-string 3 number))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1919 0))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1920 (string-to-number
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1921 (if (zerop major)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1922 (format "%s00%02d%02d"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1923 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1924 ((member alpha '("(ding)" "d")) "4.99")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1925 ((member alpha '("September" "s")) "5.01")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1926 ((member alpha '("Red" "r")) "5.03"))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1927 minor least)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1928 (format "%d.%02d%02d" major minor least))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1929
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1930 (defun gnus-info-find-node ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1931 "Find Info documentation of Gnus."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1932 (interactive)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1933 ;; Enlarge info window if needed.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1934 (let (gnus-info-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1935 (Info-goto-node (cadr (assq major-mode gnus-info-nodes)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1936 (setq gnus-info-buffer (current-buffer))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1937 (gnus-configure-windows 'info)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1938
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1939 ;;; More various functions.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1941 (defun gnus-group-read-only-p (&optional group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1942 "Check whether GROUP supports editing or not.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1943 If GROUP is nil, `gnus-newsgroup-name' will be checked instead. Note
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1944 that that variable is buffer-local to the summary buffers."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1945 (let ((group (or group gnus-newsgroup-name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1946 (not (gnus-check-backend-function 'request-replace-article group))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1947
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1948 (defun gnus-group-total-expirable-p (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1949 "Check whether GROUP is total-expirable or not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1950 (let ((params (gnus-group-find-parameter group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1951 val)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1952 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1953 ((memq 'total-expire params)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1954 t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1955 ((setq val (assq 'total-expire params)) ; (auto-expire . t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1956 (cdr val))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1957 (gnus-total-expirable-newsgroups ; Check var.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1958 (string-match gnus-total-expirable-newsgroups group)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1959
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1960 (defun gnus-group-auto-expirable-p (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1961 "Check whether GROUP is total-expirable or not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1962 (let ((params (gnus-group-find-parameter group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1963 val)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1964 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1965 ((memq 'auto-expire params)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1966 t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1967 ((setq val (assq 'auto-expire params)) ; (auto-expire . t)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1968 (cdr val))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1969 (gnus-auto-expirable-newsgroups ; Check var.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1970 (string-match gnus-auto-expirable-newsgroups group)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1971
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1972 (defun gnus-virtual-group-p (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1973 "Say whether GROUP is virtual or not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1974 (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1975 gnus-valid-select-methods)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1976
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1977 (defun gnus-news-group-p (group &optional article)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1978 "Return non-nil if GROUP (and ARTICLE) come from a news server."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1979 (or (gnus-member-of-valid 'post group) ; Ordinary news group.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1980 (and (gnus-member-of-valid 'post-mail group) ; Combined group.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1981 (eq (gnus-request-type group article) 'news))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1982
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1983 ;; Returns a list of writable groups.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1984 (defun gnus-writable-groups ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1985 (let ((alist gnus-newsrc-alist)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1986 groups group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1987 (while (setq group (car (pop alist)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1988 (unless (gnus-group-read-only-p group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1989 (push group groups)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1990 (nreverse groups)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1991
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1992 ;; Check whether to use long file names.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1993 (defun gnus-use-long-file-name (symbol)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1994 ;; The variable has to be set...
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1995 (and gnus-use-long-file-name
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1996 ;; If it isn't a list, then we return t.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1997 (or (not (listp gnus-use-long-file-name))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1998 ;; If it is a list, and the list contains `symbol', we
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1999 ;; return nil.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2000 (not (memq symbol gnus-use-long-file-name)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2001
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2002 ;; Generate a unique new group name.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2003 (defun gnus-generate-new-group-name (leaf)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2004 (let ((name leaf)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2005 (num 0))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2006 (while (gnus-gethash name gnus-newsrc-hashtb)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2007 (setq name (concat leaf "<" (int-to-string (setq num (1+ num))) ">")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2008 name))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2009
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2010 (defun gnus-ephemeral-group-p (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2011 "Say whether GROUP is ephemeral or not."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2012 (gnus-group-get-parameter group 'quit-config))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2013
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2014 (defun gnus-group-quit-config (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2015 "Return the quit-config of GROUP."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2016 (gnus-group-get-parameter group 'quit-config))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2017
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2018 (defun gnus-kill-ephemeral-group (group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2019 "Remove ephemeral GROUP from relevant structures."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2020 (gnus-sethash group nil gnus-newsrc-hashtb))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2021
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2022 (defun gnus-simplify-mode-line ()
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2023 "Make mode lines a bit simpler."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2024 (setq mode-line-modified "-- ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2025 (when (listp mode-line-format)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2026 (make-local-variable 'mode-line-format)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2027 (setq mode-line-format (copy-sequence mode-line-format))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2028 (when (equal (nth 3 mode-line-format) " ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2029 (setcar (nthcdr 3 mode-line-format) " "))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2030
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2031 ;;; Servers and groups.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 (defsubst gnus-server-add-address (method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 (let ((method-name (symbol-name (car method))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 (if (and (memq 'address (assoc method-name gnus-valid-select-methods))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2036 (not (assq (intern (concat method-name "-address")) method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2037 (memq 'physical-address (assq (car method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2038 gnus-valid-select-methods)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (append method (list (list (intern (concat method-name "-address"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (nth 1 method))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 (defsubst gnus-server-get-method (group method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 ;; Input either a server name, and extended server name, or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 ;; select method, and return a select method.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (cond ((stringp method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 (gnus-server-to-method method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 ((equal method gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 ((and (stringp (car method)) group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 (gnus-server-extend-method group method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 ((and method (not group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 (equal (cadr method) ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 (gnus-server-add-address method))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 (defun gnus-server-to-method (server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 "Map virtual server names to select methods."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 ;; Is this a method, perhaps?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 (and server (listp server) server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 ;; Perhaps this is the native server?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 (and (equal server "native") gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 ;; It should be in the server alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (cdr (assoc server gnus-server-alist))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2067 ;; It could be in the predefined server alist.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2068 (cdr (assoc server gnus-predefined-server-alist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 ;; If not, we look through all the opened server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 ;; to see whether we can find it there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 (let ((opened gnus-opened-servers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (while (and opened
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 (not (equal server (format "%s:%s" (caaar opened)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 (cadaar opened)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 (pop opened))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 (caar opened))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 (defmacro gnus-method-equal (ss1 ss2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 "Say whether two servers are equal."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 `(let ((s1 ,ss1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 (s2 ,ss2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 (or (equal s1 s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 (and (= (length s1) (length s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 (while (and s1 (member (car s1) s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 (setq s1 (cdr s1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 (null s1))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 (defun gnus-server-equal (m1 m2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 "Say whether two methods are equal."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 (let ((m1 (cond ((null m1) gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 ((stringp m1) (gnus-server-to-method m1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 (t m1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 (m2 (cond ((null m2) gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 ((stringp m2) (gnus-server-to-method m2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 (t m2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 (gnus-method-equal m1 m2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 (defun gnus-servers-using-backend (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 "Return a list of known servers using BACKEND."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 (let ((opened gnus-opened-servers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 (while opened
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 (when (eq backend (caaar opened))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 (push (caar opened) out))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 (pop opened))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 out))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2109 (defun gnus-archive-server-wanted-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2110 "Say whether the user wants to use the archive server."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2111 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2112 ((or (not gnus-message-archive-method)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2113 (not gnus-message-archive-group))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2114 nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2115 ((and gnus-message-archive-method gnus-message-archive-group)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2116 t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2117 (t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2118 (let ((active (cadr (assq 'nnfolder-active-file
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2119 gnus-message-archive-method))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2120 (and active
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2121 (file-exists-p active))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2122
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 (defun gnus-group-prefixed-name (group method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 "Return the whole name from GROUP and METHOD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 (and (stringp method) (setq method (gnus-server-to-method method)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2126 (if (not method)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2127 group
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2128 (concat (format "%s" (car method))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2129 (when (and
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2130 (or (assoc (format "%s" (car method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2131 (gnus-methods-using 'address))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2132 (gnus-server-equal method gnus-message-archive-method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2133 (nth 1 method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2134 (not (string= (nth 1 method) "")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2135 (concat "+" (nth 1 method)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2136 ":" group)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 (defun gnus-group-real-prefix (group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 "Return the prefix of the current group name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 (if (string-match "^[^:]+:" group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 (substring group 0 (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 (defun gnus-group-method (group)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2145 "Return the server or method used for selecting GROUP.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2146 You should probably use `gnus-find-method-for-group' instead."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 (let ((prefix (gnus-group-real-prefix group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (if (equal prefix "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 gnus-select-method
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 (let ((servers gnus-opened-servers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 (server "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 backend possible found)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 (if (string-match "^[^\\+]+\\+" prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 (setq backend (intern (substring prefix 0 (1- (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 server (substring prefix (match-end 0) (1- (length prefix))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 (setq backend (intern (substring prefix 0 (1- (length prefix))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 (while servers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 (when (eq (caaar servers) backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 (setq possible (caar servers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 (when (equal (cadaar servers) server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 (setq found (caar servers))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 (pop servers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 (or (car (rassoc found gnus-server-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 (car (rassoc possible gnus-server-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 (list backend server))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 (defsubst gnus-secondary-method-p (method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 "Return whether METHOD is a secondary select method."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 (let ((methods gnus-secondary-select-methods)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 (gmethod (gnus-server-get-method nil method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 (while (and methods
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 (not (equal (gnus-server-get-method nil (car methods))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 gmethod)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 (setq methods (cdr methods)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 methods))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 (defun gnus-group-foreign-p (group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 "Say whether a group is foreign or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 (and (not (gnus-group-native-p group))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (not (gnus-group-secondary-p group))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 (defun gnus-group-native-p (group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 "Say whether the group is native or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (not (string-match ":" group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 (defun gnus-group-secondary-p (group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 "Say whether the group is secondary or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 (gnus-secondary-method-p (gnus-find-method-for-group group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2192 (defun gnus-group-find-parameter (group &optional symbol)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2193 "Return the group parameters for GROUP.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2194 If SYMBOL, return the value of that symbol in the group parameters."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2195 (save-excursion
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2196 (set-buffer gnus-group-buffer)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2197 (let ((parameters (funcall gnus-group-get-parameter-function group)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2198 (if symbol
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2199 (gnus-group-parameter-value parameters symbol)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2200 parameters))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2201
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 (defun gnus-group-get-parameter (group &optional symbol)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2203 "Return the group parameters for GROUP.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 If SYMBOL, return the value of that symbol in the group parameters."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 (let ((params (gnus-info-params (gnus-get-info group))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 (if symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 (gnus-group-parameter-value params symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 params)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 (defun gnus-group-parameter-value (params symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 "Return the value of SYMBOL in group PARAMS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 (or (car (memq symbol params)) ; It's either a simple symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 (cdr (assq symbol params)))) ; or a cons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 (defun gnus-group-add-parameter (group param)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 "Add parameter PARAM to GROUP."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 (let ((info (gnus-get-info group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 (if (not info)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2219 () ; This is a dead group. We just ignore it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 ;; Cons the new param to the old one and update.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 (gnus-group-set-info (cons param (gnus-info-params info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 group 'params))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 (defun gnus-group-set-parameter (group name value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 "Set parameter NAME to VALUE in GROUP."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 (let ((info (gnus-get-info group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 (if (not info)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2228 () ; This is a dead group. We just ignore it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 (let ((old-params (gnus-info-params info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 (new-params (list (cons name value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 (while old-params
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2232 (when (or (not (listp (car old-params)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2233 (not (eq (caar old-params) name)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2234 (setq new-params (append new-params (list (car old-params)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (setq old-params (cdr old-params)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 (gnus-group-set-info new-params group 'params)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (defun gnus-group-add-score (group &optional score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 "Add SCORE to the GROUP score.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 If SCORE is nil, add 1 to the score of GROUP."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 (let ((info (gnus-get-info group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 (when info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 (gnus-info-set-score info (+ (gnus-info-score info) (or score 1))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2245 ;; Function written by Stainless Steel Rat <ratinox@peorth.gweep.net>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 (defun gnus-short-group-name (group &optional levels)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2247 "Collapse GROUP name LEVELS.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2248 Select methods are stripped and any remote host name is stripped down to
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2249 just the host name."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2250 (let* ((name "") (foreign "") (depth -1) (skip 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (levels (or levels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 (while (string-match "\\." group skip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 (setq skip (match-end 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 depth (+ depth 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 depth))))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2257 ;; separate foreign select method from group name and collapse.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2258 ;; if method contains a server, collapse to non-domain server name,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2259 ;; otherwise collapse to select method
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2260 (when (string-match ":" group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2261 (cond ((string-match "+" group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2262 (let* ((plus (string-match "+" group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2263 (colon (string-match ":" group (or plus 0)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2264 (dot (string-match "\\." group)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2265 (setq foreign (concat
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2266 (substring group (+ 1 plus)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2267 (cond ((null dot) colon)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2268 ((< colon dot) colon)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2269 ((< dot colon) dot)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2270 ":")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2271 group (substring group (+ 1 colon)))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2272 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2273 (let* ((colon (string-match ":" group)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2274 (setq foreign (concat (substring group 0 (+ 1 colon)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2275 group (substring group (+ 1 colon)))))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2276 ;; collapse group name leaving LEVELS uncollapsed elements
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 (while group
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2278 (if (and (string-match "\\." group) (> levels 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 (setq name (concat name (substring group 0 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 group (substring group (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 levels (- levels 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 name (concat name "."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 (setq name (concat foreign name group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 group nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 ;;; Kill file handling.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 (defun gnus-apply-kill-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 "Apply a kill file to the current newsgroup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 Returns the number of articles marked as read."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 (if (or (file-exists-p (gnus-newsgroup-kill-file nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 (gnus-apply-kill-file-internal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 (defun gnus-kill-save-kill-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 (let ((file (gnus-newsgroup-kill-file gnus-newsgroup-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 (when (get-file-buffer file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 (set-buffer (get-file-buffer file))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2305 (when (buffer-modified-p)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2306 (save-buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 (kill-buffer (current-buffer))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2309 (defcustom gnus-kill-file-name "KILL"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2310 "Suffix of the kill files."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2311 :group 'gnus-score-kill
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2312 :group 'gnus-score-files
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2313 :type 'string)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (defun gnus-newsgroup-kill-file (newsgroup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 "Return the name of a kill file name for NEWSGROUP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 If NEWSGROUP is nil, return the global kill file name instead."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 ;; The global KILL file is placed at top of the directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 ((or (null newsgroup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (string-equal newsgroup ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (expand-file-name gnus-kill-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 gnus-kill-files-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 ;; Append ".KILL" to newsgroup name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 ((gnus-use-long-file-name 'not-kill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 "." gnus-kill-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 gnus-kill-files-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 ;; Place "KILL" under the hierarchical directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 "/" gnus-kill-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 gnus-kill-files-directory))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2335 ;;; Server things.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 (defun gnus-member-of-valid (symbol group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 "Find out if GROUP has SYMBOL as part of its \"valid\" spec."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 (memq symbol (assoc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 (symbol-name (car (gnus-find-method-for-group group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 gnus-valid-select-methods)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 (defun gnus-method-option-p (method option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 "Return non-nil if select METHOD has OPTION as a parameter."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 (when (stringp method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 (setq method (gnus-server-to-method method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 (memq option (assoc (format "%s" (car method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 gnus-valid-select-methods)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 (defun gnus-server-extend-method (group method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 ;; This function "extends" a virtual server. If the server is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 ;; "hello", and the select method is ("hello" (my-var "something"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 ;; in the group "alt.alt", this will result in a new virtual server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 ;; called "hello+alt.alt".
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2355 (if (or (not (gnus-similar-server-opened method))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2356 (not (cddr method)))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2357 method
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2358 `(,(car method) ,(concat (cadr method) "+" group)
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2359 (,(intern (format "%s-address" (car method))) ,(cadr method))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2360 ,@(cddr method))))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2361
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2362 (defun gnus-similar-server-opened (method)
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2363 (let ((opened gnus-opened-servers))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2364 (while (and method opened)
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2365 (when (and (equal (cadr method) (cadaar opened))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2366 (not (equal method (caar opened))))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2367 (setq method nil))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2368 (pop opened))
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2369 (not method)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2371 (defun gnus-server-status (method)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2372 "Return the status of METHOD."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2373 (nth 1 (assoc method gnus-opened-servers)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2374
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 (defun gnus-group-name-to-method (group)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2376 "Guess a select method based on GROUP."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (if (string-match ":" group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 (let ((server (substring group 0 (match-beginning 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 (if (string-match "\\+" server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 (list (intern (substring server 0 (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 (substring server (match-end 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 (list (intern server) "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 gnus-select-method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 (defun gnus-find-method-for-group (group &optional info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 "Find the select method that GROUP uses."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 (or gnus-override-method
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 (and (not group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 gnus-select-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (let ((info (or info (gnus-get-info group)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (if (or (not info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 (not (setq method (gnus-info-method info)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 (equal method "native"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 gnus-select-method
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 (setq method
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (cond ((stringp method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 (gnus-server-to-method method))
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
2399 ((stringp (cadr method))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 (gnus-server-extend-method group method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 method)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 (cond ((equal (cadr method) "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 ((null (cadr method))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 (list (car method) ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 (gnus-server-add-address method)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 (defun gnus-check-backend-function (func group)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2411 "Check whether GROUP supports function FUNC.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2412 GROUP can either be a string (a group name) or a select method."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2413 (ignore-errors
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2414 (let ((method (if (stringp group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2415 (car (gnus-find-method-for-group group))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2416 group)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2417 (unless (featurep method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2418 (require method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2419 (fboundp (intern (format "%s-%s" method func))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 (defun gnus-methods-using (feature)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 "Find all methods that have FEATURE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 (let ((valids gnus-valid-select-methods)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 outs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 (while valids
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2426 (when (memq feature (car valids))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2427 (push (car valids) outs))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 (setq valids (cdr valids)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 outs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2431 (defun gnus-read-group (prompt &optional default)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2432 "Prompt the user for a group name.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2433 Disallow illegal group names."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2434 (let ((prefix "")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2435 group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2436 (while (not group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2437 (when (string-match
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2438 "[: `'\"/]\\|^$"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2439 (setq group (read-string (concat prefix prompt)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2440 (cons (or default "") 0)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2441 'gnus-group-history)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2442 (setq prefix (format "Illegal group name: \"%s\". " group)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2443 group nil)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2444 group))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2446 (defun gnus-read-method (prompt)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2447 "Prompt the user for a method.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2448 Allow completion over sensible values."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2449 (let ((method
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2450 (completing-read
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2451 prompt (append gnus-valid-select-methods gnus-predefined-server-alist
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2452 gnus-server-alist)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2453 nil t nil 'gnus-method-history)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2454 (cond
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2455 ((equal method "")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2456 (setq method gnus-select-method))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2457 ((assoc method gnus-valid-select-methods)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2458 (list (intern method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2459 (if (memq 'prompt-address
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2460 (assoc method gnus-valid-select-methods))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2461 (read-string "Address: ")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2462 "")))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2463 ((assoc method gnus-server-alist)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2464 method)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2465 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2466 (list (intern method) "")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2468 ;;; User-level commands.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2470 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2471 (defun gnus-slave-no-server (&optional arg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2472 "Read network news as a slave, without connecting to local server"
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2473 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2474 (gnus-no-server arg t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2476 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2477 (defun gnus-no-server (&optional arg slave)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2478 "Read network news.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2479 If ARG is a positive number, Gnus will use that as the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2480 startup level. If ARG is nil, Gnus will be started at level 2.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2481 If ARG is non-nil and not a positive number, Gnus will
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2482 prompt the user for the name of an NNTP server to use.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2483 As opposed to `gnus', this command will not connect to the local server."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2484 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2485 (gnus-no-server-1 arg slave))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2487 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2488 (defun gnus-slave (&optional arg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2489 "Read news as a slave."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2490 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2491 (gnus arg nil 'slave))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2493 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2494 (defun gnus-other-frame (&optional arg)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2495 "Pop up a frame to read news."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2496 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2497 (let ((window (get-buffer-window gnus-group-buffer)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2498 (cond (window
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2499 (select-frame (window-frame window)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2500 ((= (length (frame-list)) 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2501 (select-frame (make-frame)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2502 (t
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2503 (other-frame 1))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2504 (gnus arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2506 ;;;###autoload
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2507 (defun gnus (&optional arg dont-connect slave)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2508 "Read network news.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2509 If ARG is non-nil and a positive number, Gnus will use that as the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2510 startup level. If ARG is non-nil and not a positive number, Gnus will
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2511 prompt the user for the name of an NNTP server to use."
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2512 (interactive "P")
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2513 (gnus-1 arg dont-connect slave))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 ;; Allow redefinition of Gnus functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 (gnus-ems-redefine)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 (provide 'gnus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 ;;; gnus.el ends here