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