Synch to No Gnus 200406170516.
[elisp/gnus.git-] / lisp / gnus-group.el
1 ;;; gnus-group.el --- group mode commands for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile
30   (require 'cl)
31   (defvar tool-bar-map))
32
33 (require 'gnus)
34 (require 'gnus-start)
35 (require 'nnmail)
36 (require 'gnus-spec)
37 (require 'gnus-int)
38 (require 'gnus-range)
39 (require 'gnus-win)
40 (require 'gnus-undo)
41 (require 'time-date)
42 (require 'gnus-ems)
43
44 (eval-when-compile 
45   (require 'mm-url)
46   (let ((features (cons 'gnus-group features)))
47     (require 'gnus-sum))
48   (unless (boundp 'gnus-cache-active-hashtb)
49     (defvar gnus-cache-active-hashtb nil)))
50
51 (autoload 'gnus-agent-total-fetched-for "gnus-agent")
52 (autoload 'gnus-cache-total-fetched-for "gnus-cache")
53
54 (defcustom gnus-group-archive-directory
55   "/ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list/"
56   "*The address of the (ding) archives."
57   :group 'gnus-group-foreign
58   :type 'directory)
59
60 (defcustom gnus-group-recent-archive-directory
61   "/ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list-recent/"
62   "*The address of the most recent (ding) articles."
63   :group 'gnus-group-foreign
64   :type 'directory)
65
66 (defcustom gnus-no-groups-message "No Gnus is good news"
67   "*Message displayed by Gnus when no groups are available."
68   :group 'gnus-start
69   :type 'string)
70
71 (defcustom gnus-keep-same-level nil
72   "*Non-nil means that the next newsgroup after the current will be on the same level.
73 When you type, for instance, `n' after reading the last article in the
74 current newsgroup, you will go to the next newsgroup.  If this variable
75 is nil, the next newsgroup will be the next from the group
76 buffer.
77 If this variable is non-nil, Gnus will either put you in the
78 next newsgroup with the same level, or, if no such newsgroup is
79 available, the next newsgroup with the lowest possible level higher
80 than the current level.
81 If this variable is `best', Gnus will make the next newsgroup the one
82 with the best level."
83   :group 'gnus-group-levels
84   :type '(choice (const nil)
85                  (const best)
86                  (sexp :tag "other" t)))
87
88 (defcustom gnus-group-goto-unread t
89   "*If non-nil, movement commands will go to the next unread and subscribed group."
90   :link '(custom-manual "(gnus)Group Maneuvering")
91   :group 'gnus-group-various
92   :type 'boolean)
93
94 (defcustom gnus-goto-next-group-when-activating t
95   "*If non-nil, the \\<gnus-group-mode-map>\\[gnus-group-get-new-news-this-group] command will advance point to the next group."
96   :link '(custom-manual "(gnus)Scanning New Messages")
97   :group 'gnus-group-various
98   :type 'boolean)
99
100 (defcustom gnus-permanently-visible-groups nil
101   "*Regexp to match groups that should always be listed in the group buffer.
102 This means that they will still be listed even when there are no
103 unread articles in the groups.
104
105 If nil, no groups are permanently visible."
106   :group 'gnus-group-listing
107   :type '(choice regexp (const nil)))
108
109 (defcustom gnus-list-groups-with-ticked-articles t
110   "*If non-nil, list groups that have only ticked articles.
111 If nil, only list groups that have unread articles."
112   :group 'gnus-group-listing
113   :type 'boolean)
114
115 (defcustom gnus-group-default-list-level gnus-level-subscribed
116   "*Default listing level.
117 Ignored if `gnus-group-use-permanent-levels' is non-nil."
118   :group 'gnus-group-listing
119   :type 'integer)
120
121 (defcustom gnus-group-list-inactive-groups t
122   "*If non-nil, inactive groups will be listed."
123   :group 'gnus-group-listing
124   :group 'gnus-group-levels
125   :type 'boolean)
126
127 (defcustom gnus-group-sort-function 'gnus-group-sort-by-alphabet
128   "*Function used for sorting the group buffer.
129 This function will be called with group info entries as the arguments
130 for the groups to be sorted.  Pre-made functions include
131 `gnus-group-sort-by-alphabet', `gnus-group-sort-by-real-name',
132 `gnus-group-sort-by-unread', `gnus-group-sort-by-level',
133 `gnus-group-sort-by-score', `gnus-group-sort-by-method',
134 `gnus-group-sort-by-server', and `gnus-group-sort-by-rank'.
135
136 This variable can also be a list of sorting functions.  In that case,
137 the most significant sort function should be the last function in the
138 list."
139   :group 'gnus-group-listing
140   :link '(custom-manual "(gnus)Sorting Groups")
141   :type '(repeat :value-to-internal (lambda (widget value)
142                                       (if (listp value) value (list value)))
143                  :match (lambda (widget value)
144                           (or (symbolp value)
145                               (widget-editable-list-match widget value)))
146                  (choice (function-item gnus-group-sort-by-alphabet)
147                          (function-item gnus-group-sort-by-real-name)
148                          (function-item gnus-group-sort-by-unread)
149                          (function-item gnus-group-sort-by-level)
150                          (function-item gnus-group-sort-by-score)
151                          (function-item gnus-group-sort-by-method)
152                          (function-item gnus-group-sort-by-server)
153                          (function-item gnus-group-sort-by-rank)
154                          (function :tag "other" nil))))
155
156 (defcustom gnus-group-line-format "%M\%S\%p\%P\%5y:%B%(%g%)%O\n"
157   "*Format of group lines.
158 It works along the same lines as a normal formatting string,
159 with some simple extensions.
160
161 %M    Only marked articles (character, \"*\" or \" \")
162 %S    Whether the group is subscribed (character, \"U\", \"K\", \"Z\" or \" \")
163 %L    Level of subscribedness (integer)
164 %N    Number of unread articles (integer)
165 %I    Number of dormant articles (integer)
166 %i    Number of ticked and dormant (integer)
167 %T    Number of ticked articles (integer)
168 %R    Number of read articles (integer)
169 %U    Number of unseen articles (integer)
170 %t    Estimated total number of articles (integer)
171 %y    Number of unread, unticked articles (integer)
172 %G    Group name (string)
173 %g    Qualified group name (string)
174 %c    Short (collapsed) group name.  See `gnus-group-uncollapsed-levels'.
175 %C    Group comment (string)
176 %D    Group description (string)
177 %s    Select method (string)
178 %o    Moderated group (char, \"m\")
179 %p    Process mark (char)
180 %B    Whether a summary buffer for the group is open (char, \"*\")
181 %O    Moderated group (string, \"(m)\" or \"\")
182 %P    Topic indentation (string)
183 %m    Whether there is new(ish) mail in the group (char, \"%\")
184 %w    Number of new(ish) mails in the group (integer)
185 %n    Select from where (string)
186 %z    A string that look like `<%s:%n>' if a foreign select method is used
187 %d    The date the group was last entered.
188 %E    Icon as defined by `gnus-group-icon-list'.
189 %F    The disk space used by the articles fetched by both the cache and agent.
190 %u    User defined specifier.  The next character in the format string should
191       be a letter.  Gnus will call the function gnus-user-format-function-X,
192       where X is the letter following %u.  The function will be passed a
193       single dummy parameter as argument.  The function should return a
194       string, which will be inserted into the buffer just like information
195       from any other group specifier.
196
197 Note that this format specification is not always respected.  For
198 reasons of efficiency, when listing killed groups, this specification
199 is ignored altogether.  If the spec is changed considerably, your
200 output may end up looking strange when listing both alive and killed
201 groups.
202
203 If you use %o or %O, reading the active file will be slower and quite
204 a bit of extra memory will be used.  %D and %F will also worsen
205 performance.  Also note that if you change the format specification to
206 include any of these specs, you must probably re-start Gnus to see
207 them go into effect.
208
209 General format specifiers can also be used.
210 See Info node `(gnus)Formatting Variables'."
211   :link '(custom-manual "(gnus)Formatting Variables")
212   :group 'gnus-group-visual
213   :type 'string)
214
215 (defcustom gnus-group-mode-line-format "Gnus: %%b {%M\%:%S}"
216   "*The format specification for the group mode line.
217 It works along the same lines as a normal formatting string,
218 with some simple extensions:
219
220 %S   The native news server.
221 %M   The native select method.
222 %:   \":\" if %S isn't \"\"."
223   :group 'gnus-group-visual
224   :type 'string)
225
226 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
227 (when (featurep 'xemacs)
228   (add-hook 'gnus-group-mode-hook 'gnus-xmas-group-menu-add)
229   (add-hook 'gnus-group-mode-hook 'gnus-xmas-setup-group-toolbar))
230
231 (defcustom gnus-group-menu-hook nil
232   "Hook run after the creation of the group mode menu."
233   :group 'gnus-group-various
234   :type 'hook)
235
236 (defcustom gnus-group-catchup-group-hook nil
237   "Hook run when catching up a group from the group buffer."
238   :group 'gnus-group-various
239   :link '(custom-manual "(gnus)Group Data")
240   :type 'hook)
241
242 (defcustom gnus-group-update-group-hook nil
243   "Hook called when updating group lines."
244   :group 'gnus-group-visual
245   :type 'hook)
246
247 (defcustom gnus-group-prepare-function 'gnus-group-prepare-flat
248   "*A function that is called to generate the group buffer.
249 The function is called with three arguments: The first is a number;
250 all group with a level less or equal to that number should be listed,
251 if the second is non-nil, empty groups should also be displayed.  If
252 the third is non-nil, it is a number.  No groups with a level lower
253 than this number should be displayed.
254
255 The only current function implemented is `gnus-group-prepare-flat'."
256   :group 'gnus-group-listing
257   :type 'function)
258
259 (defcustom gnus-group-prepare-hook nil
260   "Hook called after the group buffer has been generated.
261 If you want to modify the group buffer, you can use this hook."
262   :group 'gnus-group-listing
263   :type 'hook)
264
265 (defcustom gnus-suspend-gnus-hook nil
266   "Hook called when suspending (not exiting) Gnus."
267   :group 'gnus-exit
268   :type 'hook)
269
270 (defcustom gnus-exit-gnus-hook nil
271   "Hook called when exiting Gnus."
272   :group 'gnus-exit
273   :type 'hook)
274
275 (defcustom gnus-after-exiting-gnus-hook nil
276   "Hook called after exiting Gnus."
277   :group 'gnus-exit
278   :type 'hook)
279
280 (defcustom gnus-group-update-hook '(gnus-group-highlight-line)
281   "Hook called when a group line is changed.
282 The hook will not be called if `gnus-visual' is nil.
283
284 The default function `gnus-group-highlight-line' will
285 highlight the line according to the `gnus-group-highlight'
286 variable."
287   :group 'gnus-group-visual
288   :type 'hook)
289
290 (defcustom gnus-useful-groups
291   '(("(ding) mailing list mirrored at sunsite.auc.dk"
292      "emacs.ding"
293      (nntp "sunsite.auc.dk"
294            (nntp-address "sunsite.auc.dk")))
295     ("gnus-bug archive"
296      "gnus-bug"
297      (nndir "/ftp@ftp.ifi.uio.no:/pub/emacs/gnus/gnus-bug/"))
298     ("Gnus help group"
299      "gnus-help"
300      (nndoc "gnus-help"
301             (nndoc-article-type mbox)
302             (eval `(nndoc-address
303                     ,(let ((file (nnheader-find-etc-directory
304                                   "gnus-tut.txt" t)))
305                        (unless file
306                          (error "Couldn't find doc group"))
307                        file))))))
308   "*Alist of useful group-server pairs."
309   :group 'gnus-group-listing
310   :type '(repeat (list (string :tag "Description")
311                        (string :tag "Name")
312                        (sexp :tag "Method"))))
313
314 (defcustom gnus-group-highlight
315   '(;; Mail.
316     ((and mailp (= unread 0) (eq level 1)) .
317      gnus-group-mail-1-empty-face)
318     ((and mailp (eq level 1)) .
319      gnus-group-mail-1-face)
320     ((and mailp (= unread 0) (eq level 2)) .
321      gnus-group-mail-2-empty-face)
322     ((and mailp (eq level 2)) .
323      gnus-group-mail-2-face)
324     ((and mailp (= unread 0) (eq level 3)) .
325      gnus-group-mail-3-empty-face)
326     ((and mailp (eq level 3)) .
327      gnus-group-mail-3-face)
328     ((and mailp (= unread 0)) .
329      gnus-group-mail-low-empty-face)
330     ((and mailp) .
331      gnus-group-mail-low-face)
332     ;; News.
333     ((and (= unread 0) (eq level 1)) .
334      gnus-group-news-1-empty-face)
335     ((and (eq level 1)) .
336      gnus-group-news-1-face)
337     ((and (= unread 0) (eq level 2)) .
338      gnus-group-news-2-empty-face)
339     ((and (eq level 2)) .
340      gnus-group-news-2-face)
341     ((and (= unread 0) (eq level 3)) .
342      gnus-group-news-3-empty-face)
343     ((and (eq level 3)) .
344      gnus-group-news-3-face)
345     ((and (= unread 0) (eq level 4)) .
346      gnus-group-news-4-empty-face)
347     ((and (eq level 4)) .
348      gnus-group-news-4-face)
349     ((and (= unread 0) (eq level 5)) .
350      gnus-group-news-5-empty-face)
351     ((and (eq level 5)) .
352      gnus-group-news-5-face)
353     ((and (= unread 0) (eq level 6)) .
354      gnus-group-news-6-empty-face)
355     ((and (eq level 6)) .
356      gnus-group-news-6-face)
357     ((and (= unread 0)) .
358      gnus-group-news-low-empty-face)
359     (t .
360        gnus-group-news-low-face))
361   "*Controls the highlighting of group buffer lines.
362
363 Below is a list of `Form'/`Face' pairs.  When deciding how a a
364 particular group line should be displayed, each form is
365 evaluated.  The content of the face field after the first true form is
366 used.  You can change how those group lines are displayed by
367 editing the face field.
368
369 It is also possible to change and add form fields, but currently that
370 requires an understanding of Lisp expressions.  Hopefully this will
371 change in a future release.  For now, you can use the following
372 variables in the Lisp expression:
373
374 group: The name of the group.
375 unread: The number of unread articles in the group.
376 method: The select method used.
377 mailp: Whether it's a mail group or not.
378 level: The level of the group.
379 score: The score of the group.
380 ticked: The number of ticked articles."
381   :group 'gnus-group-visual
382   :type '(repeat (cons (sexp :tag "Form") face)))
383
384 (defcustom gnus-new-mail-mark ?%
385   "Mark used for groups with new mail."
386   :group 'gnus-group-visual
387   :type 'character)
388
389 (defgroup gnus-group-icons nil
390   "Add Icons to your group buffer.  "
391   :group 'gnus-group-visual)
392
393 (defcustom gnus-group-icon-list
394   nil
395   "*Controls the insertion of icons into group buffer lines.
396
397 Below is a list of `Form'/`File' pairs.  When deciding how a
398 particular group line should be displayed, each form is evaluated.
399 The icon from the file field after the first true form is used.  You
400 can change how those group lines are displayed by editing the file
401 field.  The File will either be found in the
402 `gnus-group-glyph-directory' or by designating absolute name of the
403 file.
404
405 It is also possible to change and add form fields, but currently that
406 requires an understanding of Lisp expressions.  Hopefully this will
407 change in a future release.  For now, you can use the following
408 variables in the Lisp expression:
409
410 group: The name of the group.
411 unread: The number of unread articles in the group.
412 method: The select method used.
413 mailp: Whether it's a mail group or not.
414 newsp: Whether it's a news group or not
415 level: The level of the group.
416 score: The score of the group.
417 ticked: The number of ticked articles."
418   :group 'gnus-group-icons
419   :type '(repeat (cons (sexp :tag "Form") file)))
420
421 (defcustom gnus-group-name-charset-method-alist nil
422   "Alist of method and the charset for group names.
423
424 For example:
425     (((nntp \"news.com.cn\") . cn-gb-2312))"
426   :version "21.1"
427   :group 'gnus-charset
428   :type '(repeat (cons (sexp :tag "Method") (symbol :tag "Charset"))))
429
430 (defcustom gnus-group-name-charset-group-alist
431   (if (mm-coding-system-p 'utf-8)
432       '(("[^\000-\177]" . utf-8))
433     nil)
434   "Alist of group regexp and the charset for group names.
435
436 For example:
437     ((\"\\.com\\.cn:\" . cn-gb-2312))"
438   :group 'gnus-charset
439   :type '(repeat (cons (regexp :tag "Group") (symbol :tag "Charset"))))
440
441 (defcustom gnus-group-jump-to-group-prompt nil
442   "Default prompt for `gnus-group-jump-to-group'.
443
444 If non-nil, the value should be a string or an alist.  If it is a string,
445 e.g. \"nnml:\", in which case `gnus-group-jump-to-group' offers \"Group:
446 nnml:\" in the minibuffer prompt.
447
448 If it is an alist, it must consist of \(NUMBER .  PROMPT\) pairs, for example:
449 \((1 .  \"\") (2 .  \"nnfolder+archive:\")).  The element with number 0 is
450 used when no prefix argument is given to `gnus-group-jump-to-group'."
451   :group 'gnus-group-various
452   :type '(choice (string :tag "Prompt string")
453                  (const :tag "Empty" nil)
454                  (repeat (cons (integer :tag "Argument")
455                                (string :tag "Prompt string")))))
456
457 (defvar gnus-group-listing-limit 1000
458   "*A limit of the number of groups when listing.
459 If the number of groups is larger than the limit, list them in a
460 simple manner.")
461
462 ;;; Internal variables
463
464 (defvar gnus-group-is-exiting-p nil)
465 (defvar gnus-group-is-exiting-without-update-p nil)
466 (defvar gnus-group-sort-alist-function 'gnus-group-sort-flat
467   "Function for sorting the group buffer.")
468
469 (defvar gnus-group-sort-selected-function 'gnus-group-sort-selected-flat
470   "Function for sorting the selected groups in the group buffer.")
471
472 (defvar gnus-group-indentation-function nil)
473 (defvar gnus-goto-missing-group-function nil)
474 (defvar gnus-group-update-group-function nil)
475 (defvar gnus-group-goto-next-group-function nil
476   "Function to override finding the next group after listing groups.")
477
478 (defvar gnus-group-edit-buffer nil)
479
480 (defvar gnus-group-line-format-alist
481   `((?M gnus-tmp-marked-mark ?c)
482     (?S gnus-tmp-subscribed ?c)
483     (?L gnus-tmp-level ?d)
484     (?N (cond ((eq number t) "*" )
485               ((numberp number)
486                (int-to-string
487                 (+ number
488                    (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
489                    (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))))))
490               (t number)) ?s)
491     (?R gnus-tmp-number-of-read ?s)
492     (?U (gnus-number-of-unseen-articles-in-group gnus-tmp-group) ?d)
493     (?t gnus-tmp-number-total ?d)
494     (?y gnus-tmp-number-of-unread ?s)
495     (?I (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked))) ?d)
496     (?T (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))) ?d)
497     (?i (+ (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
498            (gnus-range-length (cdr (assq 'tick gnus-tmp-marked)))) ?d)
499     (?g gnus-tmp-group ?s)
500     (?G gnus-tmp-qualified-group ?s)
501     (?c (gnus-short-group-name gnus-tmp-group) ?s)
502     (?C gnus-tmp-comment ?s)
503     (?D gnus-tmp-newsgroup-description ?s)
504     (?o gnus-tmp-moderated ?c)
505     (?O gnus-tmp-moderated-string ?s)
506     (?p gnus-tmp-process-marked ?c)
507     (?s gnus-tmp-news-server ?s)
508     (?n gnus-tmp-news-method ?s)
509     (?P gnus-group-indentation ?s)
510     (?E gnus-tmp-group-icon ?s)
511     (?B gnus-tmp-summary-live ?c)
512     (?z gnus-tmp-news-method-string ?s)
513     (?m (gnus-group-new-mail gnus-tmp-group) ?c)
514     (?w (if (gnus-news-group-p gnus-tmp-group)
515             ""
516           (int-to-string
517            (length
518             (nnmail-new-mail-numbers (gnus-group-real-name gnus-tmp-group))
519             )))
520         ?s)
521     (?d (gnus-group-timestamp-string gnus-tmp-group) ?s)
522     (?u gnus-tmp-user-defined ?s)
523     (?F (gnus-total-fetched-for gnus-tmp-group) ?s)
524     ))
525
526 (defvar gnus-group-mode-line-format-alist
527   `((?S gnus-tmp-news-server ?s)
528     (?M gnus-tmp-news-method ?s)
529     (?u gnus-tmp-user-defined ?s)
530     (?: gnus-tmp-colon ?s)))
531
532 (defvar gnus-topic-topology nil
533   "The complete topic hierarchy.")
534
535 (defvar gnus-topic-alist nil
536   "The complete topic-group alist.")
537
538 (defvar gnus-group-marked nil)
539
540 (defvar gnus-group-list-mode nil)
541
542
543 (defvar gnus-group-icon-cache nil)
544
545 (defvar gnus-group-listed-groups nil)
546 (defvar gnus-group-list-option nil)
547
548 ;;;
549 ;;; Gnus group mode
550 ;;;
551
552 (put 'gnus-group-mode 'mode-class 'special)
553
554 (gnus-define-keys gnus-group-mode-map
555   " " gnus-group-read-group
556   "=" gnus-group-select-group
557   "\r" gnus-group-select-group
558   "\M-\r" gnus-group-quick-select-group
559   "\M- " gnus-group-visible-select-group
560   [(meta control return)] gnus-group-select-group-ephemerally
561   "j" gnus-group-jump-to-group
562   "n" gnus-group-next-unread-group
563   "p" gnus-group-prev-unread-group
564   "\177" gnus-group-prev-unread-group
565   [delete] gnus-group-prev-unread-group
566   [backspace] gnus-group-prev-unread-group
567   "N" gnus-group-next-group
568   "P" gnus-group-prev-group
569   "\M-n" gnus-group-next-unread-group-same-level
570   "\M-p" gnus-group-prev-unread-group-same-level
571   "," gnus-group-best-unread-group
572   "." gnus-group-first-unread-group
573   "u" gnus-group-unsubscribe-current-group
574   "U" gnus-group-unsubscribe-group
575   "c" gnus-group-catchup-current
576   "C" gnus-group-catchup-current-all
577   "\M-c" gnus-group-clear-data
578   "l" gnus-group-list-groups
579   "L" gnus-group-list-all-groups
580   "m" gnus-group-mail
581   "i" gnus-group-news
582   "g" gnus-group-get-new-news
583   "\M-g" gnus-group-get-new-news-this-group
584   "R" gnus-group-restart
585   "r" gnus-group-read-init-file
586   "B" gnus-group-browse-foreign-server
587   "b" gnus-group-check-bogus-groups
588   "F" gnus-group-find-new-groups
589   "\C-c\C-d" gnus-group-describe-group
590   "\M-d" gnus-group-describe-all-groups
591   "\C-c\C-a" gnus-group-apropos
592   "\C-c\M-\C-a" gnus-group-description-apropos
593   "a" gnus-group-post-news
594   "\ek" gnus-group-edit-local-kill
595   "\eK" gnus-group-edit-global-kill
596   "\C-k" gnus-group-kill-group
597   "\C-y" gnus-group-yank-group
598   "\C-w" gnus-group-kill-region
599   "\C-x\C-t" gnus-group-transpose-groups
600   "\C-c\C-l" gnus-group-list-killed
601   "\C-c\C-x" gnus-group-expire-articles
602   "\C-c\M-\C-x" gnus-group-expire-all-groups
603   "V" gnus-version
604   "s" gnus-group-save-newsrc
605   "z" gnus-group-suspend
606   "q" gnus-group-exit
607   "Q" gnus-group-quit
608   "?" gnus-group-describe-briefly
609   "\C-c\C-i" gnus-info-find-node
610   "\M-e" gnus-group-edit-group-method
611   "^" gnus-group-enter-server-mode
612   gnus-mouse-2 gnus-mouse-pick-group
613   "<" beginning-of-buffer
614   ">" end-of-buffer
615   "\C-c\C-b" gnus-bug
616   "\C-c\C-n" gnus-namazu-search
617   "\C-c\C-s" gnus-group-sort-groups
618   "t" gnus-topic-mode
619   "\C-c\M-g" gnus-activate-all-groups
620   "\M-&" gnus-group-universal-argument
621   "#" gnus-group-mark-group
622   "\M-#" gnus-group-unmark-group)
623
624 (gnus-define-keys (gnus-group-mark-map "M" gnus-group-mode-map)
625   "m" gnus-group-mark-group
626   "u" gnus-group-unmark-group
627   "w" gnus-group-mark-region
628   "b" gnus-group-mark-buffer
629   "r" gnus-group-mark-regexp
630   "U" gnus-group-unmark-all-groups)
631
632 (gnus-define-keys (gnus-group-sieve-map "D" gnus-group-mode-map)
633   "u" gnus-sieve-update
634   "g" gnus-sieve-generate)
635
636 (gnus-define-keys (gnus-group-group-map "G" gnus-group-mode-map)
637   "d" gnus-group-make-directory-group
638   "h" gnus-group-make-help-group
639   "u" gnus-group-make-useful-group
640   "a" gnus-group-make-archive-group
641   "k" gnus-group-make-kiboze-group
642   "l" gnus-group-nnimap-edit-acl
643   "m" gnus-group-make-group
644   "n" gnus-group-make-shimbun-group
645   "E" gnus-group-edit-group
646   "e" gnus-group-edit-group-method
647   "p" gnus-group-edit-group-parameters
648   "v" gnus-group-add-to-virtual
649   "V" gnus-group-make-empty-virtual
650   "D" gnus-group-enter-directory
651   "f" gnus-group-make-doc-group
652   "G" gnus-group-make-nnir-group
653   "w" gnus-group-make-web-group
654   "M" gnus-group-read-ephemeral-group
655   "r" gnus-group-rename-group
656   "R" gnus-group-make-rss-group
657   "c" gnus-group-customize
658   "x" gnus-group-nnimap-expunge
659   "\177" gnus-group-delete-group
660   [delete] gnus-group-delete-group)
661
662 (gnus-define-keys (gnus-group-soup-map "s" gnus-group-group-map)
663   "b" gnus-group-brew-soup
664   "w" gnus-soup-save-areas
665   "s" gnus-soup-send-replies
666   "p" gnus-soup-pack-packet
667   "r" nnsoup-pack-replies)
668
669 (gnus-define-keys (gnus-group-sort-map "S" gnus-group-group-map)
670   "s" gnus-group-sort-groups
671   "a" gnus-group-sort-groups-by-alphabet
672   "u" gnus-group-sort-groups-by-unread
673   "l" gnus-group-sort-groups-by-level
674   "v" gnus-group-sort-groups-by-score
675   "r" gnus-group-sort-groups-by-rank
676   "m" gnus-group-sort-groups-by-method
677   "n" gnus-group-sort-groups-by-real-name)
678
679 (gnus-define-keys (gnus-group-sort-selected-map "P" gnus-group-group-map)
680   "s" gnus-group-sort-selected-groups
681   "a" gnus-group-sort-selected-groups-by-alphabet
682   "u" gnus-group-sort-selected-groups-by-unread
683   "l" gnus-group-sort-selected-groups-by-level
684   "v" gnus-group-sort-selected-groups-by-score
685   "r" gnus-group-sort-selected-groups-by-rank
686   "m" gnus-group-sort-selected-groups-by-method
687   "n" gnus-group-sort-selected-groups-by-real-name)
688
689 (gnus-define-keys (gnus-group-list-map "A" gnus-group-mode-map)
690   "k" gnus-group-list-killed
691   "z" gnus-group-list-zombies
692   "s" gnus-group-list-groups
693   "u" gnus-group-list-all-groups
694   "A" gnus-group-list-active
695   "a" gnus-group-apropos
696   "d" gnus-group-description-apropos
697   "m" gnus-group-list-matching
698   "M" gnus-group-list-all-matching
699   "l" gnus-group-list-level
700   "c" gnus-group-list-cached
701   "?" gnus-group-list-dormant)
702
703 (gnus-define-keys (gnus-group-list-limit-map "/" gnus-group-list-map)
704   "k"  gnus-group-list-limit
705   "z"  gnus-group-list-limit
706   "s"  gnus-group-list-limit
707   "u"  gnus-group-list-limit
708   "A"  gnus-group-list-limit
709   "m"  gnus-group-list-limit
710   "M"  gnus-group-list-limit
711   "l"  gnus-group-list-limit
712   "c"  gnus-group-list-limit
713   "?"  gnus-group-list-limit)
714
715 (gnus-define-keys (gnus-group-list-flush-map "f" gnus-group-list-map)
716   "k"  gnus-group-list-flush
717   "z"  gnus-group-list-flush
718   "s"  gnus-group-list-flush
719   "u"  gnus-group-list-flush
720   "A"  gnus-group-list-flush
721   "m"  gnus-group-list-flush
722   "M"  gnus-group-list-flush
723   "l"  gnus-group-list-flush
724   "c"  gnus-group-list-flush
725   "?"  gnus-group-list-flush)
726
727 (gnus-define-keys (gnus-group-list-plus-map "p" gnus-group-list-map)
728   "k"  gnus-group-list-plus
729   "z"  gnus-group-list-plus
730   "s"  gnus-group-list-plus
731   "u"  gnus-group-list-plus
732   "A"  gnus-group-list-plus
733   "m"  gnus-group-list-plus
734   "M"  gnus-group-list-plus
735   "l"  gnus-group-list-plus
736   "c"  gnus-group-list-plus
737   "?"  gnus-group-list-plus)
738
739 (gnus-define-keys (gnus-group-score-map "W" gnus-group-mode-map)
740   "f" gnus-score-flush-cache
741   "e" gnus-score-edit-all-score)
742
743 (gnus-define-keys (gnus-group-help-map "H" gnus-group-mode-map)
744   "c" gnus-group-fetch-charter
745   "C" gnus-group-fetch-control
746   "d" gnus-group-describe-group
747   "f" gnus-group-fetch-faq
748   "v" gnus-version)
749
750 (gnus-define-keys (gnus-group-sub-map "S" gnus-group-mode-map)
751   "l" gnus-group-set-current-level
752   "t" gnus-group-unsubscribe-current-group
753   "s" gnus-group-unsubscribe-group
754   "k" gnus-group-kill-group
755   "y" gnus-group-yank-group
756   "w" gnus-group-kill-region
757   "\C-k" gnus-group-kill-level
758   "z" gnus-group-kill-all-zombies)
759
760 (defun gnus-topic-mode-p ()
761   "Return non-nil in `gnus-topic-mode'."
762   (and (boundp 'gnus-topic-mode)
763        (symbol-value 'gnus-topic-mode)))
764
765 (defun gnus-group-make-menu-bar ()
766   (gnus-turn-off-edit-menu 'group)
767   (unless (boundp 'gnus-group-reading-menu)
768
769     (easy-menu-define
770      gnus-group-reading-menu gnus-group-mode-map ""
771      `("Group"
772        ["Read" gnus-group-read-group
773         :included (not (gnus-topic-mode-p))
774         :active (gnus-group-group-name)]
775        ["Read " gnus-topic-read-group
776         :included (gnus-topic-mode-p)]
777        ["Select" gnus-group-select-group
778         :included (not (gnus-topic-mode-p))
779         :active (gnus-group-group-name)]
780        ["Select " gnus-topic-select-group
781         :included (gnus-topic-mode-p)]
782        ["See old articles" (gnus-group-select-group 'all)
783         :keys "C-u SPC" :active (gnus-group-group-name)]
784        ["Catch up" gnus-group-catchup-current
785         :included (not (gnus-topic-mode-p))
786         :active (gnus-group-group-name)
787         ,@(if (featurep 'xemacs) nil
788             '(:help "Mark unread articles in the current group as read"))]
789        ["Catch up " gnus-topic-catchup-articles
790         :included (gnus-topic-mode-p)
791         ,@(if (featurep 'xemacs) nil
792             '(:help "Mark unread articles in the current group or topic as read"))]
793        ["Catch up all articles" gnus-group-catchup-current-all
794         (gnus-group-group-name)]
795        ["Check for new articles" gnus-group-get-new-news-this-group
796         :included (not (gnus-topic-mode-p))
797         :active (gnus-group-group-name)
798         ,@(if (featurep 'xemacs) nil
799             '(:help "Check for new messages in current group"))]
800        ["Check for new articles " gnus-topic-get-new-news-this-topic
801         :included (gnus-topic-mode-p)
802         ,@(if (featurep 'xemacs) nil
803             '(:help "Check for new messages in current group or topic"))]
804        ["Toggle subscription" gnus-group-unsubscribe-current-group
805         (gnus-group-group-name)]
806        ["Kill" gnus-group-kill-group :active (gnus-group-group-name)
807         ,@(if (featurep 'xemacs) nil
808             '(:help "Kill (remove) current group"))]
809        ["Yank" gnus-group-yank-group gnus-list-of-killed-groups]
810        ["Describe" gnus-group-describe-group :active (gnus-group-group-name)
811         ,@(if (featurep 'xemacs) nil
812             '(:help "Display description of the current group"))]
813        ["Fetch FAQ" gnus-group-fetch-faq (gnus-group-group-name)]
814        ["Fetch charter" gnus-group-fetch-charter
815         :active (gnus-group-group-name)
816         ,@(if (featurep 'xemacs) nil
817             '(:help "Display the charter of the current group"))]
818        ["Fetch control message" gnus-group-fetch-control
819         :active (gnus-group-group-name)
820         ,@(if (featurep 'xemacs) nil
821             '(:help "Display the archived control message for the current group"))]
822        ;; Actually one should check, if any of the marked groups gives t for
823        ;; (gnus-check-backend-function 'request-expire-articles ...)
824        ["Expire articles" gnus-group-expire-articles
825         :included (not (gnus-topic-mode-p))
826         :active (or (and (gnus-group-group-name)
827                          (gnus-check-backend-function
828                           'request-expire-articles
829                           (gnus-group-group-name))) gnus-group-marked)]
830        ["Expire articles " gnus-topic-expire-articles
831         :included (gnus-topic-mode-p)]
832        ["Set group level..." gnus-group-set-current-level
833         (gnus-group-group-name)]
834        ["Select quick" gnus-group-quick-select-group (gnus-group-group-name)]
835        ["Customize" gnus-group-customize (gnus-group-group-name)]
836        ("Edit"
837         ["Parameters" gnus-group-edit-group-parameters
838          :included (not (gnus-topic-mode-p))
839          :active (gnus-group-group-name)]
840         ["Parameters " gnus-topic-edit-parameters
841          :included (gnus-topic-mode-p)]
842         ["Select method" gnus-group-edit-group-method
843          (gnus-group-group-name)]
844         ["Info" gnus-group-edit-group (gnus-group-group-name)]
845         ["Local kill file" gnus-group-edit-local-kill (gnus-group-group-name)]
846         ["Global kill file" gnus-group-edit-global-kill t])))
847
848     (easy-menu-define
849      gnus-group-group-menu gnus-group-mode-map ""
850      '("Groups"
851        ("Listing"
852         ["List unread subscribed groups" gnus-group-list-groups t]
853         ["List (un)subscribed groups" gnus-group-list-all-groups t]
854         ["List killed groups" gnus-group-list-killed gnus-killed-list]
855         ["List zombie groups" gnus-group-list-zombies gnus-zombie-list]
856         ["List level..." gnus-group-list-level t]
857         ["Describe all groups" gnus-group-describe-all-groups t]
858         ["Group apropos..." gnus-group-apropos t]
859         ["Group and description apropos..." gnus-group-description-apropos t]
860         ["List groups matching..." gnus-group-list-matching t]
861         ["List all groups matching..." gnus-group-list-all-matching t]
862         ["List active file" gnus-group-list-active t]
863         ["List groups with cached" gnus-group-list-cached t]
864         ["List groups with dormant" gnus-group-list-dormant t])
865        ("Sort"
866         ["Default sort" gnus-group-sort-groups t]
867         ["Sort by method" gnus-group-sort-groups-by-method t]
868         ["Sort by rank" gnus-group-sort-groups-by-rank t]
869         ["Sort by score" gnus-group-sort-groups-by-score t]
870         ["Sort by level" gnus-group-sort-groups-by-level t]
871         ["Sort by unread" gnus-group-sort-groups-by-unread t]
872         ["Sort by name" gnus-group-sort-groups-by-alphabet t]
873         ["Sort by real name" gnus-group-sort-groups-by-real-name t])
874        ("Sort process/prefixed"
875         ["Default sort" gnus-group-sort-selected-groups
876          (not (gnus-topic-mode-p))]
877         ["Sort by method" gnus-group-sort-selected-groups-by-method
878          (not (gnus-topic-mode-p))]
879         ["Sort by rank" gnus-group-sort-selected-groups-by-rank
880          (not (gnus-topic-mode-p))]
881         ["Sort by score" gnus-group-sort-selected-groups-by-score
882          (not (gnus-topic-mode-p))]
883         ["Sort by level" gnus-group-sort-selected-groups-by-level
884          (not (gnus-topic-mode-p))]
885         ["Sort by unread" gnus-group-sort-selected-groups-by-unread
886          (not (gnus-topic-mode-p))]
887         ["Sort by name" gnus-group-sort-selected-groups-by-alphabet
888          (not (gnus-topic-mode-p))]
889         ["Sort by real name" gnus-group-sort-selected-groups-by-real-name
890          (not (gnus-topic-mode-p))])
891        ("Mark"
892         ["Mark group" gnus-group-mark-group
893          (and (gnus-group-group-name)
894               (not (memq (gnus-group-group-name) gnus-group-marked)))]
895         ["Unmark group" gnus-group-unmark-group
896          (and (gnus-group-group-name)
897               (memq (gnus-group-group-name) gnus-group-marked))]
898         ["Unmark all" gnus-group-unmark-all-groups gnus-group-marked]
899         ["Mark regexp..." gnus-group-mark-regexp t]
900         ["Mark region" gnus-group-mark-region :active (gnus-mark-active-p)]
901         ["Mark buffer" gnus-group-mark-buffer t]
902         ["Execute command" gnus-group-universal-argument
903          (or gnus-group-marked (gnus-group-group-name))])
904        ("Subscribe"
905         ["Subscribe to a group..." gnus-group-unsubscribe-group t]
906         ["Kill all newsgroups in region" gnus-group-kill-region
907          :active (gnus-mark-active-p)]
908         ["Kill all zombie groups" gnus-group-kill-all-zombies
909          gnus-zombie-list]
910         ["Kill all groups on level..." gnus-group-kill-level t])
911        ("Foreign groups"
912         ["Make a foreign group..." gnus-group-make-group t]
913         ["Make a shimbun group..." gnus-group-make-shimbun-group t]
914         ["Add a directory group..." gnus-group-make-directory-group t]
915         ["Add the help group" gnus-group-make-help-group t]
916         ["Add the archive group" gnus-group-make-archive-group t]
917         ["Make a doc group..." gnus-group-make-doc-group t]
918         ["Make a web group..." gnus-group-make-web-group t]
919         ["Make a kiboze group..." gnus-group-make-kiboze-group t]
920         ["Make a virtual group..." gnus-group-make-empty-virtual t]
921         ["Add a group to a virtual..." gnus-group-add-to-virtual t]
922         ["Make an RSS group..." gnus-group-make-rss-group t]
923         ["Rename group..." gnus-group-rename-group
924          (gnus-check-backend-function
925           'request-rename-group (gnus-group-group-name))]
926         ["Delete group" gnus-group-delete-group
927          (gnus-check-backend-function
928           'request-delete-group (gnus-group-group-name))])
929        ("Move"
930         ["Next" gnus-group-next-group t]
931         ["Previous" gnus-group-prev-group t]
932         ["Next unread" gnus-group-next-unread-group t]
933         ["Previous unread" gnus-group-prev-unread-group t]
934         ["Next unread same level" gnus-group-next-unread-group-same-level t]
935         ["Previous unread same level"
936          gnus-group-prev-unread-group-same-level t]
937         ["Jump to group..." gnus-group-jump-to-group t]
938         ["First unread group" gnus-group-first-unread-group t]
939         ["Best unread group" gnus-group-best-unread-group t])
940        ("Sieve"
941         ["Generate" gnus-sieve-generate t]
942         ["Generate and update" gnus-sieve-update t])
943        ["Delete bogus groups" gnus-group-check-bogus-groups t]
944        ["Find new newsgroups" gnus-group-find-new-groups t]
945        ["Transpose" gnus-group-transpose-groups
946         (gnus-group-group-name)]
947        ["Read a directory as a group..." gnus-group-enter-directory t]))
948
949     (easy-menu-define
950      gnus-group-misc-menu gnus-group-mode-map ""
951      `("Gnus"
952        ("SOUP"
953         ["Pack replies" nnsoup-pack-replies (fboundp 'nnsoup-request-group)]
954         ["Send replies" gnus-soup-send-replies
955          (fboundp 'gnus-soup-pack-packet)]
956         ["Pack packet" gnus-soup-pack-packet (fboundp 'gnus-soup-pack-packet)]
957         ["Save areas" gnus-soup-save-areas (fboundp 'gnus-soup-pack-packet)]
958         ["Brew SOUP" gnus-group-brew-soup (fboundp 'gnus-soup-pack-packet)])
959        ["Send a mail" gnus-group-mail t]
960        ["Send a message (mail or news)" gnus-group-post-news t]
961        ["Create a local message" gnus-group-news t]
962        ["Check for new news" gnus-group-get-new-news
963         ,@(if (featurep 'xemacs) '(t)
964             '(:help "Get newly arrived articles"))
965         ]
966        ["Send queued messages" gnus-delay-send-queue
967         ,@(if (featurep 'xemacs) '(t)
968             '(:help "Send all messages that are scheduled to be sent now"))
969         ]
970        ["Activate all groups" gnus-activate-all-groups t]
971        ["Restart Gnus" gnus-group-restart t]
972        ["Read init file" gnus-group-read-init-file t]
973        ["Browse foreign server..." gnus-group-browse-foreign-server t]
974        ["Enter server buffer" gnus-group-enter-server-mode t]
975        ["Expire all expirable articles" gnus-group-expire-all-groups t]
976        ["Generate any kiboze groups" nnkiboze-generate-groups t]
977        ["Gnus version" gnus-version t]
978        ["Save .newsrc files" gnus-group-save-newsrc t]
979        ["Suspend Gnus" gnus-group-suspend t]
980        ["Clear dribble buffer" gnus-group-clear-dribble t]
981        ["Read manual" gnus-info-find-node t]
982        ["Flush score cache" gnus-score-flush-cache t]
983        ["Toggle topics" gnus-topic-mode t]
984        ["Send a bug report" gnus-bug t]
985        ["Exit from Gnus" gnus-group-exit
986         ,@(if (featurep 'xemacs) '(t)
987             '(:help "Quit reading news"))]
988        ["Exit without saving" gnus-group-quit t]))
989
990     (gnus-run-hooks 'gnus-group-menu-hook)))
991
992 (defvar gnus-group-toolbar-map nil)
993
994 ;; Emacs 21 tool bar.  Should be no-op otherwise.
995 (defun gnus-group-make-tool-bar ()
996   (if (and
997        (condition-case nil (require 'tool-bar) (error nil))
998        (fboundp 'tool-bar-add-item-from-menu)
999        (default-value 'tool-bar-mode)
1000        (not gnus-group-toolbar-map))
1001       (setq gnus-group-toolbar-map
1002             (let ((tool-bar-map (make-sparse-keymap))
1003                   (load-path (mm-image-load-path)))
1004               (tool-bar-add-item-from-menu
1005                'gnus-group-get-new-news "get-news" gnus-group-mode-map)
1006               (tool-bar-add-item-from-menu
1007                'gnus-group-get-new-news-this-group "gnntg" gnus-group-mode-map)
1008               (tool-bar-add-item-from-menu
1009                'gnus-group-catchup-current "catchup" gnus-group-mode-map)
1010               (tool-bar-add-item-from-menu
1011                'gnus-group-describe-group "describe-group" gnus-group-mode-map)
1012               (tool-bar-add-item "subscribe" 'gnus-group-subscribe 'subscribe
1013                                  :help "Subscribe to the current group")
1014               (tool-bar-add-item "unsubscribe" 'gnus-group-unsubscribe
1015                                  'unsubscribe
1016                                  :help "Unsubscribe from the current group")
1017               (tool-bar-add-item-from-menu
1018                'gnus-group-exit "exit-gnus" gnus-group-mode-map)
1019               tool-bar-map)))
1020   (if gnus-group-toolbar-map
1021       (set (make-local-variable 'tool-bar-map) gnus-group-toolbar-map)))
1022
1023 (defun gnus-group-mode ()
1024   "Major mode for reading news.
1025
1026 All normal editing commands are switched off.
1027 \\<gnus-group-mode-map>
1028 The group buffer lists (some of) the groups available.  For instance,
1029 `\\[gnus-group-list-groups]' will list all subscribed groups with unread articles, while `\\[gnus-group-list-zombies]'
1030 lists all zombie groups.
1031
1032 Groups that are displayed can be entered with `\\[gnus-group-read-group]'.  To subscribe
1033 to a group not displayed, type `\\[gnus-group-unsubscribe-group]'.
1034
1035 For more in-depth information on this mode, read the manual (`\\[gnus-info-find-node]').
1036
1037 The following commands are available:
1038
1039 \\{gnus-group-mode-map}"
1040   (interactive)
1041   (kill-all-local-variables)
1042   (when (gnus-visual-p 'group-menu 'menu)
1043     (gnus-group-make-menu-bar)
1044     (gnus-group-make-tool-bar))
1045   (gnus-simplify-mode-line)
1046   (setq major-mode 'gnus-group-mode)
1047   (setq mode-name "Group")
1048   (gnus-group-set-mode-line)
1049   (setq mode-line-process nil)
1050   (use-local-map gnus-group-mode-map)
1051   (buffer-disable-undo)
1052   (setq truncate-lines t)
1053   (setq buffer-read-only t
1054         show-trailing-whitespace nil)
1055   (gnus-set-default-directory)
1056   (gnus-update-format-specifications nil 'group 'group-mode)
1057   (gnus-update-group-mark-positions)
1058   (when gnus-use-undo
1059     (gnus-undo-mode 1))
1060   (when gnus-slave
1061     (gnus-slave-mode))
1062   (gnus-run-hooks 'gnus-group-mode-hook))
1063
1064 (defun gnus-update-group-mark-positions ()
1065   (save-excursion
1066     (let ((gnus-process-mark ?\200)
1067           (gnus-group-update-hook nil)
1068           (gnus-group-marked '("dummy.group"))
1069           (gnus-active-hashtb (make-vector 10 0))
1070           (topic ""))
1071       (gnus-set-active "dummy.group" '(0 . 0))
1072       (gnus-set-work-buffer)
1073       (gnus-group-insert-group-line "dummy.group" 0 nil 0 nil)
1074       (goto-char (point-min))
1075       (setq gnus-group-mark-positions
1076             (list (cons 'process (and (search-forward "\200" nil t)
1077                                       (- (point) 2))))))))
1078
1079 (defun gnus-mouse-pick-group (e)
1080   "Enter the group under the mouse pointer."
1081   (interactive "e")
1082   (mouse-set-point e)
1083   (gnus-group-read-group nil))
1084
1085 ;; Look at LEVEL and find out what the level is really supposed to be.
1086 ;; If LEVEL is non-nil, LEVEL will be returned, if not, what happens
1087 ;; will depend on whether `gnus-group-use-permanent-levels' is used.
1088 (defun gnus-group-default-level (&optional level number-or-nil)
1089   (cond
1090    (gnus-group-use-permanent-levels
1091     (or (setq gnus-group-use-permanent-levels
1092               (or level (if (numberp gnus-group-use-permanent-levels)
1093                             gnus-group-use-permanent-levels
1094                           (or gnus-group-default-list-level
1095                               gnus-level-subscribed))))
1096         gnus-group-default-list-level gnus-level-subscribed))
1097    (number-or-nil
1098     level)
1099    (t
1100     (or level gnus-group-default-list-level gnus-level-subscribed))))
1101
1102 (defun gnus-group-setup-buffer ()
1103   (set-buffer (gnus-get-buffer-create gnus-group-buffer))
1104   (unless (eq major-mode 'gnus-group-mode)
1105     (gnus-group-mode)
1106     (when gnus-carpal
1107       (gnus-carpal-setup-buffer 'group))))
1108
1109 (defun gnus-group-name-charset (method group)
1110   (if (null method)
1111       (setq method (gnus-find-method-for-group group)))
1112   (let ((item (assoc method gnus-group-name-charset-method-alist))
1113         (alist gnus-group-name-charset-group-alist)
1114         result)
1115     (if item
1116         (cdr item)
1117       (while (setq item (pop alist))
1118         (if (string-match (car item) group)
1119             (setq alist nil
1120                   result (cdr item))))
1121       result)))
1122
1123 (defun gnus-group-name-decode (string charset)
1124   ;; Fixme: Don't decode in unibyte mode.
1125   (if (and string charset (featurep 'mule))
1126       (decode-coding-string string charset)
1127     string))
1128
1129 (defun gnus-group-decoded-name (string)
1130   (let ((charset (gnus-group-name-charset nil string)))
1131     (gnus-group-name-decode string charset)))
1132
1133 (defun gnus-group-name-encode (string charset)
1134   (if (and string charset (featurep 'mule))
1135       (encode-coding-string string charset)
1136     string))
1137
1138 (defun gnus-group-encoded-name (string)
1139   (let ((charset (gnus-group-name-charset nil string)))
1140     (gnus-group-name-encode string charset)))
1141
1142 (defun gnus-group-completing-read-group-name
1143   (prompt table &optional predicate require-match initial-contents history)
1144   (if (vectorp table)
1145       (mapatoms
1146        (lambda (group)
1147          (push (list (gnus-group-decoded-name (symbol-name group))) table))
1148        (prog1
1149            table
1150          (setq table nil)))
1151     (dolist (entry (prog1
1152                        table
1153                      (setq table nil)))
1154       (push (list (gnus-group-decoded-name (car entry))) table)))
1155   (gnus-group-encoded-name
1156    (completing-read
1157     prompt table predicate
1158     require-match
1159     initial-contents
1160     history)))
1161
1162 (defun gnus-group-list-groups (&optional level unread lowest)
1163   "List newsgroups with level LEVEL or lower that have unread articles.
1164 Default is all subscribed groups.
1165 If argument UNREAD is non-nil, groups with no unread articles are also
1166 listed.
1167
1168 Also see the `gnus-group-use-permanent-levels' variable."
1169   (interactive
1170    (list (if current-prefix-arg
1171              (prefix-numeric-value current-prefix-arg)
1172            (or
1173             (gnus-group-default-level nil t)
1174             gnus-group-default-list-level
1175             gnus-level-subscribed))))
1176   (unless level
1177     (setq level (car gnus-group-list-mode)
1178           unread (cdr gnus-group-list-mode)))
1179   (setq level (gnus-group-default-level level))
1180   (gnus-group-setup-buffer)
1181   (gnus-update-format-specifications nil 'group 'group-mode)
1182   (let ((case-fold-search nil)
1183         (props (text-properties-at (point-at-bol)))
1184         (empty (= (point-min) (point-max)))
1185         (group (gnus-group-group-name))
1186         number)
1187     (set-buffer gnus-group-buffer)
1188     (setq number (funcall gnus-group-prepare-function level unread lowest))
1189     (when (or (and (numberp number)
1190                    (zerop number))
1191               (zerop (buffer-size)))
1192       ;; No groups in the buffer.
1193       (gnus-message 5 gnus-no-groups-message))
1194     ;; We have some groups displayed.
1195     (goto-char (point-max))
1196     (when (or (not gnus-group-goto-next-group-function)
1197               (not (funcall gnus-group-goto-next-group-function
1198                             group props)))
1199       (cond
1200        (empty
1201         (goto-char (point-min)))
1202        ((not group)
1203         ;; Go to the first group with unread articles.
1204         (gnus-group-search-forward t))
1205        (t
1206         ;; Find the right group to put point on.  If the current group
1207         ;; has disappeared in the new listing, try to find the next
1208         ;; one.  If no next one can be found, just leave point at the
1209         ;; first newsgroup in the buffer.
1210         (when (not (gnus-goto-char
1211                     (text-property-any
1212                      (point-min) (point-max)
1213                      'gnus-group (gnus-intern-safe
1214                                   group gnus-active-hashtb))))
1215           (let ((newsrc (cdddr (gnus-group-entry group))))
1216             (while (and newsrc
1217                         (not (gnus-goto-char
1218                               (text-property-any
1219                                (point-min) (point-max) 'gnus-group
1220                                (gnus-intern-safe
1221                                 (caar newsrc) gnus-active-hashtb)))))
1222               (setq newsrc (cdr newsrc)))
1223             (unless newsrc
1224               (goto-char (point-max))
1225               (forward-line -1)))))))
1226     ;; Adjust cursor point.
1227     (gnus-group-position-point)))
1228
1229 (defun gnus-group-list-level (level &optional all)
1230   "List groups on LEVEL.
1231 If ALL (the prefix), also list groups that have no unread articles."
1232   (interactive "nList groups on level: \nP")
1233   (gnus-group-list-groups level all level))
1234
1235 (defun gnus-group-prepare-logic (group test)
1236   (or (and gnus-group-listed-groups
1237            (null gnus-group-list-option)
1238            (member group gnus-group-listed-groups))
1239       (cond
1240        ((null gnus-group-listed-groups) test)
1241        ((null gnus-group-list-option) test)
1242        (t (and (member group gnus-group-listed-groups)
1243                (if (eq gnus-group-list-option 'flush)
1244                    (not test)
1245                  test))))))
1246
1247 (defun gnus-group-prepare-flat (level &optional predicate lowest regexp)
1248   "List all newsgroups with unread articles of level LEVEL or lower.
1249 If PREDICATE is a function, list groups that the function returns non-nil;
1250 if it is t, list groups that have no unread articles.
1251 If LOWEST is non-nil, list all newsgroups of level LOWEST or higher.
1252 If REGEXP is a function, list dead groups that the function returns non-nil;
1253 if it is a string, only list groups matching REGEXP."
1254   (set-buffer gnus-group-buffer)
1255   (let ((buffer-read-only nil)
1256         (newsrc (cdr gnus-newsrc-alist))
1257         (lowest (or lowest 1))
1258         (not-in-list (and gnus-group-listed-groups
1259                           (copy-sequence gnus-group-listed-groups)))
1260         info clevel unread group params)
1261     (erase-buffer)
1262     (when (or (< lowest gnus-level-zombie)
1263               gnus-group-listed-groups)
1264       ;; List living groups.
1265       (while newsrc
1266         (setq info (car newsrc)
1267               group (gnus-info-group info)
1268               params (gnus-info-params info)
1269               newsrc (cdr newsrc)
1270               unread (gnus-group-unread group))
1271         (when not-in-list
1272           (setq not-in-list (delete group not-in-list)))
1273         (when (gnus-group-prepare-logic
1274                group
1275                (and unread              ; This group might be unchecked
1276                     (or (not (stringp regexp))
1277                         (string-match regexp group))
1278                     (<= (setq clevel (gnus-info-level info)) level)
1279                     (>= clevel lowest)
1280                     (cond
1281                      ((functionp predicate)
1282                       (funcall predicate info))
1283                      (predicate t)      ; We list all groups?
1284                      (t
1285                       (or
1286                        (if (eq unread t) ; Unactivated?
1287                            gnus-group-list-inactive-groups
1288                                         ; We list unactivated
1289                          (> unread 0))
1290                                         ; We list groups with unread articles
1291                        (and gnus-list-groups-with-ticked-articles
1292                             (cdr (assq 'tick (gnus-info-marks info))))
1293                                         ; And groups with tickeds
1294                        ;; Check for permanent visibility.
1295                        (and gnus-permanently-visible-groups
1296                             (string-match gnus-permanently-visible-groups
1297                                           group))
1298                        (memq 'visible params)
1299                        (cdr (assq 'visible params)))))))
1300           (gnus-group-insert-group-line
1301            group (gnus-info-level info)
1302            (gnus-info-marks info) unread (gnus-info-method info)))))
1303
1304     ;; List dead groups.
1305     (when (or gnus-group-listed-groups
1306               (and (>= level gnus-level-zombie)
1307                    (<= lowest gnus-level-zombie)))
1308       (gnus-group-prepare-flat-list-dead
1309        (setq gnus-zombie-list (sort gnus-zombie-list 'string<))
1310        gnus-level-zombie ?Z
1311        regexp))
1312     (when not-in-list
1313       (dolist (group gnus-zombie-list)
1314         (setq not-in-list (delete group not-in-list))))
1315     (when (or gnus-group-listed-groups
1316               (and (>= level gnus-level-killed) (<= lowest gnus-level-killed)))
1317       (gnus-group-prepare-flat-list-dead
1318        (gnus-union
1319         not-in-list
1320         (setq gnus-killed-list (sort gnus-killed-list 'string<)))
1321        gnus-level-killed ?K regexp))
1322
1323     (gnus-group-set-mode-line)
1324     (setq gnus-group-list-mode (cons level predicate))
1325     (gnus-run-hooks 'gnus-group-prepare-hook)
1326     t))
1327
1328 (defun gnus-group-prepare-flat-list-dead (groups level mark regexp)
1329   ;; List zombies and killed lists somewhat faster, which was
1330   ;; suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.  It does
1331   ;; this by ignoring the group format specification altogether.
1332   (let (group)
1333     (if (> (length groups) gnus-group-listing-limit)
1334         (while groups
1335           (setq group (pop groups))
1336           (when (gnus-group-prepare-logic
1337                  group
1338                  (or (not regexp)
1339                      (and (stringp regexp) (string-match regexp group))
1340                      (and (functionp regexp) (funcall regexp group))))
1341             (gnus-add-text-properties
1342              (point) (prog1 (1+ (point))
1343                        (insert " " mark "     *: "
1344                                (gnus-group-decoded-name group)
1345                                "\n"))
1346              (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
1347                    'gnus-unread t
1348                    'gnus-level level))))
1349       (while groups
1350         (setq group (pop groups))
1351         (when (gnus-group-prepare-logic
1352                group
1353                (or (not regexp)
1354                    (and (stringp regexp) (string-match regexp group))
1355                    (and (functionp regexp) (funcall regexp group))))
1356           (gnus-group-insert-group-line
1357            group level nil
1358            (let ((active (gnus-active group)))
1359              (if active
1360                  (if (zerop (cdr active))
1361                      0
1362                    (- (1+ (cdr active)) (car active)))
1363                nil))
1364            (gnus-method-simplify (gnus-find-method-for-group group))))))))
1365
1366 (defun gnus-group-update-group-line ()
1367   "Update the current line in the group buffer."
1368   (let* ((buffer-read-only nil)
1369          (group (gnus-group-group-name))
1370          (entry (and group (gnus-group-entry group)))
1371          gnus-group-indentation)
1372     (when group
1373       (and entry
1374            (not (gnus-ephemeral-group-p group))
1375            (gnus-dribble-enter
1376             (concat "(gnus-group-set-info '"
1377                     (gnus-prin1-to-string (nth 2 entry))
1378                     ")")))
1379       (setq gnus-group-indentation (gnus-group-group-indentation))
1380       (gnus-delete-line)
1381       (gnus-group-insert-group-line-info group)
1382       (forward-line -1)
1383       (gnus-group-position-point))))
1384
1385 (defun gnus-group-insert-group-line-info (group)
1386   "Insert GROUP on the current line."
1387   (let ((entry (gnus-group-entry group))
1388         (gnus-group-indentation (gnus-group-group-indentation))
1389         active info)
1390     (if entry
1391         (progn
1392           ;; (Un)subscribed group.
1393           (setq info (nth 2 entry))
1394           (gnus-group-insert-group-line
1395            group (gnus-info-level info) (gnus-info-marks info)
1396            (or (car entry) t) (gnus-info-method info)))
1397       ;; This group is dead.
1398       (gnus-group-insert-group-line
1399        group
1400        (if (member group gnus-zombie-list) gnus-level-zombie gnus-level-killed)
1401        nil
1402        (if (setq active (gnus-active group))
1403            (if (zerop (cdr active))
1404                0
1405              (- (1+ (cdr active)) (car active)))
1406          nil)
1407        (gnus-method-simplify (gnus-find-method-for-group group))))))
1408
1409 (defun gnus-number-of-unseen-articles-in-group (group)
1410   (let* ((info (nth 2 (gnus-group-entry group)))
1411          (marked (gnus-info-marks info))
1412          (seen (cdr (assq 'seen marked)))
1413          (active (gnus-active group)))
1414     (if (not active)
1415         0
1416       (length (gnus-uncompress-range
1417                (gnus-range-difference
1418                 (gnus-range-difference (list active) (gnus-info-read info))
1419                 seen))))))
1420
1421 (defun gnus-group-insert-group-line (gnus-tmp-group gnus-tmp-level
1422                                                     gnus-tmp-marked number
1423                                                     gnus-tmp-method)
1424   "Insert a group line in the group buffer."
1425   (let* ((gnus-tmp-method
1426           (gnus-server-get-method gnus-tmp-group gnus-tmp-method))
1427          (group-name-charset (gnus-group-name-charset gnus-tmp-method
1428                                                       gnus-tmp-group))
1429          (gnus-tmp-active (gnus-active gnus-tmp-group))
1430          (gnus-tmp-number-total
1431           (if gnus-tmp-active
1432               (1+ (- (cdr gnus-tmp-active) (car gnus-tmp-active)))
1433             0))
1434          (gnus-tmp-number-of-unread
1435           (if (numberp number) (int-to-string (max 0 number))
1436             "*"))
1437          (gnus-tmp-number-of-read
1438           (if (numberp number)
1439               (int-to-string (max 0 (- gnus-tmp-number-total number)))
1440             "*"))
1441          (gnus-tmp-subscribed
1442           (cond ((<= gnus-tmp-level gnus-level-subscribed) ? )
1443                 ((<= gnus-tmp-level gnus-level-unsubscribed) ?U)
1444                 ((= gnus-tmp-level gnus-level-zombie) ?Z)
1445                 (t ?K)))
1446          (gnus-tmp-qualified-group
1447           (gnus-group-name-decode (gnus-group-real-name gnus-tmp-group)
1448                                   group-name-charset))
1449          (gnus-tmp-comment
1450           (or (gnus-group-get-parameter gnus-tmp-group 'comment t)
1451               gnus-tmp-group))
1452          (gnus-tmp-newsgroup-description
1453           (if gnus-description-hashtb
1454               (or (gnus-group-name-decode
1455                    (gnus-gethash gnus-tmp-group gnus-description-hashtb)
1456                    group-name-charset) "")
1457             ""))
1458          (gnus-tmp-moderated
1459           (if (and gnus-moderated-hashtb
1460                    (gnus-gethash gnus-tmp-group gnus-moderated-hashtb))
1461               ?m ? ))
1462          (gnus-tmp-moderated-string
1463           (if (eq gnus-tmp-moderated ?m) "(m)" ""))
1464          (gnus-tmp-group-icon "==&&==")
1465          (gnus-tmp-news-server (or (cadr gnus-tmp-method) ""))
1466          (gnus-tmp-news-method (or (car gnus-tmp-method) ""))
1467          (gnus-tmp-news-method-string
1468           (if gnus-tmp-method
1469               (format "(%s:%s)" (car gnus-tmp-method)
1470                       (cadr gnus-tmp-method)) ""))
1471          (gnus-tmp-marked-mark
1472           (if (and (numberp number)
1473                    (zerop number)
1474                    (cdr (assq 'tick gnus-tmp-marked)))
1475               ?* ? ))
1476          (gnus-tmp-summary-live
1477           (if (and (not gnus-group-is-exiting-p)
1478                    (gnus-buffer-live-p (gnus-summary-buffer-name
1479                                         gnus-tmp-group)))
1480               ?* ? ))
1481          (gnus-tmp-process-marked
1482           (if (member gnus-tmp-group gnus-group-marked)
1483               gnus-process-mark ? ))
1484          (buffer-read-only nil)
1485          header gnus-tmp-header)        ; passed as parameter to user-funcs.
1486     (beginning-of-line)
1487     (gnus-add-text-properties
1488      (point)
1489      (prog1 (1+ (point))
1490        ;; Insert the text.
1491        (let ((gnus-tmp-group (gnus-group-name-decode
1492                               gnus-tmp-group group-name-charset)))
1493          (eval gnus-group-line-format-spec)))
1494      `(gnus-group ,(gnus-intern-safe gnus-tmp-group gnus-active-hashtb)
1495                   gnus-unread ,(if (numberp number)
1496                                    (string-to-int gnus-tmp-number-of-unread)
1497                                  t)
1498                   gnus-marked ,gnus-tmp-marked-mark
1499                   gnus-indentation ,gnus-group-indentation
1500                   gnus-level ,gnus-tmp-level))
1501     (forward-line -1)
1502     (when (inline (gnus-visual-p 'group-highlight 'highlight))
1503       (gnus-run-hooks 'gnus-group-update-hook))
1504     (forward-line)
1505     ;; Allow XEmacs to remove front-sticky text properties.
1506     (gnus-group-remove-excess-properties)))
1507
1508 (defun gnus-group-highlight-line ()
1509   "Highlight the current line according to `gnus-group-highlight'."
1510   (let* ((list gnus-group-highlight)
1511          (p (point))
1512          (end (point-at-eol))
1513          ;; now find out where the line starts and leave point there.
1514          (beg (progn (beginning-of-line) (point)))
1515          (group (gnus-group-group-name))
1516          (entry (gnus-group-entry group))
1517          (unread (if (numberp (car entry)) (car entry) 0))
1518          (active (gnus-active group))
1519          (total (if active (1+ (- (cdr active) (car active))) 0))
1520          (info (nth 2 entry))
1521          (method (inline (gnus-server-get-method group (gnus-info-method info))))
1522          (marked (gnus-info-marks info))
1523          (mailp (apply 'append
1524                        (mapcar
1525                         (lambda (x)
1526                           (memq x (assoc (symbol-name
1527                                           (car (or method gnus-select-method)))
1528                                          gnus-valid-select-methods)))
1529                         '(mail post-mail))))
1530          (level (or (gnus-info-level info) gnus-level-killed))
1531          (score (or (gnus-info-score info) 0))
1532          (ticked (gnus-range-length (cdr (assq 'tick marked))))
1533          (group-age (gnus-group-timestamp-delta group))
1534          (inhibit-read-only t))
1535     ;; Eval the cars of the lists until we find a match.
1536     (while (and list
1537                 (not (eval (caar list))))
1538       (setq list (cdr list)))
1539     (let ((face (cdar list)))
1540       (unless (eq face (get-text-property beg 'face))
1541         (gnus-put-text-property-excluding-characters-with-faces
1542          beg end 'face
1543          (setq face (if (boundp face) (symbol-value face) face)))
1544         (gnus-extent-start-open beg)))
1545     (goto-char p)))
1546
1547 (defun gnus-group-update-group (group &optional visible-only)
1548   "Update all lines where GROUP appear.
1549 If VISIBLE-ONLY is non-nil, the group won't be displayed if it isn't
1550 already."
1551   ;; Can't use `save-excursion' here, so we do it manually.
1552   (let ((buf (current-buffer))
1553         mark)
1554     (set-buffer gnus-group-buffer)
1555     (setq mark (point-marker))
1556     ;; The buffer may be narrowed.
1557     (save-restriction
1558       (widen)
1559       (let ((ident (gnus-intern-safe group gnus-active-hashtb))
1560             (loc (point-min))
1561             found buffer-read-only)
1562         ;; Enter the current status into the dribble buffer.
1563         (let ((entry (gnus-group-entry group)))
1564           (when (and entry
1565                      (not (gnus-ephemeral-group-p group)))
1566             (gnus-dribble-enter
1567              (concat "(gnus-group-set-info '"
1568                      (gnus-prin1-to-string (nth 2 entry))
1569                      ")"))))
1570         ;; Find all group instances.  If topics are in use, each group
1571         ;; may be listed in more than once.
1572         (while (setq loc (text-property-any
1573                           loc (point-max) 'gnus-group ident))
1574           (setq found t)
1575           (goto-char loc)
1576           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1577             (gnus-delete-line)
1578             (gnus-group-insert-group-line-info group)
1579             (save-excursion
1580               (forward-line -1)
1581               (gnus-run-hooks 'gnus-group-update-group-hook)))
1582           (setq loc (1+ loc)))
1583         (unless (or found visible-only)
1584           ;; No such line in the buffer, find out where it's supposed to
1585           ;; go, and insert it there (or at the end of the buffer).
1586           (if gnus-goto-missing-group-function
1587               (funcall gnus-goto-missing-group-function group)
1588             (let ((entry (cddr (gnus-group-entry group))))
1589               (while (and entry (car entry)
1590                           (not
1591                            (gnus-goto-char
1592                             (text-property-any
1593                              (point-min) (point-max)
1594                              'gnus-group (gnus-intern-safe
1595                                           (caar entry) gnus-active-hashtb)))))
1596                 (setq entry (cdr entry)))
1597               (or entry (goto-char (point-max)))))
1598           ;; Finally insert the line.
1599           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1600             (gnus-group-insert-group-line-info group)
1601             (save-excursion
1602               (forward-line -1)
1603               (gnus-run-hooks 'gnus-group-update-group-hook))))
1604         (when gnus-group-update-group-function
1605           (funcall gnus-group-update-group-function group))
1606         (gnus-group-set-mode-line)))
1607     (goto-char mark)
1608     (set-marker mark nil)
1609     (set-buffer buf)))
1610
1611 (defun gnus-group-set-mode-line ()
1612   "Update the mode line in the group buffer."
1613   (when (memq 'group gnus-updated-mode-lines)
1614     ;; Yes, we want to keep this mode line updated.
1615     (save-excursion
1616       (set-buffer gnus-group-buffer)
1617       (let* ((gformat (or gnus-group-mode-line-format-spec
1618                           (gnus-set-format 'group-mode)))
1619              (gnus-tmp-news-server (cadr gnus-select-method))
1620              (gnus-tmp-news-method (car gnus-select-method))
1621              (gnus-tmp-colon (if (equal gnus-tmp-news-server "") "" ":"))
1622              (max-len 60)
1623              gnus-tmp-header            ;Dummy binding for user-defined formats
1624              ;; Get the resulting string.
1625              (modified
1626               (and gnus-dribble-buffer
1627                    (buffer-name gnus-dribble-buffer)
1628                    (buffer-modified-p gnus-dribble-buffer)
1629                    (save-excursion
1630                      (set-buffer gnus-dribble-buffer)
1631                      (not (zerop (buffer-size))))))
1632              (mode-string (eval gformat)))
1633         ;; Say whether the dribble buffer has been modified.
1634         (setq mode-line-modified
1635               (if modified (car gnus-mode-line-modified)
1636                 (cdr gnus-mode-line-modified)))
1637         ;; If the line is too long, we chop it off.
1638         (when (> (length mode-string) max-len)
1639           (setq mode-string (substring mode-string 0 (- max-len 4))))
1640         (prog1
1641             (setq mode-line-buffer-identification
1642                   (gnus-mode-line-buffer-identification
1643                    (list mode-string)))
1644           (set-buffer-modified-p modified))))))
1645
1646 (defun gnus-group-group-name ()
1647   "Get the name of the newsgroup on the current line."
1648   (let ((group (get-text-property (point-at-bol) 'gnus-group)))
1649     (when group
1650       (symbol-name group))))
1651
1652 (defun gnus-group-group-level ()
1653   "Get the level of the newsgroup on the current line."
1654   (get-text-property (point-at-bol) 'gnus-level))
1655
1656 (defun gnus-group-group-indentation ()
1657   "Get the indentation of the newsgroup on the current line."
1658   (or (get-text-property (point-at-bol) 'gnus-indentation)
1659       (and gnus-group-indentation-function
1660            (funcall gnus-group-indentation-function))
1661       ""))
1662
1663 (defun gnus-group-group-unread ()
1664   "Get the number of unread articles of the newsgroup on the current line."
1665   (get-text-property (point-at-bol) 'gnus-unread))
1666
1667 (defun gnus-group-new-mail (group)
1668   (if (nnmail-new-mail-p (gnus-group-real-name group))
1669       gnus-new-mail-mark
1670     ? ))
1671
1672 (defun gnus-group-level (group)
1673   "Return the estimated level of GROUP."
1674   (or (gnus-info-level (gnus-get-info group))
1675       (and (member group gnus-zombie-list) gnus-level-zombie)
1676       gnus-level-killed))
1677
1678 (defun gnus-group-search-forward (&optional backward all level first-too)
1679   "Find the next newsgroup with unread articles.
1680 If BACKWARD is non-nil, find the previous newsgroup instead.
1681 If ALL is non-nil, just find any newsgroup.
1682 If LEVEL is non-nil, find group with level LEVEL, or higher if no such
1683 group exists.
1684 If FIRST-TOO, the current line is also eligible as a target."
1685   (let ((way (if backward -1 1))
1686         (low gnus-level-killed)
1687         (beg (point))
1688         pos found lev)
1689     (if (and backward (progn (beginning-of-line)) (bobp))
1690         nil
1691       (unless first-too
1692         (forward-line way))
1693       (while (and
1694               (not (eobp))
1695               (not (setq
1696                     found
1697                     (and
1698                      (get-text-property (point) 'gnus-group)
1699                      (or all
1700                          (and
1701                           (let ((unread
1702                                  (get-text-property (point) 'gnus-unread)))
1703                             (and (numberp unread) (> unread 0)))
1704                           (setq lev (get-text-property (point)
1705                                                        'gnus-level))
1706                           (<= lev gnus-level-subscribed)))
1707                      (or (not level)
1708                          (and (setq lev (get-text-property (point)
1709                                                            'gnus-level))
1710                               (or (= lev level)
1711                                   (and (< lev low)
1712                                        (< level lev)
1713                                        (progn
1714                                          (setq low lev)
1715                                          (setq pos (point))
1716                                          nil))))))))
1717               (zerop (forward-line way)))))
1718     (if found
1719         (progn (gnus-group-position-point) t)
1720       (goto-char (or pos beg))
1721       (and pos t))))
1722
1723 (defun gnus-total-fetched-for (group)
1724   (let* ((size-in-cache (or (gnus-cache-total-fetched-for group) 0))
1725          (size-in-agent (or (gnus-agent-total-fetched-for group) 0))
1726          (size (+ size-in-cache size-in-agent))
1727          (suffix '("B" "K" "M" "G"))
1728          (scale 1024.0)
1729          (cutoff (* 10 scale)))
1730     (while (> size cutoff)
1731       (setq size (/ size scale)
1732             suffix (cdr suffix)))
1733     (format "%5.1f%s" size (car suffix))))
1734
1735 ;;; Gnus group mode commands
1736
1737 ;; Group marking.
1738
1739 (defun gnus-group-mark-line-p ()
1740   (save-excursion
1741     (beginning-of-line)
1742     (forward-char (or (cdr (assq 'process gnus-group-mark-positions)) 2))
1743     (eq (char-after) gnus-process-mark)))
1744
1745 (defun gnus-group-mark-group (n &optional unmark no-advance)
1746   "Mark the current group."
1747   (interactive "p")
1748   (let ((buffer-read-only nil)
1749         group)
1750     (while (and (> n 0)
1751                 (not (eobp)))
1752       (when (setq group (gnus-group-group-name))
1753         ;; Go to the mark position.
1754         (beginning-of-line)
1755         (forward-char (or (cdr (assq 'process gnus-group-mark-positions)) 2))
1756         (delete-char 1)
1757         (if unmark
1758             (progn
1759               (setq gnus-group-marked (delete group gnus-group-marked))
1760               (insert-char ? 1 t))
1761            (setq gnus-group-marked
1762                  (cons group (delete group gnus-group-marked)))
1763            (insert-char gnus-process-mark 1 t)))
1764       (unless no-advance
1765         (gnus-group-next-group 1))
1766       (decf n))
1767     (gnus-summary-position-point)
1768     n))
1769
1770 (defun gnus-group-unmark-group (n)
1771   "Remove the mark from the current group."
1772   (interactive "p")
1773   (gnus-group-mark-group n 'unmark)
1774   (gnus-group-position-point))
1775
1776 (defun gnus-group-unmark-all-groups ()
1777   "Unmark all groups."
1778   (interactive)
1779   (let ((groups gnus-group-marked))
1780     (save-excursion
1781       (while groups
1782         (gnus-group-remove-mark (pop groups)))))
1783   (gnus-group-position-point))
1784
1785 (defun gnus-group-mark-region (unmark beg end)
1786   "Mark all groups between point and mark.
1787 If UNMARK, remove the mark instead."
1788   (interactive "P\nr")
1789   (let ((num (count-lines beg end)))
1790     (save-excursion
1791       (goto-char beg)
1792       (- num (gnus-group-mark-group num unmark)))))
1793
1794 (defun gnus-group-mark-buffer (&optional unmark)
1795   "Mark all groups in the buffer.
1796 If UNMARK, remove the mark instead."
1797   (interactive "P")
1798   (gnus-group-mark-region unmark (point-min) (point-max)))
1799
1800 (defun gnus-group-mark-regexp (regexp)
1801   "Mark all groups that match some regexp."
1802   (interactive "sMark (regexp): ")
1803   (let ((alist (cdr gnus-newsrc-alist))
1804         group)
1805     (save-excursion
1806       (while alist
1807         (when (string-match regexp (setq group (gnus-info-group (pop alist))))
1808           (gnus-group-jump-to-group group)
1809           (gnus-group-set-mark group)))))
1810   (gnus-group-position-point))
1811
1812 (defun gnus-group-remove-mark (group &optional test-marked)
1813   "Remove the process mark from GROUP and move point there.
1814 Return nil if the group isn't displayed."
1815   (if (gnus-group-goto-group group nil test-marked)
1816       (save-excursion
1817         (gnus-group-mark-group 1 'unmark t)
1818         t)
1819     (setq gnus-group-marked
1820           (delete group gnus-group-marked))
1821     nil))
1822
1823 (defun gnus-group-set-mark (group)
1824   "Set the process mark on GROUP."
1825   (if (gnus-group-goto-group group)
1826       (save-excursion
1827         (gnus-group-mark-group 1 nil t))
1828     (setq gnus-group-marked (cons group (delete group gnus-group-marked)))))
1829
1830 (defun gnus-group-universal-argument (arg &optional groups func)
1831   "Perform any command on all groups according to the process/prefix convention."
1832   (interactive "P")
1833   (if (eq (setq func (or func
1834                          (key-binding
1835                           (read-key-sequence
1836                            (substitute-command-keys
1837                             "\\<gnus-group-mode-map>\\[gnus-group-universal-argument]")))))
1838           'undefined)
1839       (gnus-error 1 "Undefined key")
1840     (gnus-group-iterate arg
1841       (lambda (group)
1842         (command-execute func))))
1843   (gnus-group-position-point))
1844
1845 (defun gnus-group-process-prefix (n)
1846   "Return a list of groups to work on.
1847 Take into consideration N (the prefix) and the list of marked groups."
1848   (cond
1849    (n
1850     (setq n (prefix-numeric-value n))
1851     ;; There is a prefix, so we return a list of the N next
1852     ;; groups.
1853     (let ((way (if (< n 0) -1 1))
1854           (n (abs n))
1855           group groups)
1856       (save-excursion
1857         (while (> n 0)
1858           (if (setq group (gnus-group-group-name))
1859               (push group groups))
1860           (setq n (1- n))
1861           (gnus-group-next-group way)))
1862       (nreverse groups)))
1863    ((and (gnus-region-active-p) (mark))
1864     ;; Work on the region between point and mark.
1865     (let ((max (max (point) (mark)))
1866           groups)
1867       (save-excursion
1868         (goto-char (min (point) (mark)))
1869         (while
1870             (and
1871              (push (gnus-group-group-name) groups)
1872              (zerop (gnus-group-next-group 1))
1873              (< (point) max)))
1874         (nreverse groups))))
1875    (gnus-group-marked
1876     ;; No prefix, but a list of marked articles.
1877     (reverse gnus-group-marked))
1878    (t
1879     ;; Neither marked articles or a prefix, so we return the
1880     ;; current group.
1881     (let ((group (gnus-group-group-name)))
1882       (and group (list group))))))
1883
1884 ;;; !!!Surely gnus-group-iterate should be a macro instead?  I can't
1885 ;;; imagine why I went through these contortions...
1886 (eval-and-compile
1887   (let ((function (make-symbol "gnus-group-iterate-function"))
1888         (window (make-symbol "gnus-group-iterate-window"))
1889         (groups (make-symbol "gnus-group-iterate-groups"))
1890         (group (make-symbol "gnus-group-iterate-group")))
1891     (eval
1892      `(defun gnus-group-iterate (arg ,function)
1893         "Iterate FUNCTION over all process/prefixed groups.
1894 FUNCTION will be called with the group name as the parameter
1895 and with point over the group in question."
1896         (let ((,groups (gnus-group-process-prefix arg))
1897               (,window (selected-window))
1898               ,group)
1899           (while ,groups
1900             (setq ,group (car ,groups)
1901                   ,groups (cdr ,groups))
1902             (select-window ,window)
1903             (gnus-group-remove-mark ,group)
1904             (save-selected-window
1905               (save-excursion
1906                 (funcall ,function ,group)))))))))
1907
1908 (put 'gnus-group-iterate 'lisp-indent-function 1)
1909
1910 ;; Selecting groups.
1911
1912 (defun gnus-group-read-group (&optional all no-article group select-articles)
1913   "Read news in this newsgroup.
1914 If the prefix argument ALL is non-nil, already read articles become
1915 readable.  IF ALL is a number, fetch this number of articles.  If the
1916 optional argument NO-ARTICLE is non-nil, no article will be
1917 auto-selected upon group entry.  If GROUP is non-nil, fetch that
1918 group."
1919   (interactive "P")
1920   (let ((no-display (eq all 0))
1921         (group (or group (gnus-group-group-name)))
1922         number active marked entry)
1923     (when (eq all 0)
1924       (setq all nil))
1925     (unless group
1926       (error "No group on current line"))
1927     (setq marked (gnus-info-marks
1928                   (nth 2 (setq entry (gnus-group-entry group)))))
1929     ;; This group might be a dead group.  In that case we have to get
1930     ;; the number of unread articles from `gnus-active-hashtb'.
1931     (setq number
1932           (cond ((numberp all) all)
1933                 (entry (car entry))
1934                 ((setq active (gnus-active group))
1935                  (- (1+ (cdr active)) (car active)))))
1936     (gnus-summary-read-group
1937      group (or all (and (numberp number)
1938                         (zerop (+ number (gnus-range-length
1939                                           (cdr (assq 'tick marked)))
1940                                   (gnus-range-length
1941                                    (cdr (assq 'dormant marked)))))))
1942      no-article nil no-display nil select-articles)))
1943
1944 (defun gnus-group-select-group (&optional all)
1945   "Select this newsgroup.
1946 No article is selected automatically.
1947 If the group is opened, just switch the summary buffer.
1948 If ALL is non-nil, already read articles become readable.
1949 If ALL is a positive number, fetch this number of the latest
1950 articles in the group.
1951 If ALL is a negative number, fetch this number of the earliest
1952 articles in the group."
1953   (interactive "P")
1954   (when (and (eobp) (not (gnus-group-group-name)))
1955     (forward-line -1))
1956   (gnus-group-read-group all t))
1957
1958 (defun gnus-group-quick-select-group (&optional all)
1959   "Select the current group \"quickly\".
1960 This means that no highlighting or scoring will be performed.
1961 If ALL (the prefix argument) is 0, don't even generate the summary
1962 buffer.
1963
1964 This might be useful if you want to toggle threading
1965 before entering the group."
1966   (interactive "P")
1967   (require 'gnus-score)
1968   (let (gnus-visual
1969         gnus-score-find-score-files-function
1970         gnus-home-score-file
1971         gnus-apply-kill-hook
1972         gnus-summary-expunge-below)
1973     (gnus-group-read-group all t)))
1974
1975 (defun gnus-group-visible-select-group (&optional all)
1976   "Select the current group without hiding any articles."
1977   (interactive "P")
1978   (let ((gnus-inhibit-limiting t))
1979     (gnus-group-read-group all t)))
1980
1981 (defun gnus-group-select-group-ephemerally ()
1982   "Select the current group without doing any processing whatsoever.
1983 You will actually be entered into a group that's a copy of
1984 the current group; no changes you make while in this group will
1985 be permanent."
1986   (interactive)
1987   (require 'gnus-score)
1988   (let* (gnus-visual
1989          gnus-score-find-score-files-function gnus-apply-kill-hook
1990          gnus-summary-expunge-below gnus-show-threads gnus-suppress-duplicates
1991          gnus-summary-mode-hook gnus-select-group-hook
1992          (group (gnus-group-group-name))
1993          (method (gnus-find-method-for-group group)))
1994     (gnus-group-read-ephemeral-group
1995      (gnus-group-prefixed-name group method) method)))
1996
1997 ;;;###autoload
1998 (defun gnus-fetch-group (group &optional articles)
1999   "Start Gnus if necessary and enter GROUP.
2000 Returns whether the fetching was successful or not."
2001   (interactive (list (gnus-group-completing-read-group-name
2002                       "Group name: " gnus-active-hashtb)))
2003   (unless (get-buffer gnus-group-buffer)
2004     (gnus-no-server))
2005   (gnus-group-read-group articles nil group))
2006
2007 ;;;###autoload
2008 (defun gnus-fetch-group-other-frame (group)
2009   "Pop up a frame and enter GROUP."
2010   (interactive "P")
2011   (let ((window (get-buffer-window gnus-group-buffer)))
2012     (cond (window
2013            (select-frame (window-frame window)))
2014           ((= (length (frame-list)) 1)
2015            (select-frame (make-frame)))
2016           (t
2017            (other-frame 1))))
2018   (gnus-fetch-group group))
2019
2020 (defvar gnus-ephemeral-group-server 0)
2021
2022 (defcustom gnus-large-ephemeral-newsgroup 200
2023   "The number of articles which indicates a large ephemeral newsgroup.
2024 Same as `gnus-large-newsgroup', but only used for ephemeral newsgroups.
2025
2026 If the number of articles in a newsgroup is greater than this value,
2027 confirmation is required for selecting the newsgroup.  If it is nil, no
2028 confirmation is required."
2029   :group 'gnus-group-select
2030   :type '(choice (const :tag "No limit" nil)
2031                  integer))
2032
2033 (defcustom gnus-fetch-old-ephemeral-headers nil
2034   "Same as `gnus-fetch-old-headers', but only used for ephemeral newsgroups."
2035   :group 'gnus-thread
2036   :type '(choice (const :tag "off" nil)
2037                  (const some)
2038                  number
2039                  (sexp :menu-tag "other" t)))
2040
2041 ;; Enter a group that is not in the group buffer.  Non-nil is returned
2042 ;; if selection was successful.
2043 (defun gnus-group-read-ephemeral-group (group method &optional activate
2044                                               quit-config request-only
2045                                               select-articles
2046                                               parameters)
2047   "Read GROUP from METHOD as an ephemeral group.
2048 If ACTIVATE, request the group first.
2049 If QUIT-CONFIG, use that window configuration when exiting from the
2050 ephemeral group.
2051 If REQUEST-ONLY, don't actually read the group; just request it.
2052 If SELECT-ARTICLES, only select those articles.
2053 If PARAMETERS, use those as the group parameters.
2054
2055 Return the name of the group if selection was successful."
2056   (interactive
2057    (list
2058     ;; (gnus-read-group "Group name: ")
2059     (completing-read
2060      "Group: " gnus-active-hashtb
2061      nil nil nil
2062      'gnus-group-history)
2063     (gnus-read-method "From method: ")))
2064   ;; Transform the select method into a unique server.
2065   (when (stringp method)
2066     (setq method (gnus-server-to-method method)))
2067   (setq method
2068         `(,(car method) ,(concat (cadr method) "-ephemeral")
2069           (,(intern (format "%s-address" (car method))) ,(cadr method))
2070           ,@(cddr method)))
2071   (let ((group (if (gnus-group-foreign-p group) group
2072                  (gnus-group-prefixed-name (gnus-group-real-name group)
2073                                            method))))
2074     (gnus-sethash
2075      group
2076      `(-1 nil (,group
2077                ,gnus-level-default-subscribed nil nil ,method
2078                ,(cons
2079                  (if quit-config
2080                      (cons 'quit-config quit-config)
2081                    (cons 'quit-config
2082                          (cons gnus-summary-buffer
2083                                gnus-current-window-configuration)))
2084                  parameters)))
2085      gnus-newsrc-hashtb)
2086     (push method gnus-ephemeral-servers)
2087     (set-buffer gnus-group-buffer)
2088     (unless (gnus-check-server method)
2089       (error "Unable to contact server: %s" (gnus-status-message method)))
2090     (when activate
2091       (gnus-activate-group group 'scan)
2092       (unless (gnus-request-group group)
2093         (error "Couldn't request group: %s"
2094                (nnheader-get-report (car method)))))
2095     (if request-only
2096         group
2097       (condition-case ()
2098           (when (let ((gnus-large-newsgroup gnus-large-ephemeral-newsgroup)
2099                       (gnus-fetch-old-headers
2100                        gnus-fetch-old-ephemeral-headers))
2101                   (gnus-group-read-group t t group select-articles))
2102             group)
2103         ;;(error nil)
2104         (quit
2105          (message "Quit reading the ephemeral group")
2106          nil)))))
2107
2108 (defun gnus-group-jump-to-group (group &optional prompt)
2109   "Jump to newsgroup GROUP.
2110
2111 If PROMPT (the prefix) is a number, use the prompt specified in
2112 `gnus-group-jump-to-group-prompt'."
2113   (interactive
2114    (list (mm-string-make-unibyte
2115           (completing-read
2116            "Group: " gnus-active-hashtb nil
2117            (gnus-read-active-file-p)
2118            (if current-prefix-arg
2119                (cdr (assq current-prefix-arg gnus-group-jump-to-group-prompt))
2120              (or (and (stringp gnus-group-jump-to-group-prompt)
2121                       gnus-group-jump-to-group-prompt)
2122                  (let ((p (cdr (assq 0 gnus-group-jump-to-group-prompt))))
2123                    (and (stringp p) p))))
2124            'gnus-group-history))))
2125
2126   (when (equal group "")
2127     (error "Empty group name"))
2128
2129   (unless (gnus-ephemeral-group-p group)
2130     ;; Either go to the line in the group buffer...
2131     (unless (gnus-group-goto-group group)
2132       ;; ... or insert the line.
2133       (gnus-group-update-group group)
2134       (gnus-group-goto-group group)))
2135   ;; Adjust cursor point.
2136   (gnus-group-position-point))
2137
2138 (defun gnus-group-goto-group (group &optional far test-marked)
2139   "Goto to newsgroup GROUP.
2140 If FAR, it is likely that the group is not on the current line.
2141 If TEST-MARKED, the line must be marked."
2142   (when group
2143     (beginning-of-line)
2144     (cond
2145      ;; It's quite likely that we are on the right line, so
2146      ;; we check the current line first.
2147      ((and (not far)
2148            (eq (get-text-property (point) 'gnus-group)
2149                (gnus-intern-safe group gnus-active-hashtb))
2150            (or (not test-marked) (gnus-group-mark-line-p)))
2151       (point))
2152      ;; Previous and next line are also likely, so we check them as well.
2153      ((and (not far)
2154            (save-excursion
2155              (forward-line -1)
2156              (and (eq (get-text-property (point) 'gnus-group)
2157                       (gnus-intern-safe group gnus-active-hashtb))
2158                   (or (not test-marked) (gnus-group-mark-line-p)))))
2159       (forward-line -1)
2160       (point))
2161      ((and (not far)
2162            (save-excursion
2163              (forward-line 1)
2164              (and (eq (get-text-property (point) 'gnus-group)
2165                       (gnus-intern-safe group gnus-active-hashtb))
2166                   (or (not test-marked) (gnus-group-mark-line-p)))))
2167       (forward-line 1)
2168       (point))
2169      (test-marked
2170       (goto-char (point-min))
2171       (let (found)
2172         (while (and (not found)
2173                     (gnus-goto-char
2174                      (text-property-any
2175                       (point) (point-max)
2176                       'gnus-group
2177                       (gnus-intern-safe group gnus-active-hashtb))))
2178           (if (gnus-group-mark-line-p)
2179               (setq found t)
2180             (forward-line 1)))
2181         found))
2182      (t
2183       ;; Search through the entire buffer.
2184       (gnus-goto-char
2185        (text-property-any
2186         (point-min) (point-max)
2187         'gnus-group (gnus-intern-safe group gnus-active-hashtb)))))))
2188
2189 (defun gnus-group-next-group (n &optional silent)
2190   "Go to next N'th newsgroup.
2191 If N is negative, search backward instead.
2192 Returns the difference between N and the number of skips actually
2193 done."
2194   (interactive "p")
2195   (gnus-group-next-unread-group n t nil silent))
2196
2197 (defun gnus-group-next-unread-group (n &optional all level silent)
2198   "Go to next N'th unread newsgroup.
2199 If N is negative, search backward instead.
2200 If ALL is non-nil, choose any newsgroup, unread or not.
2201 If LEVEL is non-nil, choose the next group with level LEVEL, or, if no
2202 such group can be found, the next group with a level higher than
2203 LEVEL.
2204 Returns the difference between N and the number of skips actually
2205 made."
2206   (interactive "p")
2207   (let ((backward (< n 0))
2208         (n (abs n)))
2209     (while (and (> n 0)
2210                 (gnus-group-search-forward
2211                  backward (or (not gnus-group-goto-unread) all) level))
2212       (setq n (1- n)))
2213     (when (and (/= 0 n)
2214                (not silent))
2215       (gnus-message 7 "No more%s newsgroups%s" (if all "" " unread")
2216                     (if level " on this level or higher" "")))
2217     n))
2218
2219 (defun gnus-group-prev-group (n)
2220   "Go to previous N'th newsgroup.
2221 Returns the difference between N and the number of skips actually
2222 done."
2223   (interactive "p")
2224   (gnus-group-next-unread-group (- n) t))
2225
2226 (defun gnus-group-prev-unread-group (n)
2227   "Go to previous N'th unread newsgroup.
2228 Returns the difference between N and the number of skips actually
2229 done."
2230   (interactive "p")
2231   (gnus-group-next-unread-group (- n)))
2232
2233 (defun gnus-group-next-unread-group-same-level (n)
2234   "Go to next N'th unread newsgroup on the same level.
2235 If N is negative, search backward instead.
2236 Returns the difference between N and the number of skips actually
2237 done."
2238   (interactive "p")
2239   (gnus-group-next-unread-group n t (gnus-group-group-level))
2240   (gnus-group-position-point))
2241
2242 (defun gnus-group-prev-unread-group-same-level (n)
2243   "Go to next N'th unread newsgroup on the same level.
2244 Returns the difference between N and the number of skips actually
2245 done."
2246   (interactive "p")
2247   (gnus-group-next-unread-group (- n) t (gnus-group-group-level))
2248   (gnus-group-position-point))
2249
2250 (defun gnus-group-best-unread-group (&optional exclude-group)
2251   "Go to the group with the highest level.
2252 If EXCLUDE-GROUP, do not go to that group."
2253   (interactive)
2254   (goto-char (point-min))
2255   (let ((best 100000)
2256         unread best-point)
2257     (while (not (eobp))
2258       (setq unread (get-text-property (point) 'gnus-unread))
2259       (when (and (numberp unread) (> unread 0))
2260         (when (and (get-text-property (point) 'gnus-level)
2261                    (< (get-text-property (point) 'gnus-level) best)
2262                    (or (not exclude-group)
2263                        (not (equal exclude-group (gnus-group-group-name)))))
2264           (setq best (get-text-property (point) 'gnus-level))
2265           (setq best-point (point))))
2266       (forward-line 1))
2267     (when best-point
2268       (goto-char best-point))
2269     (gnus-group-position-point)
2270     (and best-point (gnus-group-group-name))))
2271
2272 (defun gnus-group-first-unread-group ()
2273   "Go to the first group with unread articles."
2274   (interactive)
2275   (prog1
2276       (let ((opoint (point))
2277             unread)
2278         (goto-char (point-min))
2279         (if (or (eq (setq unread (gnus-group-group-unread)) t) ; Not active.
2280                 (and (numberp unread)   ; Not a topic.
2281                      (not (zerop unread))) ; Has unread articles.
2282                 (zerop (gnus-group-next-unread-group 1))) ; Next unread group.
2283             (point)                     ; Success.
2284           (goto-char opoint)
2285           nil))                         ; Not success.
2286     (gnus-group-position-point)))
2287
2288 (defun gnus-group-enter-server-mode ()
2289   "Jump to the server buffer."
2290   (interactive)
2291   (gnus-enter-server-buffer))
2292
2293 (defun gnus-group-make-group (name &optional method address args)
2294   "Add a new newsgroup.
2295 The user will be prompted for a NAME, for a select METHOD, and an
2296 ADDRESS."
2297   (interactive
2298    (list
2299     (gnus-read-group "Group name: ")
2300     (gnus-read-method "From method: ")))
2301
2302   (when (stringp method)
2303     (setq method (or (gnus-server-to-method method) method)))
2304   (let* ((meth (gnus-method-simplify
2305                 (when (and method
2306                            (not (gnus-server-equal method gnus-select-method)))
2307                   (if address (list (intern method) address)
2308                     method))))
2309          (nname (if method (gnus-group-prefixed-name name meth) name))
2310          backend info)
2311     (when (gnus-group-entry nname)
2312       (error "Group %s already exists" nname))
2313     ;; Subscribe to the new group.
2314     (gnus-group-change-level
2315      (setq info (list t nname gnus-level-default-subscribed nil nil meth))
2316      gnus-level-default-subscribed gnus-level-killed
2317      (and (gnus-group-group-name)
2318           (gnus-group-entry (gnus-group-group-name)))
2319      t)
2320     ;; Make it active.
2321     (gnus-set-active nname (cons 1 0))
2322     (unless (gnus-ephemeral-group-p name)
2323       (gnus-dribble-enter
2324        (concat "(gnus-group-set-info '"
2325                (gnus-prin1-to-string (cdr info)) ")")))
2326     ;; Insert the line.
2327     (gnus-group-insert-group-line-info nname)
2328     (forward-line -1)
2329     (gnus-group-position-point)
2330
2331     ;; Load the back end and try to make the back end create
2332     ;; the group as well.
2333     (when (assoc (symbol-name (setq backend (car (gnus-server-get-method
2334                                                   nil meth))))
2335                  gnus-valid-select-methods)
2336       (require backend))
2337     (gnus-check-server meth)
2338     (when (gnus-check-backend-function 'request-create-group nname)
2339       (unless (gnus-request-create-group nname nil args)
2340         (error "Could not create group on server: %s"
2341                (nnheader-get-report backend))))
2342     t))
2343
2344 (defun gnus-group-delete-groups (&optional arg)
2345   "Delete the current group.  Only meaningful with editable groups."
2346   (interactive "P")
2347   (let ((n (length (gnus-group-process-prefix arg))))
2348     (when (gnus-yes-or-no-p
2349            (if (= n 1)
2350                "Delete this 1 group? "
2351              (format "Delete these %d groups? " n)))
2352       (gnus-group-iterate arg
2353         (lambda (group)
2354           (gnus-group-delete-group group nil t))))))
2355
2356 (defun gnus-group-delete-group (group &optional force no-prompt)
2357   "Delete the current group.  Only meaningful with editable groups.
2358 If FORCE (the prefix) is non-nil, all the articles in the group will
2359 be deleted.  This is \"deleted\" as in \"removed forever from the face
2360 of the Earth\".  There is no undo.  The user will be prompted before
2361 doing the deletion.
2362 Note that you also have to specify FORCE if you want the group to
2363 be removed from the server, even when it's empty."
2364   (interactive
2365    (list (gnus-group-group-name)
2366          current-prefix-arg))
2367   (unless group
2368     (error "No group to delete"))
2369   (unless (gnus-check-backend-function 'request-delete-group group)
2370     (error "This back end does not support group deletion"))
2371   (prog1
2372       (if (and (not no-prompt)
2373                (not (gnus-yes-or-no-p
2374                      (format
2375                       "Do you really want to delete %s%s? "
2376                       group (if force " and all its contents" "")))))
2377           ()                            ; Whew!
2378         (gnus-message 6 "Deleting group %s..." group)
2379         (if (not (gnus-request-delete-group group force))
2380             (gnus-error 3 "Couldn't delete group %s" group)
2381           (gnus-message 6 "Deleting group %s...done" group)
2382           (gnus-group-goto-group group)
2383           (gnus-group-kill-group 1 t)
2384           (gnus-set-active group nil)
2385           t))
2386     (gnus-group-position-point)))
2387
2388 (defun gnus-group-rename-group (group new-name)
2389   "Rename group from GROUP to NEW-NAME.
2390 When used interactively, GROUP is the group under point
2391 and NEW-NAME will be prompted for."
2392   (interactive
2393    (list
2394     (gnus-group-group-name)
2395     (progn
2396       (unless (gnus-check-backend-function
2397                'request-rename-group (gnus-group-group-name))
2398         (error "This back end does not support renaming groups"))
2399       (gnus-read-group "Rename group to: "
2400                        (gnus-group-real-name (gnus-group-group-name))))))
2401
2402   (unless (gnus-check-backend-function 'request-rename-group group)
2403     (error "This back end does not support renaming groups"))
2404   (unless group
2405     (error "No group to rename"))
2406   (when (equal (gnus-group-real-name group) new-name)
2407     (error "Can't rename to the same name"))
2408
2409   ;; We find the proper prefixed name.
2410   (setq new-name
2411         (if (gnus-group-native-p group)
2412             ;; Native group.
2413             new-name
2414           ;; Foreign group.
2415           (gnus-group-prefixed-name
2416            (gnus-group-real-name new-name)
2417            (gnus-info-method (gnus-get-info group)))))
2418
2419   (when (gnus-active new-name)
2420     (error "The group %s already exists" new-name))
2421
2422   (gnus-message 6 "Renaming group %s to %s..." group new-name)
2423   (prog1
2424       (if (progn
2425             (gnus-group-goto-group group)
2426             (not (when (< (gnus-group-group-level) gnus-level-zombie)
2427                    (gnus-request-rename-group group new-name))))
2428           (gnus-error 3 "Couldn't rename group %s to %s" group new-name)
2429         ;; We rename the group internally by killing it...
2430         (gnus-group-kill-group)
2431         ;; ... changing its name ...
2432         (setcar (cdar gnus-list-of-killed-groups) new-name)
2433         ;; ... and then yanking it.  Magic!
2434         (gnus-group-yank-group)
2435         (gnus-set-active new-name (gnus-active group))
2436         (gnus-message 6 "Renaming group %s to %s...done" group new-name)
2437         new-name)
2438     (setq gnus-killed-list (delete group gnus-killed-list))
2439     (gnus-set-active group nil)
2440     (gnus-dribble-touch)
2441     (gnus-group-position-point)))
2442
2443 (defun gnus-group-edit-group (group &optional part)
2444   "Edit the group on the current line."
2445   (interactive (list (gnus-group-group-name)))
2446   (let ((part (or part 'info))
2447         info)
2448     (unless group
2449       (error "No group on current line"))
2450     (unless (setq info (gnus-get-info group))
2451       (error "Killed group; can't be edited"))
2452     (ignore-errors
2453       (gnus-close-group group))
2454     (gnus-edit-form
2455      ;; Find the proper form to edit.
2456      (cond ((eq part 'method)
2457             (or (gnus-info-method info) "native"))
2458            ((eq part 'params)
2459             (gnus-info-params info))
2460            (t info))
2461      ;; The proper documentation.
2462      (format
2463       "Editing the %s for `%s'."
2464       (cond
2465        ((eq part 'method) "select method")
2466        ((eq part 'params) "group parameters")
2467        (t "group info"))
2468       (gnus-group-decoded-name group))
2469      `(lambda (form)
2470         (gnus-group-edit-group-done ',part ,group form)))
2471     (local-set-key
2472      "\C-c\C-i"
2473      (gnus-create-info-command
2474       (format "(%s)%s"
2475               (or gnus-info-filename
2476                   (get-language-info current-language-environment 'gnus-info)
2477                   "gnus")
2478               (cond ((eq part 'method)
2479                      "Select Methods")
2480                     ((eq part 'params)
2481                      "Group Parameters")
2482                     (t
2483                      "Group Info")))))))
2484
2485 (defun gnus-group-edit-group-method (group)
2486   "Edit the select method of GROUP."
2487   (interactive (list (gnus-group-group-name)))
2488   (gnus-group-edit-group group 'method))
2489
2490 (defun gnus-group-edit-group-parameters (group)
2491   "Edit the group parameters of GROUP."
2492   (interactive (list (gnus-group-group-name)))
2493   (gnus-group-edit-group group 'params))
2494
2495 (defun gnus-group-edit-group-done (part group form)
2496   "Update variables."
2497   (let* ((method (cond ((eq part 'info) (nth 4 form))
2498                        ((eq part 'method) form)
2499                        (t nil)))
2500          (info (cond ((eq part 'info) form)
2501                      ((eq part 'method) (gnus-get-info group))
2502                      (t nil)))
2503          (new-group (if info
2504                         (if (or (not method)
2505                                 (gnus-server-equal
2506                                  gnus-select-method method))
2507                             (gnus-group-real-name (car info))
2508                           (gnus-group-prefixed-name
2509                            (gnus-group-real-name (car info)) method))
2510                       nil)))
2511     (when (and new-group
2512                (not (equal new-group group)))
2513       (when (gnus-group-goto-group group)
2514         (gnus-group-kill-group 1))
2515       (gnus-activate-group new-group))
2516     ;; Set the info.
2517     (if (not (and info new-group))
2518         (gnus-group-set-info form (or new-group group) part)
2519       (setq info (gnus-copy-sequence info))
2520       (setcar info new-group)
2521       (unless (gnus-server-equal method "native")
2522         (unless (nthcdr 3 info)
2523           (nconc info (list nil nil)))
2524         (unless (nthcdr 4 info)
2525           (nconc info (list nil)))
2526         (gnus-info-set-method info method))
2527       (gnus-group-set-info info))
2528     (gnus-group-update-group (or new-group group))
2529     (gnus-group-position-point)))
2530
2531 (defun gnus-group-make-useful-group (group method)
2532   "Create one of the groups described in `gnus-useful-groups'."
2533   (interactive
2534    (let ((entry (assoc (completing-read "Create group: " gnus-useful-groups
2535                                         nil t)
2536                        gnus-useful-groups)))
2537      (list (cadr entry) (caddr entry))))
2538   (setq method (gnus-copy-sequence method))
2539   (let (entry)
2540     (while (setq entry (memq (assq 'eval method) method))
2541       (setcar entry (eval (cadar entry)))))
2542   (gnus-group-make-group group method))
2543
2544 (defun gnus-group-make-help-group (&optional noerror)
2545   "Create the Gnus documentation group.
2546 Optional argument NOERROR modifies the behavior of this function when the
2547 group already exists:
2548 - if not given, and error is signaled,
2549 - if t, stay silent,
2550 - if anything else, just print a message."
2551   (interactive)
2552   (let ((name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help")))
2553         (file (nnheader-find-etc-directory "gnus-tut.txt" t)))
2554     (if (gnus-group-entry name)
2555         (cond ((eq noerror nil)
2556                (error "Documentation group already exists"))
2557               ((eq noerror t)
2558                ;; stay silent
2559                )
2560               (t
2561                (gnus-message 1 "Documentation group already exists")))
2562       ;; else:
2563       (if (not file)
2564           (gnus-message 1 "Couldn't find doc group")
2565         (gnus-group-make-group
2566          (gnus-group-real-name name)
2567          (list 'nndoc "gnus-help"
2568                (list 'nndoc-address file)
2569                (list 'nndoc-article-type 'mbox))))
2570       ))
2571   (gnus-group-position-point))
2572
2573 (defun gnus-group-make-doc-group (file type)
2574   "Create a group that uses a single file as the source."
2575   (interactive
2576    (list (read-file-name "File name: ")
2577          (and current-prefix-arg 'ask)))
2578   (when (eq type 'ask)
2579     (let ((err "")
2580           char found)
2581       (while (not found)
2582         (message
2583          "%sFile type (mbox, babyl, digest, forward, mmdf, guess) [mbdfag]: "
2584          err)
2585         (setq found (cond ((= (setq char (read-char)) ?m) 'mbox)
2586                           ((= char ?b) 'babyl)
2587                           ((= char ?d) 'digest)
2588                           ((= char ?f) 'forward)
2589                           ((= char ?a) 'mmfd)
2590                           ((= char ?g) 'guess)
2591                           (t (setq err (format "%c unknown. " char))
2592                              nil))))
2593       (setq type found)))
2594   (let* ((file (expand-file-name file))
2595          (name (gnus-generate-new-group-name
2596                 (gnus-group-prefixed-name
2597                  (file-name-nondirectory file) '(nndoc "")))))
2598     (gnus-group-make-group
2599      (gnus-group-real-name name)
2600      (list 'nndoc file
2601            (list 'nndoc-address file)
2602            (list 'nndoc-article-type (or type 'guess))))))
2603
2604 (defvar nnweb-type-definition)
2605 (defvar gnus-group-web-type-history nil)
2606 (defvar gnus-group-web-search-history nil)
2607 (defun gnus-group-make-web-group (&optional solid)
2608   "Create an ephemeral nnweb group.
2609 If SOLID (the prefix), create a solid group."
2610   (interactive "P")
2611   (require 'nnweb)
2612   (let* ((group
2613           (if solid (gnus-read-group "Group name: ")
2614             (message-unique-id)))
2615          (default-type (or (car gnus-group-web-type-history)
2616                            (symbol-name (caar nnweb-type-definition))))
2617          (type
2618           (gnus-string-or
2619            (completing-read
2620             (format "Search engine type (default %s): " default-type)
2621             (mapcar (lambda (elem) (list (symbol-name (car elem))))
2622                     nnweb-type-definition)
2623             nil t nil 'gnus-group-web-type-history)
2624            default-type))
2625          (search
2626           (read-string
2627            "Search string: "
2628            (cons (or (car gnus-group-web-search-history) "") 0)
2629            'gnus-group-web-search-history))
2630          (method
2631           `(nnweb ,group (nnweb-search ,search)
2632                   (nnweb-type ,(intern type))
2633                   (nnweb-ephemeral-p t))))
2634     (if solid
2635         (progn
2636           (gnus-pull 'nnweb-ephemeral-p method)
2637           (gnus-group-make-group group method))
2638       (gnus-group-read-ephemeral-group
2639        group method t
2640        (cons (current-buffer)
2641              (if (eq major-mode 'gnus-summary-mode) 'summary 'group))))))
2642
2643 (eval-when-compile
2644   (defvar nnrss-group-alist)
2645   (defun nnrss-discover-feed (arg))
2646   (defun nnrss-save-server-data (arg)))
2647 (defun gnus-group-make-rss-group (&optional url)
2648   "Given a URL, discover if there is an RSS feed.
2649 If there is, use Gnus to create an nnrss group"
2650   (interactive)
2651   (require 'nnrss)
2652   (if (not url)
2653       (setq url (read-from-minibuffer "URL to Search for RSS: ")))
2654   (let ((feedinfo (nnrss-discover-feed url)))
2655     (if feedinfo
2656         (let ((title (read-from-minibuffer "Title: "
2657                                            (cdr (assoc 'title
2658                                                        feedinfo))))
2659               (desc  (read-from-minibuffer "Description: "
2660                                            (cdr (assoc 'description
2661                                                        feedinfo))))
2662               (href (cdr (assoc 'href feedinfo))))
2663           (push (list title href desc)
2664                 nnrss-group-alist)
2665           (gnus-group-unsubscribe-group
2666            (concat "nnrss:" title))
2667           (nnrss-save-server-data nil))
2668       (error "No feeds found for %s" url))))
2669
2670 (defvar nnwarchive-type-definition)
2671 (defvar gnus-group-warchive-type-history nil)
2672 (defvar gnus-group-warchive-login-history nil)
2673 (defvar gnus-group-warchive-address-history nil)
2674
2675 (defun gnus-group-make-warchive-group ()
2676   "Create a nnwarchive group."
2677   (interactive)
2678   (require 'nnwarchive)
2679   (let* ((group (gnus-read-group "Group name: "))
2680          (default-type (or (car gnus-group-warchive-type-history)
2681                            (symbol-name (caar nnwarchive-type-definition))))
2682          (type
2683           (gnus-string-or
2684            (completing-read
2685             (format "Warchive type (default %s): " default-type)
2686             (mapcar (lambda (elem) (list (symbol-name (car elem))))
2687                     nnwarchive-type-definition)
2688             nil t nil 'gnus-group-warchive-type-history)
2689            default-type))
2690          (address (read-string "Warchive address: "
2691                                nil 'gnus-group-warchive-address-history))
2692          (default-login (or (car gnus-group-warchive-login-history)
2693                             user-mail-address))
2694          (login
2695           (gnus-string-or
2696            (read-string
2697             (format "Warchive login (default %s): " user-mail-address)
2698             default-login 'gnus-group-warchive-login-history)
2699            user-mail-address))
2700          (method
2701           `(nnwarchive ,address
2702                        (nnwarchive-type ,(intern type))
2703                        (nnwarchive-login ,login))))
2704     (gnus-group-make-group group method)))
2705
2706 (defun gnus-group-make-archive-group (&optional all)
2707   "Create the (ding) Gnus archive group of the most recent articles.
2708 Given a prefix, create a full group."
2709   (interactive "P")
2710   (let ((group (gnus-group-prefixed-name
2711                 (if all "ding.archives" "ding.recent") '(nndir ""))))
2712     (when (gnus-group-entry group)
2713       (error "Archive group already exists"))
2714     (gnus-group-make-group
2715      (gnus-group-real-name group)
2716      (list 'nndir (if all "hpc" "edu")
2717            (list 'nndir-directory
2718                  (if all gnus-group-archive-directory
2719                    gnus-group-recent-archive-directory))))
2720     (gnus-group-add-parameter group (cons 'to-address "ding@gnus.org"))))
2721
2722 (defun gnus-group-make-directory-group (dir)
2723   "Create an nndir group.
2724 The user will be prompted for a directory.  The contents of this
2725 directory will be used as a newsgroup.  The directory should contain
2726 mail messages or news articles in files that have numeric names."
2727   (interactive
2728    (list (read-file-name "Create group from directory: ")))
2729   (unless (file-exists-p dir)
2730     (error "No such directory"))
2731   (unless (file-directory-p dir)
2732     (error "Not a directory"))
2733   (let ((ext "")
2734         (i 0)
2735         group)
2736     (while (or (not group) (gnus-group-entry group))
2737       (setq group
2738             (gnus-group-prefixed-name
2739              (expand-file-name ext dir)
2740              '(nndir "")))
2741       (setq ext (format "<%d>" (setq i (1+ i)))))
2742     (gnus-group-make-group
2743      (gnus-group-real-name group)
2744      (list 'nndir (gnus-group-real-name group) (list 'nndir-directory dir)))))
2745
2746 (defvar nnkiboze-score-file)
2747 (defun gnus-group-make-kiboze-group (group address scores)
2748   "Create an nnkiboze group.
2749 The user will be prompted for a name, a regexp to match groups, and
2750 score file entries for articles to include in the group."
2751   (interactive
2752    (list
2753     (read-string "nnkiboze group name: ")
2754     (read-string "Source groups (regexp): ")
2755     (let ((headers (mapcar 'list
2756                            '("subject" "from" "number" "date" "message-id"
2757                              "references" "chars" "lines" "xref"
2758                              "followup" "all" "body" "head")))
2759           scores header regexp regexps)
2760       (while (not (equal "" (setq header (completing-read
2761                                           "Match on header: " headers nil t))))
2762         (setq regexps nil)
2763         (while (not (equal "" (setq regexp (read-string
2764                                             (format "Match on %s (regexp): "
2765                                                     header)))))
2766           (push (list regexp nil nil 'r) regexps))
2767         (push (cons header regexps) scores))
2768       scores)))
2769   (gnus-group-make-group group "nnkiboze" address)
2770   (let* ((nnkiboze-current-group group)
2771          (score-file (car (nnkiboze-score-file "")))
2772          (score-dir (file-name-directory score-file)))
2773     (unless (file-exists-p score-dir)
2774       (make-directory score-dir))
2775     (with-temp-file score-file
2776       (let (emacs-lisp-mode-hook)
2777         (pp scores (current-buffer))))))
2778
2779 (defun gnus-group-add-to-virtual (n vgroup)
2780   "Add the current group to a virtual group."
2781   (interactive
2782    (list current-prefix-arg
2783          (completing-read "Add to virtual group: " gnus-newsrc-hashtb nil t
2784                           "nnvirtual:")))
2785   (unless (eq (car (gnus-find-method-for-group vgroup)) 'nnvirtual)
2786     (error "%s is not an nnvirtual group" vgroup))
2787   (gnus-close-group vgroup)
2788   (let* ((groups (gnus-group-process-prefix n))
2789          (method (gnus-info-method (gnus-get-info vgroup))))
2790     (setcar (cdr method)
2791             (concat
2792              (nth 1 method) "\\|"
2793              (mapconcat
2794               (lambda (s)
2795                 (gnus-group-remove-mark s)
2796                 (concat "\\(^" (regexp-quote s) "$\\)"))
2797               groups "\\|"))))
2798   (gnus-group-position-point))
2799
2800 (defun gnus-group-make-empty-virtual (group)
2801   "Create a new, fresh, empty virtual group."
2802   (interactive "sCreate new, empty virtual group: ")
2803   (let* ((method (list 'nnvirtual "^$"))
2804          (pgroup (gnus-group-prefixed-name group method)))
2805     ;; Check whether it exists already.
2806     (when (gnus-group-entry pgroup)
2807       (error "Group %s already exists" pgroup))
2808     ;; Subscribe the new group after the group on the current line.
2809     (gnus-subscribe-group pgroup (gnus-group-group-name) method)
2810     (gnus-group-update-group pgroup)
2811     (forward-line -1)
2812     (gnus-group-position-point)))
2813
2814 (defun gnus-group-enter-directory (dir)
2815   "Enter an ephemeral nneething group."
2816   (interactive "DDirectory to read: ")
2817   (let* ((method (list 'nneething dir '(nneething-read-only t)))
2818          (leaf (gnus-group-prefixed-name
2819                 (file-name-nondirectory (directory-file-name dir))
2820                 method))
2821          (name (gnus-generate-new-group-name leaf)))
2822     (unless (gnus-group-read-ephemeral-group
2823              name method t
2824              (cons (current-buffer)
2825                    (if (eq major-mode 'gnus-summary-mode)
2826                        'summary 'group)))
2827       (error "Couldn't enter %s" dir))))
2828
2829 (eval-and-compile
2830   (autoload 'nnimap-expunge "nnimap")
2831   (autoload 'nnimap-acl-get "nnimap")
2832   (autoload 'nnimap-acl-edit "nnimap"))
2833
2834 (defun gnus-group-nnimap-expunge (group)
2835   "Expunge deleted articles in current nnimap GROUP."
2836   (interactive (list (gnus-group-group-name)))
2837   (let ((mailbox (gnus-group-real-name group)) method)
2838     (unless group
2839       (error "No group on current line"))
2840     (unless (gnus-get-info group)
2841       (error "Killed group; can't be edited"))
2842     (unless (eq 'nnimap (car (setq method (gnus-find-method-for-group group))))
2843       (error "%s is not an nnimap group" group))
2844     (nnimap-expunge mailbox (cadr method))))
2845
2846 (defun gnus-group-nnimap-edit-acl (group)
2847   "Edit the Access Control List of current nnimap GROUP."
2848   (interactive (list (gnus-group-group-name)))
2849   (let ((mailbox (gnus-group-real-name group)) method acl)
2850     (unless group
2851       (error "No group on current line"))
2852     (unless (gnus-get-info group)
2853       (error "Killed group; can't be edited"))
2854     (unless (eq (car (setq method (gnus-find-method-for-group group))) 'nnimap)
2855       (error "%s is not an nnimap group" group))
2856     (unless (setq acl (nnimap-acl-get mailbox (cadr method)))
2857       (error "Server does not support ACL's"))
2858     (gnus-edit-form acl (format "Editing the access control list for `%s'.
2859
2860    An access control list is a list of (identifier . rights) elements.
2861
2862    The identifier string specifies the corresponding user.  The
2863    identifier \"anyone\" is reserved to refer to the universal identity.
2864
2865    Rights is a string listing a (possibly empty) set of alphanumeric
2866    characters, each character listing a set of operations which is being
2867    controlled.  Letters are reserved for ``standard'' rights, listed
2868    below.  Digits are reserved for implementation or site defined rights.
2869
2870    l - lookup (mailbox is visible to LIST/LSUB commands)
2871    r - read (SELECT the mailbox, perform CHECK, FETCH, PARTIAL,
2872        SEARCH, COPY from mailbox)
2873    s - keep seen/unseen information across sessions (STORE \\SEEN flag)
2874    w - write (STORE flags other than \\SEEN and \\DELETED)
2875    i - insert (perform APPEND, COPY into mailbox)
2876    p - post (send mail to submission address for mailbox,
2877        not enforced by IMAP4 itself)
2878    c - create and delete mailbox (CREATE new sub-mailboxes in any
2879        implementation-defined hierarchy, RENAME or DELETE mailbox)
2880    d - delete messages (STORE \\DELETED flag, perform EXPUNGE)
2881    a - administer (perform SETACL)" group)
2882                     `(lambda (form)
2883                        (nnimap-acl-edit
2884                         ,mailbox ',method ',acl form)))))
2885
2886 ;; Group sorting commands
2887 ;; Suggested by Joe Hildebrand <hildjj@idaho.fuentez.com>.
2888
2889 (defun gnus-group-sort-groups (func &optional reverse)
2890   "Sort the group buffer according to FUNC.
2891 When used interactively, the sorting function used will be
2892 determined by the `gnus-group-sort-function' variable.
2893 If REVERSE (the prefix), reverse the sorting order."
2894   (interactive (list gnus-group-sort-function current-prefix-arg))
2895   (funcall gnus-group-sort-alist-function
2896            (gnus-make-sort-function func) reverse)
2897   (gnus-group-unmark-all-groups)
2898   (gnus-group-list-groups)
2899   (gnus-dribble-touch))
2900
2901 (defun gnus-group-sort-flat (func reverse)
2902   ;; We peel off the dummy group from the alist.
2903   (when func
2904     (when (equal (gnus-info-group (car gnus-newsrc-alist)) "dummy.group")
2905       (pop gnus-newsrc-alist))
2906     ;; Do the sorting.
2907     (setq gnus-newsrc-alist
2908           (sort gnus-newsrc-alist func))
2909     (when reverse
2910       (setq gnus-newsrc-alist (nreverse gnus-newsrc-alist)))
2911     ;; Regenerate the hash table.
2912     (gnus-make-hashtable-from-newsrc-alist)))
2913
2914 (defun gnus-group-sort-groups-by-alphabet (&optional reverse)
2915   "Sort the group buffer alphabetically by group name.
2916 If REVERSE, sort in reverse order."
2917   (interactive "P")
2918   (gnus-group-sort-groups 'gnus-group-sort-by-alphabet reverse))
2919
2920 (defun gnus-group-sort-groups-by-real-name (&optional reverse)
2921   "Sort the group buffer alphabetically by real (unprefixed) group name.
2922 If REVERSE, sort in reverse order."
2923   (interactive "P")
2924   (gnus-group-sort-groups 'gnus-group-sort-by-real-name reverse))
2925
2926 (defun gnus-group-sort-groups-by-unread (&optional reverse)
2927   "Sort the group buffer by number of unread articles.
2928 If REVERSE, sort in reverse order."
2929   (interactive "P")
2930   (gnus-group-sort-groups 'gnus-group-sort-by-unread reverse))
2931
2932 (defun gnus-group-sort-groups-by-level (&optional reverse)
2933   "Sort the group buffer by group level.
2934 If REVERSE, sort in reverse order."
2935   (interactive "P")
2936   (gnus-group-sort-groups 'gnus-group-sort-by-level reverse))
2937
2938 (defun gnus-group-sort-groups-by-score (&optional reverse)
2939   "Sort the group buffer by group score.
2940 If REVERSE, sort in reverse order."
2941   (interactive "P")
2942   (gnus-group-sort-groups 'gnus-group-sort-by-score reverse))
2943
2944 (defun gnus-group-sort-groups-by-rank (&optional reverse)
2945   "Sort the group buffer by group rank.
2946 If REVERSE, sort in reverse order."
2947   (interactive "P")
2948   (gnus-group-sort-groups 'gnus-group-sort-by-rank reverse))
2949
2950 (defun gnus-group-sort-groups-by-method (&optional reverse)
2951   "Sort the group buffer alphabetically by back end name.
2952 If REVERSE, sort in reverse order."
2953   (interactive "P")
2954   (gnus-group-sort-groups 'gnus-group-sort-by-method reverse))
2955
2956 (defun gnus-group-sort-groups-by-server (&optional reverse)
2957   "Sort the group buffer alphabetically by server name.
2958 If REVERSE, sort in reverse order."
2959   (interactive "P")
2960   (gnus-group-sort-groups 'gnus-group-sort-by-server reverse))
2961
2962 ;;; Selected group sorting.
2963
2964 (defun gnus-group-sort-selected-groups (n func &optional reverse)
2965   "Sort the process/prefixed groups."
2966   (interactive (list current-prefix-arg gnus-group-sort-function))
2967   (let ((groups (gnus-group-process-prefix n)))
2968     (funcall gnus-group-sort-selected-function
2969              groups (gnus-make-sort-function func) reverse)
2970     (gnus-group-unmark-all-groups)
2971     (gnus-group-list-groups)
2972     (gnus-dribble-touch)))
2973
2974 (defun gnus-group-sort-selected-flat (groups func reverse)
2975   (let (entries infos)
2976     ;; First find all the group entries for these groups.
2977     (while groups
2978       (push (nthcdr 2 (gnus-group-entry (pop groups)))
2979             entries))
2980     ;; Then sort the infos.
2981     (setq infos
2982           (sort
2983            (mapcar
2984             (lambda (entry) (car entry))
2985             (setq entries (nreverse entries)))
2986            func))
2987     (when reverse
2988       (setq infos (nreverse infos)))
2989     ;; Go through all the infos and replace the old entries
2990     ;; with the new infos.
2991     (while infos
2992       (setcar (car entries) (pop infos))
2993       (pop entries))
2994     ;; Update the hashtable.
2995     (gnus-make-hashtable-from-newsrc-alist)))
2996
2997 (defun gnus-group-sort-selected-groups-by-alphabet (&optional n reverse)
2998   "Sort the group buffer alphabetically by group name.
2999 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3000 sort in reverse order."
3001   (interactive (gnus-interactive "P\ny"))
3002   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-alphabet reverse))
3003
3004 (defun gnus-group-sort-selected-groups-by-real-name (&optional n reverse)
3005   "Sort the group buffer alphabetically by real group name.
3006 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3007 sort in reverse order."
3008   (interactive (gnus-interactive "P\ny"))
3009   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-real-name reverse))
3010
3011 (defun gnus-group-sort-selected-groups-by-unread (&optional n reverse)
3012   "Sort the group buffer by number of unread articles.
3013 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3014 sort in reverse order."
3015   (interactive (gnus-interactive "P\ny"))
3016   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-unread reverse))
3017
3018 (defun gnus-group-sort-selected-groups-by-level (&optional n reverse)
3019   "Sort the group buffer by group level.
3020 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3021 sort in reverse order."
3022   (interactive (gnus-interactive "P\ny"))
3023   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-level reverse))
3024
3025 (defun gnus-group-sort-selected-groups-by-score (&optional n reverse)
3026   "Sort the group buffer by group score.
3027 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3028 sort in reverse order."
3029   (interactive (gnus-interactive "P\ny"))
3030   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-score reverse))
3031
3032 (defun gnus-group-sort-selected-groups-by-rank (&optional n reverse)
3033   "Sort the group buffer by group rank.
3034 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3035 sort in reverse order."
3036   (interactive (gnus-interactive "P\ny"))
3037   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-rank reverse))
3038
3039 (defun gnus-group-sort-selected-groups-by-method (&optional n reverse)
3040   "Sort the group buffer alphabetically by back end name.
3041 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
3042 sort in reverse order."
3043   (interactive (gnus-interactive "P\ny"))
3044   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-method reverse))
3045
3046 ;;; Sorting predicates.
3047
3048 (defun gnus-group-sort-by-alphabet (info1 info2)
3049   "Sort alphabetically."
3050   (string< (gnus-info-group info1) (gnus-info-group info2)))
3051
3052 (defun gnus-group-sort-by-real-name (info1 info2)
3053   "Sort alphabetically on real (unprefixed) names."
3054   (string< (gnus-group-real-name (gnus-info-group info1))
3055            (gnus-group-real-name (gnus-info-group info2))))
3056
3057 (defun gnus-group-sort-by-unread (info1 info2)
3058   "Sort by number of unread articles."
3059   (let ((n1 (gnus-group-unread (gnus-info-group info1)))
3060         (n2 (gnus-group-unread (gnus-info-group info1))))
3061     (< (or (and (numberp n1) n1) 0)
3062        (or (and (numberp n2) n2) 0))))
3063
3064 (defun gnus-group-sort-by-level (info1 info2)
3065   "Sort by level."
3066   (< (gnus-info-level info1) (gnus-info-level info2)))
3067
3068 (defun gnus-group-sort-by-method (info1 info2)
3069   "Sort alphabetically by back end name."
3070   (string< (car (gnus-find-method-for-group
3071                  (gnus-info-group info1) info1))
3072            (car (gnus-find-method-for-group
3073                  (gnus-info-group info2) info2))))
3074
3075 (defun gnus-group-sort-by-server (info1 info2)
3076   "Sort alphabetically by server name."
3077   (string< (gnus-method-to-full-server-name
3078             (gnus-find-method-for-group
3079              (gnus-info-group info1) info1))
3080            (gnus-method-to-full-server-name
3081             (gnus-find-method-for-group
3082              (gnus-info-group info2) info2))))
3083
3084 (defun gnus-group-sort-by-score (info1 info2)
3085   "Sort by group score."
3086   (> (gnus-info-score info1) (gnus-info-score info2)))
3087
3088 (defun gnus-group-sort-by-rank (info1 info2)
3089   "Sort by level and score."
3090   (let ((level1 (gnus-info-level info1))
3091         (level2 (gnus-info-level info2)))
3092     (or (< level1 level2)
3093         (and (= level1 level2)
3094              (> (gnus-info-score info1) (gnus-info-score info2))))))
3095
3096 ;;; Clearing data
3097
3098 (defun gnus-group-clear-data (&optional arg)
3099   "Clear all marks and read ranges from the current group."
3100   (interactive "P")
3101   (gnus-group-iterate arg
3102     (lambda (group)
3103       (let (info)
3104         (gnus-info-clear-data (setq info (gnus-get-info group)))
3105         (gnus-get-unread-articles-in-group info (gnus-active group) t)
3106         (when (gnus-group-goto-group group)
3107           (gnus-group-update-group-line))))))
3108
3109 (defun gnus-group-clear-data-on-native-groups ()
3110   "Clear all marks and read ranges from all native groups."
3111   (interactive)
3112   (when (gnus-yes-or-no-p "Really clear all data from almost all groups? ")
3113     (let ((alist (cdr gnus-newsrc-alist))
3114           info)
3115       (while (setq info (pop alist))
3116         (when (gnus-group-native-p (gnus-info-group info))
3117           (gnus-info-clear-data info)))
3118       (gnus-get-unread-articles)
3119       (gnus-dribble-touch)
3120       (when (gnus-y-or-n-p
3121              "Move the cache away to avoid problems in the future? ")
3122         (call-interactively 'gnus-cache-move-cache)))))
3123
3124 (defun gnus-info-clear-data (info)
3125   "Clear all marks and read ranges from INFO."
3126   (let ((group (gnus-info-group info))
3127         action)
3128     (dolist (el (gnus-info-marks info))
3129       (push `(,(cdr el) add (,(car el))) action))
3130     (push `(,(gnus-info-read info) add (read)) action)
3131     (gnus-undo-register
3132       `(progn
3133          (gnus-request-set-mark ,group ',action)
3134          (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
3135          (gnus-info-set-read ',info ',(gnus-info-read info))
3136          (when (gnus-group-goto-group ,group)
3137            (gnus-get-unread-articles-in-group ',info ',(gnus-active group) t)
3138            (gnus-group-update-group-line))))
3139     (setq action (mapcar (lambda (el) (list (nth 0 el) 'del (nth 2 el)))
3140                          action))
3141     (gnus-request-set-mark group action)
3142     (gnus-info-set-read info nil)
3143     (when (gnus-info-marks info)
3144       (gnus-info-set-marks info nil))))
3145
3146 ;; Group catching up.
3147
3148 (defun gnus-group-catchup-current (&optional n all)
3149   "Mark all unread articles in the current newsgroup as read.
3150 If prefix argument N is numeric, the next N newsgroups will be
3151 caught up.  If ALL is non-nil, marked articles will also be marked as
3152 read.  Cross references (Xref: header) of articles are ignored.
3153 The number of newsgroups that this function was unable to catch
3154 up is returned."
3155   (interactive "P")
3156   (let ((groups (gnus-group-process-prefix n))
3157         (ret 0)
3158         group)
3159     (unless groups (error "No groups selected"))
3160     (if (not
3161          (or (not gnus-interactive-catchup) ;Without confirmation?
3162              gnus-expert-user
3163              (gnus-y-or-n-p
3164               (format
3165                (if all
3166                    "Do you really want to mark all articles in %s as read? "
3167                  "Mark all unread articles in %s as read? ")
3168                (if (= (length groups) 1)
3169                    (car groups)
3170                  (format "these %d groups" (length groups)))))))
3171         n
3172       (while (setq group (pop groups))
3173         (gnus-group-remove-mark group)
3174         ;; Virtual groups have to be given special treatment.
3175         (let ((method (gnus-find-method-for-group group)))
3176           (when (eq 'nnvirtual (car method))
3177             (nnvirtual-catchup-group
3178              (gnus-group-real-name group) (nth 1 method) all)))
3179         (if (>= (gnus-group-level group) gnus-level-zombie)
3180             (gnus-message 2 "Dead groups can't be caught up")
3181           (if (prog1
3182                   (gnus-group-goto-group group)
3183                 (gnus-group-catchup group all))
3184               (gnus-group-update-group-line)
3185             (setq ret (1+ ret)))))
3186       (gnus-group-next-unread-group 1)
3187       ret)))
3188
3189 (defun gnus-group-catchup-current-all (&optional n)
3190   "Mark all articles in current newsgroup as read.
3191 Cross references (Xref: header) of articles are ignored."
3192   (interactive "P")
3193   (gnus-group-catchup-current n 'all))
3194
3195 (defun gnus-group-catchup (group &optional all)
3196   "Mark all articles in GROUP as read.
3197 If ALL is non-nil, all articles are marked as read.
3198 The return value is the number of articles that were marked as read,
3199 or nil if no action could be taken."
3200   (let* ((entry (gnus-group-entry group))
3201          (num (car entry))
3202          (marks (gnus-info-marks (nth 2 entry)))
3203          (unread (gnus-sequence-of-unread-articles group)))
3204     ;; Remove entries for this group.
3205     (nnmail-purge-split-history (gnus-group-real-name group))
3206     ;; Do the updating only if the newsgroup isn't killed.
3207     (if (not (numberp (car entry)))
3208         (gnus-message 1 "Can't catch up %s; non-active group" group)
3209       (gnus-update-read-articles group nil)
3210       (when all
3211         ;; Nix out the lists of marks and dormants.
3212         (gnus-request-set-mark group (list (list (cdr (assq 'tick marks))
3213                                                  'del '(tick))
3214                                            (list (cdr (assq 'dormant marks))
3215                                                  'del '(dormant))))
3216         (setq unread (gnus-range-add (gnus-range-add
3217                                       unread (cdr (assq 'dormant marks)))
3218                                      (cdr (assq 'tick marks))))
3219         (gnus-add-marked-articles group 'tick nil nil 'force)
3220         (gnus-add-marked-articles group 'dormant nil nil 'force))
3221       ;; Do auto-expirable marks if that's required.
3222       (when (gnus-group-auto-expirable-p group)
3223         (gnus-range-map (lambda (article)
3224                           (gnus-add-marked-articles group 'expire (list article))
3225                           (gnus-request-set-mark group (list (list (list article) 'add '(expire)))))
3226                         unread))
3227       (let ((gnus-newsgroup-name group))
3228         (gnus-run-hooks 'gnus-group-catchup-group-hook))
3229       num)))
3230
3231 (defun gnus-group-expire-articles (&optional n)
3232   "Expire all expirable articles in the current newsgroup.
3233 Uses the process/prefix convention."
3234   (interactive "P")
3235   (let ((groups (gnus-group-process-prefix n))
3236         group)
3237     (unless groups
3238       (error "No groups to expire"))
3239     (while (setq group (pop groups))
3240       (gnus-group-remove-mark group)
3241       (gnus-group-expire-articles-1 group)
3242       (gnus-dribble-touch)
3243       (gnus-group-position-point))))
3244
3245 (defun gnus-group-expire-articles-1 (group)
3246   (when (gnus-check-backend-function 'request-expire-articles group)
3247     (gnus-message 6 "Expiring articles in %s..." group)
3248     (let* ((info (gnus-get-info group))
3249            (expirable (if (gnus-group-total-expirable-p group)
3250                           (cons nil (gnus-list-of-read-articles group))
3251                         (assq 'expire (gnus-info-marks info))))
3252            (expiry-wait (gnus-group-find-parameter group 'expiry-wait))
3253            (nnmail-expiry-target
3254             (or (gnus-group-find-parameter group 'expiry-target)
3255                 nnmail-expiry-target)))
3256       (when expirable
3257         (gnus-check-group group)
3258         (setcdr
3259          expirable
3260          (gnus-compress-sequence
3261           (if expiry-wait
3262               ;; We set the expiry variables to the group
3263               ;; parameter.
3264               (let ((nnmail-expiry-wait-function nil)
3265                     (nnmail-expiry-wait expiry-wait))
3266                 (gnus-request-expire-articles
3267                  (gnus-uncompress-sequence (cdr expirable)) group))
3268             ;; Just expire using the normal expiry values.
3269             (gnus-request-expire-articles
3270              (gnus-uncompress-sequence (cdr expirable)) group))))
3271         (gnus-close-group group))
3272       (gnus-message 6 "Expiring articles in %s...done" group)
3273       ;; Return the list of un-expired articles.
3274       (cdr expirable))))
3275
3276 (defun gnus-group-expire-all-groups ()
3277   "Expire all expirable articles in all newsgroups."
3278   (interactive)
3279   (save-excursion
3280     (gnus-message 5 "Expiring...")
3281     (let ((gnus-group-marked (mapcar (lambda (info) (gnus-info-group info))
3282                                      (cdr gnus-newsrc-alist))))
3283       (gnus-group-expire-articles nil)))
3284   (gnus-group-position-point)
3285   (gnus-message 5 "Expiring...done"))
3286
3287 (defun gnus-group-set-current-level (n level)
3288   "Set the level of the next N groups to LEVEL."
3289   (interactive
3290    (list
3291     current-prefix-arg
3292     (progn
3293       (unless (gnus-group-process-prefix current-prefix-arg)
3294         (error "No group on the current line"))
3295       (string-to-int
3296        (let ((s (read-string
3297                  (format "Level (default %s): "
3298                          (or (gnus-group-group-level)
3299                              gnus-level-default-subscribed)))))
3300          (if (string-match "^\\s-*$" s)
3301              (int-to-string (or (gnus-group-group-level)
3302                                 gnus-level-default-subscribed))
3303            s))))))
3304   (unless (and (>= level 1) (<= level gnus-level-killed))
3305     (error "Invalid level: %d" level))
3306   (let ((groups (gnus-group-process-prefix n))
3307         group)
3308     (while (setq group (pop groups))
3309       (gnus-group-remove-mark group)
3310       (gnus-message 6 "Changed level of %s from %d to %d"
3311                     group (or (gnus-group-group-level) gnus-level-killed)
3312                     level)
3313       (gnus-group-change-level
3314        group level (or (gnus-group-group-level) gnus-level-killed))
3315       (gnus-group-update-group-line)))
3316   (gnus-group-position-point))
3317
3318 (defun gnus-group-unsubscribe (&optional n)
3319   "Unsubscribe the current group."
3320   (interactive "P")
3321   (gnus-group-unsubscribe-current-group n 'unsubscribe))
3322
3323 (defun gnus-group-subscribe (&optional n)
3324   "Subscribe the current group."
3325   (interactive "P")
3326   (gnus-group-unsubscribe-current-group n 'subscribe))
3327
3328 (defun gnus-group-unsubscribe-current-group (&optional n do-sub)
3329   "Toggle subscription of the current group.
3330 If given numerical prefix, toggle the N next groups."
3331   (interactive "P")
3332   (dolist (group (gnus-group-process-prefix n))
3333     (gnus-group-remove-mark group)
3334     (gnus-group-unsubscribe-group
3335      group
3336      (cond
3337       ((eq do-sub 'unsubscribe)
3338        gnus-level-default-unsubscribed)
3339       ((eq do-sub 'subscribe)
3340        gnus-level-default-subscribed)
3341       ((<= (gnus-group-group-level) gnus-level-subscribed)
3342        gnus-level-default-unsubscribed)
3343       (t
3344        gnus-level-default-subscribed))
3345      t)
3346     (gnus-group-update-group-line))
3347   (gnus-group-next-group 1))
3348
3349 (defun gnus-group-unsubscribe-group (group &optional level silent)
3350   "Toggle subscription to GROUP.
3351 Killed newsgroups are subscribed.  If SILENT, don't try to update the
3352 group line."
3353   (interactive
3354    (list (gnus-group-completing-read-group-name
3355           "Group: " gnus-active-hashtb nil
3356           (gnus-read-active-file-p)
3357           nil
3358           'gnus-group-history)))
3359   (let ((newsrc (gnus-group-entry group)))
3360     (cond
3361      ((string-match "^[ \t]*$" group)
3362       (error "Empty group name"))
3363      (newsrc
3364       ;; Toggle subscription flag.
3365       (gnus-group-change-level
3366        newsrc (if level level (if (<= (gnus-info-level (nth 2 newsrc))
3367                                       gnus-level-subscribed)
3368                                   (1+ gnus-level-subscribed)
3369                                 gnus-level-default-subscribed)))
3370       (unless silent
3371         (gnus-group-update-group group)))
3372      ((and (stringp group)
3373            (or (not (gnus-read-active-file-p))
3374                (gnus-active group)))
3375       ;; Add new newsgroup.
3376       (gnus-group-change-level
3377        group
3378        (if level level gnus-level-default-subscribed)
3379        (or (and (member group gnus-zombie-list)
3380                 gnus-level-zombie)
3381            gnus-level-killed)
3382        (when (gnus-group-group-name)
3383          (gnus-group-entry (gnus-group-group-name))))
3384       (unless silent
3385         (gnus-group-update-group group)))
3386      (t (error "No such newsgroup: %s" group)))
3387     (gnus-group-position-point)))
3388
3389 (defun gnus-group-transpose-groups (n)
3390   "Move the current newsgroup up N places.
3391 If given a negative prefix, move down instead.  The difference between
3392 N and the number of steps taken is returned."
3393   (interactive "p")
3394   (unless (gnus-group-group-name)
3395     (error "No group on current line"))
3396   (gnus-group-kill-group 1)
3397   (prog1
3398       (forward-line (- n))
3399     (gnus-group-yank-group)
3400     (gnus-group-position-point)))
3401
3402 (defun gnus-group-kill-all-zombies (&optional dummy)
3403   "Kill all zombie newsgroups.
3404 The optional DUMMY should always be nil."
3405   (interactive (list (not (gnus-yes-or-no-p "Really kill all zombies? "))))
3406   (unless dummy
3407     (setq gnus-killed-list (nconc gnus-zombie-list gnus-killed-list))
3408     (setq gnus-zombie-list nil)
3409     (gnus-dribble-touch)
3410     (gnus-group-list-groups)))
3411
3412 (defun gnus-group-kill-region (begin end)
3413   "Kill newsgroups in current region (excluding current point).
3414 The killed newsgroups can be yanked by using \\[gnus-group-yank-group]."
3415   (interactive "r")
3416   (let ((lines
3417          ;; Count lines.
3418          (save-excursion
3419            (count-lines
3420             (progn
3421               (goto-char begin)
3422               (point-at-bol))
3423             (progn
3424               (goto-char end)
3425               (point-at-bol))))))
3426     (goto-char begin)
3427     (beginning-of-line)                 ;Important when LINES < 1
3428     (gnus-group-kill-group lines)))
3429
3430 (defun gnus-group-kill-group (&optional n discard)
3431   "Kill the next N groups.
3432 The killed newsgroups can be yanked by using \\[gnus-group-yank-group].
3433 However, only groups that were alive can be yanked; already killed
3434 groups or zombie groups can't be yanked.
3435 The return value is the name of the group that was killed, or a list
3436 of groups killed."
3437   (interactive "P")
3438   (let ((buffer-read-only nil)
3439         (groups (gnus-group-process-prefix n))
3440         group entry level out)
3441     (if (< (length groups) 10)
3442         ;; This is faster when there are few groups.
3443         (while groups
3444           (push (setq group (pop groups)) out)
3445           (gnus-group-remove-mark group)
3446           (setq level (gnus-group-group-level))
3447           (gnus-delete-line)
3448           (when (and (not discard)
3449                      (setq entry (gnus-group-entry group)))
3450             (gnus-undo-register
3451               `(progn
3452                  (gnus-group-goto-group ,(gnus-group-group-name))
3453                  (gnus-group-yank-group)))
3454             (push (cons (car entry) (nth 2 entry))
3455                   gnus-list-of-killed-groups))
3456           (gnus-group-change-level
3457            (if entry entry group) gnus-level-killed (if entry nil level))
3458           (message "Killed group %s" group))
3459       ;; If there are lots and lots of groups to be killed, we use
3460       ;; this thing instead.
3461       (dolist (group (nreverse groups))
3462         (gnus-group-remove-mark group)
3463         (gnus-delete-line)
3464         (push group gnus-killed-list)
3465         (setq gnus-newsrc-alist
3466               (delq (assoc group gnus-newsrc-alist)
3467                     gnus-newsrc-alist))
3468         (when gnus-group-change-level-function
3469           (funcall gnus-group-change-level-function
3470                    group gnus-level-killed 3))
3471         (cond
3472          ((setq entry (gnus-group-entry group))
3473           (push (cons (car entry) (nth 2 entry))
3474                 gnus-list-of-killed-groups)
3475           (setcdr (cdr entry) (cdddr entry)))
3476          ((member group gnus-zombie-list)
3477           (setq gnus-zombie-list (delete group gnus-zombie-list))))
3478         ;; There may be more than one instance displayed.
3479         (while (gnus-group-goto-group group)
3480           (gnus-delete-line)))
3481       (gnus-make-hashtable-from-newsrc-alist))
3482
3483     (gnus-group-position-point)
3484     (if (< (length out) 2) (car out) (nreverse out))))
3485
3486 (defun gnus-group-yank-group (&optional arg)
3487   "Yank the last newsgroups killed with \\[gnus-group-kill-group], inserting it before the current newsgroup.
3488 The numeric ARG specifies how many newsgroups are to be yanked.  The
3489 name of the newsgroup yanked is returned, or (if several groups are
3490 yanked) a list of yanked groups is returned."
3491   (interactive "p")
3492   (setq arg (or arg 1))
3493   (let (info group prev out)
3494     (while (>= (decf arg) 0)
3495       (when (not (setq info (pop gnus-list-of-killed-groups)))
3496         (error "No more newsgroups to yank"))
3497       (push (setq group (nth 1 info)) out)
3498       ;; Find which newsgroup to insert this one before - search
3499       ;; backward until something suitable is found.  If there are no
3500       ;; other newsgroups in this buffer, just make this newsgroup the
3501       ;; first newsgroup.
3502       (setq prev (gnus-group-group-name))
3503       (gnus-group-change-level
3504        info (gnus-info-level (cdr info)) gnus-level-killed
3505        (and prev (gnus-group-entry prev))
3506        t)
3507       (gnus-group-insert-group-line-info group)
3508       (gnus-undo-register
3509         `(when (gnus-group-goto-group ,group)
3510            (gnus-group-kill-group 1))))
3511     (forward-line -1)
3512     (gnus-group-position-point)
3513     (if (< (length out) 2) (car out) (nreverse out))))
3514
3515 (defun gnus-group-kill-level (level)
3516   "Kill all groups that is on a certain LEVEL."
3517   (interactive "nKill all groups on level: ")
3518   (cond
3519    ((= level gnus-level-zombie)
3520     (setq gnus-killed-list
3521           (nconc gnus-zombie-list gnus-killed-list))
3522     (setq gnus-zombie-list nil))
3523    ((and (< level gnus-level-zombie)
3524          (> level 0)
3525          (or gnus-expert-user
3526              (gnus-yes-or-no-p
3527               (format
3528                "Do you really want to kill all groups on level %d? "
3529                level))))
3530     (let* ((prev gnus-newsrc-alist)
3531            (alist (cdr prev)))
3532       (while alist
3533         (if (= (gnus-info-level (car alist)) level)
3534             (progn
3535               (push (gnus-info-group (car alist)) gnus-killed-list)
3536               (setcdr prev (cdr alist)))
3537           (setq prev alist))
3538         (setq alist (cdr alist)))
3539       (gnus-make-hashtable-from-newsrc-alist)
3540       (gnus-group-list-groups)))
3541    (t
3542     (error "Can't kill; invalid level: %d" level))))
3543
3544 (defun gnus-group-list-all-groups (&optional arg)
3545   "List all newsgroups with level ARG or lower.
3546 Default is `gnus-level-unsubscribed', which lists all subscribed and most
3547 unsubscribed groups."
3548   (interactive "P")
3549   (gnus-group-list-groups (or arg gnus-level-unsubscribed) t))
3550
3551 ;; Redefine this to list ALL killed groups if prefix arg used.
3552 ;; Rewritten by engstrom@src.honeywell.com (Eric Engstrom).
3553 (defun gnus-group-list-killed (&optional arg)
3554   "List all killed newsgroups in the group buffer.
3555 If ARG is non-nil, list ALL killed groups known to Gnus.  This may
3556 entail asking the server for the groups."
3557   (interactive "P")
3558   ;; Find all possible killed newsgroups if arg.
3559   (when arg
3560     (gnus-get-killed-groups))
3561   (if (not gnus-killed-list)
3562       (gnus-message 6 "No killed groups")
3563     (let (gnus-group-list-mode)
3564       (funcall gnus-group-prepare-function
3565                gnus-level-killed t gnus-level-killed))
3566     (goto-char (point-min)))
3567   (gnus-group-position-point))
3568
3569 (defun gnus-group-list-zombies ()
3570   "List all zombie newsgroups in the group buffer."
3571   (interactive)
3572   (if (not gnus-zombie-list)
3573       (gnus-message 6 "No zombie groups")
3574     (let (gnus-group-list-mode)
3575       (funcall gnus-group-prepare-function
3576                gnus-level-zombie t gnus-level-zombie))
3577     (goto-char (point-min)))
3578   (gnus-group-position-point))
3579
3580 (defun gnus-group-list-active ()
3581   "List all groups that are available from the server(s)."
3582   (interactive)
3583   ;; First we make sure that we have really read the active file.
3584   (unless (gnus-read-active-file-p)
3585     (let ((gnus-read-active-file t)
3586           (gnus-agent gnus-plugged)); If we're actually plugged, store the active file in the agent.
3587       (gnus-read-active-file)))
3588   ;; Find all groups and sort them.
3589   (let ((groups
3590          (sort
3591           (let (list)
3592             (mapatoms
3593              (lambda (sym)
3594                (and (boundp sym)
3595                     (symbol-value sym)
3596                     (push (symbol-name sym) list)))
3597              gnus-active-hashtb)
3598             list)
3599           'string<))
3600         (buffer-read-only nil)
3601         group)
3602     (erase-buffer)
3603     (while groups
3604       (setq group (pop groups))
3605       (gnus-add-text-properties
3606        (point) (prog1 (1+ (point))
3607                  (insert "       *: "
3608                          (gnus-group-decoded-name group)
3609                          "\n"))
3610        (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
3611              'gnus-unread t
3612              'gnus-level (inline (gnus-group-level group)))))
3613     (goto-char (point-min))))
3614
3615 (defun gnus-activate-all-groups (level)
3616   "Activate absolutely all groups."
3617   (interactive (list gnus-level-unsubscribed))
3618   (let ((gnus-activate-level level)
3619         (gnus-activate-foreign-newsgroups level))
3620     (gnus-group-get-new-news)))
3621
3622 (defun gnus-group-get-new-news (&optional arg)
3623   "Get newly arrived articles.
3624 If ARG is a number, it specifies which levels you are interested in
3625 re-scanning.  If ARG is non-nil and not a number, this will force
3626 \"hard\" re-reading of the active files from all servers."
3627   (interactive "P")
3628   (require 'nnmail)
3629   (let ((gnus-inhibit-demon t)
3630         ;; Binding this variable will inhibit multiple fetchings
3631         ;; of the same mail source.
3632         (nnmail-fetched-sources (list t)))
3633     (gnus-run-hooks 'gnus-get-top-new-news-hook)
3634     (gnus-run-hooks 'gnus-get-new-news-hook)
3635
3636     ;; Read any slave files.
3637     (unless gnus-slave
3638       (gnus-master-read-slave-newsrc))
3639
3640     ;; We might read in new NoCeM messages here.
3641     (when (and gnus-use-nocem
3642                (null arg))
3643       (gnus-nocem-scan-groups))
3644     ;; If ARG is not a number, then we read the active file.
3645     (when (and arg (not (numberp arg)))
3646       (let ((gnus-read-active-file t))
3647         (gnus-read-active-file))
3648       (setq arg nil)
3649
3650       ;; If the user wants it, we scan for new groups.
3651       (when (eq gnus-check-new-newsgroups 'always)
3652         (gnus-find-new-newsgroups)))
3653
3654     (setq arg (gnus-group-default-level arg t))
3655     (if (and gnus-read-active-file (not arg))
3656         (progn
3657           (gnus-read-active-file)
3658           (gnus-get-unread-articles arg))
3659       (let ((gnus-read-active-file (if arg nil gnus-read-active-file)))
3660         (gnus-get-unread-articles arg)))
3661     (gnus-run-hooks 'gnus-after-getting-new-news-hook)
3662     (gnus-group-list-groups (and (numberp arg)
3663                                  (max (car gnus-group-list-mode) arg))))
3664   ;; Update modeline.
3665   (when (and gnus-agent (not (interactive-p)))
3666     (gnus-agent-toggle-plugged gnus-plugged)))
3667
3668 (defun gnus-group-get-new-news-this-group (&optional n dont-scan)
3669   "Check for newly arrived news in the current group (and the N-1 next groups).
3670 The difference between N and the number of newsgroup checked is returned.
3671 If N is negative, this group and the N-1 previous groups will be checked.
3672 If DONT-SCAN is non-nil, scan non-activated groups as well."
3673   (interactive "P")
3674   (let* ((groups (gnus-group-process-prefix n))
3675          (ret (if (numberp n) (- n (length groups)) 0))
3676          (beg (unless n
3677                 (point)))
3678          group method
3679          (gnus-inhibit-demon t)
3680          ;; Binding this variable will inhibit multiple fetchings
3681          ;; of the same mail source.
3682          (nnmail-fetched-sources (list t)))
3683     (gnus-run-hooks 'gnus-get-new-news-hook)
3684     (while (setq group (pop groups))
3685       (gnus-group-remove-mark group)
3686       ;; Bypass any previous denials from the server.
3687       (gnus-remove-denial (setq method (gnus-find-method-for-group group)))
3688       (if (gnus-activate-group group (if dont-scan nil 'scan) nil method)
3689           (progn
3690             (gnus-get-unread-articles-in-group
3691              (gnus-get-info group) (gnus-active group) t)
3692             (unless (gnus-virtual-group-p group)
3693               (gnus-close-group group))
3694             (when gnus-agent
3695               (gnus-agent-save-group-info
3696                method (gnus-group-real-name group) (gnus-active group)))
3697             (gnus-group-update-group group))
3698         (if (eq (gnus-server-status (gnus-find-method-for-group group))
3699                 'denied)
3700             (gnus-error 3 "Server denied access")
3701           (gnus-error 3 "%s error: %s" group (gnus-status-message group)))))
3702     (when beg
3703       (goto-char beg))
3704     (when gnus-goto-next-group-when-activating
3705       (gnus-group-next-unread-group 1 t))
3706     (gnus-summary-position-point)
3707     ret))
3708
3709 (defun gnus-group-fetch-faq (group &optional faq-dir)
3710   "Fetch the FAQ for the current group.
3711 If given a prefix argument, prompt for the FAQ dir
3712 to use."
3713   (interactive
3714    (list
3715     (gnus-group-group-name)
3716     (when current-prefix-arg
3717       (completing-read
3718        "FAQ dir: " (and (listp gnus-group-faq-directory)
3719                         (mapcar #'list
3720                                 gnus-group-faq-directory))))))
3721   (unless group
3722     (error "No group name given"))
3723   (let ((dirs (or faq-dir gnus-group-faq-directory))
3724         dir found file)
3725     (unless (listp dirs)
3726       (setq dirs (list dirs)))
3727     (while (and (not found)
3728                 (setq dir (pop dirs)))
3729       (let ((name (gnus-group-real-name group)))
3730         (setq file (expand-file-name name dir)))
3731       (if (not (file-exists-p file))
3732           (gnus-message 1 "No such file: %s" file)
3733         (let ((enable-local-variables nil))
3734           (find-file file)
3735           (setq found t))))))
3736
3737 (defun gnus-group-fetch-charter (group)
3738   "Fetch the charter for the current group.
3739 If given a prefix argument, prompt for a group."
3740   (interactive
3741    (list (or (when current-prefix-arg
3742                (completing-read "Group: " gnus-active-hashtb))
3743              (gnus-group-group-name)
3744              gnus-newsgroup-name)))
3745   (unless group
3746     (error "No group name given"))
3747   (require 'mm-url)
3748   (condition-case nil (require 'url-http) (error nil))
3749   (let ((name (mm-url-form-encode-xwfu (gnus-group-real-name group)))
3750         url hierarchy)
3751     (when (string-match "\\(^[^\\.]+\\)\\..*" name)
3752       (setq hierarchy (match-string 1 name))
3753       (if (and (setq url (cdr (assoc hierarchy gnus-group-charter-alist)))
3754                (if (fboundp 'url-http-file-exists-p)
3755                    (url-http-file-exists-p (eval url))
3756                  t))
3757           (browse-url (eval url))
3758         (setq url (concat "http://" hierarchy
3759                           ".news-admin.org/charters/" name))
3760         (if (and (fboundp 'url-http-file-exists-p)
3761                  (url-http-file-exists-p url))
3762             (browse-url url)
3763           (gnus-group-fetch-control group))))))
3764
3765 (defun gnus-group-fetch-control (group)
3766   "Fetch the archived control messages for the current group.
3767 If given a prefix argument, prompt for a group."
3768   (interactive
3769    (list (or (when current-prefix-arg
3770                (completing-read "Group: " gnus-active-hashtb))
3771              (gnus-group-group-name)
3772              gnus-newsgroup-name)))
3773   (unless group
3774     (error "No group name given"))
3775   (let ((name (gnus-group-real-name group))
3776         hierarchy)
3777     (when (string-match "\\(^[^\\.]+\\)\\..*" name)
3778       (setq hierarchy (match-string 1 name))
3779       (if gnus-group-fetch-control-use-browse-url
3780           (browse-url (concat "ftp://ftp.isc.org/usenet/control/"
3781                               hierarchy "/" name ".gz"))
3782         (let ((enable-local-variables nil))
3783           (gnus-group-read-ephemeral-group
3784            group
3785            `(nndoc ,group (nndoc-address
3786                            ,(find-file-noselect
3787                              (concat "/ftp@ftp.isc.org:/usenet/control/"
3788                                      hierarchy "/" name ".gz")))
3789                    (nndoc-article-type mbox)) t nil nil))))))
3790
3791 (defun gnus-group-describe-group (force &optional group)
3792   "Display a description of the current newsgroup."
3793   (interactive (list current-prefix-arg (gnus-group-group-name)))
3794   (let* ((method (gnus-find-method-for-group group))
3795          (mname (gnus-group-prefixed-name "" method))
3796          desc)
3797     (when (and force
3798                gnus-description-hashtb)
3799       (gnus-sethash mname nil gnus-description-hashtb))
3800     (unless group
3801       (error "No group name given"))
3802     (when (or (and gnus-description-hashtb
3803                    ;; We check whether this group's method has been
3804                    ;; queried for a description file.
3805                    (gnus-gethash mname gnus-description-hashtb))
3806               (setq desc (gnus-group-get-description group))
3807               (gnus-read-descriptions-file method))
3808       (gnus-message 1
3809                     (or desc (gnus-gethash group gnus-description-hashtb)
3810                         "No description available")))))
3811
3812 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3813 (defun gnus-group-describe-all-groups (&optional force)
3814   "Pop up a buffer with descriptions of all newsgroups."
3815   (interactive "P")
3816   (when force
3817     (setq gnus-description-hashtb nil))
3818   (when (not (or gnus-description-hashtb
3819                  (gnus-read-all-descriptions-files)))
3820     (error "Couldn't request descriptions file"))
3821   (let ((buffer-read-only nil)
3822         b)
3823     (erase-buffer)
3824     (mapatoms
3825      (lambda (group)
3826        (setq b (point))
3827        (let ((charset (gnus-group-name-charset nil (symbol-name group))))
3828          (insert (format "      *: %-20s %s\n"
3829                          (gnus-group-name-decode
3830                           (symbol-name group) charset)
3831                          (gnus-group-name-decode
3832                           (symbol-value group) charset))))
3833        (gnus-add-text-properties
3834         b (1+ b) (list 'gnus-group group
3835                        'gnus-unread t 'gnus-marked nil
3836                        'gnus-level (1+ gnus-level-subscribed))))
3837      gnus-description-hashtb)
3838     (goto-char (point-min))
3839     (gnus-group-position-point)))
3840
3841 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
3842 (defun gnus-group-apropos (regexp &optional search-description)
3843   "List all newsgroups that have names that match a regexp."
3844   (interactive "sGnus apropos (regexp): ")
3845   (let ((prev "")
3846         (obuf (current-buffer))
3847         groups des)
3848     ;; Go through all newsgroups that are known to Gnus.
3849     (mapatoms
3850      (lambda (group)
3851        (and (symbol-name group)
3852             (string-match regexp (symbol-name group))
3853             (symbol-value group)
3854             (push (symbol-name group) groups)))
3855      gnus-active-hashtb)
3856     ;; Also go through all descriptions that are known to Gnus.
3857     (when search-description
3858       (mapatoms
3859        (lambda (group)
3860          (and (string-match regexp (symbol-value group))
3861               (push (symbol-name group) groups)))
3862        gnus-description-hashtb))
3863     (if (not groups)
3864         (gnus-message 3 "No groups matched \"%s\"." regexp)
3865       ;; Print out all the groups.
3866       (save-excursion
3867         (pop-to-buffer "*Gnus Help*")
3868         (buffer-disable-undo)
3869         (erase-buffer)
3870         (setq groups (sort groups 'string<))
3871         (while groups
3872           ;; Groups may be entered twice into the list of groups.
3873           (when (not (string= (car groups) prev))
3874             (setq prev (car groups))
3875             (let ((charset (gnus-group-name-charset nil prev)))
3876               (insert (gnus-group-name-decode prev charset) "\n")
3877               (when (and gnus-description-hashtb
3878                          (setq des (gnus-gethash (car groups)
3879                                                  gnus-description-hashtb)))
3880                 (insert "  " (gnus-group-name-decode des charset) "\n"))))
3881           (setq groups (cdr groups)))
3882         (goto-char (point-min))))
3883     (pop-to-buffer obuf)))
3884
3885 (defun gnus-group-description-apropos (regexp)
3886   "List all newsgroups that have names or descriptions that match REGEXP."
3887   (interactive "sGnus description apropos (regexp): ")
3888   (when (not (or gnus-description-hashtb
3889                  (gnus-read-all-descriptions-files)))
3890     (error "Couldn't request descriptions file"))
3891   (gnus-group-apropos regexp t))
3892
3893 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3894 (defun gnus-group-list-matching (level regexp &optional all lowest)
3895   "List all groups with unread articles that match REGEXP.
3896 If the prefix LEVEL is non-nil, it should be a number that says which
3897 level to cut off listing groups.
3898 If ALL, also list groups with no unread articles.
3899 If LOWEST, don't list groups with level lower than LOWEST.
3900
3901 This command may read the active file."
3902   (interactive "P\nsList newsgroups matching: ")
3903   ;; First make sure active file has been read.
3904   (when (and level
3905              (> (prefix-numeric-value level) gnus-level-killed))
3906     (gnus-get-killed-groups))
3907   (funcall gnus-group-prepare-function
3908            (or level gnus-level-subscribed) (and all t) (or lowest 1) regexp)
3909   (goto-char (point-min))
3910   (gnus-group-position-point))
3911
3912 (defun gnus-group-list-all-matching (level regexp &optional lowest)
3913   "List all groups that match REGEXP.
3914 If the prefix LEVEL is non-nil, it should be a number that says which
3915 level to cut off listing groups.
3916 If LOWEST, don't list groups with level lower than LOWEST."
3917   (interactive "P\nsList newsgroups matching: ")
3918   (when level
3919     (setq level (prefix-numeric-value level)))
3920   (gnus-group-list-matching (or level gnus-level-killed) regexp t lowest))
3921
3922 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
3923 (defun gnus-group-save-newsrc (&optional force)
3924   "Save the Gnus startup files.
3925 If FORCE, force saving whether it is necessary or not."
3926   (interactive "P")
3927   (gnus-save-newsrc-file force))
3928
3929 (defun gnus-group-restart (&optional arg)
3930   "Force Gnus to read the .newsrc file."
3931   (interactive "P")
3932   (when (gnus-yes-or-no-p
3933          (format "Are you sure you want to restart Gnus? "))
3934     (gnus-save-newsrc-file)
3935     (gnus-clear-system)
3936     (gnus)))
3937
3938 (defun gnus-group-read-init-file ()
3939   "Read the Gnus elisp init file."
3940   (interactive)
3941   (gnus-read-init-file)
3942   (gnus-message 5 "Read %s" gnus-init-file))
3943
3944 (defun gnus-group-check-bogus-groups (&optional silent)
3945   "Check bogus newsgroups.
3946 If given a prefix, don't ask for confirmation before removing a bogus
3947 group."
3948   (interactive "P")
3949   (gnus-check-bogus-newsgroups (and (not silent) (not gnus-expert-user)))
3950   (gnus-group-list-groups))
3951
3952 (defun gnus-group-find-new-groups (&optional arg)
3953   "Search for new groups and add them.
3954 Each new group will be treated with `gnus-subscribe-newsgroup-method'.
3955 With 1 C-u, use the `ask-server' method to query the server for new
3956 groups.
3957 With 2 C-u's, use most complete method possible to query the server
3958 for new groups, and subscribe the new groups as zombies."
3959   (interactive "p")
3960   (gnus-find-new-newsgroups (or arg 1))
3961   (gnus-group-list-groups))
3962
3963 (defun gnus-group-edit-global-kill (&optional article group)
3964   "Edit the global kill file.
3965 If GROUP, edit that local kill file instead."
3966   (interactive "P")
3967   (setq gnus-current-kill-article article)
3968   (gnus-kill-file-edit-file group)
3969   (gnus-message
3970    6
3971    (substitute-command-keys
3972     (format "Editing a %s kill file (Type \\[gnus-kill-file-exit] to exit)"
3973             (if group "local" "global")))))
3974
3975 (defun gnus-group-edit-local-kill (article group)
3976   "Edit a local kill file."
3977   (interactive (list nil (gnus-group-group-name)))
3978   (gnus-group-edit-global-kill article group))
3979
3980 (defun gnus-group-force-update ()
3981   "Update `.newsrc' file."
3982   (interactive)
3983   (gnus-save-newsrc-file))
3984
3985 (defvar gnus-backlog-articles)
3986
3987 (defun gnus-group-suspend ()
3988   "Suspend the current Gnus session.
3989 In fact, cleanup buffers except for group mode buffer.
3990 The hook `gnus-suspend-gnus-hook' is called before actually suspending."
3991   (interactive)
3992   (gnus-run-hooks 'gnus-suspend-gnus-hook)
3993   (gnus-offer-save-summaries)
3994   ;; Kill Gnus buffers except for group mode buffer.
3995   (let ((group-buf (get-buffer gnus-group-buffer)))
3996     (mapcar (lambda (buf)
3997               (unless (or (member buf (list group-buf gnus-dribble-buffer))
3998                           (with-current-buffer buf
3999                             (eq major-mode 'message-mode)))
4000                 (gnus-kill-buffer buf)))
4001             (gnus-buffers))
4002     (setq gnus-backlog-articles nil)
4003     (gnus-kill-gnus-frames)
4004     (when group-buf
4005       (bury-buffer group-buf)
4006       (delete-windows-on group-buf t))))
4007
4008 (defun gnus-group-clear-dribble ()
4009   "Clear all information from the dribble buffer."
4010   (interactive)
4011   (gnus-dribble-clear)
4012   (gnus-message 7 "Cleared dribble buffer"))
4013
4014 (defun gnus-group-exit ()
4015   "Quit reading news after updating .newsrc.eld and .newsrc.
4016 The hook `gnus-exit-gnus-hook' is called before actually exiting."
4017   (interactive)
4018   (when
4019       (or noninteractive                ;For gnus-batch-kill
4020           (not gnus-interactive-exit)   ;Without confirmation
4021           gnus-expert-user
4022           (gnus-y-or-n-p "Are you sure you want to quit reading news? "))
4023     (gnus-run-hooks 'gnus-exit-gnus-hook)
4024     ;; Offer to save data from non-quitted summary buffers.
4025     (gnus-offer-save-summaries)
4026     ;; Save the newsrc file(s).
4027     (gnus-save-newsrc-file)
4028     ;; Kill-em-all.
4029     (gnus-close-backends)
4030     ;; Reset everything.
4031     (gnus-clear-system)
4032     ;; Allow the user to do things after cleaning up.
4033     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
4034
4035 (defun gnus-group-quit ()
4036   "Quit reading news without updating .newsrc.eld or .newsrc.
4037 The hook `gnus-exit-gnus-hook' is called before actually exiting."
4038   (interactive)
4039   (when (or noninteractive              ;For gnus-batch-kill
4040             (zerop (buffer-size))
4041             (not (gnus-server-opened gnus-select-method))
4042             gnus-expert-user
4043             (not gnus-current-startup-file)
4044             (gnus-yes-or-no-p
4045              (format "Quit reading news without saving %s? "
4046                      (file-name-nondirectory gnus-current-startup-file))))
4047     (gnus-run-hooks 'gnus-exit-gnus-hook)
4048     (gnus-configure-windows 'group t)
4049     (when (and (gnus-buffer-live-p gnus-dribble-buffer)
4050                (not (zerop (save-excursion
4051                              (set-buffer gnus-dribble-buffer)
4052                              (buffer-size)))))
4053       (gnus-dribble-enter
4054        ";;; Gnus was exited on purpose without saving the .newsrc files."))
4055     (gnus-dribble-save)
4056     (gnus-close-backends)
4057     (gnus-clear-system)
4058     (gnus-kill-buffer gnus-group-buffer)
4059     ;; Allow the user to do things after cleaning up.
4060     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
4061
4062 (defun gnus-group-describe-briefly ()
4063   "Give a one line description of the group mode commands."
4064   (interactive)
4065   (gnus-message 7 (substitute-command-keys "\\<gnus-group-mode-map>\\[gnus-group-read-group]:Select  \\[gnus-group-next-unread-group]:Forward  \\[gnus-group-prev-unread-group]:Backward  \\[gnus-group-exit]:Exit  \\[gnus-info-find-node]:Run Info  \\[gnus-group-describe-briefly]:This help")))
4066
4067 (defun gnus-group-browse-foreign-server (method)
4068   "Browse a foreign news server.
4069 If called interactively, this function will ask for a select method
4070  (nntp, nnspool, etc.) and a server address (eg. nntp.some.where).
4071 If not, METHOD should be a list where the first element is the method
4072 and the second element is the address."
4073   (interactive
4074    (list (let ((how (completing-read
4075                      "Which back end: "
4076                      (append gnus-valid-select-methods gnus-server-alist)
4077                      nil t (cons "nntp" 0) 'gnus-method-history)))
4078            ;; We either got a back end name or a virtual server name.
4079            ;; If the first, we also need an address.
4080            (if (assoc how gnus-valid-select-methods)
4081                (list (intern how)
4082                      ;; Suggested by mapjph@bath.ac.uk.
4083                      (completing-read
4084                       "Address: "
4085                       (mapcar 'list gnus-secondary-servers)))
4086              ;; We got a server name.
4087              how))))
4088   (gnus-browse-foreign-server method))
4089
4090 (defun gnus-group-set-info (info &optional method-only-group part)
4091   (when (or info part)
4092     (let* ((entry (gnus-group-entry
4093                    (or method-only-group (gnus-info-group info))))
4094            (part-info info)
4095            (info (if method-only-group (nth 2 entry) info))
4096            method)
4097       (when method-only-group
4098         (unless entry
4099           (error "Trying to change non-existent group %s" method-only-group))
4100         ;; We have received parts of the actual group info - either the
4101         ;; select method or the group parameters.        We first check
4102         ;; whether we have to extend the info, and if so, do that.
4103         (let ((len (length info))
4104               (total (if (eq part 'method) 5 6)))
4105           (when (< len total)
4106             (setcdr (nthcdr (1- len) info)
4107                     (make-list (- total len) nil)))
4108           ;; Then we enter the new info.
4109           (setcar (nthcdr (1- total) info) part-info)))
4110       (unless entry
4111         ;; This is a new group, so we just create it.
4112         (save-excursion
4113           (set-buffer gnus-group-buffer)
4114           (setq method (gnus-info-method info))
4115           (when (gnus-server-equal method "native")
4116             (setq method nil))
4117           (save-excursion
4118             (set-buffer gnus-group-buffer)
4119             (if method
4120                 ;; It's a foreign group...
4121                 (gnus-group-make-group
4122                  (gnus-group-real-name (gnus-info-group info))
4123                  (if (stringp method) method
4124                    (prin1-to-string (car method)))
4125                  (and (consp method)
4126                       (nth 1 (gnus-info-method info))))
4127               ;; It's a native group.
4128               (gnus-group-make-group (gnus-info-group info))))
4129           (gnus-message 6 "Note: New group created")
4130           (setq entry
4131                 (gnus-group-entry (gnus-group-prefixed-name
4132                                    (gnus-group-real-name (gnus-info-group info))
4133                                    (or (gnus-info-method info) gnus-select-method))))))
4134       ;; Whether it was a new group or not, we now have the entry, so we
4135       ;; can do the update.
4136       (if entry
4137           (progn
4138             (setcar (nthcdr 2 entry) info)
4139             (when (and (not (eq (car entry) t))
4140                        (gnus-active (gnus-info-group info)))
4141               (setcar entry (length
4142                              (gnus-list-of-unread-articles (car info))))))
4143         (error "No such group: %s" (gnus-info-group info))))))
4144
4145 (defun gnus-group-set-method-info (group select-method)
4146   (gnus-group-set-info select-method group 'method))
4147
4148 (defun gnus-group-set-params-info (group params)
4149   (gnus-group-set-info params group 'params))
4150
4151 (defun gnus-add-marked-articles (group type articles &optional info force)
4152   ;; Add ARTICLES of TYPE to the info of GROUP.
4153   ;; If INFO is non-nil, use that info.  If FORCE is non-nil, don't
4154   ;; add, but replace marked articles of TYPE with ARTICLES.
4155   (let ((info (or info (gnus-get-info group)))
4156         marked m)
4157     (or (not info)
4158         (and (not (setq marked (nthcdr 3 info)))
4159              (or (null articles)
4160                  (setcdr (nthcdr 2 info)
4161                          (list (list (cons type (gnus-compress-sequence
4162                                                  articles t)))))))
4163         (and (not (setq m (assq type (car marked))))
4164              (or (null articles)
4165                  (setcar marked
4166                          (cons (cons type (gnus-compress-sequence articles t) )
4167                                (car marked)))))
4168         (if force
4169             (if (null articles)
4170                 (setcar (nthcdr 3 info)
4171                         (gnus-delete-alist type (car marked)))
4172               (setcdr m (gnus-compress-sequence articles t)))
4173           (setcdr m (gnus-compress-sequence
4174                      (sort (nconc (gnus-uncompress-range (cdr m))
4175                                   (copy-sequence articles)) '<) t))))))
4176
4177 (defun gnus-add-mark (group mark article)
4178   "Mark ARTICLE in GROUP with MARK, whether the group is displayed or not."
4179   (let ((buffer (gnus-summary-buffer-name group)))
4180     (if (gnus-buffer-live-p buffer)
4181         (save-excursion
4182           (set-buffer (get-buffer buffer))
4183           (gnus-summary-add-mark article mark))
4184       (gnus-add-marked-articles group (cdr (assq mark gnus-article-mark-lists))
4185                                 (list article)))))
4186
4187 ;;;
4188 ;;; Group timestamps
4189 ;;;
4190
4191 (defun gnus-group-set-timestamp ()
4192   "Change the timestamp of the current group to the current time.
4193 This function can be used in hooks like `gnus-select-group-hook'
4194 or `gnus-group-catchup-group-hook'."
4195   (when gnus-newsgroup-name
4196     (let ((time (current-time)))
4197       (setcdr (cdr time) nil)
4198       (gnus-group-set-parameter gnus-newsgroup-name 'timestamp time))))
4199
4200 (defsubst gnus-group-timestamp (group)
4201   "Return the timestamp for GROUP."
4202   (gnus-group-get-parameter group 'timestamp t))
4203
4204 (defun gnus-group-timestamp-delta (group)
4205   "Return the offset in seconds from the timestamp for GROUP to the current time, as a floating point number."
4206   (let* ((time (or (gnus-group-timestamp group)
4207                    (list 0 0)))
4208          (delta (subtract-time (current-time) time)))
4209     (+ (* (nth 0 delta) 65536.0)
4210        (nth 1 delta))))
4211
4212 (defun gnus-group-timestamp-string (group)
4213   "Return a string of the timestamp for GROUP."
4214   (let ((time (gnus-group-timestamp group)))
4215     (if (not time)
4216         ""
4217       (gnus-time-iso8601 time))))
4218
4219 (defun gnus-group-list-cached (level &optional lowest)
4220   "List all groups with cached articles.
4221 If the prefix LEVEL is non-nil, it should be a number that says which
4222 level to cut off listing groups.
4223 If LOWEST, don't list groups with level lower than LOWEST.
4224
4225 This command may read the active file."
4226   (interactive "P")
4227   (when level
4228     (setq level (prefix-numeric-value level)))
4229   (when (or (not level) (>= level gnus-level-zombie))
4230     (gnus-cache-open))
4231   (funcall gnus-group-prepare-function
4232            (or level gnus-level-subscribed)
4233            #'(lambda (info)
4234                (let ((marks (gnus-info-marks info)))
4235                  (assq 'cache marks)))
4236            lowest
4237            #'(lambda (group)
4238                (or (gnus-gethash group
4239                                  gnus-cache-active-hashtb)
4240                    ;; Cache active file might use "."
4241                    ;; instead of ":".
4242                    (gnus-gethash
4243                     (mapconcat 'identity
4244                                (split-string group ":")
4245                                ".")
4246                     gnus-cache-active-hashtb))))
4247   (goto-char (point-min))
4248   (gnus-group-position-point))
4249
4250 (defun gnus-group-list-dormant (level &optional lowest)
4251   "List all groups with dormant articles.
4252 If the prefix LEVEL is non-nil, it should be a number that says which
4253 level to cut off listing groups.
4254 If LOWEST, don't list groups with level lower than LOWEST.
4255
4256 This command may read the active file."
4257   (interactive "P")
4258   (when level
4259     (setq level (prefix-numeric-value level)))
4260   (when (or (not level) (>= level gnus-level-zombie))
4261     (gnus-cache-open))
4262   (funcall gnus-group-prepare-function
4263            (or level gnus-level-subscribed)
4264            #'(lambda (info)
4265                (let ((marks (gnus-info-marks info)))
4266                  (assq 'dormant marks)))
4267            lowest
4268            'ignore)
4269   (goto-char (point-min))
4270   (gnus-group-position-point))
4271
4272 (defun gnus-group-listed-groups ()
4273   "Return a list of listed groups."
4274   (let (point groups)
4275     (goto-char (point-min))
4276     (while (setq point (text-property-not-all (point) (point-max)
4277                                               'gnus-group nil))
4278       (goto-char point)
4279       (push (symbol-name (get-text-property point 'gnus-group)) groups)
4280       (forward-char 1))
4281     groups))
4282
4283 (defun gnus-group-list-plus (&optional args)
4284   "List groups plus the current selection."
4285   (interactive "P")
4286   (let ((gnus-group-listed-groups (gnus-group-listed-groups))
4287         (gnus-group-list-mode gnus-group-list-mode) ;; Save it.
4288         func)
4289     (push last-command-event unread-command-events)
4290     (if (featurep 'xemacs)
4291         (push (make-event 'key-press '(key ?A)) unread-command-events)
4292       (push ?A unread-command-events))
4293     (let (gnus-pick-mode keys)
4294       (setq keys (if (featurep 'xemacs)
4295                      (events-to-keys (read-key-sequence nil))
4296                    (read-key-sequence nil)))
4297       (setq func (lookup-key (current-local-map) keys)))
4298     (if (or (not func)
4299             (numberp func))
4300         (ding)
4301       (call-interactively func))))
4302
4303 (defun gnus-group-list-flush (&optional args)
4304   "Flush groups from the current selection."
4305   (interactive "P")
4306   (let ((gnus-group-list-option 'flush))
4307     (gnus-group-list-plus args)))
4308
4309 (defun gnus-group-list-limit (&optional args)
4310   "List groups limited within the current selection."
4311   (interactive "P")
4312   (let ((gnus-group-list-option 'limit))
4313     (gnus-group-list-plus args)))
4314
4315 (defun gnus-group-mark-article-read (group article)
4316   "Mark ARTICLE read."
4317   (let ((buffer (gnus-summary-buffer-name group))
4318         (mark gnus-read-mark)
4319         active n)
4320     (if (get-buffer buffer)
4321         (with-current-buffer buffer
4322           (setq active gnus-newsgroup-active)
4323           (gnus-activate-group group)
4324           (when gnus-newsgroup-prepared
4325             (when (and gnus-newsgroup-auto-expire
4326                        (memq mark gnus-auto-expirable-marks))
4327               (setq mark gnus-expirable-mark))
4328             (setq mark (gnus-request-update-mark
4329                         group article mark))
4330             (gnus-mark-article-as-read article mark)
4331             (setq gnus-newsgroup-active (gnus-active group))
4332             (when active
4333               (setq n (1+ (cdr active)))
4334               (while (<= n (cdr gnus-newsgroup-active))
4335                 (unless (eq n article)
4336                   (push n gnus-newsgroup-unselected))
4337                 (setq n (1+ n)))
4338               (setq gnus-newsgroup-unselected
4339                     (nreverse gnus-newsgroup-unselected)))))
4340       (gnus-activate-group group)
4341       (gnus-group-make-articles-read group (list article))
4342       (when (gnus-group-auto-expirable-p group)
4343         (gnus-add-marked-articles
4344          group 'expire (list article))))))
4345
4346 (provide 'gnus-group)
4347
4348 ;;; gnus-group.el ends here