comparison lisp/gnus/gnus.el @ 88155:d7ddb3e565de

sync with trunk
author Henrik Enberg <henrik.enberg@telia.com>
date Mon, 16 Jan 2006 00:03:54 +0000
parents 0d8b17d428b5
children
comparison
equal deleted inserted replaced
88154:8ce476d3ba36 88155:d7ddb3e565de
1 ;;; gnus.el --- a newsreader for GNU Emacs 1 ;;; gnus.el --- a newsreader for GNU Emacs
2 ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 2
3 ;; 1998, 2000, 2001, 2002 Free Software Foundation, Inc. 3 ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 5
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> 6 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> 7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news, mail 8 ;; Keywords: news, mail
8 9
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details. 20 ;; GNU General Public License for more details.
20 21
21 ;; You should have received a copy of the GNU General Public License 22 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02111-1307, USA. 25 ;; Boston, MA 02110-1301, USA.
25 26
26 ;;; Commentary: 27 ;;; Commentary:
27 28
28 ;;; Code: 29 ;;; Code:
29 30
30 (eval '(run-hooks 'gnus-load-hook)) 31 (eval '(run-hooks 'gnus-load-hook))
31 32
32 (eval-when-compile (require 'cl)) 33 (eval-when-compile (require 'cl))
34 (require 'wid-edit)
33 (require 'mm-util) 35 (require 'mm-util)
36 (require 'nnheader)
37
38 ;; These are defined afterwards with gnus-define-group-parameter
39 (defvar gnus-ham-process-destinations)
40 (defvar gnus-parameter-ham-marks-alist)
41 (defvar gnus-parameter-spam-marks-alist)
42 (defvar gnus-spam-autodetect)
43 (defvar gnus-spam-autodetect-methods)
44 (defvar gnus-spam-newsgroup-contents)
45 (defvar gnus-spam-process-destinations)
46 (defvar gnus-spam-process-newsgroups)
47
34 48
35 (defgroup gnus nil 49 (defgroup gnus nil
36 "The coffee-brewing, all singing, all dancing, kitchen sink newsreader." 50 "The coffee-brewing, all singing, all dancing, kitchen sink newsreader."
37 :group 'news 51 :group 'news
38 :group 'mail) 52 :group 'mail)
53
54 (defgroup gnus-format nil
55 "Dealing with formatting issues."
56 :group 'gnus)
39 57
40 (defgroup gnus-charset nil 58 (defgroup gnus-charset nil
41 "Group character set issues." 59 "Group character set issues."
42 :link '(custom-manual "(gnus)Charsets") 60 :link '(custom-manual "(gnus)Charsets")
43 :version "21.1" 61 :version "21.1"
44 :group 'gnus) 62 :group 'gnus)
45 63
46 (defgroup gnus-cache nil 64 (defgroup gnus-cache nil
47 "Cache interface." 65 "Cache interface."
66 :link '(custom-manual "(gnus)Article Caching")
67 :group 'gnus)
68
69 (defgroup gnus-registry nil
70 "Article Registry."
48 :group 'gnus) 71 :group 'gnus)
49 72
50 (defgroup gnus-start nil 73 (defgroup gnus-start nil
51 "Starting your favorite newsreader." 74 "Starting your favorite newsreader."
52 :group 'gnus) 75 :group 'gnus)
56 :group 'gnus-start) 79 :group 'gnus-start)
57 80
58 ;; These belong to gnus-group.el. 81 ;; These belong to gnus-group.el.
59 (defgroup gnus-group nil 82 (defgroup gnus-group nil
60 "Group buffers." 83 "Group buffers."
61 :link '(custom-manual "(gnus)The Group Buffer") 84 :link '(custom-manual "(gnus)Group Buffer")
62 :group 'gnus) 85 :group 'gnus)
63 86
64 (defgroup gnus-group-foreign nil 87 (defgroup gnus-group-foreign nil
65 "Foreign groups." 88 "Foreign groups."
66 :link '(custom-manual "(gnus)Foreign Groups") 89 :link '(custom-manual "(gnus)Foreign Groups")
97 :group 'gnus-group) 120 :group 'gnus-group)
98 121
99 ;; These belong to gnus-sum.el. 122 ;; These belong to gnus-sum.el.
100 (defgroup gnus-summary nil 123 (defgroup gnus-summary nil
101 "Summary buffers." 124 "Summary buffers."
102 :link '(custom-manual "(gnus)The Summary Buffer") 125 :link '(custom-manual "(gnus)Summary Buffer")
103 :group 'gnus) 126 :group 'gnus)
104 127
105 (defgroup gnus-summary-exit nil 128 (defgroup gnus-summary-exit nil
106 "Leaving summary buffers." 129 "Leaving summary buffers."
107 :link '(custom-manual "(gnus)Exiting the Summary Buffer") 130 :link '(custom-manual "(gnus)Exiting the Summary Buffer")
130 (defgroup gnus-summary-maneuvering nil 153 (defgroup gnus-summary-maneuvering nil
131 "Summary movement commands." 154 "Summary movement commands."
132 :link '(custom-manual "(gnus)Summary Maneuvering") 155 :link '(custom-manual "(gnus)Summary Maneuvering")
133 :group 'gnus-summary) 156 :group 'gnus-summary)
134 157
158 (defgroup gnus-picon nil
159 "Show pictures of people, domains, and newsgroups."
160 :group 'gnus-visual)
161
135 (defgroup gnus-summary-mail nil 162 (defgroup gnus-summary-mail nil
136 "Mail group commands." 163 "Mail group commands."
137 :link '(custom-manual "(gnus)Mail Group Commands") 164 :link '(custom-manual "(gnus)Mail Group Commands")
138 :group 'gnus-summary) 165 :group 'gnus-summary)
139 166
140 (defgroup gnus-summary-sort nil 167 (defgroup gnus-summary-sort nil
141 "Sorting the summary buffer." 168 "Sorting the summary buffer."
142 :link '(custom-manual "(gnus)Sorting") 169 :link '(custom-manual "(gnus)Sorting the Summary Buffer")
143 :group 'gnus-summary) 170 :group 'gnus-summary)
144 171
145 (defgroup gnus-summary-visual nil 172 (defgroup gnus-summary-visual nil
146 "Highlighting and menus in the summary buffer." 173 "Highlighting and menus in the summary buffer."
147 :link '(custom-manual "(gnus)Summary Highlighting") 174 :link '(custom-manual "(gnus)Summary Highlighting")
205 "Various scoring and killing options." 232 "Various scoring and killing options."
206 :group 'gnus-score) 233 :group 'gnus-score)
207 234
208 ;; Other 235 ;; Other
209 (defgroup gnus-visual nil 236 (defgroup gnus-visual nil
210 "Options controling the visual fluff." 237 "Options controlling the visual fluff."
211 :group 'gnus 238 :group 'gnus
212 :group 'faces) 239 :group 'faces)
213 240
214 (defgroup gnus-agent nil 241 (defgroup gnus-agent nil
215 "Offline support for Gnus." 242 "Offline support for Gnus."
230 257
231 (defgroup gnus-server nil 258 (defgroup gnus-server nil
232 "Options related to newsservers and other servers used by Gnus." 259 "Options related to newsservers and other servers used by Gnus."
233 :group 'gnus) 260 :group 'gnus)
234 261
262 (defgroup gnus-server-visual nil
263 "Highlighting and menus in the server buffer."
264 :group 'gnus-visual
265 :group 'gnus-server)
266
235 (defgroup gnus-message '((message custom-group)) 267 (defgroup gnus-message '((message custom-group))
236 "Composing replies and followups in Gnus." 268 "Composing replies and followups in Gnus."
237 :group 'gnus) 269 :group 'gnus)
238 270
239 (defgroup gnus-meta nil 271 (defgroup gnus-meta nil
240 "Meta variables controling major portions of Gnus. 272 "Meta variables controlling major portions of Gnus.
241 In general, modifying these variables does not take affect until Gnus 273 In general, modifying these variables does not take affect until Gnus
242 is restarted, and sometimes reloaded." 274 is restarted, and sometimes reloaded."
243 :group 'gnus) 275 :group 'gnus)
244 276
245 (defgroup gnus-various nil 277 (defgroup gnus-various nil
250 (defgroup gnus-mime nil 282 (defgroup gnus-mime nil
251 "Variables for controlling the Gnus MIME interface." 283 "Variables for controlling the Gnus MIME interface."
252 :group 'gnus) 284 :group 'gnus)
253 285
254 (defgroup gnus-exit nil 286 (defgroup gnus-exit nil
255 "Exiting gnus." 287 "Exiting Gnus."
256 :link '(custom-manual "(gnus)Exiting Gnus") 288 :link '(custom-manual "(gnus)Exiting Gnus")
257 :group 'gnus) 289 :group 'gnus)
258 290
259 (defconst gnus-version-number "5.9.0" 291 (defgroup gnus-fun nil
292 "Frivolous Gnus extensions."
293 :link '(custom-manual "(gnus)Exiting Gnus")
294 :group 'gnus)
295
296 (defconst gnus-version-number "5.11"
260 "Version number for this version of Gnus.") 297 "Version number for this version of Gnus.")
261 298
262 (defconst gnus-version (format "Gnus v%s" gnus-version-number) 299 (defconst gnus-version (format "Gnus v%s" gnus-version-number)
263 "Version string for this version of Gnus.") 300 "Version string for this version of Gnus.")
264 301
271 308
272 (defcustom gnus-play-startup-jingle nil 309 (defcustom gnus-play-startup-jingle nil
273 "If non-nil, play the Gnus jingle at startup." 310 "If non-nil, play the Gnus jingle at startup."
274 :group 'gnus-start 311 :group 'gnus-start
275 :type 'boolean) 312 :type 'boolean)
313
314 (unless (fboundp 'gnus-group-remove-excess-properties)
315 (defalias 'gnus-group-remove-excess-properties 'ignore))
316
317 (unless (fboundp 'gnus-set-text-properties)
318 (defalias 'gnus-set-text-properties 'set-text-properties))
276 319
277 (unless (featurep 'gnus-xmas) 320 (unless (featurep 'gnus-xmas)
278 (defalias 'gnus-make-overlay 'make-overlay) 321 (defalias 'gnus-make-overlay 'make-overlay)
279 (defalias 'gnus-delete-overlay 'delete-overlay) 322 (defalias 'gnus-delete-overlay 'delete-overlay)
280 (defalias 'gnus-overlay-put 'overlay-put) 323 (defalias 'gnus-overlay-put 'overlay-put)
282 (defalias 'gnus-overlay-buffer 'overlay-buffer) 325 (defalias 'gnus-overlay-buffer 'overlay-buffer)
283 (defalias 'gnus-overlay-start 'overlay-start) 326 (defalias 'gnus-overlay-start 'overlay-start)
284 (defalias 'gnus-overlay-end 'overlay-end) 327 (defalias 'gnus-overlay-end 'overlay-end)
285 (defalias 'gnus-extent-detached-p 'ignore) 328 (defalias 'gnus-extent-detached-p 'ignore)
286 (defalias 'gnus-extent-start-open 'ignore) 329 (defalias 'gnus-extent-start-open 'ignore)
287 (defalias 'gnus-set-text-properties 'set-text-properties)
288 (defalias 'gnus-group-remove-excess-properties 'ignore)
289 (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window) 330 (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window)
290 (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names) 331 (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names)
291 (defalias 'gnus-character-to-event 'identity) 332 (defalias 'gnus-character-to-event 'identity)
333 (defalias 'gnus-assq-delete-all 'assq-delete-all)
292 (defalias 'gnus-add-text-properties 'add-text-properties) 334 (defalias 'gnus-add-text-properties 'add-text-properties)
293 (defalias 'gnus-put-text-property 'put-text-property) 335 (defalias 'gnus-put-text-property 'put-text-property)
294 (defvar gnus-mode-line-image-cache t) 336 (defvar gnus-mode-line-image-cache t)
295 (if (fboundp 'find-image) 337 (if (fboundp 'find-image)
296 (defun gnus-mode-line-buffer-identification (line) 338 (defun gnus-mode-line-buffer-identification (line)
297 (let ((str (car-safe line))) 339 (let ((str (car-safe line))
340 (load-path (mm-image-load-path)))
298 (if (and (stringp str) 341 (if (and (stringp str)
299 (string-match "^Gnus:" str)) 342 (string-match "^Gnus:" str))
300 (progn (add-text-properties 343 (progn (add-text-properties
301 0 5 344 0 5
302 (list 'display 345 (list 'display
306 '((:type xpm :file "gnus-pointer.xpm" 349 '((:type xpm :file "gnus-pointer.xpm"
307 :ascent center) 350 :ascent center)
308 (:type xbm :file "gnus-pointer.xbm" 351 (:type xbm :file "gnus-pointer.xbm"
309 :ascent center)))) 352 :ascent center))))
310 gnus-mode-line-image-cache) 353 gnus-mode-line-image-cache)
311 'help-echo "This is Gnus") 354 'help-echo (format
355 "This is %s, %s."
356 gnus-version (gnus-emacs-version)))
312 str) 357 str)
313 (list str)) 358 (list str))
314 line))) 359 line)))
315 (defalias 'gnus-mode-line-buffer-identification 'identity)) 360 (defalias 'gnus-mode-line-buffer-identification 'identity))
316 (defalias 'gnus-characterp 'numberp) 361 (defalias 'gnus-characterp 'numberp)
317 (defalias 'gnus-deactivate-mark 'deactivate-mark) 362 (defalias 'gnus-deactivate-mark 'deactivate-mark)
318 (defalias 'gnus-window-edges 'window-edges) 363 (defalias 'gnus-window-edges 'window-edges)
319 (defalias 'gnus-key-press-event-p 'numberp) 364 (defalias 'gnus-key-press-event-p 'numberp)
320 (defalias 'gnus-decode-rfc1522 'ignore)) 365 ;;(defalias 'gnus-decode-rfc1522 'ignore)
366 )
321 367
322 ;; We define these group faces here to avoid the display 368 ;; We define these group faces here to avoid the display
323 ;; update forced when creating new faces. 369 ;; update forced when creating new faces.
324 370
325 (defface gnus-group-news-1-face 371 (defface gnus-group-news-1
326 '((((class color) 372 '((((class color)
327 (background dark)) 373 (background dark))
328 (:foreground "PaleTurquoise" :weight bold)) 374 (:foreground "PaleTurquoise" :bold t))
329 (((class color) 375 (((class color)
330 (background light)) 376 (background light))
331 (:foreground "ForestGreen" :weight bold)) 377 (:foreground "ForestGreen" :bold t))
332 (t 378 (t
333 ())) 379 ()))
334 "Level 1 newsgroup face.") 380 "Level 1 newsgroup face."
335 381 :group 'gnus-group)
336 (defface gnus-group-news-1-empty-face 382 ;; backward-compatibility alias
383 (put 'gnus-group-news-1-face 'face-alias 'gnus-group-news-1)
384
385 (defface gnus-group-news-1-empty
337 '((((class color) 386 '((((class color)
338 (background dark)) 387 (background dark))
339 (:foreground "PaleTurquoise")) 388 (:foreground "PaleTurquoise"))
340 (((class color) 389 (((class color)
341 (background light)) 390 (background light))
342 (:foreground "ForestGreen")) 391 (:foreground "ForestGreen"))
343 (t 392 (t
344 ())) 393 ()))
345 "Level 1 empty newsgroup face.") 394 "Level 1 empty newsgroup face."
346 395 :group 'gnus-group)
347 (defface gnus-group-news-2-face 396 ;; backward-compatibility alias
397 (put 'gnus-group-news-1-empty-face 'face-alias 'gnus-group-news-1-empty)
398
399 (defface gnus-group-news-2
348 '((((class color) 400 '((((class color)
349 (background dark)) 401 (background dark))
350 (:foreground "turquoise" :weight bold)) 402 (:foreground "turquoise" :bold t))
351 (((class color) 403 (((class color)
352 (background light)) 404 (background light))
353 (:foreground "CadetBlue4" :weight bold)) 405 (:foreground "CadetBlue4" :bold t))
354 (t 406 (t
355 ())) 407 ()))
356 "Level 2 newsgroup face.") 408 "Level 2 newsgroup face."
357 409 :group 'gnus-group)
358 (defface gnus-group-news-2-empty-face 410 ;; backward-compatibility alias
411 (put 'gnus-group-news-2-face 'face-alias 'gnus-group-news-2)
412
413 (defface gnus-group-news-2-empty
359 '((((class color) 414 '((((class color)
360 (background dark)) 415 (background dark))
361 (:foreground "turquoise")) 416 (:foreground "turquoise"))
362 (((class color) 417 (((class color)
363 (background light)) 418 (background light))
364 (:foreground "CadetBlue4")) 419 (:foreground "CadetBlue4"))
365 (t 420 (t
366 ())) 421 ()))
367 "Level 2 empty newsgroup face.") 422 "Level 2 empty newsgroup face."
368 423 :group 'gnus-group)
369 (defface gnus-group-news-3-face 424 ;; backward-compatibility alias
425 (put 'gnus-group-news-2-empty-face 'face-alias 'gnus-group-news-2-empty)
426
427 (defface gnus-group-news-3
370 '((((class color) 428 '((((class color)
371 (background dark)) 429 (background dark))
372 (:weight bold)) 430 (:bold t))
373 (((class color) 431 (((class color)
374 (background light)) 432 (background light))
375 (:weight bold)) 433 (:bold t))
376 (t 434 (t
377 ())) 435 ()))
378 "Level 3 newsgroup face.") 436 "Level 3 newsgroup face."
379 437 :group 'gnus-group)
380 (defface gnus-group-news-3-empty-face 438 ;; backward-compatibility alias
439 (put 'gnus-group-news-3-face 'face-alias 'gnus-group-news-3)
440
441 (defface gnus-group-news-3-empty
381 '((((class color) 442 '((((class color)
382 (background dark)) 443 (background dark))
383 ()) 444 ())
384 (((class color) 445 (((class color)
385 (background light)) 446 (background light))
386 ()) 447 ())
387 (t 448 (t
388 ())) 449 ()))
389 "Level 3 empty newsgroup face.") 450 "Level 3 empty newsgroup face."
390 451 :group 'gnus-group)
391 (defface gnus-group-news-4-face 452 ;; backward-compatibility alias
453 (put 'gnus-group-news-3-empty-face 'face-alias 'gnus-group-news-3-empty)
454
455 (defface gnus-group-news-4
392 '((((class color) 456 '((((class color)
393 (background dark)) 457 (background dark))
394 (:weight bold)) 458 (:bold t))
395 (((class color) 459 (((class color)
396 (background light)) 460 (background light))
397 (:weight bold)) 461 (:bold t))
398 (t 462 (t
399 ())) 463 ()))
400 "Level 4 newsgroup face.") 464 "Level 4 newsgroup face."
401 465 :group 'gnus-group)
402 (defface gnus-group-news-4-empty-face 466 ;; backward-compatibility alias
467 (put 'gnus-group-news-4-face 'face-alias 'gnus-group-news-4)
468
469 (defface gnus-group-news-4-empty
403 '((((class color) 470 '((((class color)
404 (background dark)) 471 (background dark))
405 ()) 472 ())
406 (((class color) 473 (((class color)
407 (background light)) 474 (background light))
408 ()) 475 ())
409 (t 476 (t
410 ())) 477 ()))
411 "Level 4 empty newsgroup face.") 478 "Level 4 empty newsgroup face."
412 479 :group 'gnus-group)
413 (defface gnus-group-news-5-face 480 ;; backward-compatibility alias
481 (put 'gnus-group-news-4-empty-face 'face-alias 'gnus-group-news-4-empty)
482
483 (defface gnus-group-news-5
414 '((((class color) 484 '((((class color)
415 (background dark)) 485 (background dark))
416 (:weight bold)) 486 (:bold t))
417 (((class color) 487 (((class color)
418 (background light)) 488 (background light))
419 (:weight bold)) 489 (:bold t))
420 (t 490 (t
421 ())) 491 ()))
422 "Level 5 newsgroup face.") 492 "Level 5 newsgroup face."
423 493 :group 'gnus-group)
424 (defface gnus-group-news-5-empty-face 494 ;; backward-compatibility alias
495 (put 'gnus-group-news-5-face 'face-alias 'gnus-group-news-5)
496
497 (defface gnus-group-news-5-empty
425 '((((class color) 498 '((((class color)
426 (background dark)) 499 (background dark))
427 ()) 500 ())
428 (((class color) 501 (((class color)
429 (background light)) 502 (background light))
430 ()) 503 ())
431 (t 504 (t
432 ())) 505 ()))
433 "Level 5 empty newsgroup face.") 506 "Level 5 empty newsgroup face."
434 507 :group 'gnus-group)
435 (defface gnus-group-news-6-face 508 ;; backward-compatibility alias
509 (put 'gnus-group-news-5-empty-face 'face-alias 'gnus-group-news-5-empty)
510
511 (defface gnus-group-news-6
436 '((((class color) 512 '((((class color)
437 (background dark)) 513 (background dark))
438 (:weight bold)) 514 (:bold t))
439 (((class color) 515 (((class color)
440 (background light)) 516 (background light))
441 (:weight bold)) 517 (:bold t))
442 (t 518 (t
443 ())) 519 ()))
444 "Level 6 newsgroup face.") 520 "Level 6 newsgroup face."
445 521 :group 'gnus-group)
446 (defface gnus-group-news-6-empty-face 522 ;; backward-compatibility alias
523 (put 'gnus-group-news-6-face 'face-alias 'gnus-group-news-6)
524
525 (defface gnus-group-news-6-empty
447 '((((class color) 526 '((((class color)
448 (background dark)) 527 (background dark))
449 ()) 528 ())
450 (((class color) 529 (((class color)
451 (background light)) 530 (background light))
452 ()) 531 ())
453 (t 532 (t
454 ())) 533 ()))
455 "Level 6 empty newsgroup face.") 534 "Level 6 empty newsgroup face."
456 535 :group 'gnus-group)
457 (defface gnus-group-news-low-face 536 ;; backward-compatibility alias
537 (put 'gnus-group-news-6-empty-face 'face-alias 'gnus-group-news-6-empty)
538
539 (defface gnus-group-news-low
458 '((((class color) 540 '((((class color)
459 (background dark)) 541 (background dark))
460 (:foreground "DarkTurquoise" :weight bold)) 542 (:foreground "DarkTurquoise" :bold t))
461 (((class color) 543 (((class color)
462 (background light)) 544 (background light))
463 (:foreground "DarkGreen" :weight bold)) 545 (:foreground "DarkGreen" :bold t))
464 (t 546 (t
465 ())) 547 ()))
466 "Low level newsgroup face.") 548 "Low level newsgroup face."
467 549 :group 'gnus-group)
468 (defface gnus-group-news-low-empty-face 550 ;; backward-compatibility alias
551 (put 'gnus-group-news-low-face 'face-alias 'gnus-group-news-low)
552
553 (defface gnus-group-news-low-empty
469 '((((class color) 554 '((((class color)
470 (background dark)) 555 (background dark))
471 (:foreground "DarkTurquoise")) 556 (:foreground "DarkTurquoise"))
472 (((class color) 557 (((class color)
473 (background light)) 558 (background light))
474 (:foreground "DarkGreen")) 559 (:foreground "DarkGreen"))
475 (t 560 (t
476 ())) 561 ()))
477 "Low level empty newsgroup face.") 562 "Low level empty newsgroup face."
478 563 :group 'gnus-group)
479 (defface gnus-group-mail-1-face 564 ;; backward-compatibility alias
565 (put 'gnus-group-news-low-empty-face 'face-alias 'gnus-group-news-low-empty)
566
567 (defface gnus-group-mail-1
480 '((((class color) 568 '((((class color)
481 (background dark)) 569 (background dark))
482 (:foreground "aquamarine1" :weight bold)) 570 (:foreground "aquamarine1" :bold t))
483 (((class color) 571 (((class color)
484 (background light)) 572 (background light))
485 (:foreground "DeepPink3" :weight bold)) 573 (:foreground "DeepPink3" :bold t))
486 (t 574 (t
487 (:weight bold))) 575 (:bold t)))
488 "Level 1 mailgroup face.") 576 "Level 1 mailgroup face."
489 577 :group 'gnus-group)
490 (defface gnus-group-mail-1-empty-face 578 ;; backward-compatibility alias
579 (put 'gnus-group-mail-1-face 'face-alias 'gnus-group-mail-1)
580
581 (defface gnus-group-mail-1-empty
491 '((((class color) 582 '((((class color)
492 (background dark)) 583 (background dark))
493 (:foreground "aquamarine1")) 584 (:foreground "aquamarine1"))
494 (((class color) 585 (((class color)
495 (background light)) 586 (background light))
496 (:foreground "DeepPink3")) 587 (:foreground "DeepPink3"))
497 (t 588 (t
498 (:slant italic :weight bold))) 589 (:italic t :bold t)))
499 "Level 1 empty mailgroup face.") 590 "Level 1 empty mailgroup face."
500 591 :group 'gnus-group)
501 (defface gnus-group-mail-2-face 592 ;; backward-compatibility alias
593 (put 'gnus-group-mail-1-empty-face 'face-alias 'gnus-group-mail-1-empty)
594
595 (defface gnus-group-mail-2
502 '((((class color) 596 '((((class color)
503 (background dark)) 597 (background dark))
504 (:foreground "aquamarine2" :weight bold)) 598 (:foreground "aquamarine2" :bold t))
505 (((class color) 599 (((class color)
506 (background light)) 600 (background light))
507 (:foreground "HotPink3" :weight bold)) 601 (:foreground "HotPink3" :bold t))
508 (t 602 (t
509 (:weight bold))) 603 (:bold t)))
510 "Level 2 mailgroup face.") 604 "Level 2 mailgroup face."
511 605 :group 'gnus-group)
512 (defface gnus-group-mail-2-empty-face 606 ;; backward-compatibility alias
607 (put 'gnus-group-mail-2-face 'face-alias 'gnus-group-mail-2)
608
609 (defface gnus-group-mail-2-empty
513 '((((class color) 610 '((((class color)
514 (background dark)) 611 (background dark))
515 (:foreground "aquamarine2")) 612 (:foreground "aquamarine2"))
516 (((class color) 613 (((class color)
517 (background light)) 614 (background light))
518 (:foreground "HotPink3")) 615 (:foreground "HotPink3"))
519 (t 616 (t
520 (:weight bold))) 617 (:bold t)))
521 "Level 2 empty mailgroup face.") 618 "Level 2 empty mailgroup face."
522 619 :group 'gnus-group)
523 (defface gnus-group-mail-3-face 620 ;; backward-compatibility alias
621 (put 'gnus-group-mail-2-empty-face 'face-alias 'gnus-group-mail-2-empty)
622
623 (defface gnus-group-mail-3
524 '((((class color) 624 '((((class color)
525 (background dark)) 625 (background dark))
526 (:foreground "aquamarine3" :weight bold)) 626 (:foreground "aquamarine3" :bold t))
527 (((class color) 627 (((class color)
528 (background light)) 628 (background light))
529 (:foreground "magenta4" :weight bold)) 629 (:foreground "magenta4" :bold t))
530 (t 630 (t
531 (:weight bold))) 631 (:bold t)))
532 "Level 3 mailgroup face.") 632 "Level 3 mailgroup face."
533 633 :group 'gnus-group)
534 (defface gnus-group-mail-3-empty-face 634 ;; backward-compatibility alias
635 (put 'gnus-group-mail-3-face 'face-alias 'gnus-group-mail-3)
636
637 (defface gnus-group-mail-3-empty
535 '((((class color) 638 '((((class color)
536 (background dark)) 639 (background dark))
537 (:foreground "aquamarine3")) 640 (:foreground "aquamarine3"))
538 (((class color) 641 (((class color)
539 (background light)) 642 (background light))
540 (:foreground "magenta4")) 643 (:foreground "magenta4"))
541 (t 644 (t
542 ())) 645 ()))
543 "Level 3 empty mailgroup face.") 646 "Level 3 empty mailgroup face."
544 647 :group 'gnus-group)
545 (defface gnus-group-mail-low-face 648 ;; backward-compatibility alias
649 (put 'gnus-group-mail-3-empty-face 'face-alias 'gnus-group-mail-3-empty)
650
651 (defface gnus-group-mail-low
546 '((((class color) 652 '((((class color)
547 (background dark)) 653 (background dark))
548 (:foreground "aquamarine4" :weight bold)) 654 (:foreground "aquamarine4" :bold t))
549 (((class color) 655 (((class color)
550 (background light)) 656 (background light))
551 (:foreground "DeepPink4" :weight bold)) 657 (:foreground "DeepPink4" :bold t))
552 (t 658 (t
553 (:weight bold))) 659 (:bold t)))
554 "Low level mailgroup face.") 660 "Low level mailgroup face."
555 661 :group 'gnus-group)
556 (defface gnus-group-mail-low-empty-face 662 ;; backward-compatibility alias
663 (put 'gnus-group-mail-low-face 'face-alias 'gnus-group-mail-low)
664
665 (defface gnus-group-mail-low-empty
557 '((((class color) 666 '((((class color)
558 (background dark)) 667 (background dark))
559 (:foreground "aquamarine4")) 668 (:foreground "aquamarine4"))
560 (((class color) 669 (((class color)
561 (background light)) 670 (background light))
562 (:foreground "DeepPink4")) 671 (:foreground "DeepPink4"))
563 (t 672 (t
564 (:weight bold))) 673 (:bold t)))
565 "Low level empty mailgroup face.") 674 "Low level empty mailgroup face."
675 :group 'gnus-group)
676 ;; backward-compatibility alias
677 (put 'gnus-group-mail-low-empty-face 'face-alias 'gnus-group-mail-low-empty)
566 678
567 ;; Summary mode faces. 679 ;; Summary mode faces.
568 680
569 (defface gnus-summary-selected-face '((t 681 (defface gnus-summary-selected '((t (:underline t)))
570 (:underline t))) 682 "Face used for selected articles."
571 "Face used for selected articles.") 683 :group 'gnus-summary)
572 684 ;; backward-compatibility alias
573 (defface gnus-summary-cancelled-face 685 (put 'gnus-summary-selected-face 'face-alias 'gnus-summary-selected)
686
687 (defface gnus-summary-cancelled
574 '((((class color)) 688 '((((class color))
575 (:foreground "yellow" :background "black"))) 689 (:foreground "yellow" :background "black")))
576 "Face used for cancelled articles.") 690 "Face used for cancelled articles."
577 691 :group 'gnus-summary)
578 (defface gnus-summary-high-ticked-face 692 ;; backward-compatibility alias
693 (put 'gnus-summary-cancelled-face 'face-alias 'gnus-summary-cancelled)
694
695 (defface gnus-summary-high-ticked
579 '((((class color) 696 '((((class color)
580 (background dark)) 697 (background dark))
581 (:foreground "pink" :weight bold)) 698 (:foreground "pink" :bold t))
582 (((class color) 699 (((class color)
583 (background light)) 700 (background light))
584 (:foreground "firebrick" :weight bold)) 701 (:foreground "firebrick" :bold t))
585 (t 702 (t
586 (:weight bold))) 703 (:bold t)))
587 "Face used for high interest ticked articles.") 704 "Face used for high interest ticked articles."
588 705 :group 'gnus-summary)
589 (defface gnus-summary-low-ticked-face 706 ;; backward-compatibility alias
707 (put 'gnus-summary-high-ticked-face 'face-alias 'gnus-summary-high-ticked)
708
709 (defface gnus-summary-low-ticked
590 '((((class color) 710 '((((class color)
591 (background dark)) 711 (background dark))
592 (:foreground "pink" :slant italic)) 712 (:foreground "pink" :italic t))
593 (((class color) 713 (((class color)
594 (background light)) 714 (background light))
595 (:foreground "firebrick" :slant italic)) 715 (:foreground "firebrick" :italic t))
596 (t 716 (t
597 (:slant italic))) 717 (:italic t)))
598 "Face used for low interest ticked articles.") 718 "Face used for low interest ticked articles."
599 719 :group 'gnus-summary)
600 (defface gnus-summary-normal-ticked-face 720 ;; backward-compatibility alias
721 (put 'gnus-summary-low-ticked-face 'face-alias 'gnus-summary-low-ticked)
722
723 (defface gnus-summary-normal-ticked
601 '((((class color) 724 '((((class color)
602 (background dark)) 725 (background dark))
603 (:foreground "pink")) 726 (:foreground "pink"))
604 (((class color) 727 (((class color)
605 (background light)) 728 (background light))
606 (:foreground "firebrick")) 729 (:foreground "firebrick"))
607 (t 730 (t
608 ())) 731 ()))
609 "Face used for normal interest ticked articles.") 732 "Face used for normal interest ticked articles."
610 733 :group 'gnus-summary)
611 (defface gnus-summary-high-ancient-face 734 ;; backward-compatibility alias
735 (put 'gnus-summary-normal-ticked-face 'face-alias 'gnus-summary-normal-ticked)
736
737 (defface gnus-summary-high-ancient
612 '((((class color) 738 '((((class color)
613 (background dark)) 739 (background dark))
614 (:foreground "SkyBlue" :weight bold)) 740 (:foreground "SkyBlue" :bold t))
615 (((class color) 741 (((class color)
616 (background light)) 742 (background light))
617 (:foreground "RoyalBlue" :weight bold)) 743 (:foreground "RoyalBlue" :bold t))
618 (t 744 (t
619 (:weight bold))) 745 (:bold t)))
620 "Face used for high interest ancient articles.") 746 "Face used for high interest ancient articles."
621 747 :group 'gnus-summary)
622 (defface gnus-summary-low-ancient-face 748 ;; backward-compatibility alias
749 (put 'gnus-summary-high-ancient-face 'face-alias 'gnus-summary-high-ancient)
750
751 (defface gnus-summary-low-ancient
623 '((((class color) 752 '((((class color)
624 (background dark)) 753 (background dark))
625 (:foreground "SkyBlue" :slant italic)) 754 (:foreground "SkyBlue" :italic t))
626 (((class color) 755 (((class color)
627 (background light)) 756 (background light))
628 (:foreground "RoyalBlue" :slant italic)) 757 (:foreground "RoyalBlue" :italic t))
629 (t 758 (t
630 (:slant italic))) 759 (:italic t)))
631 "Face used for low interest ancient articles.") 760 "Face used for low interest ancient articles."
632 761 :group 'gnus-summary)
633 (defface gnus-summary-normal-ancient-face 762 ;; backward-compatibility alias
763 (put 'gnus-summary-low-ancient-face 'face-alias 'gnus-summary-low-ancient)
764
765 (defface gnus-summary-normal-ancient
634 '((((class color) 766 '((((class color)
635 (background dark)) 767 (background dark))
636 (:foreground "SkyBlue")) 768 (:foreground "SkyBlue"))
637 (((class color) 769 (((class color)
638 (background light)) 770 (background light))
639 (:foreground "RoyalBlue")) 771 (:foreground "RoyalBlue"))
640 (t 772 (t
641 ())) 773 ()))
642 "Face used for normal interest ancient articles.") 774 "Face used for normal interest ancient articles."
643 775 :group 'gnus-summary)
644 (defface gnus-summary-high-unread-face 776 ;; backward-compatibility alias
777 (put 'gnus-summary-normal-ancient-face 'face-alias 'gnus-summary-normal-ancient)
778
779 (defface gnus-summary-high-undownloaded
780 '((((class color)
781 (background light))
782 (:bold t :foreground "cyan4"))
783 (((class color) (background dark))
784 (:bold t :foreground "LightGray"))
785 (t (:inverse-video t :bold t)))
786 "Face used for high interest uncached articles."
787 :group 'gnus-summary)
788 ;; backward-compatibility alias
789 (put 'gnus-summary-high-undownloaded-face 'face-alias 'gnus-summary-high-undownloaded)
790
791 (defface gnus-summary-low-undownloaded
792 '((((class color)
793 (background light))
794 (:italic t :foreground "cyan4" :bold nil))
795 (((class color) (background dark))
796 (:italic t :foreground "LightGray" :bold nil))
797 (t (:inverse-video t :italic t)))
798 "Face used for low interest uncached articles."
799 :group 'gnus-summary)
800 ;; backward-compatibility alias
801 (put 'gnus-summary-low-undownloaded-face 'face-alias 'gnus-summary-low-undownloaded)
802
803 (defface gnus-summary-normal-undownloaded
804 '((((class color)
805 (background light))
806 (:foreground "cyan4" :bold nil))
807 (((class color) (background dark))
808 (:foreground "LightGray" :bold nil))
809 (t (:inverse-video t)))
810 "Face used for normal interest uncached articles."
811 :group 'gnus-summary)
812 ;; backward-compatibility alias
813 (put 'gnus-summary-normal-undownloaded-face 'face-alias 'gnus-summary-normal-undownloaded)
814
815 (defface gnus-summary-high-unread
645 '((t 816 '((t
646 (:weight bold))) 817 (:bold t)))
647 "Face used for high interest unread articles.") 818 "Face used for high interest unread articles."
648 819 :group 'gnus-summary)
649 (defface gnus-summary-low-unread-face 820 ;; backward-compatibility alias
821 (put 'gnus-summary-high-unread-face 'face-alias 'gnus-summary-high-unread)
822
823 (defface gnus-summary-low-unread
650 '((t 824 '((t
651 (:slant italic))) 825 (:italic t)))
652 "Face used for low interest unread articles.") 826 "Face used for low interest unread articles."
653 827 :group 'gnus-summary)
654 (defface gnus-summary-normal-unread-face 828 ;; backward-compatibility alias
829 (put 'gnus-summary-low-unread-face 'face-alias 'gnus-summary-low-unread)
830
831 (defface gnus-summary-normal-unread
655 '((t 832 '((t
656 ())) 833 ()))
657 "Face used for normal interest unread articles.") 834 "Face used for normal interest unread articles."
658 835 :group 'gnus-summary)
659 (defface gnus-summary-high-read-face 836 ;; backward-compatibility alias
837 (put 'gnus-summary-normal-unread-face 'face-alias 'gnus-summary-normal-unread)
838
839 (defface gnus-summary-high-read
660 '((((class color) 840 '((((class color)
661 (background dark)) 841 (background dark))
662 (:foreground "PaleGreen" 842 (:foreground "PaleGreen"
663 :weight bold)) 843 :bold t))
664 (((class color) 844 (((class color)
665 (background light)) 845 (background light))
666 (:foreground "DarkGreen" 846 (:foreground "DarkGreen"
667 :weight bold)) 847 :bold t))
668 (t 848 (t
669 (:weight bold))) 849 (:bold t)))
670 "Face used for high interest read articles.") 850 "Face used for high interest read articles."
671 851 :group 'gnus-summary)
672 (defface gnus-summary-low-read-face 852 ;; backward-compatibility alias
853 (put 'gnus-summary-high-read-face 'face-alias 'gnus-summary-high-read)
854
855 (defface gnus-summary-low-read
673 '((((class color) 856 '((((class color)
674 (background dark)) 857 (background dark))
675 (:foreground "PaleGreen" 858 (:foreground "PaleGreen"
676 :slant italic)) 859 :italic t))
677 (((class color) 860 (((class color)
678 (background light)) 861 (background light))
679 (:foreground "DarkGreen" 862 (:foreground "DarkGreen"
680 :slant italic)) 863 :italic t))
681 (t 864 (t
682 (:slant italic))) 865 (:italic t)))
683 "Face used for low interest read articles.") 866 "Face used for low interest read articles."
684 867 :group 'gnus-summary)
685 (defface gnus-summary-normal-read-face 868 ;; backward-compatibility alias
869 (put 'gnus-summary-low-read-face 'face-alias 'gnus-summary-low-read)
870
871 (defface gnus-summary-normal-read
686 '((((class color) 872 '((((class color)
687 (background dark)) 873 (background dark))
688 (:foreground "PaleGreen")) 874 (:foreground "PaleGreen"))
689 (((class color) 875 (((class color)
690 (background light)) 876 (background light))
691 (:foreground "DarkGreen")) 877 (:foreground "DarkGreen"))
692 (t 878 (t
693 ())) 879 ()))
694 "Face used for normal interest read articles.") 880 "Face used for normal interest read articles."
881 :group 'gnus-summary)
882 ;; backward-compatibility alias
883 (put 'gnus-summary-normal-read-face 'face-alias 'gnus-summary-normal-read)
695 884
696 885
697 ;;; 886 ;;;
698 ;;; Gnus buffers 887 ;;; Gnus buffers
699 ;;; 888 ;;;
706 (car (push (get-buffer-create name) gnus-buffers)))) 895 (car (push (get-buffer-create name) gnus-buffers))))
707 896
708 (defun gnus-add-buffer () 897 (defun gnus-add-buffer ()
709 "Add the current buffer to the list of Gnus buffers." 898 "Add the current buffer to the list of Gnus buffers."
710 (push (current-buffer) gnus-buffers)) 899 (push (current-buffer) gnus-buffers))
900
901 (defmacro gnus-kill-buffer (buffer)
902 "Kill BUFFER and remove from the list of Gnus buffers."
903 `(let ((buf ,buffer))
904 (when (gnus-buffer-exists-p buf)
905 (setq gnus-buffers (delete (get-buffer buf) gnus-buffers))
906 (kill-buffer buf))))
711 907
712 (defun gnus-buffers () 908 (defun gnus-buffers ()
713 "Return a list of live Gnus buffers." 909 "Return a list of live Gnus buffers."
714 (while (and gnus-buffers 910 (while (and gnus-buffers
715 (not (buffer-name (car gnus-buffers)))) 911 (not (buffer-name (car gnus-buffers))))
726 (defvar gnus-group-buffer "*Group*") 922 (defvar gnus-group-buffer "*Group*")
727 923
728 (eval-and-compile 924 (eval-and-compile
729 (autoload 'gnus-play-jingle "gnus-audio")) 925 (autoload 'gnus-play-jingle "gnus-audio"))
730 926
731 (defface gnus-splash-face 927 (defface gnus-splash
732 '((((class color) 928 '((((class color)
733 (background dark)) 929 (background dark))
734 (:foreground "Brown")) 930 (:foreground "#888888"))
735 (((class color) 931 (((class color)
736 (background light)) 932 (background light))
737 (:foreground "Brown")) 933 (:foreground "#888888"))
738 (t 934 (t
739 ())) 935 ()))
740 "Face of the splash screen.") 936 "Face for the splash screen."
937 :group 'gnus-start)
938 ;; backward-compatibility alias
939 (put 'gnus-splash-face 'face-alias 'gnus-splash)
741 940
742 (defun gnus-splash () 941 (defun gnus-splash ()
743 (save-excursion 942 (save-excursion
744 (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer)) 943 (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer))
745 (let ((buffer-read-only nil)) 944 (let ((buffer-read-only nil))
763 (while (search-forward "\t" nil t) 962 (while (search-forward "\t" nil t)
764 (replace-match " " t t)))))) 963 (replace-match " " t t))))))
765 964
766 (defvar gnus-simple-splash nil) 965 (defvar gnus-simple-splash nil)
767 966
967 ;;(format "%02x%02x%02x" 114 66 20) "724214"
968
969 (defvar gnus-logo-color-alist
970 '((flame "#cc3300" "#ff2200")
971 (pine "#c0cc93" "#f8ffb8")
972 (moss "#a1cc93" "#d2ffb8")
973 (irish "#04cc90" "#05ff97")
974 (sky "#049acc" "#05deff")
975 (tin "#6886cc" "#82b6ff")
976 (velvet "#7c68cc" "#8c82ff")
977 (grape "#b264cc" "#cf7df")
978 (labia "#cc64c2" "#fd7dff")
979 (berry "#cc6485" "#ff7db5")
980 (dino "#724214" "#1e3f03")
981 (oort "#cccccc" "#888888")
982 (storm "#666699" "#99ccff")
983 (pdino "#9999cc" "#99ccff")
984 (purp "#9999cc" "#666699")
985 (no "#000000" "#ff0000")
986 (neutral "#b4b4b4" "#878787")
987 (september "#bf9900" "#ffcc00"))
988 "Color alist used for the Gnus logo.")
989
990 (defcustom gnus-logo-color-style 'oort
991 "*Color styles used for the Gnus logo."
992 :type `(choice ,@(mapcar (lambda (elem) (list 'const (car elem)))
993 gnus-logo-color-alist))
994 :group 'gnus-xmas)
995
996 (defvar gnus-logo-colors
997 (cdr (assq gnus-logo-color-style gnus-logo-color-alist))
998 "Colors used for the Gnus logo.")
999
768 (defun gnus-group-startup-message (&optional x y) 1000 (defun gnus-group-startup-message (&optional x y)
769 "Insert startup message in current buffer." 1001 "Insert startup message in current buffer."
770 ;; Insert the message. 1002 ;; Insert the message.
771 (erase-buffer) 1003 (erase-buffer)
772 (cond 1004 (cond
773 ((and 1005 ((and
774 (fboundp 'find-image) 1006 (fboundp 'find-image)
775 (display-graphic-p) 1007 (display-graphic-p)
776 (let ((image (find-image 1008 (let* ((data-directory (nnheader-find-etc-directory "images/gnus"))
777 `((:type xpm :file "gnus.xpm") 1009 (image-load-path (cond (data-directory
778 (:type pbm :file "gnus.pbm" 1010 (list data-directory))
779 ;; Account for the pbm's blackground. 1011 ((boundp 'image-load-path)
780 :background ,(face-foreground 'gnus-splash-face) 1012 (symbol-value 'image-load-path))
781 :foreground ,(face-background 'default)) 1013 (t load-path)))
782 (:type xbm :file "gnus.xbm" 1014 (image (find-image
783 ;; Account for the xbm's blackground. 1015 `((:type xpm :file "gnus.xpm"
784 :background ,(face-foreground 'gnus-splash-face) 1016 :color-symbols
785 :foreground ,(face-background 'default)))))) 1017 (("thing" . ,(car gnus-logo-colors))
1018 ("shadow" . ,(cadr gnus-logo-colors))
1019 ("oort" . "#eeeeee")
1020 ("background" . ,(face-background 'default))))
1021 (:type pbm :file "gnus.pbm"
1022 ;; Account for the pbm's blackground.
1023 :background ,(face-foreground 'gnus-splash)
1024 :foreground ,(face-background 'default))
1025 (:type xbm :file "gnus.xbm"
1026 ;; Account for the xbm's blackground.
1027 :background ,(face-foreground 'gnus-splash)
1028 :foreground ,(face-background 'default))))))
786 (when image 1029 (when image
787 (let ((size (image-size image))) 1030 (let ((size (image-size image)))
788 (insert-char ?\n (max 0 (round (- (window-height) 1031 (insert-char ?\n (max 0 (round (- (window-height)
789 (or y (cdr size)) 1) 2))) 1032 (or y (cdr size)) 1) 2)))
790 (insert-char ?\ (max 0 (round (- (window-width) 1033 (insert-char ?\ (max 0 (round (- (window-width)
823 (let* ((pheight (count-lines (point-min) (point-max))) 1066 (let* ((pheight (count-lines (point-min) (point-max)))
824 (wheight (window-height)) 1067 (wheight (window-height))
825 (rest (- wheight pheight))) 1068 (rest (- wheight pheight)))
826 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))) 1069 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n)))
827 ;; Fontify some. 1070 ;; Fontify some.
828 (put-text-property (point-min) (point-max) 'face 'gnus-splash-face) 1071 (put-text-property (point-min) (point-max) 'face 'gnus-splash)
829 (setq gnus-simple-splash t))) 1072 (setq gnus-simple-splash t)))
830 (goto-char (point-min)) 1073 (goto-char (point-min))
831 (setq mode-line-buffer-identification (concat " " gnus-version)) 1074 (setq mode-line-buffer-identification (concat " " gnus-version))
832 (set-buffer-modified-p t)) 1075 (set-buffer-modified-p t))
833 1076
834 (eval-when (load) 1077 (eval-when (load)
835 (let ((command (format "%s" this-command))) 1078 (let ((command (format "%s" this-command)))
836 (if (and (string-match "gnus" command) 1079 (when (string-match "gnus" command)
837 (not (string-match "gnus-other-frame" command))) 1080 (if (string-match "gnus-other-frame" command)
838 (gnus-splash) 1081 (gnus-get-buffer-create gnus-group-buffer)
839 (gnus-get-buffer-create gnus-group-buffer)))) 1082 (gnus-splash)))))
840 1083
841 ;;; Do the rest. 1084 ;;; Do the rest.
842 1085
843 (require 'gnus-util) 1086 (require 'gnus-util)
844 (require 'nnheader) 1087 (require 'nnheader)
1088
1089 (defcustom gnus-parameters nil
1090 "Alist of group parameters.
1091
1092 For example:
1093 ((\"mail\\\\..*\" (gnus-show-threads nil)
1094 (gnus-use-scoring nil)
1095 (gnus-summary-line-format
1096 \"%U%R%z%I%(%[%d:%ub%-23,23f%]%) %s\\n\")
1097 (gcc-self . t)
1098 (display . all))
1099 (\"mail\\\\.me\" (gnus-use-scoring t))
1100 (\"list\\\\..*\" (total-expire . t)
1101 (broken-reply-to . t)))"
1102 :version "22.1"
1103 :group 'gnus-group-various
1104 :type '(repeat (cons regexp
1105 (repeat sexp))))
1106
1107 (defcustom gnus-parameters-case-fold-search 'default
1108 "If it is t, ignore case of group names specified in `gnus-parameters'.
1109 If it is nil, don't ignore case. If it is `default', which is for the
1110 backward compatibility, use the value of `case-fold-search'."
1111 :version "22.1"
1112 :group 'gnus-group-various
1113 :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
1114 (const :tag "Use `case-fold-search'" default)
1115 (const nil)
1116 (const t)))
1117
1118 (defvar gnus-group-parameters-more nil)
1119
1120 (defmacro gnus-define-group-parameter (param &rest rest)
1121 "Define a group parameter PARAM.
1122 REST is a plist of following:
1123 :type One of `bool', `list' or nil.
1124 :function The name of the function.
1125 :function-document The documentation of the function.
1126 :parameter-type The type for customizing the parameter.
1127 :parameter-document The documentation for the parameter.
1128 :variable The name of the variable.
1129 :variable-document The documentation for the variable.
1130 :variable-group The group for customizing the variable.
1131 :variable-type The type for customizing the variable.
1132 :variable-default The default value of the variable."
1133 (let* ((type (plist-get rest :type))
1134 (parameter-type (plist-get rest :parameter-type))
1135 (parameter-document (plist-get rest :parameter-document))
1136 (function (or (plist-get rest :function)
1137 (intern (format "gnus-parameter-%s" param))))
1138 (function-document (or (plist-get rest :function-document) ""))
1139 (variable (or (plist-get rest :variable)
1140 (intern (format "gnus-parameter-%s-alist" param))))
1141 (variable-document (or (plist-get rest :variable-document) ""))
1142 (variable-group (plist-get rest :variable-group))
1143 (variable-type (or (plist-get rest :variable-type)
1144 `(quote (repeat
1145 (list (regexp :tag "Group")
1146 ,(car (cdr parameter-type)))))))
1147 (variable-default (plist-get rest :variable-default)))
1148 (list
1149 'progn
1150 `(defcustom ,variable ,variable-default
1151 ,variable-document
1152 :group 'gnus-group-parameter
1153 :group ',variable-group
1154 :type ,variable-type)
1155 `(setq gnus-group-parameters-more
1156 (delq (assq ',param gnus-group-parameters-more)
1157 gnus-group-parameters-more))
1158 `(add-to-list 'gnus-group-parameters-more
1159 (list ',param
1160 ,parameter-type
1161 ,parameter-document))
1162 (if (eq type 'bool)
1163 `(defun ,function (name)
1164 ,function-document
1165 (let ((params (gnus-group-find-parameter name))
1166 val)
1167 (cond
1168 ((memq ',param params)
1169 t)
1170 ((setq val (assq ',param params))
1171 (cdr val))
1172 ((stringp ,variable)
1173 (string-match ,variable name))
1174 (,variable
1175 (let ((alist ,variable)
1176 elem value)
1177 (while (setq elem (pop alist))
1178 (when (and name
1179 (string-match (car elem) name))
1180 (setq alist nil
1181 value (cdr elem))))
1182 (if (consp value) (car value) value))))))
1183 `(defun ,function (name)
1184 ,function-document
1185 (and name
1186 (or (gnus-group-find-parameter name ',param ,(and type t))
1187 (let ((alist ,variable)
1188 elem value)
1189 (while (setq elem (pop alist))
1190 (when (and name
1191 (string-match (car elem) name))
1192 (setq alist nil
1193 value (cdr elem))))
1194 ,(if type
1195 'value
1196 '(if (consp value) (car value) value))))))))))
845 1197
846 (defcustom gnus-home-directory "~/" 1198 (defcustom gnus-home-directory "~/"
847 "Directory variable that specifies the \"home\" directory. 1199 "Directory variable that specifies the \"home\" directory.
848 All other Gnus file and directory variables are initialized from this variable." 1200 All other Gnus file and directory variables are initialized from this variable."
849 :group 'gnus-files 1201 :group 'gnus-files
889 "A file with only the name of the nntp server in it." 1241 "A file with only the name of the nntp server in it."
890 :group 'gnus-files 1242 :group 'gnus-files
891 :group 'gnus-server 1243 :group 'gnus-server
892 :type 'file) 1244 :type 'file)
893 1245
894 ;; This function is used to check both the environment variable
895 ;; NNTPSERVER and the /etc/nntpserver file to see whether one can find
896 ;; an nntp server name default.
897 (defun gnus-getenv-nntpserver () 1246 (defun gnus-getenv-nntpserver ()
1247 "Find default nntp server.
1248 Check the NNTPSERVER environment variable and the
1249 `gnus-nntpserver-file' file."
898 (or (getenv "NNTPSERVER") 1250 (or (getenv "NNTPSERVER")
899 (and (file-readable-p gnus-nntpserver-file) 1251 (and (file-readable-p gnus-nntpserver-file)
900 (save-excursion 1252 (with-temp-buffer
901 (set-buffer (gnus-get-buffer-create " *gnus nntp*"))
902 (insert-file-contents gnus-nntpserver-file) 1253 (insert-file-contents gnus-nntpserver-file)
903 (let ((name (buffer-string))) 1254 (when (re-search-forward "[^ \t\n\r]+" nil t)
904 (prog1 1255 (match-string 0))))))
905 (if (string-match "\\'[ \t\n]*$" name)
906 nil
907 name)
908 (kill-buffer (current-buffer))))))))
909 1256
910 (defcustom gnus-select-method 1257 (defcustom gnus-select-method
911 (condition-case nil 1258 (condition-case nil
912 (nconc 1259 (nconc
913 (list 'nntp (or (condition-case nil 1260 (list 'nntp (or (condition-case nil
924 (error nil)) 1271 (error nil))
925 "Default method for selecting a newsgroup. 1272 "Default method for selecting a newsgroup.
926 This variable should be a list, where the first element is how the 1273 This variable should be a list, where the first element is how the
927 news is to be fetched, the second is the address. 1274 news is to be fetched, the second is the address.
928 1275
929 For instance, if you want to get your news via NNTP from 1276 For instance, if you want to get your news via \"flab.flab.edu\" using
930 \"flab.flab.edu\", you could say: 1277 NNTP, you could say:
931 1278
932 \(setq gnus-select-method '(nntp \"flab.flab.edu\")) 1279 \(setq gnus-select-method '(nntp \"flab.flab.edu\"))
933 1280
934 If you want to use your local spool, say: 1281 If you want to use your local spool, say:
935 1282
940 There is a lot more to know about select methods and virtual servers - 1287 There is a lot more to know about select methods and virtual servers -
941 see the manual for details." 1288 see the manual for details."
942 :group 'gnus-server 1289 :group 'gnus-server
943 :type 'gnus-select-method) 1290 :type 'gnus-select-method)
944 1291
945 (defcustom gnus-message-archive-method 1292 (defcustom gnus-message-archive-method "archive"
946 (progn
947 ;; Don't require it at top level to avoid circularity.
948 (require 'message)
949 `(nnfolder
950 "archive"
951 (nnfolder-directory ,(nnheader-concat message-directory "archive"))
952 (nnfolder-active-file
953 ,(nnheader-concat message-directory "archive/active"))
954 (nnfolder-get-new-mail nil)
955 (nnfolder-inhibit-expiry t)))
956 "*Method used for archiving messages you've sent. 1293 "*Method used for archiving messages you've sent.
957 This should be a mail method. 1294 This should be a mail method."
958
959 It's probably not very effective to change this variable once you've
960 run Gnus once. After doing that, you must edit this server from the
961 server buffer."
962 :group 'gnus-server 1295 :group 'gnus-server
963 :group 'gnus-message 1296 :group 'gnus-message
964 :type 'gnus-select-method) 1297 :type '(choice (const :tag "Default archive method" "archive")
1298 gnus-select-method))
965 1299
966 (defcustom gnus-message-archive-group nil 1300 (defcustom gnus-message-archive-group nil
967 "*Name of the group in which to save the messages you've written. 1301 "*Name of the group in which to save the messages you've written.
968 This can either be a string; a list of strings; or an alist 1302 This can either be a string; a list of strings; or an alist
969 of regexps/functions/forms to be evaluated to return a string (or a list 1303 of regexps/functions/forms to be evaluated to return a string (or a list
972 1306
973 If you want to save your mail in one group and the news articles you 1307 If you want to save your mail in one group and the news articles you
974 write in another group, you could say something like: 1308 write in another group, you could say something like:
975 1309
976 \(setq gnus-message-archive-group 1310 \(setq gnus-message-archive-group
977 '((if (message-news-p) 1311 '((if (message-news-p)
978 \"misc-news\" 1312 \"misc-news\"
979 \"misc-mail\"))) 1313 \"misc-mail\")))
980 1314
981 Normally the group names returned by this variable should be 1315 Normally the group names returned by this variable should be
982 unprefixed -- which implicitly means \"store on the archive server\". 1316 unprefixed -- which implicitly means \"store on the archive server\".
983 However, you may wish to store the message on some other server. In 1317 However, you may wish to store the message on some other server. In
984 that case, just return a fully prefixed name of the group -- 1318 that case, just return a fully prefixed name of the group --
1007 (defcustom gnus-secondary-select-methods nil 1341 (defcustom gnus-secondary-select-methods nil
1008 "A list of secondary methods that will be used for reading news. 1342 "A list of secondary methods that will be used for reading news.
1009 This is a list where each element is a complete select method (see 1343 This is a list where each element is a complete select method (see
1010 `gnus-select-method'). 1344 `gnus-select-method').
1011 1345
1012 If, for instance, you want to read your mail with the nnml backend, 1346 If, for instance, you want to read your mail with the nnml back end,
1013 you could set this variable: 1347 you could set this variable:
1014 1348
1015 \(setq gnus-secondary-select-methods '((nnml \"\")))" 1349 \(setq gnus-secondary-select-methods '((nnml \"\")))"
1016 :group 'gnus-server 1350 :group 'gnus-server
1017 :type '(repeat gnus-select-method)) 1351 :type '(repeat gnus-select-method))
1048 It can also be a list of select methods, as well as the special symbol 1382 It can also be a list of select methods, as well as the special symbol
1049 `current', which means to use the current select method. If it is a 1383 `current', which means to use the current select method. If it is a
1050 list, Gnus will try all the methods in the list until it finds a match." 1384 list, Gnus will try all the methods in the list until it finds a match."
1051 :group 'gnus-server 1385 :group 'gnus-server
1052 :type '(choice (const :tag "default" nil) 1386 :type '(choice (const :tag "default" nil)
1053 (const :tag "DejaNews" (nnweb "refer" (nnweb-type dejanews))) 1387 (const current)
1388 (const :tag "Google" (nnweb "refer" (nnweb-type google)))
1054 gnus-select-method 1389 gnus-select-method
1055 (repeat :menu-tag "Try multiple" 1390 (repeat :menu-tag "Try multiple"
1056 :tag "Multiple" 1391 :tag "Multiple"
1057 :value (current (nnweb "refer" (nnweb-type dejanews))) 1392 :value (current (nnweb "refer" (nnweb-type google)))
1058 (choice :tag "Method" 1393 (choice :tag "Method"
1059 (const current) 1394 (const current)
1060 (const :tag "DejaNews" 1395 (const :tag "Google"
1061 (nnweb "refer" (nnweb-type dejanews))) 1396 (nnweb "refer" (nnweb-type google)))
1062 gnus-select-method)))) 1397 gnus-select-method))))
1063 1398
1064 (defcustom gnus-group-faq-directory 1399 (defcustom gnus-group-faq-directory
1065 '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/" 1400 '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/"
1066 "/ftp@sunsite.auc.dk:/pub/usenet/"
1067 "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/" 1401 "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/"
1068 "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/" 1402 "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/"
1069 "/ftp@ftp.seas.gwu.edu:/pub/rtfm/" 1403 "/ftp@ftp.seas.gwu.edu:/pub/rtfm/"
1404 "/ftp@ftp.pasteur.fr:/pub/FAQ/"
1070 "/ftp@rtfm.mit.edu:/pub/usenet/" 1405 "/ftp@rtfm.mit.edu:/pub/usenet/"
1071 "/ftp@ftp.uni-paderborn.de:/pub/FAQ/" 1406 "/ftp@ftp.uni-paderborn.de:/pub/FAQ/"
1072 "/ftp@ftp.sunet.se:/pub/usenet/" 1407 "/ftp@ftp.sunet.se:/pub/usenet/"
1073 "/ftp@nctuccca.edu.tw:/USENET/FAQ/" 1408 "/ftp@nctuccca.nctu.edu.tw:/pub/Documents/rtfm/usenet-by-group/"
1074 "/ftp@hwarang.postech.ac.kr:/pub/usenet/" 1409 "/ftp@hwarang.postech.ac.kr:/pub/usenet/"
1075 "/ftp@ftp.hk.super.net:/mirror/faqs/") 1410 "/ftp@ftp.hk.super.net:/mirror/faqs/")
1076 "*Directory where the group FAQs are stored. 1411 "*Directory where the group FAQs are stored.
1077 This will most commonly be on a remote machine, and the file will be 1412 This will most commonly be on a remote machine, and the file will be
1078 fetched by ange-ftp. 1413 fetched by ange-ftp.
1089 1424
1090 North America: mirrors.aol.com /pub/rtfm/usenet 1425 North America: mirrors.aol.com /pub/rtfm/usenet
1091 ftp.seas.gwu.edu /pub/rtfm 1426 ftp.seas.gwu.edu /pub/rtfm
1092 rtfm.mit.edu /pub/usenet 1427 rtfm.mit.edu /pub/usenet
1093 Europe: ftp.uni-paderborn.de /pub/FAQ 1428 Europe: ftp.uni-paderborn.de /pub/FAQ
1094 src.doc.ic.ac.uk /usenet/news-FAQS 1429 src.doc.ic.ac.uk /usenet/news-FAQS
1095 ftp.sunet.se /pub/usenet 1430 ftp.sunet.se /pub/usenet
1096 sunsite.auc.dk /pub/usenet 1431 ftp.pasteur.fr /pub/FAQ
1097 Asia: nctuccca.edu.tw /USENET/FAQ 1432 Asia: nctuccca.nctu.edu.tw /pub/Documents/rtfm/usenet-by-group/
1098 hwarang.postech.ac.kr /pub/usenet 1433 hwarang.postech.ac.kr /pub/usenet
1099 ftp.hk.super.net /mirror/faqs" 1434 ftp.hk.super.net /mirror/faqs"
1100 :group 'gnus-group-various 1435 :group 'gnus-group-various
1101 :type '(choice directory 1436 :type '(choice directory
1102 (repeat directory))) 1437 (repeat directory)))
1438
1439 (defcustom gnus-group-charter-alist
1440 '(("no" . (concat "http://no.news-admin.org/charter/" name ".txt"))
1441 ("de" . (concat "http://purl.net/charta/" name ".html"))
1442 ("dk" . (concat "http://www.usenet.dk/grupper.pl?get=" name))
1443 ("england" . (concat "http://england.news-admin.org/charters/" name))
1444 ("fr" . (concat "http://www.usenet-fr.net/fur/chartes/" name ".html"))
1445 ("europa" . (concat "http://www.europa.usenet.eu.org/chartas/charta-en-"
1446 (gnus-replace-in-string name "europa\\." "") ".html"))
1447 ("nl" . (concat "http://www.xs4all.nl/~sister/usenet/charters/" name))
1448 ("aus" . (concat "http://aus.news-admin.org/groupinfo.cgi/" name))
1449 ("pl" . (concat "http://www.usenet.pl/opisy/" name))
1450 ("ch" . (concat "http://www.use-net.ch/Usenet/charter.html#" name))
1451 ("at" . (concat "http://www.usenet.at/chartas/" name "/charta"))
1452 ("uk" . (concat "http://www.usenet.org.uk/" name ".html"))
1453 ("dfw" . (concat "http://www.cirr.com/dfw/charters/" name ".html"))
1454 ("se" . (concat "http://www.usenet-se.net/Reglementen/"
1455 (gnus-replace-in-string name "\\." "_") ".html"))
1456 ("milw" . (concat "http://usenet.mil.wi.us/"
1457 (gnus-replace-in-string name "milw\\." "") "-charter"))
1458 ("ca" . (concat "http://www.sbay.org/ca/charter-" name ".html"))
1459 ("netins" . (concat "http://www.netins.net/usenet/charter/"
1460 (gnus-replace-in-string name "\\." "-") "-charter.html")))
1461 "*An alist of (HIERARCHY . FORM) pairs used to construct the URL of a charter.
1462 When FORM is evaluated `name' is bound to the name of the group."
1463 :version "22.1"
1464 :group 'gnus-group-various
1465 :type '(repeat (cons (string :tag "Hierarchy") (sexp :tag "Form"))))
1466
1467 (defcustom gnus-group-fetch-control-use-browse-url nil
1468 "*Non-nil means that control messages are displayed using `browse-url'.
1469 Otherwise they are fetched with ange-ftp and displayed in an ephemeral
1470 group."
1471 :version "22.1"
1472 :group 'gnus-group-various
1473 :type 'boolean)
1103 1474
1104 (defcustom gnus-use-cross-reference t 1475 (defcustom gnus-use-cross-reference t
1105 "*Non-nil means that cross referenced articles will be marked as read. 1476 "*Non-nil means that cross referenced articles will be marked as read.
1106 If nil, ignore cross references. If t, mark articles as read in 1477 If nil, ignore cross references. If t, mark articles as read in
1107 subscribed newsgroups. If neither t nor nil, mark as read in all 1478 subscribed newsgroups. If neither t nor nil, mark as read in all
1119 :type 'character) 1490 :type 'character)
1120 1491
1121 (defcustom gnus-large-newsgroup 200 1492 (defcustom gnus-large-newsgroup 200
1122 "*The number of articles which indicates a large newsgroup. 1493 "*The number of articles which indicates a large newsgroup.
1123 If the number of articles in a newsgroup is greater than this value, 1494 If the number of articles in a newsgroup is greater than this value,
1124 confirmation is required for selecting the newsgroup." 1495 confirmation is required for selecting the newsgroup.
1496 If it is nil, no confirmation is required."
1125 :group 'gnus-group-select 1497 :group 'gnus-group-select
1126 :type 'integer) 1498 :type '(choice (const :tag "No limit" nil)
1499 integer))
1127 1500
1128 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix))) 1501 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix)))
1129 "*Non-nil means that the default name of a file to save articles in is the group name. 1502 "*Non-nil means that the default name of a file to save articles in is the group name.
1130 If it's nil, the directory form of the group name is used instead. 1503 If it's nil, the directory form of the group name is used instead.
1131 1504
1137 1510
1138 Note that the default for this variable varies according to what system 1511 Note that the default for this variable varies according to what system
1139 type you're using. On `usg-unix-v' and `xenix' this variable defaults 1512 type you're using. On `usg-unix-v' and `xenix' this variable defaults
1140 to nil while on all other systems it defaults to t." 1513 to nil while on all other systems it defaults to t."
1141 :group 'gnus-start 1514 :group 'gnus-start
1142 :type 'boolean) 1515 :type '(radio (sexp :format "Non-nil\n"
1516 :match (lambda (widget value)
1517 (and value (not (listp value))))
1518 :value t)
1519 (const nil)
1520 (checklist (const :format "%v " not-score)
1521 (const :format "%v " not-save)
1522 (const not-kill))))
1143 1523
1144 (defcustom gnus-kill-files-directory gnus-directory 1524 (defcustom gnus-kill-files-directory gnus-directory
1145 "*Name of the directory where kill files will be stored (default \"~/News\")." 1525 "*Name of the directory where kill files will be stored (default \"~/News\")."
1146 :group 'gnus-score-files 1526 :group 'gnus-score-files
1147 :group 'gnus-score-kill 1527 :group 'gnus-score-kill
1186 (defcustom gnus-use-grouplens nil 1566 (defcustom gnus-use-grouplens nil
1187 "*If non-nil, use GroupLens ratings." 1567 "*If non-nil, use GroupLens ratings."
1188 :group 'gnus-meta 1568 :group 'gnus-meta
1189 :type 'boolean) 1569 :type 'boolean)
1190 1570
1191 (defcustom gnus-keep-backlog nil 1571 (defcustom gnus-keep-backlog 20
1192 "*If non-nil, Gnus will keep read articles for later re-retrieval. 1572 "*If non-nil, Gnus will keep read articles for later re-retrieval.
1193 If it is a number N, then Gnus will only keep the last N articles 1573 If it is a number N, then Gnus will only keep the last N articles
1194 read. If it is neither nil nor a number, Gnus will keep all read 1574 read. If it is neither nil nor a number, Gnus will keep all read
1195 articles. This is not a good idea." 1575 articles. This is not a good idea."
1196 :group 'gnus-meta 1576 :group 'gnus-meta
1212 (defcustom gnus-use-scoring t 1592 (defcustom gnus-use-scoring t
1213 "*If non-nil, enable scoring." 1593 "*If non-nil, enable scoring."
1214 :group 'gnus-meta 1594 :group 'gnus-meta
1215 :type 'boolean) 1595 :type 'boolean)
1216 1596
1217 (defcustom gnus-use-picons nil
1218 "*If non-nil, display picons in a frame of their own."
1219 :group 'gnus-meta
1220 :type 'boolean)
1221
1222 (defcustom gnus-summary-prepare-exit-hook 1597 (defcustom gnus-summary-prepare-exit-hook
1223 '(gnus-summary-expire-articles) 1598 '(gnus-summary-expire-articles)
1224 "*A hook called when preparing to exit from the summary buffer. 1599 "*A hook called when preparing to exit from the summary buffer.
1225 It calls `gnus-summary-expire-articles' by default." 1600 It calls `gnus-summary-expire-articles' by default."
1226 :group 'gnus-summary-exit 1601 :group 'gnus-summary-exit
1227 :type 'hook) 1602 :type 'hook)
1228 1603
1229 (defcustom gnus-novice-user t 1604 (defcustom gnus-novice-user t
1230 "*Non-nil means that you are a usenet novice. 1605 "*Non-nil means that you are a Usenet novice.
1231 If non-nil, verbose messages may be displayed and confirmations may be 1606 If non-nil, verbose messages may be displayed and confirmations may be
1232 required." 1607 required."
1233 :group 'gnus-meta 1608 :group 'gnus-meta
1234 :type 'boolean) 1609 :type 'boolean)
1235 1610
1265 "*If non-nil, display clickable icons." 1640 "*If non-nil, display clickable icons."
1266 :group 'gnus-meta 1641 :group 'gnus-meta
1267 :type 'boolean) 1642 :type 'boolean)
1268 1643
1269 (defcustom gnus-shell-command-separator ";" 1644 (defcustom gnus-shell-command-separator ";"
1270 "String used to separate to shell commands." 1645 "String used to separate shell commands."
1271 :group 'gnus-files 1646 :group 'gnus-files
1272 :type 'string) 1647 :type 'string)
1273 1648
1274 (defcustom gnus-valid-select-methods 1649 (defcustom gnus-valid-select-methods
1275 '(("nntp" post address prompt-address physical-address) 1650 '(("nntp" post address prompt-address physical-address)
1276 ("nnspool" post address) 1651 ("nnspool" post address)
1277 ("nnvirtual" post-mail virtual prompt-address) 1652 ("nnvirtual" post-mail virtual prompt-address)
1278 ("nnmbox" mail respool address) 1653 ("nnmbox" mail respool address)
1279 ("nnml" mail respool address) 1654 ("nnml" post-mail respool address)
1280 ("nnmh" mail respool address) 1655 ("nnmh" mail respool address)
1281 ("nndir" post-mail prompt-address physical-address) 1656 ("nndir" post-mail prompt-address physical-address)
1282 ("nneething" none address prompt-address physical-address) 1657 ("nneething" none address prompt-address physical-address)
1283 ("nndoc" none address prompt-address) 1658 ("nndoc" none address prompt-address)
1284 ("nnbabyl" mail address respool) 1659 ("nnbabyl" mail address respool)
1286 ("nnsoup" post-mail address) 1661 ("nnsoup" post-mail address)
1287 ("nndraft" post-mail) 1662 ("nndraft" post-mail)
1288 ("nnfolder" mail respool address) 1663 ("nnfolder" mail respool address)
1289 ("nngateway" post-mail address prompt-address physical-address) 1664 ("nngateway" post-mail address prompt-address physical-address)
1290 ("nnweb" none) 1665 ("nnweb" none)
1666 ("nngoogle" post)
1291 ("nnslashdot" post) 1667 ("nnslashdot" post)
1292 ("nnultimate" none) 1668 ("nnultimate" none)
1669 ("nnrss" none)
1670 ("nnwfm" none)
1293 ("nnwarchive" none) 1671 ("nnwarchive" none)
1294 ("nnlistserv" none) 1672 ("nnlistserv" none)
1295 ("nnagent" post-mail) 1673 ("nnagent" post-mail)
1296 ("nnimap" post-mail address prompt-address physical-address)) 1674 ("nnimap" post-mail address prompt-address physical-address)
1675 ("nnmaildir" mail respool address)
1676 ("nnnil" none))
1297 "*An alist of valid select methods. 1677 "*An alist of valid select methods.
1298 The first element of each list lists should be a string with the name 1678 The first element of each list lists should be a string with the name
1299 of the select method. The other elements may be the category of 1679 of the select method. The other elements may be the category of
1300 this method (i. e., `post', `mail', `none' or whatever) or other 1680 this method (i. e., `post', `mail', `none' or whatever) or other
1301 properties that this method has (like being respoolable). 1681 properties that this method has (like being respoolable).
1330 (string :tag "Address") 1710 (string :tag "Address")
1331 (repeat :tag "Options" 1711 (repeat :tag "Options"
1332 :inline t 1712 :inline t
1333 (list :format "%v" 1713 (list :format "%v"
1334 variable 1714 variable
1335 (sexp :tag "Value")))) 1715 (sexp :tag "Value"))))))
1336 ))
1337 1716
1338 (gnus-redefine-select-method-widget) 1717 (gnus-redefine-select-method-widget)
1339 1718
1340 (defcustom gnus-updated-mode-lines '(group article summary tree) 1719 (defcustom gnus-updated-mode-lines '(group article summary tree)
1341 "List of buffers that should update their mode lines. 1720 "List of buffers that should update their mode lines.
1351 1730
1352 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>. 1731 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>.
1353 (defcustom gnus-mode-non-string-length nil 1732 (defcustom gnus-mode-non-string-length nil
1354 "*Max length of mode-line non-string contents. 1733 "*Max length of mode-line non-string contents.
1355 If this is nil, Gnus will take space as is needed, leaving the rest 1734 If this is nil, Gnus will take space as is needed, leaving the rest
1356 of the modeline intact. Note that the default of nil is unlikely 1735 of the mode line intact. Note that the default of nil is unlikely
1357 to be desirable; see the manual for further details." 1736 to be desirable; see the manual for further details."
1358 :group 'gnus-various 1737 :group 'gnus-various
1359 :type '(choice (const nil) 1738 :type '(choice (const nil)
1360 integer)) 1739 integer))
1361 1740
1362 (defcustom gnus-auto-expirable-newsgroups nil 1741 ;; There should be special validation for this.
1363 "*Groups in which to automatically mark read articles as expirable. 1742 (define-widget 'gnus-email-address 'string
1743 "An email address.")
1744
1745 (gnus-define-group-parameter
1746 to-address
1747 :function-document
1748 "Return GROUP's to-address."
1749 :variable-document
1750 "*Alist of group regexps and correspondent to-addresses."
1751 :variable-group gnus-group-parameter
1752 :parameter-type '(gnus-email-address :tag "To Address")
1753 :parameter-document "\
1754 This will be used when doing followups and posts.
1755
1756 This is primarily useful in mail groups that represent closed
1757 mailing lists--mailing lists where it's expected that everybody that
1758 writes to the mailing list is subscribed to it. Since using this
1759 parameter ensures that the mail only goes to the mailing list itself,
1760 it means that members won't receive two copies of your followups.
1761
1762 Using `to-address' will actually work whether the group is foreign or
1763 not. Let's say there's a group on the server that is called
1764 `fa.4ad-l'. This is a real newsgroup, but the server has gotten the
1765 articles from a mail-to-news gateway. Posting directly to this group
1766 is therefore impossible--you have to send mail to the mailing list
1767 address instead.
1768
1769 The gnus-group-split mail splitting mechanism will behave as if this
1770 address was listed in gnus-group-split Addresses (see below).")
1771
1772 (gnus-define-group-parameter
1773 to-list
1774 :function-document
1775 "Return GROUP's to-list."
1776 :variable-document
1777 "*Alist of group regexps and correspondent to-lists."
1778 :variable-group gnus-group-parameter
1779 :parameter-type '(gnus-email-address :tag "To List")
1780 :parameter-document "\
1781 This address will be used when doing a `a' in the group.
1782
1783 It is totally ignored when doing a followup--except that if it is
1784 present in a news group, you'll get mail group semantics when doing
1785 `f'.
1786
1787 The gnus-group-split mail splitting mechanism will behave as if this
1788 address was listed in gnus-group-split Addresses (see below).")
1789
1790 (gnus-define-group-parameter
1791 subscribed
1792 :type bool
1793 :function-document
1794 "Return GROUP's subscription status."
1795 :variable-document
1796 "*Groups which are automatically considered subscribed."
1797 :variable-group gnus-group-parameter
1798 :parameter-type '(const :tag "Subscribed" t)
1799 :parameter-document "\
1800 Gnus assumed that you are subscribed to the To/List address.
1801
1802 When constructing a list of subscribed groups using
1803 `gnus-find-subscribed-addresses', Gnus includes the To address given
1804 above, or the list address (if the To address has not been set).")
1805
1806 (gnus-define-group-parameter
1807 auto-expire
1808 :type bool
1809 :function gnus-group-auto-expirable-p
1810 :function-document
1811 "Check whether GROUP is auto-expirable or not."
1812 :variable gnus-auto-expirable-newsgroups
1813 :variable-default nil
1814 :variable-document
1815 "*Groups in which to automatically mark read articles as expirable.
1364 If non-nil, this should be a regexp that should match all groups in 1816 If non-nil, this should be a regexp that should match all groups in
1365 which to perform auto-expiry. This only makes sense for mail groups." 1817 which to perform auto-expiry. This only makes sense for mail groups."
1366 :group 'nnmail-expire 1818 :variable-group nnmail-expire
1367 :type '(choice (const nil) 1819 :variable-type '(choice (const nil)
1368 regexp)) 1820 regexp)
1369 1821 :parameter-type '(const :tag "Automatic Expire" t)
1370 (defcustom gnus-total-expirable-newsgroups nil 1822 :parameter-document
1371 "*Groups in which to perform expiry of all read articles. 1823 "All articles that are read will be marked as expirable.")
1824
1825 (gnus-define-group-parameter
1826 total-expire
1827 :type bool
1828 :function gnus-group-total-expirable-p
1829 :function-document
1830 "Check whether GROUP is total-expirable or not."
1831 :variable gnus-total-expirable-newsgroups
1832 :variable-default nil
1833 :variable-document
1834 "*Groups in which to perform expiry of all read articles.
1372 Use with extreme caution. All groups that match this regexp will be 1835 Use with extreme caution. All groups that match this regexp will be
1373 expiring - which means that all read articles will be deleted after 1836 expiring - which means that all read articles will be deleted after
1374 \(say) one week. (This only goes for mail groups and the like, of 1837 \(say) one week. (This only goes for mail groups and the like, of
1375 course.)" 1838 course.)"
1376 :group 'nnmail-expire 1839 :variable-group nnmail-expire
1377 :type '(choice (const nil) 1840 :variable-type '(choice (const nil)
1378 regexp)) 1841 regexp)
1842 :parameter-type '(const :tag "Total Expire" t)
1843 :parameter-document
1844 "All read articles will be put through the expiry process
1845
1846 This happens even if they are not marked as expirable.
1847 Use with caution.")
1848
1849 (gnus-define-group-parameter
1850 charset
1851 :function-document
1852 "Return the default charset of GROUP."
1853 :variable gnus-group-charset-alist
1854 :variable-default
1855 '(("\\(^\\|:\\)hk\\>\\|\\(^\\|:\\)tw\\>\\|\\<big5\\>" cn-big5)
1856 ("\\(^\\|:\\)cn\\>\\|\\<chinese\\>" cn-gb-2312)
1857 ("\\(^\\|:\\)fj\\>\\|\\(^\\|:\\)japan\\>" iso-2022-jp-2)
1858 ("\\(^\\|:\\)tnn\\>\\|\\(^\\|:\\)pin\\>\\|\\(^\\|:\\)sci.lang.japan" iso-2022-7bit)
1859 ("\\(^\\|:\\)relcom\\>" koi8-r)
1860 ("\\(^\\|:\\)fido7\\>" koi8-r)
1861 ("\\(^\\|:\\)\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2)
1862 ("\\(^\\|:\\)israel\\>" iso-8859-1)
1863 ("\\(^\\|:\\)han\\>" euc-kr)
1864 ("\\(^\\|:\\)alt.chinese.text.big5\\>" chinese-big5)
1865 ("\\(^\\|:\\)soc.culture.vietnamese\\>" vietnamese-viqr)
1866 ("\\(^\\|:\\)\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1))
1867 :variable-document
1868 "Alist of regexps (to match group names) and default charsets to be used when reading."
1869 :variable-group gnus-charset
1870 :variable-type '(repeat (list (regexp :tag "Group")
1871 (symbol :tag "Charset")))
1872 :parameter-type '(symbol :tag "Charset")
1873 :parameter-document "\
1874 The default charset to use in the group.")
1875
1876 (gnus-define-group-parameter
1877 post-method
1878 :type list
1879 :function-document
1880 "Return a posting method for GROUP."
1881 :variable gnus-post-method-alist
1882 :variable-document
1883 "Alist of regexps (to match group names) and method to be used when
1884 posting an article."
1885 :variable-group gnus-group-foreign
1886 :parameter-type
1887 '(choice :tag "Posting Method"
1888 (const :tag "Use native server" native)
1889 (const :tag "Use current server" current)
1890 (list :convert-widget
1891 (lambda (widget)
1892 (list 'sexp :tag "Methods"
1893 :value gnus-select-method))))
1894 :parameter-document
1895 "Posting method for this group.")
1896
1897 (gnus-define-group-parameter
1898 large-newsgroup-initial
1899 :type integer
1900 :function-document
1901 "Return GROUP's initial input of the number of articles."
1902 :variable-document
1903 "*Alist of group regexps and its initial input of the number of articles."
1904 :variable-group gnus-group-parameter
1905 :parameter-type '(choice :tag "Initial Input for Large Newsgroup"
1906 (const :tag "All" nil)
1907 (integer))
1908 :parameter-document "\
1909
1910 This number will be prompted as the initial value of the number of
1911 articles to list when the group is a large newsgroup (see
1912 `gnus-large-newsgroup'). If it is nil, the default value is the
1913 total number of articles in the group.")
1914
1915 ;; The Gnus registry's ignored groups
1916 (gnus-define-group-parameter
1917 registry-ignore
1918 :type list
1919 :function-document
1920 "Whether this group should be ignored by the registry."
1921 :variable gnus-registry-ignored-groups
1922 :variable-default nil
1923 :variable-document
1924 "*Groups in which the registry should be turned off."
1925 :variable-group gnus-registry
1926 :variable-type '(repeat
1927 (list
1928 (regexp :tag "Group Name Regular Expression")
1929 (boolean :tag "Ignored")))
1930
1931 :parameter-type '(boolean :tag "Group Ignored by the Registry")
1932 :parameter-document
1933 "Whether the Gnus Registry should ignore this group.")
1934
1935 ;; group parameters for spam processing added by Ted Zlatanov <tzz@lifelogs.com>
1936 (defcustom gnus-install-group-spam-parameters t
1937 "*Disable the group parameters for spam detection.
1938 Enable if `G c' in XEmacs is giving you trouble, and make sure to submit a bug report."
1939 :version "22.1"
1940 :type 'boolean
1941 :group 'gnus-start)
1942
1943 (when gnus-install-group-spam-parameters
1944 (defvar gnus-group-spam-classification-spam t
1945 "Spam group classification (requires spam.el).
1946 This group contains spam messages. On summary entry, unread messages
1947 will be marked as spam. On summary exit, the specified spam
1948 processors will be invoked on spam-marked messages, then those
1949 messages will be expired, so the spam processor will only see a
1950 spam-marked message once.")
1951
1952 (defvar gnus-group-spam-classification-ham 'ask
1953 "The ham value for the spam group parameter (requires spam.el).
1954 On summary exit, the specified ham processors will be invoked on
1955 ham-marked messages. Exercise caution, since the ham processor will
1956 see the same message more than once because there is no ham message
1957 registry.")
1958
1959 (gnus-define-group-parameter
1960 spam-contents
1961 :type list
1962 :function-document
1963 "The spam type (spam, ham, or neither) of the group."
1964 :variable gnus-spam-newsgroup-contents
1965 :variable-default nil
1966 :variable-document
1967 "*Group classification (spam, ham, or neither). Only
1968 meaningful when spam.el is loaded. If non-nil, this should be a
1969 list of group name regexps associated with a classification for
1970 each one. In spam groups, new articles are marked as spam on
1971 summary entry. There is other behavior associated with ham and
1972 no classification when spam.el is loaded - see the manual."
1973 :variable-group spam
1974 :variable-type '(repeat
1975 (list :tag "Group contents spam/ham classification"
1976 (regexp :tag "Group")
1977 (choice
1978 (variable-item gnus-group-spam-classification-spam)
1979 (variable-item gnus-group-spam-classification-ham)
1980 (const :tag "Unclassified" nil))))
1981
1982 :parameter-type '(list :tag "Group contents spam/ham classification"
1983 (choice :tag "Group contents classification for spam sorting"
1984 (variable-item gnus-group-spam-classification-spam)
1985 (variable-item gnus-group-spam-classification-ham)
1986 (const :tag "Unclassified" nil)))
1987 :parameter-document
1988 "The spam classification (spam, ham, or neither) of this group.
1989 When a spam group is entered, all unread articles are marked as
1990 spam. There is other behavior associated with ham and no
1991 classification when spam.el is loaded - see the manual.")
1992
1993 (defvar gnus-group-spam-exit-processor-ifile "ifile"
1994 "OBSOLETE: The ifile summary exit spam processor.")
1995
1996 (defvar gnus-group-spam-exit-processor-stat "stat"
1997 "OBSOLETE: The spam-stat summary exit spam processor.")
1998
1999 (defvar gnus-group-spam-exit-processor-bogofilter "bogofilter"
2000 "OBSOLETE: The Bogofilter summary exit spam processor.")
2001
2002 (defvar gnus-group-spam-exit-processor-blacklist "blacklist"
2003 "OBSOLETE: The Blacklist summary exit spam processor.")
2004
2005 (defvar gnus-group-spam-exit-processor-report-gmane "report-gmane"
2006 "OBSOLETE: The Gmane reporting summary exit spam processor.
2007 Only applicable to NNTP groups with articles from Gmane. See spam-report.el")
2008
2009 (defvar gnus-group-spam-exit-processor-spamoracle "spamoracle-spam"
2010 "OBSOLETE: The spamoracle summary exit spam processor.")
2011
2012 (defvar gnus-group-ham-exit-processor-ifile "ifile-ham"
2013 "OBSOLETE: The ifile summary exit ham processor.
2014 Only applicable to non-spam (unclassified and ham) groups.")
2015
2016 (defvar gnus-group-ham-exit-processor-bogofilter "bogofilter-ham"
2017 "OBSOLETE: The Bogofilter summary exit ham processor.
2018 Only applicable to non-spam (unclassified and ham) groups.")
2019
2020 (defvar gnus-group-ham-exit-processor-stat "stat-ham"
2021 "OBSOLETE: The spam-stat summary exit ham processor.
2022 Only applicable to non-spam (unclassified and ham) groups.")
2023
2024 (defvar gnus-group-ham-exit-processor-whitelist "whitelist"
2025 "OBSOLETE: The whitelist summary exit ham processor.
2026 Only applicable to non-spam (unclassified and ham) groups.")
2027
2028 (defvar gnus-group-ham-exit-processor-BBDB "bbdb"
2029 "OBSOLETE: The BBDB summary exit ham processor.
2030 Only applicable to non-spam (unclassified and ham) groups.")
2031
2032 (defvar gnus-group-ham-exit-processor-copy "copy"
2033 "OBSOLETE: The ham copy exit ham processor.
2034 Only applicable to non-spam (unclassified and ham) groups.")
2035
2036 (defvar gnus-group-ham-exit-processor-spamoracle "spamoracle-ham"
2037 "OBSOLETE: The spamoracle summary exit ham processor.
2038 Only applicable to non-spam (unclassified and ham) groups.")
2039
2040 (gnus-define-group-parameter
2041 spam-process
2042 :type list
2043 :parameter-type
2044 '(choice
2045 :tag "Spam Summary Exit Processor"
2046 :value nil
2047 (list :tag "Spam Summary Exit Processor Choices"
2048 (set
2049 (variable-item gnus-group-spam-exit-processor-ifile)
2050 (variable-item gnus-group-spam-exit-processor-stat)
2051 (variable-item gnus-group-spam-exit-processor-bogofilter)
2052 (variable-item gnus-group-spam-exit-processor-blacklist)
2053 (variable-item gnus-group-spam-exit-processor-spamoracle)
2054 (variable-item gnus-group-spam-exit-processor-report-gmane)
2055 (variable-item gnus-group-ham-exit-processor-bogofilter)
2056 (variable-item gnus-group-ham-exit-processor-ifile)
2057 (variable-item gnus-group-ham-exit-processor-stat)
2058 (variable-item gnus-group-ham-exit-processor-whitelist)
2059 (variable-item gnus-group-ham-exit-processor-BBDB)
2060 (variable-item gnus-group-ham-exit-processor-spamoracle)
2061 (variable-item gnus-group-ham-exit-processor-copy)
2062 (const :tag "Spam: Gmane Report" (spam spam-use-gmane))
2063 (const :tag "Spam: Bogofilter" (spam spam-use-bogofilter))
2064 (const :tag "Spam: Blacklist" (spam spam-use-blacklist))
2065 (const :tag "Spam: ifile" (spam spam-use-ifile))
2066 (const :tag "Spam: Spam-stat" (spam spam-use-stat))
2067 (const :tag "Spam: Spam Oracle" (spam spam-use-spamoracle))
2068 (const :tag "Ham: ifile" (ham spam-use-ifile))
2069 (const :tag "Ham: Bogofilter" (ham spam-use-bogofilter))
2070 (const :tag "Ham: Spam-stat" (ham spam-use-stat))
2071 (const :tag "Ham: Whitelist" (ham spam-use-whitelist))
2072 (const :tag "Ham: BBDB" (ham spam-use-BBDB))
2073 (const :tag "Ham: Copy" (ham spam-use-ham-copy))
2074 (const :tag "Ham: Spam Oracle" (ham spam-use-spamoracle)))))
2075 :function-document
2076 "Which spam or ham processors will be applied when the summary is exited."
2077 :variable gnus-spam-process-newsgroups
2078 :variable-default nil
2079 :variable-document
2080 "*Groups in which to automatically process spam or ham articles with
2081 a backend on summary exit. If non-nil, this should be a list of group
2082 name regexps that should match all groups in which to do automatic
2083 spam processing, associated with the appropriate processor."
2084 :variable-group spam
2085 :variable-type
2086 '(repeat :tag "Spam/Ham Processors"
2087 (list :tag "Spam Summary Exit Processor Choices"
2088 (regexp :tag "Group Regexp")
2089 (set
2090 :tag "Spam/Ham Summary Exit Processor"
2091 (variable-item gnus-group-spam-exit-processor-ifile)
2092 (variable-item gnus-group-spam-exit-processor-stat)
2093 (variable-item gnus-group-spam-exit-processor-bogofilter)
2094 (variable-item gnus-group-spam-exit-processor-blacklist)
2095 (variable-item gnus-group-spam-exit-processor-spamoracle)
2096 (variable-item gnus-group-spam-exit-processor-report-gmane)
2097 (variable-item gnus-group-ham-exit-processor-bogofilter)
2098 (variable-item gnus-group-ham-exit-processor-ifile)
2099 (variable-item gnus-group-ham-exit-processor-stat)
2100 (variable-item gnus-group-ham-exit-processor-whitelist)
2101 (variable-item gnus-group-ham-exit-processor-BBDB)
2102 (variable-item gnus-group-ham-exit-processor-spamoracle)
2103 (variable-item gnus-group-ham-exit-processor-copy)
2104 (const :tag "Spam: Gmane Report" (spam spam-use-gmane))
2105 (const :tag "Spam: Bogofilter" (spam spam-use-bogofilter))
2106 (const :tag "Spam: Blacklist" (spam spam-use-blacklist))
2107 (const :tag "Spam: ifile" (spam spam-use-ifile))
2108 (const :tag "Spam: Spam-stat" (spam spam-use-stat))
2109 (const :tag "Spam: Spam Oracle" (spam spam-use-spamoracle))
2110 (const :tag "Ham: ifile" (ham spam-use-ifile))
2111 (const :tag "Ham: Bogofilter" (ham spam-use-bogofilter))
2112 (const :tag "Ham: Spam-stat" (ham spam-use-stat))
2113 (const :tag "Ham: Whitelist" (ham spam-use-whitelist))
2114 (const :tag "Ham: BBDB" (ham spam-use-BBDB))
2115 (const :tag "Ham: Copy" (ham spam-use-ham-copy))
2116 (const :tag "Ham: Spam Oracle" (ham spam-use-spamoracle)))))
2117
2118 :parameter-document
2119 "Which spam or ham processors will be applied when the summary is exited.")
2120
2121 (gnus-define-group-parameter
2122 spam-autodetect
2123 :type list
2124 :parameter-type
2125 '(boolean :tag "Spam autodetection")
2126 :function-document
2127 "Should spam be autodetected (with spam-split) in this group?"
2128 :variable gnus-spam-autodetect
2129 :variable-default nil
2130 :variable-document
2131 "*Groups in which spam should be autodetected when they are entered.
2132 Only unseen articles will be examined, unless
2133 spam-autodetect-recheck-messages is set."
2134 :variable-group spam
2135 :variable-type
2136 '(repeat
2137 :tag "Autodetection setting"
2138 (list
2139 (regexp :tag "Group Regexp")
2140 boolean))
2141 :parameter-document
2142 "Spam autodetection.
2143 Only unseen articles will be examined, unless
2144 spam-autodetect-recheck-messages is set.")
2145
2146 (gnus-define-group-parameter
2147 spam-autodetect-methods
2148 :type list
2149 :parameter-type
2150 '(choice :tag "Spam autodetection-specific methods"
2151 (const none)
2152 (const default)
2153 (set :tag "Use specific methods"
2154 (variable-item spam-use-blacklist)
2155 (variable-item spam-use-regex-headers)
2156 (variable-item spam-use-regex-body)
2157 (variable-item spam-use-whitelist)
2158 (variable-item spam-use-BBDB)
2159 (variable-item spam-use-ifile)
2160 (variable-item spam-use-spamoracle)
2161 (variable-item spam-use-stat)
2162 (variable-item spam-use-blackholes)
2163 (variable-item spam-use-hashcash)
2164 (variable-item spam-use-bogofilter-headers)
2165 (variable-item spam-use-bogofilter)))
2166 :function-document
2167 "Methods to be used for autodetection in each group"
2168 :variable gnus-spam-autodetect-methods
2169 :variable-default nil
2170 :variable-document
2171 "*Methods for autodetecting spam per group.
2172 Requires the spam-autodetect parameter. Only unseen articles
2173 will be examined, unless spam-autodetect-recheck-messages is
2174 set."
2175 :variable-group spam
2176 :variable-type
2177 '(repeat
2178 :tag "Autodetection methods"
2179 (list
2180 (regexp :tag "Group Regexp")
2181 (choice
2182 (const none)
2183 (const default)
2184 (set :tag "Use specific methods"
2185 (variable-item spam-use-blacklist)
2186 (variable-item spam-use-regex-headers)
2187 (variable-item spam-use-regex-body)
2188 (variable-item spam-use-whitelist)
2189 (variable-item spam-use-BBDB)
2190 (variable-item spam-use-ifile)
2191 (variable-item spam-use-spamoracle)
2192 (variable-item spam-use-stat)
2193 (variable-item spam-use-blackholes)
2194 (variable-item spam-use-hashcash)
2195 (variable-item spam-use-bogofilter-headers)
2196 (variable-item spam-use-bogofilter)))))
2197 :parameter-document
2198 "Spam autodetection methods.
2199 Requires the spam-autodetect parameter. Only unseen articles
2200 will be examined, unless spam-autodetect-recheck-messages is
2201 set.")
2202
2203 (gnus-define-group-parameter
2204 spam-process-destination
2205 :type list
2206 :parameter-type
2207 '(choice :tag "Destination for spam-processed articles at summary exit"
2208 (string :tag "Move to a group")
2209 (repeat :tag "Move to multiple groups"
2210 (string :tag "Destination group"))
2211 (const :tag "Expire" nil))
2212 :function-document
2213 "Where spam-processed articles will go at summary exit."
2214 :variable gnus-spam-process-destinations
2215 :variable-default nil
2216 :variable-document
2217 "*Groups in which to explicitly send spam-processed articles to
2218 another group, or expire them (the default). If non-nil, this should
2219 be a list of group name regexps that should match all groups in which
2220 to do spam-processed article moving, associated with the destination
2221 group or nil for explicit expiration. This only makes sense for
2222 mail groups."
2223 :variable-group spam
2224 :variable-type
2225 '(repeat
2226 :tag "Spam-processed articles destination"
2227 (list
2228 (regexp :tag "Group Regexp")
2229 (choice
2230 :tag "Destination for spam-processed articles at summary exit"
2231 (string :tag "Move to a group")
2232 (repeat :tag "Move to multiple groups"
2233 (string :tag "Destination group"))
2234 (const :tag "Expire" nil))))
2235 :parameter-document
2236 "Where spam-processed articles will go at summary exit.")
2237
2238 (gnus-define-group-parameter
2239 ham-process-destination
2240 :type list
2241 :parameter-type
2242 '(choice
2243 :tag "Destination for ham articles at summary exit from a spam group"
2244 (string :tag "Move to a group")
2245 (repeat :tag "Move to multiple groups"
2246 (string :tag "Destination group"))
2247 (const :tag "Respool" respool)
2248 (const :tag "Do nothing" nil))
2249 :function-document
2250 "Where ham articles will go at summary exit from a spam group."
2251 :variable gnus-ham-process-destinations
2252 :variable-default nil
2253 :variable-document
2254 "*Groups in which to explicitly send ham articles to
2255 another group, or do nothing (the default). If non-nil, this should
2256 be a list of group name regexps that should match all groups in which
2257 to do ham article moving, associated with the destination
2258 group or nil for explicit ignoring. This only makes sense for
2259 mail groups, and only works in spam groups."
2260 :variable-group spam
2261 :variable-type
2262 '(repeat
2263 :tag "Ham articles destination"
2264 (list
2265 (regexp :tag "Group Regexp")
2266 (choice
2267 :tag "Destination for ham articles at summary exit from spam group"
2268 (string :tag "Move to a group")
2269 (repeat :tag "Move to multiple groups"
2270 (string :tag "Destination group"))
2271 (const :tag "Respool" respool)
2272 (const :tag "Expire" nil))))
2273 :parameter-document
2274 "Where ham articles will go at summary exit from a spam group.")
2275
2276 (gnus-define-group-parameter
2277 ham-marks
2278 :type 'list
2279 :parameter-type '(list :tag "Ham mark choices"
2280 (set
2281 (variable-item gnus-del-mark)
2282 (variable-item gnus-read-mark)
2283 (variable-item gnus-ticked-mark)
2284 (variable-item gnus-killed-mark)
2285 (variable-item gnus-kill-file-mark)
2286 (variable-item gnus-low-score-mark)))
2287
2288 :parameter-document
2289 "Marks considered ham (positively not spam). Such articles will be
2290 processed as ham (non-spam) on group exit. When nil, the global
2291 spam-ham-marks variable takes precedence."
2292 :variable-default '((".*" ((gnus-del-mark
2293 gnus-read-mark
2294 gnus-killed-mark
2295 gnus-kill-file-mark
2296 gnus-low-score-mark))))
2297 :variable-group spam
2298 :variable-document
2299 "*Groups in which to explicitly set the ham marks to some value.")
2300
2301 (gnus-define-group-parameter
2302 spam-marks
2303 :type 'list
2304 :parameter-type '(list :tag "Spam mark choices"
2305 (set
2306 (variable-item gnus-spam-mark)
2307 (variable-item gnus-killed-mark)
2308 (variable-item gnus-kill-file-mark)
2309 (variable-item gnus-low-score-mark)))
2310
2311 :parameter-document
2312 "Marks considered spam.
2313 Such articles will be processed as spam on group exit. When nil, the global
2314 spam-spam-marks variable takes precedence."
2315 :variable-default '((".*" ((gnus-spam-mark))))
2316 :variable-group spam
2317 :variable-document
2318 "*Groups in which to explicitly set the spam marks to some value."))
1379 2319
1380 (defcustom gnus-group-uncollapsed-levels 1 2320 (defcustom gnus-group-uncollapsed-levels 1
1381 "Number of group name elements to leave alone when making a short group name." 2321 "Number of group name elements to leave alone when making a short group name."
1382 :group 'gnus-group-visual 2322 :group 'gnus-group-visual
1383 :type 'integer) 2323 :type 'integer)
1417 2357
1418 (defcustom gnus-group-change-level-function nil 2358 (defcustom gnus-group-change-level-function nil
1419 "Function run when a group level is changed. 2359 "Function run when a group level is changed.
1420 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL." 2360 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL."
1421 :group 'gnus-group-levels 2361 :group 'gnus-group-levels
1422 :type 'function) 2362 :type '(choice (const nil)
2363 function))
1423 2364
1424 ;;; Face thingies. 2365 ;;; Face thingies.
1425 2366
1426 (defcustom gnus-visual 2367 (defcustom gnus-visual
1427 '(summary-highlight group-highlight article-highlight 2368 '(summary-highlight group-highlight article-highlight
1464 (const tree-menu) 2405 (const tree-menu)
1465 (const binary-menu) 2406 (const binary-menu)
1466 (const pick-menu) 2407 (const pick-menu)
1467 (const grouplens-menu))) 2408 (const grouplens-menu)))
1468 2409
2410 ;; Byte-compiler warning.
2411 (defvar gnus-visual)
2412 ;; Find out whether the gnus-visual TYPE is wanted.
2413 (defun gnus-visual-p (&optional type class)
2414 (and gnus-visual ; Has to be non-nil, at least.
2415 (if (not type) ; We don't care about type.
2416 gnus-visual
2417 (if (listp gnus-visual) ; It's a list, so we check it.
2418 (or (memq type gnus-visual)
2419 (memq class gnus-visual))
2420 t))))
2421
1469 (defcustom gnus-mouse-face 2422 (defcustom gnus-mouse-face
1470 (condition-case () 2423 (condition-case ()
1471 (if (gnus-visual-p 'mouse-face 'highlight) 2424 (if (gnus-visual-p 'mouse-face 'highlight)
1472 (if (boundp 'gnus-mouse-face) 2425 (if (boundp 'gnus-mouse-face)
1473 (or gnus-mouse-face 'highlight) 2426 (or gnus-mouse-face 'highlight)
1486 :type 'directory) 2439 :type 'directory)
1487 2440
1488 (defvar gnus-plugged t 2441 (defvar gnus-plugged t
1489 "Whether Gnus is plugged or not.") 2442 "Whether Gnus is plugged or not.")
1490 2443
1491 (defcustom gnus-default-charset 'iso-8859-1 2444 (defcustom gnus-agent-cache t
2445 "Controls use of the agent cache while plugged.
2446 When set, Gnus will prefer using the locally stored content rather
2447 than re-fetching it from the server. You also need to enable
2448 `gnus-agent' for this to have any affect."
2449 :version "22.1"
2450 :group 'gnus-agent
2451 :type 'boolean)
2452
2453 (defcustom gnus-default-charset 'undecided
1492 "Default charset assumed to be used when viewing non-ASCII characters. 2454 "Default charset assumed to be used when viewing non-ASCII characters.
1493 This variable is overridden on a group-to-group basis by the 2455 This variable is overridden on a group-to-group basis by the
1494 gnus-group-charset-alist variable and is only used on groups not 2456 `gnus-group-charset-alist' variable and is only used on groups not
1495 covered by that variable." 2457 covered by that variable."
1496 :type 'symbol 2458 :type 'symbol
1497 :group 'gnus-charset) 2459 :group 'gnus-charset)
1498 2460
1499 (defcustom gnus-default-posting-charset nil 2461 ;; Fixme: Doc reference to agent.
1500 "Default charset assumed to be used when posting non-ASCII characters. 2462 (defcustom gnus-agent t
1501 This variable is overridden on a group-to-group basis by the 2463 "Whether we want to use the Gnus agent or not.
1502 gnus-group-posting-charset-alist variable and is only used on groups not 2464
1503 covered by that variable. 2465 You may customize gnus-agent to disable its use. However, some
1504 If nil, no default charset is assumed when posting." 2466 back ends have started to use the agent as a client-side cache.
1505 :type 'symbol 2467 Disabling the agent may result in noticeable loss of performance."
1506 :group 'gnus-charset) 2468 :version "22.1"
2469 :group 'gnus-agent
2470 :type 'boolean)
2471
2472 (defcustom gnus-other-frame-function 'gnus
2473 "Function called by the command `gnus-other-frame'."
2474 :group 'gnus-start
2475 :type '(choice (function-item gnus)
2476 (function-item gnus-no-server)
2477 (function-item gnus-slave)
2478 (function-item gnus-slave-no-server)))
2479
2480 (defcustom gnus-other-frame-parameters nil
2481 "Frame parameters used by `gnus-other-frame' to create a Gnus frame.
2482 This should be an alist for Emacs, or a plist for XEmacs."
2483 :group 'gnus-start
2484 :type (if (featurep 'xemacs)
2485 '(repeat (list :inline t :format "%v"
2486 (symbol :tag "Property")
2487 (sexp :tag "Value")))
2488 '(repeat (cons :format "%v"
2489 (symbol :tag "Parameter")
2490 (sexp :tag "Value")))))
2491
2492 (defcustom gnus-user-agent '(emacs gnus type)
2493 "Which information should be exposed in the User-Agent header.
2494
2495 Can be a list of symbols or a string. Valid symbols are `gnus'
2496 \(show Gnus version\) and `emacs' \(show Emacs version\). In
2497 addition to the Emacs version, you can add `codename' \(show
2498 \(S\)XEmacs codename\) or either `config' \(show system
2499 configuration\) or `type' \(show system type\). If you set it to
2500 a string, be sure to use a valid format, see RFC 2616."
2501
2502 :version "22.1"
2503 :group 'gnus-message
2504 :type '(choice (list (set :inline t
2505 (const gnus :tag "Gnus version")
2506 (const emacs :tag "Emacs version")
2507 (choice :tag "system"
2508 (const type :tag "system type")
2509 (const config :tag "system configuration"))
2510 (const codename :tag "Emacs codename")))
2511 (string)))
2512
2513 ;; Convert old (No Gnus < 2005-01-10, v5-10 < 2005-09-05) symbol type values:
2514 (when (symbolp gnus-user-agent)
2515 (setq gnus-user-agent
2516 (cond ((eq gnus-user-agent 'emacs-gnus-config)
2517 '(emacs gnus config))
2518 ((eq gnus-user-agent 'emacs-gnus-type)
2519 '(emacs gnus type))
2520 ((eq gnus-user-agent 'emacs-gnus)
2521 '(emacs gnus))
2522 ((eq gnus-user-agent 'gnus)
2523 '(gnus))
2524 (t gnus-user-agent)))
2525 (gnus-message 1 "Converted `gnus-user-agent' to `%s'." gnus-user-agent)
2526 (sit-for 1)
2527 (if (get 'gnus-user-agent 'saved-value)
2528 (customize-save-variable 'gnus-user-agent gnus-user-agent)
2529 (gnus-message 1 "Edit your init file to make this change permanent.")
2530 (sit-for 2)))
1507 2531
1508 2532
1509 ;;; Internal variables 2533 ;;; Internal variables
1510 2534
1511 (defvar gnus-agent-gcc-header "X-Gnus-Agent-Gcc") 2535 (defvar gnus-agent-gcc-header "X-Gnus-Agent-Gcc")
1512 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information") 2536 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information")
2537 (defvar gnus-agent-method-p-cache nil
2538 ; Reset each time gnus-agent-covered-methods is changed else
2539 ; gnus-agent-method-p may mis-report a methods status.
2540 )
2541 (defvar gnus-agent-target-move-group-header "X-Gnus-Agent-Move-To")
2542 (defvar gnus-draft-meta-information-header "X-Draft-From")
1513 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter) 2543 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter)
1514 (defvar gnus-original-article-buffer " *Original Article*") 2544 (defvar gnus-original-article-buffer " *Original Article*")
1515 (defvar gnus-newsgroup-name nil) 2545 (defvar gnus-newsgroup-name nil)
1516 (defvar gnus-ephemeral-servers nil) 2546 (defvar gnus-ephemeral-servers nil)
1517 2547 (defvar gnus-server-method-cache nil)
1518 (defvar gnus-agent nil
1519 "Whether we want to use the Gnus agent or not.")
1520 2548
1521 (defvar gnus-agent-fetching nil 2549 (defvar gnus-agent-fetching nil
1522 "Whether Gnus agent is in fetching mode.") 2550 "Whether Gnus agent is in fetching mode.")
1523 2551
2552 (defvar gnus-agent-covered-methods nil
2553 "A list of servers, NOT methods, showing which servers are covered by the agent.")
2554
1524 (defvar gnus-command-method nil 2555 (defvar gnus-command-method nil
1525 "Dynamically bound variable that says what the current backend is.") 2556 "Dynamically bound variable that says what the current back end is.")
1526 2557
1527 (defvar gnus-current-select-method nil 2558 (defvar gnus-current-select-method nil
1528 "The current method for selecting a newsgroup.") 2559 "The current method for selecting a newsgroup.")
1529 2560
1530 (defvar gnus-tree-buffer "*Tree*" 2561 (defvar gnus-tree-buffer "*Tree*"
1558 (nnspool-nov-directory ,gnus-cache-directory) 2589 (nnspool-nov-directory ,gnus-cache-directory)
1559 (nnspool-active-file 2590 (nnspool-active-file
1560 ,(nnheader-concat gnus-cache-directory "active")))) 2591 ,(nnheader-concat gnus-cache-directory "active"))))
1561 "List of predefined (convenience) servers.") 2592 "List of predefined (convenience) servers.")
1562 2593
1563 (defvar gnus-topic-indentation "");; Obsolete variable. 2594 (defvar gnus-topic-indentation "") ;; Obsolete variable.
1564 2595
1565 (defconst gnus-article-mark-lists 2596 (defconst gnus-article-mark-lists
1566 '((marked . tick) (replied . reply) 2597 '((marked . tick) (replied . reply)
1567 (expirable . expire) (killed . killed) 2598 (expirable . expire) (killed . killed)
1568 (bookmarks . bookmark) (dormant . dormant) 2599 (bookmarks . bookmark) (dormant . dormant)
1569 (scored . score) (saved . save) 2600 (scored . score) (saved . save)
1570 (cached . cache) (downloadable . download) 2601 (cached . cache) (downloadable . download)
1571 (unsendable . unsend))) 2602 (unsendable . unsend) (forwarded . forward)
2603 (recent . recent) (seen . seen)))
2604
2605 (defconst gnus-article-special-mark-lists
2606 '((seen range)
2607 (killed range)
2608 (bookmark tuple)
2609 (score tuple)))
2610
2611 ;; Propagate flags to server, with the following exceptions:
2612 ;; `seen' is private to each gnus installation
2613 ;; `cache' is a internal gnus flag for each gnus installation
2614 ;; `download' is a agent flag private to each gnus installation
2615 ;; `unsend' are for nndraft groups only
2616 ;; `score' is not a proper mark
2617 ;; `bookmark': don't propagated it, or fix the bug in update-mark.
2618 (defconst gnus-article-unpropagated-mark-lists
2619 '(seen cache download unsend score bookmark)
2620 "Marks that shouldn't be propagated to back ends.
2621 Typical marks are those that make no sense in a standalone back end,
2622 such as a mark that says whether an article is stored in the cache
2623 \(which doesn't make sense in a standalone back end).")
1572 2624
1573 (defvar gnus-headers-retrieved-by nil) 2625 (defvar gnus-headers-retrieved-by nil)
1574 (defvar gnus-article-reply nil) 2626 (defvar gnus-article-reply nil)
1575 (defvar gnus-override-method nil) 2627 (defvar gnus-override-method nil)
1576 (defvar gnus-article-check-size nil) 2628 (defvar gnus-article-check-size nil)
1583 (defconst gnus-maintainer 2635 (defconst gnus-maintainer
1584 "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)" 2636 "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)"
1585 "The mail address of the Gnus maintainers.") 2637 "The mail address of the Gnus maintainers.")
1586 2638
1587 (defvar gnus-info-nodes 2639 (defvar gnus-info-nodes
1588 '((gnus-group-mode "(gnus)The Group Buffer") 2640 '((gnus-group-mode "(gnus)Group Buffer")
1589 (gnus-summary-mode "(gnus)The Summary Buffer") 2641 (gnus-summary-mode "(gnus)Summary Buffer")
1590 (gnus-article-mode "(gnus)The Article Buffer") 2642 (gnus-article-mode "(gnus)Article Buffer")
1591 (gnus-server-mode "(gnus)The Server Buffer") 2643 (gnus-server-mode "(gnus)Server Buffer")
1592 (gnus-browse-mode "(gnus)Browse Foreign Server") 2644 (gnus-browse-mode "(gnus)Browse Foreign Server")
1593 (gnus-tree-mode "(gnus)Tree Display")) 2645 (gnus-tree-mode "(gnus)Tree Display"))
1594 "Alist of major modes and related Info nodes.") 2646 "Alist of major modes and related Info nodes.")
1595 2647
1596 (defvar gnus-group-buffer "*Group*") 2648 (defvar gnus-group-buffer "*Group*")
1613 gnus-format-specs) 2665 gnus-format-specs)
1614 "Gnus variables saved in the quick startup file.") 2666 "Gnus variables saved in the quick startup file.")
1615 2667
1616 (defvar gnus-newsrc-alist nil 2668 (defvar gnus-newsrc-alist nil
1617 "Assoc list of read articles. 2669 "Assoc list of read articles.
1618 gnus-newsrc-hashtb should be kept so that both hold the same information.") 2670 `gnus-newsrc-hashtb' should be kept so that both hold the same information.")
2671
2672 (defvar gnus-registry-alist nil
2673 "Assoc list of registry data.
2674 gnus-registry.el will populate this if it's loaded.")
1619 2675
1620 (defvar gnus-newsrc-hashtb nil 2676 (defvar gnus-newsrc-hashtb nil
1621 "Hashtable of gnus-newsrc-alist.") 2677 "Hashtable of `gnus-newsrc-alist'.")
1622 2678
1623 (defvar gnus-killed-list nil 2679 (defvar gnus-killed-list nil
1624 "List of killed newsgroups.") 2680 "List of killed newsgroups.")
1625 2681
1626 (defvar gnus-killed-hashtb nil 2682 (defvar gnus-killed-hashtb nil
1627 "Hash table equivalent of gnus-killed-list.") 2683 "Hash table equivalent of `gnus-killed-list'.")
1628 2684
1629 (defvar gnus-zombie-list nil 2685 (defvar gnus-zombie-list nil
1630 "List of almost dead newsgroups.") 2686 "List of almost dead newsgroups.")
1631 2687
1632 (defvar gnus-description-hashtb nil 2688 (defvar gnus-description-hashtb nil
1651 2707
1652 (defvar gnus-dead-summary nil) 2708 (defvar gnus-dead-summary nil)
1653 2709
1654 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$" 2710 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$"
1655 "Regexp matching invalid groups.") 2711 "Regexp matching invalid groups.")
2712
2713 (defvar gnus-other-frame-object nil
2714 "A frame object which will be created by `gnus-other-frame'.")
1656 2715
1657 ;;; End of variables. 2716 ;;; End of variables.
1658 2717
1659 ;; Define some autoload functions Gnus might use. 2718 ;; Define some autoload functions Gnus might use.
1660 (eval-and-compile 2719 (eval-and-compile
1702 gnus-demon-add-rescan gnus-demon-add-scan-timestamps 2761 gnus-demon-add-rescan gnus-demon-add-scan-timestamps
1703 gnus-demon-add-disconnection gnus-demon-add-handler 2762 gnus-demon-add-disconnection gnus-demon-add-handler
1704 gnus-demon-remove-handler) 2763 gnus-demon-remove-handler)
1705 ("gnus-demon" :interactive t 2764 ("gnus-demon" :interactive t
1706 gnus-demon-init gnus-demon-cancel) 2765 gnus-demon-init gnus-demon-cancel)
2766 ("gnus-fun" gnus-convert-gray-x-face-to-xpm gnus-display-x-face-in-from
2767 gnus-convert-image-to-gray-x-face gnus-convert-face-to-png
2768 gnus-face-from-file)
1707 ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree 2769 ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree
1708 gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer) 2770 gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer)
1709 ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close 2771 ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close
1710 gnus-nocem-unwanted-article-p) 2772 gnus-nocem-unwanted-article-p)
1711 ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info 2773 ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info
1760 gnus-uu-mark-over gnus-uu-post-news) 2822 gnus-uu-mark-over gnus-uu-post-news)
1761 ("gnus-uu" gnus-uu-delete-work-dir gnus-uu-unmark-thread) 2823 ("gnus-uu" gnus-uu-delete-work-dir gnus-uu-unmark-thread)
1762 ("gnus-msg" (gnus-summary-send-map keymap) 2824 ("gnus-msg" (gnus-summary-send-map keymap)
1763 gnus-article-mail gnus-copy-article-buffer gnus-extended-version) 2825 gnus-article-mail gnus-copy-article-buffer gnus-extended-version)
1764 ("gnus-msg" :interactive t 2826 ("gnus-msg" :interactive t
1765 gnus-group-post-news gnus-group-mail gnus-summary-post-news 2827 gnus-group-post-news gnus-group-mail gnus-group-news
2828 gnus-summary-post-news gnus-summary-news-other-window
1766 gnus-summary-followup gnus-summary-followup-with-original 2829 gnus-summary-followup gnus-summary-followup-with-original
1767 gnus-summary-cancel-article gnus-summary-supersede-article 2830 gnus-summary-cancel-article gnus-summary-supersede-article
1768 gnus-post-news gnus-summary-reply gnus-summary-reply-with-original 2831 gnus-post-news gnus-summary-reply gnus-summary-reply-with-original
1769 gnus-summary-mail-forward gnus-summary-mail-other-window 2832 gnus-summary-mail-forward gnus-summary-mail-other-window
1770 gnus-summary-resend-message gnus-summary-resend-bounced-mail 2833 gnus-summary-resend-message gnus-summary-resend-bounced-mail
1771 gnus-summary-wide-reply gnus-summary-followup-to-mail 2834 gnus-summary-wide-reply gnus-summary-followup-to-mail
1772 gnus-summary-followup-to-mail-with-original gnus-bug 2835 gnus-summary-followup-to-mail-with-original gnus-bug
1773 gnus-summary-wide-reply-with-original 2836 gnus-summary-wide-reply-with-original
1774 gnus-summary-post-forward gnus-summary-wide-reply-with-original 2837 gnus-summary-post-forward gnus-summary-wide-reply-with-original
1775 gnus-summary-post-forward) 2838 gnus-summary-post-forward)
1776 ("gnus-picon" :interactive t gnus-article-display-picons 2839 ("gnus-picon" :interactive t gnus-treat-from-picon)
1777 gnus-group-display-picons gnus-picons-article-display-x-face
1778 gnus-picons-display-x-face)
1779 ("gnus-picon" gnus-picons-buffer-name)
1780 ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p 2840 ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p
1781 gnus-grouplens-mode) 2841 gnus-grouplens-mode)
1782 ("smiley" :interactive t gnus-smiley-display) 2842 ("smiley" :interactive t smiley-region)
1783 ("gnus-win" gnus-configure-windows gnus-add-configuration) 2843 ("gnus-win" gnus-configure-windows gnus-add-configuration)
1784 ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group 2844 ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group
1785 gnus-list-of-unread-articles gnus-list-of-read-articles 2845 gnus-list-of-unread-articles gnus-list-of-read-articles
1786 gnus-offer-save-summaries gnus-make-thread-indent-array 2846 gnus-offer-save-summaries gnus-make-thread-indent-array
1787 gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject 2847 gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject
1807 gnus-article-remove-cr gnus-article-remove-trailing-blank-lines 2867 gnus-article-remove-cr gnus-article-remove-trailing-blank-lines
1808 gnus-article-display-x-face gnus-article-de-quoted-unreadable 2868 gnus-article-display-x-face gnus-article-de-quoted-unreadable
1809 gnus-article-de-base64-unreadable 2869 gnus-article-de-base64-unreadable
1810 gnus-article-decode-HZ 2870 gnus-article-decode-HZ
1811 gnus-article-wash-html 2871 gnus-article-wash-html
1812 gnus-article-hide-pgp 2872 gnus-article-unsplit-urls
1813 gnus-article-hide-pem gnus-article-hide-signature 2873 gnus-article-hide-pem gnus-article-hide-signature
1814 gnus-article-strip-leading-blank-lines gnus-article-date-local 2874 gnus-article-strip-leading-blank-lines gnus-article-date-local
1815 gnus-article-date-original gnus-article-date-lapsed 2875 gnus-article-date-original gnus-article-date-lapsed
1816 gnus-article-show-all-headers 2876 ;; gnus-article-show-all-headers
1817 gnus-article-edit-mode gnus-article-edit-article 2877 gnus-article-edit-mode gnus-article-edit-article
1818 gnus-article-edit-done gnus-article-decode-encoded-words 2878 gnus-article-edit-done gnus-article-decode-encoded-words
1819 gnus-start-date-timer gnus-stop-date-timer 2879 gnus-start-date-timer gnus-stop-date-timer
1820 gnus-mime-view-all-parts) 2880 gnus-mime-view-all-parts)
1821 ("gnus-int" gnus-request-type) 2881 ("gnus-int" gnus-request-type)
1831 ("gnus-undo" gnus-undo-mode gnus-undo-register) 2891 ("gnus-undo" gnus-undo-mode gnus-undo-register)
1832 ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next 2892 ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next
1833 gnus-async-prefetch-article gnus-async-prefetch-remove-group 2893 gnus-async-prefetch-article gnus-async-prefetch-remove-group
1834 gnus-async-halt-prefetch) 2894 gnus-async-halt-prefetch)
1835 ("gnus-agent" gnus-open-agent gnus-agent-get-function 2895 ("gnus-agent" gnus-open-agent gnus-agent-get-function
1836 gnus-agent-save-groups gnus-agent-save-active gnus-agent-method-p 2896 gnus-agent-save-active gnus-agent-method-p
1837 gnus-agent-get-undownloaded-list gnus-agent-fetch-session 2897 gnus-agent-get-undownloaded-list gnus-agent-fetch-session
1838 gnus-summary-set-agent-mark gnus-agent-save-group-info) 2898 gnus-summary-set-agent-mark gnus-agent-save-group-info
2899 gnus-agent-request-article gnus-agent-retrieve-headers)
1839 ("gnus-agent" :interactive t 2900 ("gnus-agent" :interactive t
1840 gnus-unplugged gnus-agentize gnus-agent-batch) 2901 gnus-unplugged gnus-agentize gnus-agent-batch)
1841 ("gnus-vm" :interactive t gnus-summary-save-in-vm 2902 ("gnus-vm" :interactive t gnus-summary-save-in-vm
1842 gnus-summary-save-article-vm) 2903 gnus-summary-save-article-vm)
1843 ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-drafts) 2904 ("compface" uncompface)
2905 ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-queue)
1844 ("gnus-mlspl" gnus-group-split gnus-group-split-fancy) 2906 ("gnus-mlspl" gnus-group-split gnus-group-split-fancy)
1845 ("gnus-mlspl" :interactive t gnus-group-split-setup 2907 ("gnus-mlspl" :interactive t gnus-group-split-setup
1846 gnus-group-split-update)))) 2908 gnus-group-split-update)
2909 ("gnus-delay" gnus-delay-initialize))))
1847 2910
1848 ;;; gnus-sum.el thingies 2911 ;;; gnus-sum.el thingies
1849 2912
1850 2913
1851 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-20,20n%]%) %s\n" 2914 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n"
1852 "*The format specification of the lines in the summary buffer. 2915 "*The format specification of the lines in the summary buffer.
1853 2916
1854 It works along the same lines as a normal formatting string, 2917 It works along the same lines as a normal formatting string,
1855 with some simple extensions. 2918 with some simple extensions.
1856 2919
1863 %F Contents of the From: header (string) 2926 %F Contents of the From: header (string)
1864 %f Contents of the From: or To: headers (string) 2927 %f Contents of the From: or To: headers (string)
1865 %x Contents of the Xref: header (string) 2928 %x Contents of the Xref: header (string)
1866 %D Date of the article (string) 2929 %D Date of the article (string)
1867 %d Date of the article (string) in DD-MMM format 2930 %d Date of the article (string) in DD-MMM format
2931 %o Date of the article (string) in YYYYMMDD`T'HHMMSS format
1868 %M Message-id of the article (string) 2932 %M Message-id of the article (string)
1869 %r References of the article (string) 2933 %r References of the article (string)
1870 %c Number of characters in the article (integer) 2934 %c Number of characters in the article (integer)
2935 %k Pretty-printed version of the above (string)
2936 For example, \"1.2k\" or \"0.4M\".
1871 %L Number of lines in the article (integer) 2937 %L Number of lines in the article (integer)
1872 %I Indentation based on thread level (a string of spaces) 2938 %I Indentation based on thread level (a string of spaces)
2939 %B A complex trn-style thread tree (string)
2940 The variables `gnus-sum-thread-*' can be used for customization.
1873 %T A string with two possible values: 80 spaces if the article 2941 %T A string with two possible values: 80 spaces if the article
1874 is on thread level two or larger and 0 spaces on level one 2942 is on thread level two or larger and 0 spaces on level one
1875 %R \"A\" if this article has been replied to, \" \" otherwise (character) 2943 %R \"A\" if this article has been replied to, \" \" otherwise (character)
1876 %U Status of this article (character, \"R\", \"K\", \"-\" or \" \") 2944 %U Status of this article (character, \"R\", \"K\", \"-\" or \" \")
1877 %[ Opening bracket (character, \"[\" or \"<\") 2945 %[ Opening bracket (character, \"[\" or \"<\")
1884 %e Whether the thread is empty or not (character). 2952 %e Whether the thread is empty or not (character).
1885 %l GroupLens score (string). 2953 %l GroupLens score (string).
1886 %V Total thread score (number). 2954 %V Total thread score (number).
1887 %P The line number (number). 2955 %P The line number (number).
1888 %O Download mark (character). 2956 %O Download mark (character).
2957 %* If present, indicates desired cursor position
2958 (instead of after first colon).
1889 %u User defined specifier. The next character in the format string should 2959 %u User defined specifier. The next character in the format string should
1890 be a letter. Gnus will call the function gnus-user-format-function-X, 2960 be a letter. Gnus will call the function gnus-user-format-function-X,
1891 where X is the letter following %u. The function will be passed the 2961 where X is the letter following %u. The function will be passed the
1892 current header as argument. The function should return a string, which 2962 current header as argument. The function should return a string, which
1893 will be inserted into the summary just like information from any other 2963 will be inserted into the summary just like information from any other
1894 summary specifier. 2964 summary specifier.
1895 2965
1896 Text between %( and %) will be highlighted with `gnus-mouse-face'
1897 when the mouse point is placed inside the area. There can only be one
1898 such area.
1899
1900 The %U (status), %R (replied) and %z (zcore) specs have to be handled 2966 The %U (status), %R (replied) and %z (zcore) specs have to be handled
1901 with care. For reasons of efficiency, Gnus will compute what column 2967 with care. For reasons of efficiency, Gnus will compute what column
1902 these characters will end up in, and \"hard-code\" that. This means that 2968 these characters will end up in, and \"hard-code\" that. This means that
1903 it is invalid to have these specs after a variable-length spec. Well, 2969 it is invalid to have these specs after a variable-length spec. Well,
1904 you might not be arrested, but your summary buffer will look strange, 2970 you might not be arrested, but your summary buffer will look strange,
1905 which is bad enough. 2971 which is bad enough.
1906 2972
1907 The smart choice is to have these specs as for to the left as 2973 The smart choice is to have these specs as far to the left as
1908 possible. 2974 possible.
1909 2975
1910 This restriction may disappear in later versions of Gnus." 2976 This restriction may disappear in later versions of Gnus.
2977
2978 General format specifiers can also be used.
2979 See Info node `(gnus)Formatting Variables'."
2980 :link '(custom-manual "(gnus)Formatting Variables")
1911 :type 'string 2981 :type 'string
1912 :group 'gnus-summary-format) 2982 :group 'gnus-summary-format)
1913 2983
1914 ;;; 2984 ;;;
1915 ;;; Skeleton keymaps 2985 ;;; Skeleton keymaps
1948 (mail-header-from header)) 3018 (mail-header-from header))
1949 3019
1950 (defmacro gnus-gethash (string hashtable) 3020 (defmacro gnus-gethash (string hashtable)
1951 "Get hash value of STRING in HASHTABLE." 3021 "Get hash value of STRING in HASHTABLE."
1952 `(symbol-value (intern-soft ,string ,hashtable))) 3022 `(symbol-value (intern-soft ,string ,hashtable)))
3023
3024 (defmacro gnus-gethash-safe (string hashtable)
3025 "Get hash value of STRING in HASHTABLE.
3026 Return nil if not defined."
3027 `(let ((sym (intern-soft ,string ,hashtable)))
3028 (and (boundp sym) (symbol-value sym))))
1953 3029
1954 (defmacro gnus-sethash (string value hashtable) 3030 (defmacro gnus-sethash (string value hashtable)
1955 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE." 3031 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE."
1956 `(set (intern ,string ,hashtable) ,value)) 3032 `(set (intern ,string ,hashtable) ,value))
1957 (put 'gnus-sethash 'edebug-form-spec '(form form form)) 3033 (put 'gnus-sethash 'edebug-form-spec '(form form form))
2034 (setcar rank (cons (car rank) ,score))))) 3110 (setcar rank (cons (car rank) ,score)))))
2035 3111
2036 (defmacro gnus-get-info (group) 3112 (defmacro gnus-get-info (group)
2037 `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb))) 3113 `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb)))
2038 3114
2039 ;; Byte-compiler warning.
2040 (defvar gnus-visual)
2041 ;; Find out whether the gnus-visual TYPE is wanted.
2042 (defun gnus-visual-p (&optional type class)
2043 (and gnus-visual ; Has to be non-nil, at least.
2044 (if (not type) ; We don't care about type.
2045 gnus-visual
2046 (if (listp gnus-visual) ; It's a list, so we check it.
2047 (or (memq type gnus-visual)
2048 (memq class gnus-visual))
2049 t))))
2050
2051 ;;; Load the compatibility functions. 3115 ;;; Load the compatibility functions.
2052 3116
2053 (require 'gnus-ems) 3117 (require 'gnus-ems)
2054 3118
2055 3119
2074 3138
2075 ;;; 3139 ;;;
2076 ;;; Gnus Utility Functions 3140 ;;; Gnus Utility Functions
2077 ;;; 3141 ;;;
2078 3142
3143 (defun gnus-find-subscribed-addresses ()
3144 "Return a regexp matching the addresses of all subscribed mail groups.
3145 It consists of the `to-address' or `to-list' parameter of all groups
3146 with a `subscribed' parameter."
3147 (let (group address addresses)
3148 (dolist (entry (cdr gnus-newsrc-alist))
3149 (setq group (car entry))
3150 (when (gnus-parameter-subscribed group)
3151 (setq address (mail-strip-quoted-names
3152 (or (gnus-group-fast-parameter group 'to-address)
3153 (gnus-group-fast-parameter group 'to-list))))
3154 (when address
3155 (add-to-list 'addresses address))))
3156 (when addresses
3157 (list (mapconcat 'regexp-quote addresses "\\|")))))
2079 3158
2080 (defmacro gnus-string-or (&rest strings) 3159 (defmacro gnus-string-or (&rest strings)
2081 "Return the first element of STRINGS that is a non-blank string. 3160 "Return the first element of STRINGS that is a non-blank string.
2082 STRINGS will be evaluated in normal `or' order." 3161 STRINGS will be evaluated in normal `or' order."
2083 `(gnus-string-or-1 ',strings)) 3162 `(gnus-string-or-1 ',strings))
2097 (interactive "P") 3176 (interactive "P")
2098 (if arg 3177 (if arg
2099 (insert (message gnus-version)) 3178 (insert (message gnus-version))
2100 (message gnus-version))) 3179 (message gnus-version)))
2101 3180
2102 (defun gnus-continuum-version (version) 3181 (defun gnus-continuum-version (&optional version)
2103 "Return VERSION as a floating point number." 3182 "Return VERSION as a floating point number."
3183 (interactive)
3184 (unless version
3185 (setq version gnus-version))
2104 (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version) 3186 (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version)
2105 (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version)) 3187 (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version))
2106 (let ((alpha (and (match-beginning 1) (match-string 1 version))) 3188 (let ((alpha (and (match-beginning 1) (match-string 1 version)))
2107 (number (match-string 2 version)) 3189 (number (match-string 2 version))
2108 major minor least) 3190 major minor least)
2114 least (if (match-beginning 3) 3196 least (if (match-beginning 3)
2115 (string-to-number (match-string 3 number)) 3197 (string-to-number (match-string 3 number))
2116 0)) 3198 0))
2117 (string-to-number 3199 (string-to-number
2118 (if (zerop major) 3200 (if (zerop major)
2119 (format "%s00%02d%02d" 3201 (format "%s00%02d%02d"
2120 (if (member alpha '("(ding)" "d")) 3202 (if (member alpha '("(ding)" "d"))
2121 "4.99" 3203 "4.99"
2122 (+ 5 (* 0.02 3204 (+ 5 (* 0.02
2123 (abs 3205 (abs
2124 (- (mm-char-int (aref (downcase alpha) 0)) 3206 (- (mm-char-int (aref (downcase alpha) 0))
2125 (mm-char-int ?t)))) 3207 (mm-char-int ?t))))
2126 -0.01)) 3208 -0.01))
2127 minor least) 3209 minor least)
2128 (format "%d.%02d%02d" major minor least)))))) 3210 (format "%d.%02d%02d" major minor least))))))
2129 3211
2130 (defun gnus-info-find-node () 3212 (defun gnus-info-find-node (&optional nodename)
2131 "Find Info documentation of Gnus." 3213 "Find Info documentation of Gnus."
2132 (interactive) 3214 (interactive)
2133 ;; Enlarge info window if needed. 3215 ;; Enlarge info window if needed.
2134 (let (gnus-info-buffer) 3216 (let (gnus-info-buffer)
2135 (Info-goto-node (cadr (assq major-mode gnus-info-nodes))) 3217 (Info-goto-node (or nodename (cadr (assq major-mode gnus-info-nodes))))
2136 (setq gnus-info-buffer (current-buffer)) 3218 (setq gnus-info-buffer (current-buffer))
2137 (gnus-configure-windows 'info))) 3219 (gnus-configure-windows 'info)))
2138 3220
2139 ;;; 3221 ;;;
2140 ;;; gnus-interactive 3222 ;;; gnus-interactive
2272 If GROUP is nil, `gnus-newsgroup-name' will be checked instead. Note 3354 If GROUP is nil, `gnus-newsgroup-name' will be checked instead. Note
2273 that that variable is buffer-local to the summary buffers." 3355 that that variable is buffer-local to the summary buffers."
2274 (let ((group (or group gnus-newsgroup-name))) 3356 (let ((group (or group gnus-newsgroup-name)))
2275 (not (gnus-check-backend-function 'request-replace-article group)))) 3357 (not (gnus-check-backend-function 'request-replace-article group))))
2276 3358
2277 (defun gnus-group-total-expirable-p (group)
2278 "Check whether GROUP is total-expirable or not."
2279 (let ((params (gnus-group-find-parameter group))
2280 val)
2281 (cond
2282 ((memq 'total-expire params)
2283 t)
2284 ((setq val (assq 'total-expire params)) ; (auto-expire . t)
2285 (cdr val))
2286 (gnus-total-expirable-newsgroups ; Check var.
2287 (string-match gnus-total-expirable-newsgroups group)))))
2288
2289 (defun gnus-group-auto-expirable-p (group)
2290 "Check whether GROUP is auto-expirable or not."
2291 (let ((params (gnus-group-find-parameter group))
2292 val)
2293 (cond
2294 ((memq 'auto-expire params)
2295 t)
2296 ((setq val (assq 'auto-expire params)) ; (auto-expire . t)
2297 (cdr val))
2298 (gnus-auto-expirable-newsgroups ; Check var.
2299 (string-match gnus-auto-expirable-newsgroups group)))))
2300
2301 (defun gnus-virtual-group-p (group) 3359 (defun gnus-virtual-group-p (group)
2302 "Say whether GROUP is virtual or not." 3360 "Say whether GROUP is virtual or not."
2303 (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group))) 3361 (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group)))
2304 gnus-valid-select-methods))) 3362 gnus-valid-select-methods)))
2305 3363
2306 (defun gnus-news-group-p (group &optional article) 3364 (defun gnus-news-group-p (group &optional article)
2307 "Return non-nil if GROUP (and ARTICLE) come from a news server." 3365 "Return non-nil if GROUP (and ARTICLE) come from a news server."
2308 (or (gnus-member-of-valid 'post group) ; Ordinary news group. 3366 (cond ((gnus-member-of-valid 'post group) ;Ordinary news group
2309 (and (gnus-member-of-valid 'post-mail group) ; Combined group. 3367 t) ;is news of course.
2310 (if (or (null article) 3368 ((not (gnus-member-of-valid 'post-mail group)) ;Non-combined.
2311 (not (< article 0))) 3369 nil) ;must be mail then.
2312 (eq (gnus-request-type group article) 'news) 3370 ((vectorp article) ;Has header info.
2313 (if (not (vectorp article)) 3371 (eq (gnus-request-type group (mail-header-id article)) 'news))
2314 nil 3372 ((null article) ;Hasn't header info
2315 ;; It's a real article. 3373 (eq (gnus-request-type group) 'news)) ;(unknown ==> mail)
2316 (eq (gnus-request-type group (mail-header-id article)) 3374 ((< article 0) ;Virtual message
2317 'news)))))) 3375 nil) ;we don't know, guess mail.
3376 (t ;Has positive number
3377 (eq (gnus-request-type group article) 'news)))) ;use it.
2318 3378
2319 ;; Returns a list of writable groups. 3379 ;; Returns a list of writable groups.
2320 (defun gnus-writable-groups () 3380 (defun gnus-writable-groups ()
2321 (let ((alist gnus-newsrc-alist) 3381 (let ((alist gnus-newsrc-alist)
2322 groups group) 3382 groups group)
2373 (memq 'physical-address (assq (car method) 3433 (memq 'physical-address (assq (car method)
2374 gnus-valid-select-methods))) 3434 gnus-valid-select-methods)))
2375 (append method (list (list (intern (concat method-name "-address")) 3435 (append method (list (list (intern (concat method-name "-address"))
2376 (nth 1 method)))) 3436 (nth 1 method))))
2377 method))) 3437 method)))
3438
3439 (defsubst gnus-method-to-server (method)
3440 (catch 'server-name
3441 (setq method (or method gnus-select-method))
3442
3443 ;; Perhaps it is already in the cache.
3444 (mapc (lambda (name-method)
3445 (if (equal (cdr name-method) method)
3446 (throw 'server-name (car name-method))))
3447 gnus-server-method-cache)
3448
3449 (mapc
3450 (lambda (server-alist)
3451 (mapc (lambda (name-method)
3452 (when (gnus-methods-equal-p (cdr name-method) method)
3453 (unless (member name-method gnus-server-method-cache)
3454 (push name-method gnus-server-method-cache))
3455 (throw 'server-name (car name-method))))
3456 server-alist))
3457 (let ((alists (list gnus-server-alist
3458 gnus-predefined-server-alist)))
3459 (if gnus-select-method
3460 (push (list (cons "native" gnus-select-method)) alists))
3461 alists))
3462
3463 (let* ((name (if (member (cadr method) '(nil ""))
3464 (format "%s" (car method))
3465 (format "%s:%s" (car method) (cadr method))))
3466 (name-method (cons name method)))
3467 (unless (member name-method gnus-server-method-cache)
3468 (push name-method gnus-server-method-cache))
3469 name)))
3470
3471 (defsubst gnus-server-to-method (server)
3472 "Map virtual server names to select methods."
3473 (or (and server (listp server) server)
3474 (cdr (assoc server gnus-server-method-cache))
3475 (let ((result
3476 (or
3477 ;; Perhaps this is the native server?
3478 (and (equal server "native") gnus-select-method)
3479 ;; It should be in the server alist.
3480 (cdr (assoc server gnus-server-alist))
3481 ;; It could be in the predefined server alist.
3482 (cdr (assoc server gnus-predefined-server-alist))
3483 ;; If not, we look through all the opened server
3484 ;; to see whether we can find it there.
3485 (let ((opened gnus-opened-servers))
3486 (while (and opened
3487 (not (equal server (format "%s:%s" (caaar opened)
3488 (cadaar opened)))))
3489 (pop opened))
3490 (caar opened))
3491 ;; It could be a named method, search all servers
3492 (let ((servers gnus-secondary-select-methods))
3493 (while (and servers
3494 (not (equal server (format "%s:%s" (caar servers)
3495 (cadar servers)))))
3496 (pop servers))
3497 (car servers))
3498 ;; This could be some sort of foreign server that I
3499 ;; simply haven't opened (yet). Do a brute-force scan
3500 ;; of the entire gnus-newsrc-alist for the server name
3501 ;; of every method. As a side-effect, loads the
3502 ;; gnus-server-method-cache so this only happens once,
3503 ;; if at all.
3504 (let (match)
3505 (mapcar
3506 (lambda (info)
3507 (let ((info-method (gnus-info-method info)))
3508 (unless (stringp info-method)
3509 (let ((info-server (gnus-method-to-server info-method)))
3510 (when (equal server info-server)
3511 (setq match info-method))))))
3512 (cdr gnus-newsrc-alist))
3513 match))))
3514 (when result
3515 (push (cons server result) gnus-server-method-cache))
3516 result)))
2378 3517
2379 (defsubst gnus-server-get-method (group method) 3518 (defsubst gnus-server-get-method (group method)
2380 ;; Input either a server name, and extended server name, or a 3519 ;; Input either a server name, and extended server name, or a
2381 ;; select method, and return a select method. 3520 ;; select method, and return a select method.
2382 (cond ((stringp method) 3521 (cond ((stringp method)
2391 (equal (cadr method) "")) 3530 (equal (cadr method) ""))
2392 method) 3531 method)
2393 (t 3532 (t
2394 (gnus-server-add-address method)))) 3533 (gnus-server-add-address method))))
2395 3534
2396 (defun gnus-server-to-method (server)
2397 "Map virtual server names to select methods."
2398 (or
2399 ;; Is this a method, perhaps?
2400 (and server (listp server) server)
2401 ;; Perhaps this is the native server?
2402 (and (equal server "native") gnus-select-method)
2403 ;; It should be in the server alist.
2404 (cdr (assoc server gnus-server-alist))
2405 ;; It could be in the predefined server alist.
2406 (cdr (assoc server gnus-predefined-server-alist))
2407 ;; If not, we look through all the opened server
2408 ;; to see whether we can find it there.
2409 (let ((opened gnus-opened-servers))
2410 (while (and opened
2411 (not (equal server (format "%s:%s" (caaar opened)
2412 (cadaar opened)))))
2413 (pop opened))
2414 (caar opened))
2415 ;; It could be a named method, search all servers
2416 (let ((servers gnus-secondary-select-methods))
2417 (while (and servers
2418 (not (equal server (format "%s:%s" (caar servers)
2419 (cadar servers)))))
2420 (pop servers))
2421 (car servers))))
2422
2423 (defmacro gnus-method-equal (ss1 ss2) 3535 (defmacro gnus-method-equal (ss1 ss2)
2424 "Say whether two servers are equal." 3536 "Say whether two servers are equal."
2425 `(let ((s1 ,ss1) 3537 `(let ((s1 ,ss1)
2426 (s2 ,ss2)) 3538 (s2 ,ss2))
2427 (or (equal s1 s2) 3539 (or (equal s1 s2)
2472 (let ((active (cadr (assq 'nnfolder-active-file 3584 (let ((active (cadr (assq 'nnfolder-active-file
2473 gnus-message-archive-method)))) 3585 gnus-message-archive-method))))
2474 (and active 3586 (and active
2475 (file-exists-p active)))))) 3587 (file-exists-p active))))))
2476 3588
2477 (defun gnus-group-prefixed-name (group method) 3589 (defsubst gnus-method-to-server-name (method)
2478 "Return the whole name from GROUP and METHOD." 3590 (concat
2479 (and (stringp method) (setq method (gnus-server-to-method method))) 3591 (format "%s" (car method))
3592 (when (and
3593 (or (assoc (format "%s" (car method))
3594 (gnus-methods-using 'address))
3595 (gnus-server-equal method gnus-message-archive-method))
3596 (nth 1 method)
3597 (not (string= (nth 1 method) "")))
3598 (concat "+" (nth 1 method)))))
3599
3600 (defsubst gnus-method-to-full-server-name (method)
3601 (format "%s+%s" (car method) (nth 1 method)))
3602
3603 (defun gnus-group-prefixed-name (group method &optional full)
3604 "Return the whole name from GROUP and METHOD.
3605 Call with full set to get the fully qualified group name (even if the
3606 server is native)."
3607 (when (stringp method)
3608 (setq method (gnus-server-to-method method)))
2480 (if (or (not method) 3609 (if (or (not method)
2481 (gnus-server-equal method "native")) 3610 (and (not full) (gnus-server-equal method "native"))
3611 ;;;!!! This might not be right. We'll see...
3612 ;(string-match ":" group)
3613 )
2482 group 3614 group
2483 (concat (format "%s" (car method)) 3615 (concat (gnus-method-to-server-name method) ":" group)))
2484 (when (and 3616
2485 (or (assoc (format "%s" (car method)) 3617 (defun gnus-group-guess-prefixed-name (group)
2486 (gnus-methods-using 'address)) 3618 "Guess the whole name from GROUP and METHOD."
2487 (gnus-server-equal method gnus-message-archive-method)) 3619 (gnus-group-prefixed-name group (gnus-find-method-for-group
2488 (nth 1 method) 3620 group)))
2489 (not (string= (nth 1 method) ""))) 3621
2490 (concat "+" (nth 1 method))) 3622 (defun gnus-group-full-name (group method)
2491 ":" group))) 3623 "Return the full name from GROUP and METHOD, even if the method is native."
3624 (gnus-group-prefixed-name group method t))
3625
3626 (defun gnus-group-guess-full-name (group)
3627 "Guess the full name from GROUP, even if the method is native."
3628 (if (gnus-group-prefixed-p group)
3629 group
3630 (gnus-group-full-name group (gnus-find-method-for-group group))))
3631
3632 (defun gnus-group-guess-full-name-from-command-method (group)
3633 "Guess the full name from GROUP, even if the method is native."
3634 (if (gnus-group-prefixed-p group)
3635 group
3636 (gnus-group-full-name group gnus-command-method)))
2492 3637
2493 (defun gnus-group-real-prefix (group) 3638 (defun gnus-group-real-prefix (group)
2494 "Return the prefix of the current group name." 3639 "Return the prefix of the current group name."
2495 (if (string-match "^[^:]+:" group) 3640 (if (stringp group)
2496 (substring group 0 (match-end 0)) 3641 (if (string-match "^[^:]+:" group)
2497 "")) 3642 (substring group 0 (match-end 0))
3643 "")
3644 nil))
3645
3646 (defun gnus-group-short-name (group)
3647 "Return the short group name."
3648 (let ((prefix (gnus-group-real-prefix group)))
3649 (if (< 0 (length prefix))
3650 (substring group (length prefix) nil)
3651 group)))
3652
3653 (defun gnus-group-prefixed-p (group)
3654 "Return the prefix of the current group name."
3655 (< 0 (length (gnus-group-real-prefix group))))
3656
3657 (defun gnus-summary-buffer-name (group)
3658 "Return the summary buffer name of GROUP."
3659 (concat "*Summary " (gnus-group-decoded-name group) "*"))
2498 3660
2499 (defun gnus-group-method (group) 3661 (defun gnus-group-method (group)
2500 "Return the server or method used for selecting GROUP. 3662 "Return the server or method used for selecting GROUP.
2501 You should probably use `gnus-find-method-for-group' instead." 3663 You should probably use `gnus-find-method-for-group' instead."
2502 (let ((prefix (gnus-group-real-prefix group))) 3664 (let ((prefix (gnus-group-real-prefix group)))
2526 (gnus-method-equal method gnus-select-method)) 3688 (gnus-method-equal method gnus-select-method))
2527 3689
2528 (defsubst gnus-secondary-method-p (method) 3690 (defsubst gnus-secondary-method-p (method)
2529 "Return whether METHOD is a secondary select method." 3691 "Return whether METHOD is a secondary select method."
2530 (let ((methods gnus-secondary-select-methods) 3692 (let ((methods gnus-secondary-select-methods)
2531 (gmethod (gnus-server-get-method nil method))) 3693 (gmethod (inline (gnus-server-get-method nil method))))
2532 (while (and methods 3694 (while (and methods
2533 (not (gnus-method-equal 3695 (not (gnus-method-equal
2534 (gnus-server-get-method nil (car methods)) 3696 (inline (gnus-server-get-method nil (car methods)))
2535 gmethod))) 3697 gmethod)))
2536 (setq methods (cdr methods))) 3698 (setq methods (cdr methods)))
2537 methods)) 3699 methods))
2538 3700
2539 (defun gnus-method-simplify (method) 3701 (defun gnus-method-simplify (method)
2567 3729
2568 (defun gnus-group-secondary-p (group) 3730 (defun gnus-group-secondary-p (group)
2569 "Say whether the group is secondary or not." 3731 "Say whether the group is secondary or not."
2570 (gnus-secondary-method-p (gnus-find-method-for-group group))) 3732 (gnus-secondary-method-p (gnus-find-method-for-group group)))
2571 3733
3734 (defun gnus-parameters-get-parameter (group)
3735 "Return the group parameters for GROUP from `gnus-parameters'."
3736 (let ((case-fold-search (if (eq gnus-parameters-case-fold-search 'default)
3737 case-fold-search
3738 gnus-parameters-case-fold-search))
3739 params-list)
3740 (dolist (elem gnus-parameters)
3741 (when (string-match (car elem) group)
3742 (setq params-list
3743 (nconc (gnus-expand-group-parameters
3744 (car elem) (cdr elem) group)
3745 params-list))))
3746 params-list))
3747
3748 (defun gnus-expand-group-parameter (match value group)
3749 "Use MATCH to expand VALUE in GROUP."
3750 (with-temp-buffer
3751 (insert group)
3752 (goto-char (point-min))
3753 (while (re-search-forward match nil t)
3754 (replace-match value))
3755 (buffer-string)))
3756
3757 (defun gnus-expand-group-parameters (match parameters group)
3758 "Go through PARAMETERS and expand them according to the match data."
3759 (let (new)
3760 (dolist (elem parameters)
3761 (if (and (stringp (cdr elem))
3762 (string-match "\\\\[0-9&]" (cdr elem)))
3763 (push (cons (car elem)
3764 (gnus-expand-group-parameter match (cdr elem) group))
3765 new)
3766 (push elem new)))
3767 new))
3768
3769 (defun gnus-group-fast-parameter (group symbol &optional allow-list)
3770 "For GROUP, return the value of SYMBOL.
3771
3772 You should call this in the `gnus-group-buffer' buffer.
3773 The function `gnus-group-find-parameter' will do that for you."
3774 ;; The speed trick: No cons'ing and quit early.
3775 (let* ((params (funcall gnus-group-get-parameter-function group))
3776 ;; Start easy, check the "real" group parameters.
3777 (simple-results
3778 (gnus-group-parameter-value params symbol allow-list t)))
3779 (if simple-results
3780 ;; Found results; return them.
3781 (car simple-results)
3782 ;; We didn't found it there, try `gnus-parameters'.
3783 (let ((result nil)
3784 (head nil)
3785 (tail gnus-parameters))
3786 ;; A good old-fashioned non-cl loop.
3787 (while tail
3788 (setq head (car tail)
3789 tail (cdr tail))
3790 ;; The car is regexp matching for matching the group name.
3791 (when (string-match (car head) group)
3792 ;; The cdr is the parameters.
3793 (setq result (gnus-group-parameter-value (cdr head)
3794 symbol allow-list))
3795 (when result
3796 ;; Expand if necessary.
3797 (if (and (stringp result) (string-match "\\\\[0-9&]" result))
3798 (setq result (gnus-expand-group-parameter (car head)
3799 result group)))
3800 ;; Exit the loop early.
3801 (setq tail nil))))
3802 ;; Done.
3803 result))))
3804
2572 (defun gnus-group-find-parameter (group &optional symbol allow-list) 3805 (defun gnus-group-find-parameter (group &optional symbol allow-list)
2573 "Return the group parameters for GROUP. 3806 "Return the group parameters for GROUP.
2574 If SYMBOL, return the value of that symbol in the group parameters." 3807 If SYMBOL, return the value of that symbol in the group parameters.
3808
3809 If you call this function inside a loop, consider using the faster
3810 `gnus-group-fast-parameter' instead."
2575 (save-excursion 3811 (save-excursion
2576 (set-buffer gnus-group-buffer) 3812 (set-buffer gnus-group-buffer)
2577 (let ((parameters (funcall gnus-group-get-parameter-function group))) 3813 (if symbol
2578 (if symbol 3814 (gnus-group-fast-parameter group symbol allow-list)
2579 (gnus-group-parameter-value parameters symbol allow-list) 3815 (nconc
2580 parameters)))) 3816 (copy-sequence
3817 (funcall gnus-group-get-parameter-function group))
3818 (gnus-parameters-get-parameter group)))))
2581 3819
2582 (defun gnus-group-get-parameter (group &optional symbol allow-list) 3820 (defun gnus-group-get-parameter (group &optional symbol allow-list)
2583 "Return the group parameters for GROUP. 3821 "Return the group parameters for GROUP.
2584 If SYMBOL, return the value of that symbol in the group parameters. 3822 If SYMBOL, return the value of that symbol in the group parameters.
3823 If ALLOW-LIST, also allow list as a result.
2585 Most functions should use `gnus-group-find-parameter', which 3824 Most functions should use `gnus-group-find-parameter', which
2586 also examines the topic parameters." 3825 also examines the topic parameters."
2587 (let ((params (gnus-info-params (gnus-get-info group)))) 3826 (let ((params (gnus-info-params (gnus-get-info group))))
2588 (if symbol 3827 (if symbol
2589 (gnus-group-parameter-value params symbol allow-list) 3828 (gnus-group-parameter-value params symbol allow-list)
2590 params))) 3829 params)))
2591 3830
2592 (defun gnus-group-parameter-value (params symbol &optional allow-list) 3831 (defun gnus-group-parameter-value (params symbol &optional
2593 "Return the value of SYMBOL in group PARAMS." 3832 allow-list present-p)
3833 "Return the value of SYMBOL in group PARAMS.
3834 If ALLOW-LIST, also allow list as a result."
2594 ;; We only wish to return group parameters (dotted lists) and 3835 ;; We only wish to return group parameters (dotted lists) and
2595 ;; not local variables, which may have the same names. 3836 ;; not local variables, which may have the same names.
2596 ;; But first we handle single elements... 3837 ;; But first we handle single elements...
2597 (or (car (memq symbol params)) 3838 (or (car (memq symbol params))
2598 ;; Handle alist. 3839 ;; Handle alist.
2601 (while (setq elem (pop params)) 3842 (while (setq elem (pop params))
2602 (when (and (consp elem) 3843 (when (and (consp elem)
2603 (eq (car elem) symbol) 3844 (eq (car elem) symbol)
2604 (or allow-list 3845 (or allow-list
2605 (atom (cdr elem)))) 3846 (atom (cdr elem))))
2606 (throw 'found (cdr elem)))))))) 3847 (throw 'found (if present-p (list (cdr elem))
3848 (cdr elem)))))))))
2607 3849
2608 (defun gnus-group-add-parameter (group param) 3850 (defun gnus-group-add-parameter (group param)
2609 "Add parameter PARAM to GROUP." 3851 "Add parameter PARAM to GROUP."
2610 (let ((info (gnus-get-info group))) 3852 (let ((info (gnus-get-info group)))
2611 (when info 3853 (when info
2660 (while (string-match "\\." group skip) 3902 (while (string-match "\\." group skip)
2661 (setq skip (match-end 0) 3903 (setq skip (match-end 0)
2662 depth (+ depth 1))) 3904 depth (+ depth 1)))
2663 depth)))) 3905 depth))))
2664 ;; Separate foreign select method from group name and collapse. 3906 ;; Separate foreign select method from group name and collapse.
2665 ;; If method contains a server, collapse to non-domain server name, 3907 ;; If method contains a server, collapse to non-domain server name,
2666 ;; otherwise collapse to select method. 3908 ;; otherwise collapse to select method.
2667 (let* ((colon (string-match ":" group)) 3909 (let* ((colon (string-match ":" group))
2668 (server (and colon (substring group 0 colon))) 3910 (server (and colon (substring group 0 colon)))
2669 (plus (and server (string-match "+" server)))) 3911 (plus (and server (string-match "+" server))))
2670 (when server 3912 (when server
2807 (list (intern (substring server 0 (match-beginning 0))) 4049 (list (intern (substring server 0 (match-beginning 0)))
2808 (substring server (match-end 0))) 4050 (substring server (match-end 0)))
2809 (list (intern server) ""))) 4051 (list (intern server) "")))
2810 gnus-select-method)) 4052 gnus-select-method))
2811 4053
4054 (defun gnus-server-string (server)
4055 "Return a readable string that describes SERVER."
4056 (let* ((server (gnus-server-to-method server))
4057 (address (nth 1 server)))
4058 (if (and address
4059 (not (zerop (length address))))
4060 (format "%s using %s" address (car server))
4061 (format "%s" (car server)))))
4062
2812 (defun gnus-find-method-for-group (group &optional info) 4063 (defun gnus-find-method-for-group (group &optional info)
2813 "Find the select method that GROUP uses." 4064 "Find the select method that GROUP uses."
2814 (or gnus-override-method 4065 (or gnus-override-method
2815 (and (not group) 4066 (and (not group)
2816 gnus-select-method) 4067 gnus-select-method)
2817 (and (not (gnus-group-entry group));; a new group 4068 (and (not (gnus-group-entry group)) ;; a new group
2818 (gnus-group-name-to-method group)) 4069 (gnus-group-name-to-method group))
2819 (let ((info (or info (gnus-get-info group))) 4070 (let ((info (or info (gnus-get-info group)))
2820 method) 4071 method)
2821 (if (or (not info) 4072 (if (or (not info)
2822 (not (setq method (gnus-info-method info))) 4073 (not (setq method (gnus-info-method info)))
2844 (when (memq feature (car valids)) 4095 (when (memq feature (car valids))
2845 (push (car valids) outs)) 4096 (push (car valids) outs))
2846 (setq valids (cdr valids))) 4097 (setq valids (cdr valids)))
2847 outs)) 4098 outs))
2848 4099
4100 (eval-and-compile
4101 (autoload 'message-y-or-n-p "message" nil nil 'macro))
4102
2849 (defun gnus-read-group (prompt &optional default) 4103 (defun gnus-read-group (prompt &optional default)
2850 "Prompt the user for a group name. 4104 "Prompt the user for a group name.
2851 Disallow invalid group names." 4105 Disallow invalid group names."
2852 (let ((prefix "") 4106 (let ((prefix "")
2853 group) 4107 group)
2855 (when (string-match 4109 (when (string-match
2856 gnus-invalid-group-regexp 4110 gnus-invalid-group-regexp
2857 (setq group (read-string (concat prefix prompt) 4111 (setq group (read-string (concat prefix prompt)
2858 (cons (or default "") 0) 4112 (cons (or default "") 0)
2859 'gnus-group-history))) 4113 'gnus-group-history)))
2860 (setq prefix (format "Invalid group name: \"%s\". " group) 4114 (let ((match (match-string 0 group)))
2861 group nil))) 4115 ;; Might be okay (e.g. for nnimap), so ask the user:
4116 (unless (and (not (string-match "^$\\|:" match))
4117 (message-y-or-n-p
4118 "Proceed and create group anyway? " t
4119 "The group name \"" group "\" contains a forbidden character: \"" match "\".
4120
4121 Usually, it's dangerous to create a group with this name, because it's not
4122 supported by all back ends and servers. On IMAP servers it should work,
4123 though. If you are really sure, you can proceed anyway and create the group.
4124
4125 You may customize the variable `gnus-invalid-group-regexp', which currently is
4126 set to \"" gnus-invalid-group-regexp
4127 "\", if you want to get rid of this query permanently."))
4128 (setq prefix (format "Invalid group name: \"%s\". " group)
4129 group nil)))))
2862 group)) 4130 group))
2863 4131
2864 (defun gnus-read-method (prompt) 4132 (defun gnus-read-method (prompt)
2865 "Prompt the user for a method. 4133 "Prompt the user for a method.
2866 Allow completion over sensible values." 4134 Allow completion over sensible values."
2867 (let* ((servers 4135 (let* ((open-servers
2868 (append gnus-valid-select-methods 4136 (mapcar (lambda (i) (cons (format "%s:%s" (caar i) (cadar i)) i))
2869 (mapcar (lambda (i) (list (format "%s:%s" (caar i) 4137 gnus-opened-servers))
2870 (cadar i)))) 4138 (valid-methods
2871 gnus-opened-servers) 4139 (let (methods)
4140 (dolist (method gnus-valid-select-methods)
4141 (if (or (memq 'prompt-address method)
4142 (not (assoc (format "%s:" (car method)) open-servers)))
4143 (push method methods)))
4144 methods))
4145 (servers
4146 (append valid-methods
4147 open-servers
2872 gnus-predefined-server-alist 4148 gnus-predefined-server-alist
2873 gnus-server-alist)) 4149 gnus-server-alist))
2874 (method 4150 (method
2875 (completing-read 4151 (completing-read
2876 prompt servers 4152 prompt servers
2881 ((assoc method gnus-valid-select-methods) 4157 ((assoc method gnus-valid-select-methods)
2882 (let ((address (if (memq 'prompt-address 4158 (let ((address (if (memq 'prompt-address
2883 (assoc method gnus-valid-select-methods)) 4159 (assoc method gnus-valid-select-methods))
2884 (read-string "Address: ") 4160 (read-string "Address: ")
2885 ""))) 4161 "")))
2886 (or (let ((opened gnus-opened-servers)) 4162 (or (cadr (assoc (format "%s:%s" method address) open-servers))
2887 (while (and opened
2888 (not (equal (format "%s:%s" method address)
2889 (format "%s:%s" (caaar opened)
2890 (cadaar opened)))))
2891 (pop opened))
2892 (caar opened))
2893 (list (intern method) address)))) 4163 (list (intern method) address))))
2894 ((assoc method servers) 4164 ((assoc method servers)
2895 method) 4165 method)
2896 (t 4166 (t
2897 (list (intern method) ""))))) 4167 (list (intern method) "")))))
2898 4168
4169 ;;; Agent functions
4170
4171 (defun gnus-agent-method-p (method)
4172 "Say whether METHOD is covered by the agent."
4173 (or (eq (car gnus-agent-method-p-cache) method)
4174 (setq gnus-agent-method-p-cache
4175 (cons method
4176 (member (if (stringp method)
4177 method
4178 (gnus-method-to-server method)) gnus-agent-covered-methods))))
4179 (cdr gnus-agent-method-p-cache))
4180
4181 (defun gnus-online (method)
4182 (not
4183 (if gnus-plugged
4184 (eq (cadr (assoc method gnus-opened-servers)) 'offline)
4185 (gnus-agent-method-p method))))
4186
2899 ;;; User-level commands. 4187 ;;; User-level commands.
2900 4188
2901 ;;;###autoload 4189 ;;;###autoload
2902 (defun gnus-slave-no-server (&optional arg) 4190 (defun gnus-slave-no-server (&optional arg)
2903 "Read network news as a slave, without connecting to local server." 4191 "Read network news as a slave, without connecting to the local server."
2904 (interactive "P") 4192 (interactive "P")
2905 (gnus-no-server arg t)) 4193 (gnus-no-server arg t))
2906 4194
2907 ;;;###autoload 4195 ;;;###autoload
2908 (defun gnus-no-server (&optional arg slave) 4196 (defun gnus-no-server (&optional arg slave)
2909 "Read network news. 4197 "Read network news.
2910 If ARG is a positive number, Gnus will use that as the 4198 If ARG is a positive number, Gnus will use that as the startup
2911 startup level. If ARG is nil, Gnus will be started at level 2. 4199 level. If ARG is nil, Gnus will be started at level 2. If ARG is
2912 If ARG is non-nil and not a positive number, Gnus will 4200 non-nil and not a positive number, Gnus will prompt the user for the
2913 prompt the user for the name of an NNTP server to use. 4201 name of an NNTP server to use.
2914 As opposed to `gnus', this command will not connect to the local server." 4202 As opposed to `gnus', this command will not connect to the local
4203 server."
2915 (interactive "P") 4204 (interactive "P")
2916 (gnus-no-server-1 arg slave)) 4205 (gnus-no-server-1 arg slave))
2917 4206
2918 ;;;###autoload 4207 ;;;###autoload
2919 (defun gnus-slave (&optional arg) 4208 (defun gnus-slave (&optional arg)
2920 "Read news as a slave." 4209 "Read news as a slave."
2921 (interactive "P") 4210 (interactive "P")
2922 (gnus arg nil 'slave)) 4211 (gnus arg nil 'slave))
2923 4212
2924 ;;;###autoload 4213 ;;;###autoload
2925 (defun gnus-other-frame (&optional arg) 4214 (defun gnus-other-frame (&optional arg display)
2926 "Pop up a frame to read news." 4215 "Pop up a frame to read news.
4216 This will call one of the Gnus commands which is specified by the user
4217 option `gnus-other-frame-function' (default `gnus') with the argument
4218 ARG if Gnus is not running, otherwise just pop up a Gnus frame. The
4219 optional second argument DISPLAY should be a standard display string
4220 such as \"unix:0\" to specify where to pop up a frame. If DISPLAY is
4221 omitted or the function `make-frame-on-display' is not available, the
4222 current display is used."
2927 (interactive "P") 4223 (interactive "P")
2928 (let ((window (get-buffer-window gnus-group-buffer))) 4224 (if (fboundp 'make-frame-on-display)
2929 (cond (window 4225 (unless display
2930 (select-frame (window-frame window))) 4226 (setq display (gnus-frame-or-window-display-name (selected-frame))))
2931 (t 4227 (setq display nil))
2932 (select-frame (make-frame))))) 4228 (let ((alive (gnus-alive-p)))
2933 (gnus arg)) 4229 (unless (and alive
4230 (catch 'found
4231 (walk-windows
4232 (lambda (window)
4233 (when (and (or (not display)
4234 (equal display
4235 (gnus-frame-or-window-display-name
4236 window)))
4237 (with-current-buffer (window-buffer window)
4238 (string-match "\\`gnus-"
4239 (symbol-name major-mode))))
4240 (gnus-select-frame-set-input-focus
4241 (setq gnus-other-frame-object (window-frame window)))
4242 (select-window window)
4243 (throw 'found t)))
4244 'ignore t)))
4245 (gnus-select-frame-set-input-focus
4246 (setq gnus-other-frame-object
4247 (if display
4248 (make-frame-on-display display gnus-other-frame-parameters)
4249 (make-frame gnus-other-frame-parameters))))
4250 (if alive
4251 (switch-to-buffer gnus-group-buffer)
4252 (funcall gnus-other-frame-function arg)
4253 (add-hook 'gnus-exit-gnus-hook
4254 '(lambda nil
4255 (when (and (frame-live-p gnus-other-frame-object)
4256 (cdr (frame-list)))
4257 (delete-frame gnus-other-frame-object))
4258 (setq gnus-other-frame-object nil)))))))
2934 4259
2935 ;;(setq thing ? ; this is a comment 4260 ;;(setq thing ? ; this is a comment
2936 ;; more 'yes) 4261 ;; more 'yes)
2937 4262
2938 ;;;###autoload 4263 ;;;###autoload
2939 (defun gnus (&optional arg dont-connect slave) 4264 (defun gnus (&optional arg dont-connect slave)
2940 "Read network news. 4265 "Read network news.
2941 If ARG is non-nil and a positive number, Gnus will use that as the 4266 If ARG is non-nil and a positive number, Gnus will use that as the
2942 startup level. If ARG is non-nil and not a positive number, Gnus will 4267 startup level. If ARG is non-nil and not a positive number, Gnus will
2943 prompt the user for the name of an NNTP server to use." 4268 prompt the user for the name of an NNTP server to use."
2944 (interactive "P") 4269 (interactive "P")
4270 (unless (byte-code-function-p (symbol-function 'gnus))
4271 (message "You should byte-compile Gnus")
4272 (sit-for 2))
2945 (gnus-1 arg dont-connect slave)) 4273 (gnus-1 arg dont-connect slave))
2946 4274
2947 ;; Allow redefinition of Gnus functions. 4275 ;; Allow redefinition of Gnus functions.
2948 4276
2949 (gnus-ems-redefine) 4277 (gnus-ems-redefine)
2950 4278
2951 (provide 'gnus) 4279 (provide 'gnus)
2952 4280
4281 ;;; arch-tag: acebeeab-f331-4f8f-a7ea-89c58c84f636
2953 ;;; gnus.el ends here 4282 ;;; gnus.el ends here