(gnus-get-unread-articles): Fix previous commit.
[gnus] / lisp / gnus-start.el
1 ;;; gnus-start.el --- startup functions for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
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 (require 'gnus)
30 (require 'gnus-win)
31 (require 'gnus-int)
32 (require 'gnus-spec)
33 (require 'gnus-range)
34 (require 'gnus-util)
35 (autoload 'message-make-date "message")
36 (autoload 'gnus-agent-read-servers-validate "gnus-agent")
37 (autoload 'gnus-agent-save-local "gnus-agent")
38 (autoload 'gnus-agent-possibly-alter-active "gnus-agent")
39
40 (eval-when-compile 
41   (require 'cl)
42
43   (defvar gnus-agent-covered-methods nil)
44   (defvar gnus-agent-file-loading-local nil)
45   (defvar gnus-agent-file-loading-cache nil))
46
47 (defcustom gnus-startup-file (nnheader-concat gnus-home-directory ".newsrc")
48   "Your `.newsrc' file.
49 `.newsrc-SERVER' will be used instead if that exists."
50   :group 'gnus-start
51   :type 'file)
52
53 (defcustom gnus-backup-startup-file 'never
54   "Whether to create backup files.
55 This variable takes the same values as the `version-control'
56 variable."
57   :group 'gnus-start
58   :type '(choice (const :tag "Never" never)
59                  (const :tag "If existing" nil)
60                  (other :tag "Always" t)))
61
62 (defcustom gnus-save-startup-file-via-temp-buffer t
63   "Whether to write the startup file contents to a buffer then save
64 the buffer or write directly to the file.  The buffer is faster
65 because all of the contents are written at once.  The direct write
66 uses considerably less memory."
67   :group 'gnus-start
68   :type '(choice (const :tag "Write via buffer" t)
69                  (const :tag "Write directly to file" nil)))
70
71 (defcustom gnus-init-file (nnheader-concat gnus-home-directory ".gnus")
72   "Your Gnus Emacs-Lisp startup file name.
73 If a file with the `.el' or `.elc' suffixes exists, it will be read instead."
74   :group 'gnus-start
75   :type 'file)
76
77 (defcustom gnus-site-init-file
78   (condition-case nil
79       (concat (file-name-directory
80                (directory-file-name installation-directory))
81               "site-lisp/gnus-init")
82     (error nil))
83   "The site-wide Gnus Emacs-Lisp startup file name, or nil if none.
84 If a file with the `.el' or `.elc' suffixes exists, it will be read instead."
85   :group 'gnus-start
86   :type '(choice file (const nil)))
87
88 (defcustom gnus-default-subscribed-newsgroups nil
89   "List of newsgroups to subscribe, when a user runs Gnus the first time.
90 The value should be a list of strings.
91 If it is t, Gnus will not do anything special the first time it is
92 started; it'll just use the normal newsgroups subscription methods."
93   :group 'gnus-start
94   :type '(choice (repeat string) (const :tag "Nothing special" t)))
95
96 (defcustom gnus-use-dribble-file t
97   "*Non-nil means that Gnus will use a dribble file to store user updates.
98 If Emacs should crash without saving the .newsrc files, complete
99 information can be restored from the dribble file."
100   :group 'gnus-dribble-file
101   :type 'boolean)
102
103 (defcustom gnus-dribble-directory nil
104   "*The directory where dribble files will be saved.
105 If this variable is nil, the directory where the .newsrc files are
106 saved will be used."
107   :group 'gnus-dribble-file
108   :type '(choice directory (const nil)))
109
110 (defcustom gnus-check-new-newsgroups 'ask-server
111   "*Non-nil means that Gnus will run `gnus-find-new-newsgroups' at startup.
112 This normally finds new newsgroups by comparing the active groups the
113 servers have already reported with those Gnus already knows, either alive
114 or killed.
115
116 When any of the following are true, `gnus-find-new-newsgroups' will instead
117 ask the servers (primary, secondary, and archive servers) to list new
118 groups since the last time it checked:
119   1. This variable is `ask-server'.
120   2. This variable is a list of select methods (see below).
121   3. `gnus-read-active-file' is nil or `some'.
122   4. A prefix argument is given to `gnus-find-new-newsgroups' interactively.
123
124 Thus, if this variable is `ask-server' or a list of select methods or
125 `gnus-read-active-file' is nil or `some', then the killed list is no
126 longer necessary, so you could safely set `gnus-save-killed-list' to nil.
127
128 This variable can be a list of select methods which Gnus will query with
129 the `ask-server' method in addition to the primary, secondary, and archive
130 servers.
131
132 Eg.
133   (setq gnus-check-new-newsgroups
134         '((nntp \"some.server\") (nntp \"other.server\")))
135
136 If this variable is nil, then you have to tell Gnus explicitly to
137 check for new newsgroups with \\<gnus-group-mode-map>\\[gnus-find-new-newsgroups]."
138   :group 'gnus-start
139   :type '(choice (const :tag "no" nil)
140                  (const :tag "by brute force" t)
141                  (const :tag "ask servers" ask-server)
142                  (repeat :menu-tag "ask additional servers"
143                          :tag "ask additional servers"
144                          :value ((nntp ""))
145                          (sexp :format "%v"))))
146
147 (defcustom gnus-check-bogus-newsgroups nil
148   "*Non-nil means that Gnus will check and remove bogus newsgroup at startup.
149 If this variable is nil, then you have to tell Gnus explicitly to
150 check for bogus newsgroups with \\<gnus-group-mode-map>\\[gnus-group-check-bogus-groups]."
151   :group 'gnus-start-server
152   :type 'boolean)
153
154 (defcustom gnus-read-active-file 'some
155   "*Non-nil means that Gnus will read the entire active file at startup.
156 If this variable is nil, Gnus will only know about the groups in your
157 `.newsrc' file.
158
159 If this variable is `some', Gnus will try to only read the relevant
160 parts of the active file from the server.  Not all servers support
161 this, and it might be quite slow with other servers, but this should
162 generally be faster than both the t and nil value.
163
164 If you set this variable to nil or `some', you probably still want to
165 be told about new newsgroups that arrive.  To do that, set
166 `gnus-check-new-newsgroups' to `ask-server'.  This may not work
167 properly with all servers."
168   :group 'gnus-start-server
169   :type '(choice (const nil)
170                  (const some)
171                  (const t)))
172
173 (defconst gnus-level-subscribed 5
174   "Groups with levels less than or equal to this variable are subscribed.")
175
176 (defconst gnus-level-unsubscribed 7
177   "Groups with levels less than or equal to this variable are unsubscribed.
178 Groups with levels less than `gnus-level-subscribed', which should be
179 less than this variable, are subscribed.")
180
181 (defconst gnus-level-zombie 8
182   "Groups with this level are zombie groups.")
183
184 (defconst gnus-level-killed 9
185   "Groups with this level are killed.")
186
187 (defcustom gnus-level-default-subscribed 3
188   "*New subscribed groups will be subscribed at this level."
189   :group 'gnus-group-levels
190   :type 'integer)
191
192 (defcustom gnus-level-default-unsubscribed 6
193   "*New unsubscribed groups will be unsubscribed at this level."
194   :group 'gnus-group-levels
195   :type 'integer)
196
197 (defcustom gnus-activate-level (1+ gnus-level-subscribed)
198   "*Groups higher than this level won't be activated on startup.
199 Setting this variable to something low might save lots of time when
200 you have many groups that you aren't interested in."
201   :group 'gnus-group-levels
202   :type 'integer)
203
204 (defcustom gnus-activate-foreign-newsgroups 4
205   "*If nil, Gnus will not check foreign newsgroups at startup.
206 If it is non-nil, it should be a number between one and nine.  Foreign
207 newsgroups that have a level lower or equal to this number will be
208 activated on startup.  For instance, if you want to active all
209 subscribed newsgroups, but not the rest, you'd set this variable to
210 `gnus-level-subscribed'.
211
212 If you subscribe to lots of newsgroups from different servers, startup
213 might take a while.  By setting this variable to nil, you'll save time,
214 but you won't be told how many unread articles there are in the
215 groups."
216   :group 'gnus-group-levels
217   :type '(choice integer
218                  (const :tag "none" nil)))
219
220 (defcustom gnus-read-newsrc-file t
221   "*Non-nil means that Gnus will read the `.newsrc' file.
222 Gnus always reads its own startup file, which is called
223 \".newsrc.eld\".  The file called \".newsrc\" is in a format that can
224 be readily understood by other newsreaders.  If you don't plan on
225 using other newsreaders, set this variable to nil to save some time on
226 entry."
227   :version "21.1"
228   :group 'gnus-newsrc
229   :type 'boolean)
230
231 (defcustom gnus-save-newsrc-file t
232   "*Non-nil means that Gnus will save the `.newsrc' file.
233 Gnus always saves its own startup file, which is called
234 \".newsrc.eld\".  The file called \".newsrc\" is in a format that can
235 be readily understood by other newsreaders.  If you don't plan on
236 using other newsreaders, set this variable to nil to save some time on
237 exit."
238   :group 'gnus-newsrc
239   :type 'boolean)
240
241 (defcustom gnus-save-killed-list t
242   "*If non-nil, save the list of killed groups to the startup file.
243 If you set this variable to nil, you'll save both time (when starting
244 and quitting) and space (both memory and disk), but it will also mean
245 that Gnus has no record of which groups are new and which are old, so
246 the automatic new newsgroups subscription methods become meaningless.
247
248 You should always set `gnus-check-new-newsgroups' to `ask-server' or
249 nil if you set this variable to nil.
250
251 This variable can also be a regexp.  In that case, all groups that do
252 not match this regexp will be removed before saving the list."
253   :group 'gnus-newsrc
254   :type '(radio (sexp :format "Non-nil\n"
255                       :match (lambda (widget value)
256                                (and value (not (stringp value))))
257                       :value t)
258                 (const nil)
259                 (regexp :format "%t: %v\n" :size 0)))
260
261 (defcustom gnus-ignored-newsgroups
262   (mapconcat 'identity
263              '("^to\\."                 ; not "real" groups
264                "^[0-9. \t]+\\( \\|$\\)" ; all digits in name
265                "^[\"][]\"[#'()]"        ; bogus characters
266                )
267              "\\|")
268   "*A regexp to match uninteresting newsgroups in the active file.
269 Any lines in the active file matching this regular expression are
270 removed from the newsgroup list before anything else is done to it,
271 thus making them effectively non-existent."
272   :group 'gnus-group-new
273   :type 'regexp)
274
275 (defcustom gnus-subscribe-newsgroup-method 'gnus-subscribe-zombies
276   "*Function(s) called with a group name when new group is detected.
277 A few pre-made functions are supplied: `gnus-subscribe-randomly'
278 inserts new groups at the beginning of the list of groups;
279 `gnus-subscribe-alphabetically' inserts new groups in strict
280 alphabetic order; `gnus-subscribe-hierarchically' inserts new groups
281 in hierarchical newsgroup order; `gnus-subscribe-interactively' asks
282 for your decision; `gnus-subscribe-killed' kills all new groups;
283 `gnus-subscribe-zombies' will make all new groups into zombies;
284 `gnus-subscribe-topics' will enter groups into the topics that
285 claim them."
286   :group 'gnus-group-new
287   :type '(radio (function-item gnus-subscribe-randomly)
288                 (function-item gnus-subscribe-alphabetically)
289                 (function-item gnus-subscribe-hierarchically)
290                 (function-item gnus-subscribe-interactively)
291                 (function-item gnus-subscribe-killed)
292                 (function-item gnus-subscribe-zombies)
293                 (function-item gnus-subscribe-topics)
294                 function
295                 (repeat function)))
296
297 (defcustom gnus-subscribe-newsgroup-hooks nil
298   "*Hooks run after you subscribe to a new group.
299 The hooks will be called with new group's name as argument."
300   :group 'gnus-group-new
301   :type 'hook)
302
303 (defcustom gnus-subscribe-options-newsgroup-method
304   'gnus-subscribe-alphabetically
305   "*Function(s) called to subscribe newsgroups mentioned on \"options -n\" lines.
306 If, for instance, you want to subscribe to all newsgroups in the
307 \"no\" and \"alt\" hierarchies, you'd put the following in your
308 .newsrc file:
309
310 options -n no.all alt.all
311
312 Gnus will the subscribe all new newsgroups in these hierarchies with
313 the subscription method in this variable."
314   :group 'gnus-group-new
315   :type '(radio (function-item gnus-subscribe-randomly)
316                 (function-item gnus-subscribe-alphabetically)
317                 (function-item gnus-subscribe-hierarchically)
318                 (function-item gnus-subscribe-interactively)
319                 (function-item gnus-subscribe-killed)
320                 (function-item gnus-subscribe-zombies)
321                 (function-item gnus-subscribe-topics)
322                 function
323                 (repeat function)))
324
325 (defcustom gnus-subscribe-hierarchical-interactive nil
326   "*If non-nil, Gnus will offer to subscribe hierarchically.
327 When a new hierarchy appears, Gnus will ask the user:
328
329 'alt.binaries': Do you want to subscribe to this hierarchy? ([d]ys):
330
331 If the user pressed `d', Gnus will descend the hierarchy, `y' will
332 subscribe to all newsgroups in the hierarchy and `s' will skip this
333 hierarchy in its entirety."
334   :group 'gnus-group-new
335   :type 'boolean)
336
337 (defcustom gnus-auto-subscribed-groups
338   "^nnml\\|^nnfolder\\|^nnmbox\\|^nnmh\\|^nnbabyl\\|^nnmaildir"
339   "*All new groups that match this regexp will be subscribed automatically.
340 Note that this variable only deals with new groups.  It has no effect
341 whatsoever on old groups.
342
343 New groups that match this regexp will not be handled by
344 `gnus-subscribe-newsgroup-method'.  Instead, they will
345 be subscribed using `gnus-subscribe-options-newsgroup-method'."
346   :group 'gnus-group-new
347   :type 'regexp)
348
349 (defcustom gnus-options-subscribe nil
350   "*All new groups matching this regexp will be subscribed unconditionally.
351 Note that this variable deals only with new newsgroups.  This variable
352 does not affect old newsgroups.
353
354 New groups that match this regexp will not be handled by
355 `gnus-subscribe-newsgroup-method'.  Instead, they will
356 be subscribed using `gnus-subscribe-options-newsgroup-method'."
357   :group 'gnus-group-new
358   :type '(choice regexp
359                  (const :tag "none" nil)))
360
361 (defcustom gnus-options-not-subscribe nil
362   "*All new groups matching this regexp will be ignored.
363 Note that this variable deals only with new newsgroups.  This variable
364 does not affect old (already subscribed) newsgroups."
365   :group 'gnus-group-new
366   :type '(choice regexp
367                  (const :tag "none" nil)))
368
369 (defcustom gnus-modtime-botch nil
370   "*Non-nil means .newsrc should be deleted prior to save.
371 Its use is due to the bogus appearance that .newsrc was modified on
372 disc."
373   :group 'gnus-newsrc
374   :type 'boolean)
375
376 (defcustom gnus-check-bogus-groups-hook nil
377   "A hook run after removing bogus groups."
378   :group 'gnus-start-server
379   :type 'hook)
380
381 (defcustom gnus-startup-hook nil
382   "A hook called at startup.
383 This hook is called after Gnus is connected to the NNTP server."
384   :group 'gnus-start
385   :type 'hook)
386
387 (defcustom gnus-before-startup-hook nil
388   "A hook called at before startup.
389 This hook is called as the first thing when Gnus is started."
390   :group 'gnus-start
391   :type 'hook)
392
393 (defcustom gnus-started-hook nil
394   "A hook called as the last thing after startup."
395   :group 'gnus-start
396   :type 'hook)
397
398 (defcustom gnus-setup-news-hook
399   '(gnus-fixup-nnimap-unread-after-getting-new-news)
400   "A hook after reading the .newsrc file, but before generating the buffer."
401   :group 'gnus-start
402   :type 'hook)
403
404 (defcustom gnus-get-top-new-news-hook nil
405   "A hook run just before Gnus checks for new news globally."
406   :group 'gnus-group-new
407   :type 'hook)
408
409 (defcustom gnus-get-new-news-hook nil
410   "A hook run just before Gnus checks for new news."
411   :group 'gnus-group-new
412   :type 'hook)
413
414 (defcustom gnus-after-getting-new-news-hook
415   '(gnus-display-time-event-handler
416     gnus-fixup-nnimap-unread-after-getting-new-news)
417   "*A hook run after Gnus checks for new news when Gnus is already running."
418   :group 'gnus-group-new
419   :type 'hook)
420
421 (defcustom gnus-read-newsrc-el-hook nil
422   "A hook called after reading the newsrc.eld? file."
423   :group 'gnus-newsrc
424   :type 'hook)
425
426 (defcustom gnus-save-newsrc-hook nil
427   "A hook called before saving any of the newsrc files."
428   :group 'gnus-newsrc
429   :type 'hook)
430
431 (defcustom gnus-save-quick-newsrc-hook nil
432   "A hook called just before saving the quick newsrc file.
433 Can be used to turn version control on or off."
434   :group 'gnus-newsrc
435   :type 'hook)
436
437 (defcustom gnus-save-standard-newsrc-hook nil
438   "A hook called just before saving the standard newsrc file.
439 Can be used to turn version control on or off."
440   :group 'gnus-newsrc
441   :type 'hook)
442
443 (defcustom gnus-group-mode-hook nil
444   "Hook for Gnus group mode."
445   :group 'gnus-group-various
446   :options '(gnus-topic-mode)
447   :type 'hook)
448
449 (defcustom gnus-always-read-dribble-file nil
450   "Unconditionally read the dribble file."
451   :group 'gnus-newsrc
452   :type 'boolean)
453
454 ;;; Internal variables
455
456 (defvar gnus-ding-file-coding-system mm-universal-coding-system
457   "Coding system for ding file.")
458
459 (defvar gnus-newsrc-file-version nil)
460 (defvar gnus-override-subscribe-method nil)
461 (defvar gnus-dribble-buffer nil)
462 (defvar gnus-newsrc-options nil
463   "Options line in the .newsrc file.")
464
465 (defvar gnus-newsrc-options-n nil
466   "List of regexps representing groups to be subscribed/ignored unconditionally.")
467
468 (defvar gnus-newsrc-last-checked-date nil
469   "Date Gnus last asked server for new newsgroups.")
470
471 (defvar gnus-current-startup-file nil
472   "Startup file for the current host.")
473
474 ;; Byte-compiler warning.
475 (defvar gnus-group-line-format)
476
477 ;; Suggested by Brian Edmonds <edmonds@cs.ubc.ca>.
478 (defvar gnus-init-inhibit nil)
479 (defun gnus-read-init-file (&optional inhibit-next)
480   ;; Don't load .gnus if the -q option was used.
481   (when init-file-user
482     (if gnus-init-inhibit
483         (setq gnus-init-inhibit nil)
484       (setq gnus-init-inhibit inhibit-next)
485       (dolist (file (list gnus-site-init-file gnus-init-file))
486         (when (and file
487                    (locate-library file))
488           (if (or debug-on-error debug-on-quit)
489               (load file nil t)
490             (condition-case var
491                 (load file nil t)
492               (error
493                (error "Error in %s: %s" file (cadr var))))))))))
494
495 ;; For subscribing new newsgroup
496
497 (defun gnus-subscribe-hierarchical-interactive (groups)
498   (let ((groups (sort groups 'string<))
499         prefixes prefix start ans group starts real-group)
500     (while groups
501       (setq prefixes (list "^"))
502       (while (and groups prefixes)
503         (while (not (string-match (car prefixes)
504                                   (gnus-group-real-name (car groups))))
505           (setq prefixes (cdr prefixes)))
506         (setq prefix (car prefixes))
507         (setq start (1- (length prefix)))
508         (if (and (string-match "[^\\.]\\." (gnus-group-real-name (car groups))
509                                start)
510                  (cdr groups)
511                  (setq prefix
512                        (concat "^" (substring
513                                     (gnus-group-real-name (car groups))
514                                     0 (match-end 0))))
515                  (string-match prefix (gnus-group-real-name (cadr groups))))
516             (progn
517               (push prefix prefixes)
518               (message "Descend hierarchy %s? ([y]nsq): "
519                        (substring prefix 1 (1- (length prefix))))
520               (while (not (memq (setq ans (read-char-exclusive))
521                                 '(?y ?\n ?\r ?n ?s ?q)))
522                 (ding)
523                 (message "Descend hierarchy %s? ([y]nsq): "
524                          (substring prefix 1 (1- (length prefix)))))
525               (cond ((= ans ?n)
526                      (while (and groups
527                                  (setq group (car groups)
528                                        real-group (gnus-group-real-name group))
529                                  (string-match prefix real-group))
530                        (push group gnus-killed-list)
531                        (gnus-sethash group group gnus-killed-hashtb)
532                        (setq groups (cdr groups)))
533                      (setq starts (cdr starts)))
534                     ((= ans ?s)
535                      (while (and groups
536                                  (setq group (car groups)
537                                        real-group (gnus-group-real-name group))
538                                  (string-match prefix real-group))
539                        (gnus-sethash group group gnus-killed-hashtb)
540                        (gnus-subscribe-alphabetically (car groups))
541                        (setq groups (cdr groups)))
542                      (setq starts (cdr starts)))
543                     ((= ans ?q)
544                      (while groups
545                        (setq group (car groups))
546                        (push group gnus-killed-list)
547                        (gnus-sethash group group gnus-killed-hashtb)
548                        (setq groups (cdr groups))))
549                     (t nil)))
550           (message "Subscribe %s? ([n]yq)" (car groups))
551           (while (not (memq (setq ans (read-char-exclusive))
552                             '(?y ?\n ?\r ?q ?n)))
553             (ding)
554             (message "Subscribe %s? ([n]yq)" (car groups)))
555           (setq group (car groups))
556           (cond ((= ans ?y)
557                  (gnus-subscribe-alphabetically (car groups))
558                  (gnus-sethash group group gnus-killed-hashtb))
559                 ((= ans ?q)
560                  (while groups
561                    (setq group (car groups))
562                    (push group gnus-killed-list)
563                    (gnus-sethash group group gnus-killed-hashtb)
564                    (setq groups (cdr groups))))
565                 (t
566                  (push group gnus-killed-list)
567                  (gnus-sethash group group gnus-killed-hashtb)))
568           (setq groups (cdr groups)))))))
569
570 (defun gnus-subscribe-randomly (newsgroup)
571   "Subscribe new NEWSGROUP by making it the first newsgroup."
572   (gnus-subscribe-newsgroup newsgroup))
573
574 (defun gnus-subscribe-alphabetically (newgroup)
575   "Subscribe new NEWGROUP and insert it in alphabetical order."
576   (let ((groups (cdr gnus-newsrc-alist))
577         before)
578     (while (and (not before) groups)
579       (if (string< newgroup (caar groups))
580           (setq before (caar groups))
581         (setq groups (cdr groups))))
582     (gnus-subscribe-newsgroup newgroup before)))
583
584 (defun gnus-subscribe-hierarchically (newgroup)
585   "Subscribe new NEWGROUP and insert it in hierarchical newsgroup order."
586   ;; Basic ideas by mike-w@cs.aukuni.ac.nz (Mike Williams)
587   (save-excursion
588     (set-buffer (nnheader-find-file-noselect gnus-current-startup-file))
589     (prog1
590         (let ((groupkey newgroup) before)
591           (while (and (not before) groupkey)
592             (goto-char (point-min))
593             (let ((groupkey-re
594                    (concat "^\\(" (regexp-quote groupkey) ".*\\)[!:]")))
595               (while (and (re-search-forward groupkey-re nil t)
596                           (progn
597                             (setq before (match-string 1))
598                             (string< before newgroup)))))
599             ;; Remove tail of newsgroup name (eg. a.b.c -> a.b)
600             (setq groupkey
601                   (when (string-match "^\\(.*\\)\\.[^.]+$" groupkey)
602                     (substring groupkey (match-beginning 1) (match-end 1)))))
603           (gnus-subscribe-newsgroup newgroup before))
604       (kill-buffer (current-buffer)))))
605
606 (defun gnus-subscribe-interactively (group)
607   "Subscribe the new GROUP interactively.
608 It is inserted in hierarchical newsgroup order if subscribed.  If not,
609 it is killed."
610   (if (gnus-y-or-n-p (format "Subscribe new newsgroup: %s " group))
611       (gnus-subscribe-hierarchically group)
612     (push group gnus-killed-list)))
613
614 (defun gnus-subscribe-zombies (group)
615   "Make the new GROUP into a zombie group."
616   (push group gnus-zombie-list))
617
618 (defun gnus-subscribe-killed (group)
619   "Make the new GROUP a killed group."
620   (push group gnus-killed-list))
621
622 (defun gnus-subscribe-newsgroup (newsgroup &optional next)
623   "Subscribe new NEWSGROUP.
624 If NEXT is non-nil, it is inserted before NEXT.  Otherwise it is made
625 the first newsgroup."
626   (save-excursion
627     (goto-char (point-min))
628     ;; We subscribe the group by changing its level to `subscribed'.
629     (gnus-group-change-level
630      newsgroup gnus-level-default-subscribed
631      gnus-level-killed (gnus-group-entry (or next "dummy.group")))
632     (gnus-message 5 "Subscribe newsgroup: %s" newsgroup)
633     (run-hook-with-args 'gnus-subscribe-newsgroup-hooks newsgroup)
634     t))
635
636 (defun gnus-read-active-file-p ()
637   "Say whether the active file has been read from `gnus-select-method'."
638   (memq gnus-select-method gnus-have-read-active-file))
639
640 ;;; General various misc type functions.
641
642 ;; Silence byte-compiler.
643 (eval-when-compile
644   (defvar gnus-current-headers)
645   (defvar gnus-thread-indent-array)
646   (defvar gnus-newsgroup-name)
647   (defvar gnus-newsgroup-headers)
648   (defvar gnus-group-list-mode)
649   (defvar gnus-group-mark-positions)
650   (defvar gnus-newsgroup-data)
651   (defvar gnus-newsgroup-unreads)
652   (defvar nnoo-state-alist)
653   (defvar gnus-current-select-method)
654   (defvar mail-sources)
655   (defvar nnmail-scan-directory-mail-source-once)
656   (defvar nnmail-split-history)
657   (defvar nnmail-spool-file))
658
659 (defun gnus-close-all-servers ()
660   "Close all servers."
661   (interactive)
662   (dolist (server gnus-opened-servers)
663     (gnus-close-server (car server))))
664
665 (defun gnus-clear-system ()
666   "Clear all variables and buffers."
667   ;; Clear Gnus variables.
668   (let ((variables (remove 'gnus-format-specs gnus-variable-list)))
669     (while variables
670       (set (car variables) nil)
671       (setq variables (cdr variables))))
672   ;; Clear other internal variables.
673   (setq gnus-list-of-killed-groups nil
674         gnus-have-read-active-file nil
675         gnus-agent-covered-methods nil
676         gnus-agent-file-loading-local nil
677         gnus-agent-file-loading-cache nil
678         gnus-server-method-cache nil
679         gnus-newsrc-alist nil
680         gnus-newsrc-hashtb nil
681         gnus-killed-list nil
682         gnus-zombie-list nil
683         gnus-killed-hashtb nil
684         gnus-active-hashtb nil
685         gnus-moderated-hashtb nil
686         gnus-description-hashtb nil
687         gnus-current-headers nil
688         gnus-thread-indent-array nil
689         gnus-newsgroup-headers nil
690         gnus-newsgroup-name nil
691         gnus-server-alist nil
692         gnus-group-list-mode nil
693         gnus-opened-servers nil
694         gnus-group-mark-positions nil
695         gnus-newsgroup-data nil
696         gnus-newsgroup-unreads nil
697         nnoo-state-alist nil
698         gnus-current-select-method nil
699         nnmail-split-history nil
700         gnus-ephemeral-servers nil)
701   (gnus-shutdown 'gnus)
702   ;; Kill the startup file.
703   (and gnus-current-startup-file
704        (get-file-buffer gnus-current-startup-file)
705        (kill-buffer (get-file-buffer gnus-current-startup-file)))
706   ;; Clear the dribble buffer.
707   (gnus-dribble-clear)
708   ;; Kill global KILL file buffer.
709   (when (get-file-buffer (gnus-newsgroup-kill-file nil))
710     (kill-buffer (get-file-buffer (gnus-newsgroup-kill-file nil))))
711   (gnus-kill-buffer nntp-server-buffer)
712   ;; Kill Gnus buffers.
713   (dolist (buffer (gnus-buffers))
714     (gnus-kill-buffer buffer))
715   ;; Remove Gnus frames.
716   (gnus-kill-gnus-frames))
717
718 (defun gnus-no-server-1 (&optional arg slave)
719   "Read network news.
720 If ARG is a positive number, Gnus will use that as the
721 startup level.  If ARG is nil, Gnus will be started at level 2.
722 If ARG is non-nil and not a positive number, Gnus will
723 prompt the user for the name of an NNTP server to use.
724 As opposed to `gnus', this command will not connect to the local server."
725   (interactive "P")
726   (let ((val (or arg (1- gnus-level-default-subscribed))))
727     (gnus val t slave)
728     (make-local-variable 'gnus-group-use-permanent-levels)
729     (setq gnus-group-use-permanent-levels val)))
730
731 (defun gnus-1 (&optional arg dont-connect slave)
732   "Read network news.
733 If ARG is non-nil and a positive number, Gnus will use that as the
734 startup level.  If ARG is non-nil and not a positive number, Gnus will
735 prompt the user for the name of an NNTP server to use."
736   (interactive "P")
737
738   (if (gnus-alive-p)
739       (progn
740         (switch-to-buffer gnus-group-buffer)
741         (gnus-group-get-new-news
742          (and (numberp arg)
743               (> arg 0)
744               (max (car gnus-group-list-mode) arg))))
745
746     (gnus-clear-system)
747     (gnus-splash)
748     (gnus-run-hooks 'gnus-before-startup-hook)
749     (nnheader-init-server-buffer)
750     (setq gnus-slave slave)
751     (gnus-read-init-file)
752     (if gnus-agent
753         (gnus-agentize))
754
755     (when gnus-simple-splash
756       (setq gnus-simple-splash nil)
757       (cond
758        ((featurep 'xemacs)
759         (gnus-xmas-splash))
760        ((and window-system
761              (= (frame-height) (1+ (window-height))))
762         (gnus-x-splash))))
763
764     (let ((level (and (numberp arg) (> arg 0) arg))
765           did-connect)
766       (unwind-protect
767           (progn
768             (unless dont-connect
769               (setq did-connect
770                     (gnus-start-news-server (and arg (not level))))))
771         (if (and (not dont-connect)
772                  (not did-connect))
773             (gnus-group-quit)
774           (gnus-run-hooks 'gnus-startup-hook)
775           ;; NNTP server is successfully open.
776
777           ;; Find the current startup file name.
778           (setq gnus-current-startup-file
779                 (gnus-make-newsrc-file gnus-startup-file))
780
781           ;; Read the dribble file.
782           (when (or gnus-slave gnus-use-dribble-file)
783             (gnus-dribble-read-file))
784
785           ;; Do the actual startup.
786           (if gnus-agent
787               (gnus-request-create-group "queue" '(nndraft "")))
788           (gnus-request-create-group "drafts" '(nndraft ""))
789           (gnus-setup-news nil level dont-connect)
790           (gnus-run-hooks 'gnus-setup-news-hook)
791           (gnus-start-draft-setup)
792           ;; Generate the group buffer.
793           (gnus-group-list-groups level)
794           (gnus-group-first-unread-group)
795           (gnus-configure-windows 'group)
796           (gnus-group-set-mode-line)
797           (gnus-run-hooks 'gnus-started-hook))))))
798
799 (defun gnus-start-draft-setup ()
800   "Make sure the draft group exists."
801   (gnus-request-create-group "drafts" '(nndraft ""))
802   (unless (gnus-group-entry "nndraft:drafts")
803     (let ((gnus-level-default-subscribed 1))
804       (gnus-subscribe-group "nndraft:drafts" nil '(nndraft "")))
805     (gnus-group-set-parameter
806      "nndraft:drafts" 'gnus-dummy '((gnus-draft-mode)))))
807
808 \f
809 ;;;
810 ;;; Dribble file
811 ;;;
812
813 (defvar gnus-dribble-ignore nil)
814 (defvar gnus-dribble-eval-file nil)
815
816 (defun gnus-dribble-file-name ()
817   "Return the dribble file for the current .newsrc."
818   (concat
819    (if gnus-dribble-directory
820        (concat (file-name-as-directory gnus-dribble-directory)
821                (file-name-nondirectory gnus-current-startup-file))
822      gnus-current-startup-file)
823    "-dribble"))
824
825 (defun gnus-dribble-enter (string)
826   "Enter STRING into the dribble buffer."
827   (when (and (not gnus-dribble-ignore)
828              gnus-dribble-buffer
829              (buffer-name gnus-dribble-buffer))
830     (let ((obuf (current-buffer)))
831       (set-buffer gnus-dribble-buffer)
832       (goto-char (point-max))
833       (insert string "\n")
834       ;; This has been commented by Josh Huber <huber@alum.wpi.edu>
835       ;; It causes problems with both XEmacs and Emacs 21, and doesn't
836       ;; seem to be of much value. (FIXME: remove this after we make sure
837       ;; it's not needed).
838       ;; (set-window-point (get-buffer-window (current-buffer)) (point-max))
839       (bury-buffer gnus-dribble-buffer)
840       (save-excursion
841         (set-buffer gnus-group-buffer)
842         (gnus-group-set-mode-line))
843       (set-buffer obuf))))
844
845 (defun gnus-dribble-touch ()
846   "Touch the dribble buffer."
847   (gnus-dribble-enter ""))
848
849 (defun gnus-dribble-read-file ()
850   "Read the dribble file from disk."
851   (let ((dribble-file (gnus-dribble-file-name)))
852     (save-excursion
853       (set-buffer (setq gnus-dribble-buffer
854                         (gnus-get-buffer-create
855                          (file-name-nondirectory dribble-file))))
856       (erase-buffer)
857       (setq buffer-file-name dribble-file)
858       (auto-save-mode t)
859       (buffer-disable-undo)
860       (bury-buffer (current-buffer))
861       (set-buffer-modified-p nil)
862       (let ((auto (make-auto-save-file-name))
863             (gnus-dribble-ignore t)
864             (purpose nil)
865             modes)
866         (when (or (file-exists-p auto) (file-exists-p dribble-file))
867           ;; Load whichever file is newest -- the auto save file
868           ;; or the "real" file.
869           (if (file-newer-than-file-p auto dribble-file)
870               (nnheader-insert-file-contents auto)
871             (nnheader-insert-file-contents dribble-file))
872           (unless (zerop (buffer-size))
873             (set-buffer-modified-p t))
874           ;; Set the file modes to reflect the .newsrc file modes.
875           (save-buffer)
876           (when (and (file-exists-p gnus-current-startup-file)
877                      (file-exists-p dribble-file)
878                      (setq modes (file-modes gnus-current-startup-file)))
879             (set-file-modes dribble-file modes))
880           (goto-char (point-min))
881           (when (search-forward "Gnus was exited on purpose" nil t)
882             (setq purpose t))
883           ;; Possibly eval the file later.
884           (when (or gnus-always-read-dribble-file
885                     (gnus-y-or-n-p
886                      (if purpose
887                          "Gnus exited on purpose without saving; read auto-save file anyway? "
888                      "Gnus auto-save file exists.  Do you want to read it? ")))
889             (setq gnus-dribble-eval-file t)))))))
890
891 (defun gnus-dribble-eval-file ()
892   (when gnus-dribble-eval-file
893     (setq gnus-dribble-eval-file nil)
894     (save-excursion
895       (let ((gnus-dribble-ignore t))
896         (set-buffer gnus-dribble-buffer)
897         (eval-buffer (current-buffer))))))
898
899 (defun gnus-dribble-delete-file ()
900   (when (file-exists-p (gnus-dribble-file-name))
901     (delete-file (gnus-dribble-file-name)))
902   (when gnus-dribble-buffer
903     (save-excursion
904       (set-buffer gnus-dribble-buffer)
905       (let ((auto (make-auto-save-file-name)))
906         (when (file-exists-p auto)
907           (delete-file auto))
908         (erase-buffer)
909         (set-buffer-modified-p nil)))))
910
911 (defun gnus-dribble-save ()
912   (when (and gnus-dribble-buffer
913              (buffer-name gnus-dribble-buffer))
914     (save-excursion
915       (set-buffer gnus-dribble-buffer)
916       (save-buffer))))
917
918 (defun gnus-dribble-clear ()
919   (when (gnus-buffer-exists-p gnus-dribble-buffer)
920     (save-excursion
921       (set-buffer gnus-dribble-buffer)
922       (erase-buffer)
923       (set-buffer-modified-p nil)
924       (setq buffer-saved-size (buffer-size)))))
925
926 \f
927 ;;;
928 ;;; Active & Newsrc File Handling
929 ;;;
930
931 (defun gnus-setup-news (&optional rawfile level dont-connect)
932   "Setup news information.
933 If RAWFILE is non-nil, the .newsrc file will also be read.
934 If LEVEL is non-nil, the news will be set up at level LEVEL."
935   (require 'nnmail)
936   (let ((init (not (and gnus-newsrc-alist gnus-active-hashtb (not rawfile))))
937         ;; Binding this variable will inhibit multiple fetchings
938         ;; of the same mail source.
939         (nnmail-fetched-sources (list t)))
940
941     (when init
942       ;; Clear some variables to re-initialize news information.
943       (setq gnus-newsrc-alist nil
944             gnus-active-hashtb nil)
945       ;; Read the newsrc file and create `gnus-newsrc-hashtb'.
946       (gnus-read-newsrc-file rawfile))
947
948     ;; Make sure the archive server is available to all and sundry.
949     (when gnus-message-archive-method
950       (unless (assoc "archive" gnus-server-alist)
951         (push `("archive"
952                 nnfolder
953                 "archive"
954                 (nnfolder-directory
955                  ,(nnheader-concat message-directory "archive"))
956                 (nnfolder-active-file
957                  ,(nnheader-concat message-directory "archive/active"))
958                 (nnfolder-get-new-mail nil)
959                 (nnfolder-inhibit-expiry t))
960               gnus-server-alist)))
961
962     ;; If we don't read the complete active file, we fill in the
963     ;; hashtb here.
964     (when (or (null gnus-read-active-file)
965               (eq gnus-read-active-file 'some))
966       (gnus-update-active-hashtb-from-killed))
967
968     ;; Validate agent covered methods now that gnus-server-alist has
969     ;; been initialized.
970     ;; NOTE: This is here for one purpose only.  By validating the
971     ;; agentized server's, it converts the old 5.10.3, and earlier,
972     ;; format to the current format.  That enables the agent code
973     ;; within gnus-read-active-file to function correctly.
974     (if gnus-agent
975         (gnus-agent-read-servers-validate))
976
977     ;; Read the active file and create `gnus-active-hashtb'.
978     ;; If `gnus-read-active-file' is nil, then we just create an empty
979     ;; hash table.  The partial filling out of the hash table will be
980     ;; done in `gnus-get-unread-articles'.
981     (and gnus-read-active-file
982          (not level)
983          (gnus-read-active-file nil dont-connect))
984
985     (unless gnus-active-hashtb
986       (setq gnus-active-hashtb (gnus-make-hashtable 4096)))
987
988     ;; Initialize the cache.
989     (when gnus-use-cache
990       (gnus-cache-open))
991
992     ;; Possibly eval the dribble file.
993     (and init
994          (or gnus-use-dribble-file gnus-slave)
995          (gnus-dribble-eval-file))
996
997     ;; Slave Gnusii should then clear the dribble buffer.
998     (when (and init gnus-slave)
999       (gnus-dribble-clear))
1000
1001     (gnus-update-format-specifications)
1002
1003     ;; See whether we need to read the description file.
1004     (when (and (boundp 'gnus-group-line-format)
1005                (stringp gnus-group-line-format)
1006                (let ((case-fold-search nil))
1007                  (string-match "%[-,0-9]*D" gnus-group-line-format))
1008                (not gnus-description-hashtb)
1009                (not dont-connect)
1010                gnus-read-active-file)
1011       (gnus-read-all-descriptions-files))
1012
1013     ;; Find new newsgroups and treat them.
1014     (when (and init gnus-check-new-newsgroups (not level)
1015                (gnus-check-server gnus-select-method)
1016                (not gnus-slave)
1017                gnus-plugged)
1018       (gnus-find-new-newsgroups))
1019
1020     ;; Check and remove bogus newsgroups.
1021     (when (and init gnus-check-bogus-newsgroups
1022                gnus-read-active-file (not level)
1023                (gnus-server-opened gnus-select-method))
1024       (gnus-check-bogus-newsgroups))
1025
1026     ;; We might read in new NoCeM messages here.
1027     (when (and gnus-use-nocem
1028                (not level)
1029                (not dont-connect))
1030       (gnus-nocem-scan-groups))
1031
1032     ;; Read any slave files.
1033     (gnus-master-read-slave-newsrc)
1034
1035     ;; Find the number of unread articles in each non-dead group.
1036     (let ((gnus-read-active-file (and (not level) gnus-read-active-file)))
1037       (gnus-get-unread-articles level))))
1038
1039 (defun gnus-call-subscribe-functions (method group)
1040   "Call METHOD to subscribe GROUP.
1041 If no function returns `non-nil', call `gnus-subscribe-zombies'."
1042   (unless (cond
1043            ((functionp method)
1044             (funcall method group))
1045            ((listp method)
1046             (catch 'found
1047               (dolist (func method)
1048                 (if (funcall func group)
1049                     (throw 'found t)))
1050               nil))
1051            (t nil))
1052     (gnus-subscribe-zombies group)))
1053
1054 (defun gnus-find-new-newsgroups (&optional arg)
1055   "Search for new newsgroups and add them.
1056 Each new newsgroup will be treated with `gnus-subscribe-newsgroup-method'.
1057 The `-n' option line from .newsrc is respected.
1058
1059 With 1 C-u, use the `ask-server' method to query the server for new
1060 groups.
1061 With 2 C-u's, use most complete method possible to query the server
1062 for new groups, and subscribe the new groups as zombies."
1063   (interactive "p")
1064   (let* ((gnus-subscribe-newsgroup-method
1065           gnus-subscribe-newsgroup-method)
1066          (check (cond
1067                  ((or (and (= (or arg 1) 4)
1068                            (not (listp gnus-check-new-newsgroups)))
1069                       (null gnus-read-active-file)
1070                       (eq gnus-read-active-file 'some))
1071                   'ask-server)
1072                  ((= (or arg 1) 16)
1073                   (setq gnus-subscribe-newsgroup-method
1074                         'gnus-subscribe-zombies)
1075                   t)
1076                  (t gnus-check-new-newsgroups))))
1077     (unless (gnus-check-first-time-used)
1078       (if (or (consp check)
1079               (eq check 'ask-server))
1080           ;; Ask the server for new groups.
1081           (gnus-ask-server-for-new-groups)
1082         ;; Go through the active hashtb and look for new groups.
1083         (let ((groups 0)
1084               group new-newsgroups)
1085           (gnus-message 5 "Looking for new newsgroups...")
1086           (unless gnus-have-read-active-file
1087             (gnus-read-active-file))
1088           (setq gnus-newsrc-last-checked-date (message-make-date))
1089           (unless gnus-killed-hashtb
1090             (gnus-make-hashtable-from-killed))
1091           ;; Go though every newsgroup in `gnus-active-hashtb' and compare
1092           ;; with `gnus-newsrc-hashtb' and `gnus-killed-hashtb'.
1093           (mapatoms
1094            (lambda (sym)
1095              (if (or (null (setq group (symbol-name sym)))
1096                      (not (boundp sym))
1097                      (null (symbol-value sym))
1098                      (gnus-gethash group gnus-killed-hashtb)
1099                      (gnus-gethash group gnus-newsrc-hashtb))
1100                  ()
1101                (let ((do-sub (gnus-matches-options-n group)))
1102                  (cond
1103                   ((eq do-sub 'subscribe)
1104                    (setq groups (1+ groups))
1105                    (gnus-sethash group group gnus-killed-hashtb)
1106                    (gnus-call-subscribe-functions
1107                     gnus-subscribe-options-newsgroup-method group))
1108                   ((eq do-sub 'ignore)
1109                    nil)
1110                   (t
1111                    (setq groups (1+ groups))
1112                    (gnus-sethash group group gnus-killed-hashtb)
1113                    (if gnus-subscribe-hierarchical-interactive
1114                        (push group new-newsgroups)
1115                      (gnus-call-subscribe-functions
1116                       gnus-subscribe-newsgroup-method group)))))))
1117            gnus-active-hashtb)
1118           (when new-newsgroups
1119             (gnus-subscribe-hierarchical-interactive new-newsgroups))
1120           (if (> groups 0)
1121               (gnus-message 5 "%d new newsgroup%s arrived."
1122                             groups (if (> groups 1) "s have" " has"))
1123             (gnus-message 5 "No new newsgroups.")))))))
1124
1125 (defun gnus-matches-options-n (group)
1126   ;; Returns `subscribe' if the group is to be unconditionally
1127   ;; subscribed, `ignore' if it is to be ignored, and nil if there is
1128   ;; no match for the group.
1129
1130   ;; First we check the two user variables.
1131   (cond
1132    ((and gnus-options-subscribe
1133          (string-match gnus-options-subscribe group))
1134     'subscribe)
1135    ((and gnus-auto-subscribed-groups
1136          (string-match gnus-auto-subscribed-groups group))
1137     'subscribe)
1138    ((and gnus-options-not-subscribe
1139          (string-match gnus-options-not-subscribe group))
1140     'ignore)
1141    ;; Then we go through the list that was retrieved from the .newsrc
1142    ;; file.  This list has elements on the form
1143    ;; `(REGEXP . {ignore,subscribe})'.  The first match found (the list
1144    ;; is in the reverse order of the options line) is returned.
1145    (t
1146     (let ((regs gnus-newsrc-options-n))
1147       (while (and regs
1148                   (not (string-match (caar regs) group)))
1149         (setq regs (cdr regs)))
1150       (and regs (cdar regs))))))
1151
1152 (defun gnus-ask-server-for-new-groups ()
1153   (let* ((new-date (message-make-date))
1154          (date (or gnus-newsrc-last-checked-date new-date))
1155          (methods (cons gnus-select-method
1156                         (nconc
1157                          (when (gnus-archive-server-wanted-p)
1158                            (list "archive"))
1159                          (append
1160                           (and (consp gnus-check-new-newsgroups)
1161                                gnus-check-new-newsgroups)
1162                           gnus-secondary-select-methods))))
1163          (groups 0)
1164          group new-newsgroups got-new method hashtb
1165          gnus-override-subscribe-method)
1166     (unless gnus-killed-hashtb
1167       (gnus-make-hashtable-from-killed))
1168     ;; Go through both primary and secondary select methods and
1169     ;; request new newsgroups.
1170     (while (setq method (gnus-server-get-method nil (pop methods)))
1171       (setq new-newsgroups nil
1172             gnus-override-subscribe-method method)
1173       (when (and (gnus-check-server method)
1174                  (gnus-request-newgroups date method))
1175         (save-excursion
1176           (setq got-new t
1177                 hashtb (gnus-make-hashtable 100))
1178           (set-buffer nntp-server-buffer)
1179           ;; Enter all the new groups into a hashtable.
1180           (gnus-active-to-gnus-format method hashtb 'ignore))
1181         ;; Now all new groups from `method' are in `hashtb'.
1182         (mapatoms
1183          (lambda (group-sym)
1184            (if (or (null (setq group (symbol-name group-sym)))
1185                    (not (boundp group-sym))
1186                    (null (symbol-value group-sym))
1187                    (gnus-gethash group gnus-newsrc-hashtb)
1188                    (member group gnus-zombie-list)
1189                    (member group gnus-killed-list))
1190                ;; The group is already known.
1191                ()
1192              ;; Make this group active.
1193              (when (symbol-value group-sym)
1194                (gnus-set-active group (symbol-value group-sym)))
1195              ;; Check whether we want it or not.
1196              (let ((do-sub (gnus-matches-options-n group)))
1197                (cond
1198                 ((eq do-sub 'subscribe)
1199                  (incf groups)
1200                  (gnus-sethash group group gnus-killed-hashtb)
1201                  (gnus-call-subscribe-functions
1202                   gnus-subscribe-options-newsgroup-method group))
1203                 ((eq do-sub 'ignore)
1204                  nil)
1205                 (t
1206                  (incf groups)
1207                  (gnus-sethash group group gnus-killed-hashtb)
1208                  (if gnus-subscribe-hierarchical-interactive
1209                      (push group new-newsgroups)
1210                    (gnus-call-subscribe-functions
1211                     gnus-subscribe-newsgroup-method group)))))))
1212          hashtb))
1213       (when new-newsgroups
1214         (gnus-subscribe-hierarchical-interactive new-newsgroups)))
1215     (if (> groups 0)
1216         (gnus-message 5 "%d new newsgroup%s arrived"
1217                       groups (if (> groups 1) "s have" " has"))
1218       (gnus-message 5 "No new newsgroups"))
1219     (when got-new
1220       (setq gnus-newsrc-last-checked-date new-date))
1221     got-new))
1222
1223 (defun gnus-check-first-time-used ()
1224   (catch 'ended
1225     ;; First check if any of the following files exist.  If they do,
1226     ;; it's not the first time the user has used Gnus.
1227     (dolist (file (list (concat gnus-current-startup-file ".el")
1228                         (concat gnus-current-startup-file ".eld")
1229                         (concat gnus-startup-file ".el")
1230                         (concat gnus-startup-file ".eld")))
1231       (when (file-exists-p file)
1232         (throw 'ended nil)))
1233     (gnus-message 6 "First time user; subscribing you to default groups")
1234     (unless (gnus-read-active-file-p)
1235       (let ((gnus-read-active-file t))
1236         (gnus-read-active-file)))
1237     (setq gnus-newsrc-last-checked-date (message-make-date))
1238     ;; Subscribe to the default newsgroups.
1239     (let ((groups (or gnus-default-subscribed-newsgroups
1240                       gnus-backup-default-subscribed-newsgroups))
1241           group)
1242       (if (eq groups t)
1243           ;; If t, we subscribe (or not) all groups as if they were new.
1244           (mapatoms
1245            (lambda (sym)
1246              (when (setq group (symbol-name sym))
1247                (let ((do-sub (gnus-matches-options-n group)))
1248                  (cond
1249                   ((eq do-sub 'subscribe)
1250                    (gnus-sethash group group gnus-killed-hashtb)
1251                    (gnus-call-subscribe-functions
1252                     gnus-subscribe-options-newsgroup-method group))
1253                   ((eq do-sub 'ignore)
1254                    nil)
1255                   (t
1256                    (push group gnus-killed-list))))))
1257            gnus-active-hashtb)
1258         (dolist (group groups)
1259           ;; Only subscribe the default groups that are activated.
1260           (when (gnus-active group)
1261             (gnus-group-change-level
1262              group gnus-level-default-subscribed gnus-level-killed)))
1263         (save-excursion
1264           (set-buffer gnus-group-buffer)
1265           ;; Don't error if the group already exists. This happens when a
1266           ;; first-time user types 'F'. -- didier
1267           (gnus-group-make-help-group t))
1268         (when gnus-novice-user
1269           (gnus-message 7 "`A k' to list killed groups"))))))
1270
1271 (defun gnus-subscribe-group (group &optional previous method)
1272   "Subscribe GROUP and put it after PREVIOUS."
1273   (gnus-group-change-level
1274    (if method
1275        (list t group gnus-level-default-subscribed nil nil method)
1276      group)
1277    gnus-level-default-subscribed gnus-level-killed previous t)
1278   t)
1279
1280 ;; `gnus-group-change-level' is the fundamental function for changing
1281 ;; subscription levels of newsgroups.  This might mean just changing
1282 ;; from level 1 to 2, which is pretty trivial, from 2 to 6 or back
1283 ;; again, which subscribes/unsubscribes a group, which is equally
1284 ;; trivial.  Changing from 1-7 to 8-9 means that you kill a group, and
1285 ;; from 8-9 to 1-7 means that you remove the group from the list of
1286 ;; killed (or zombie) groups and add them to the (kinda) subscribed
1287 ;; groups.  And last but not least, moving from 8 to 9 and 9 to 8,
1288 ;; which is trivial.
1289 ;; ENTRY can either be a string (newsgroup name) or a list (if
1290 ;; FROMKILLED is t, it's a list on the format (NUM INFO-LIST),
1291 ;; otherwise it's a list in the format of the `gnus-newsrc-hashtb'
1292 ;; entries.
1293 ;; LEVEL is the new level of the group, OLDLEVEL is the old level and
1294 ;; PREVIOUS is the group (in hashtb entry format) to insert this group
1295 ;; after.
1296 (defun gnus-group-change-level (entry level &optional oldlevel
1297                                       previous fromkilled)
1298   (let (group info active num)
1299     ;; Glean what info we can from the arguments
1300     (if (consp entry)
1301         (if fromkilled (setq group (nth 1 entry))
1302           (setq group (car (nth 2 entry))))
1303       (setq group entry))
1304     (when (and (stringp entry)
1305                oldlevel
1306                (< oldlevel gnus-level-zombie))
1307       (setq entry (gnus-group-entry entry)))
1308     (if (and (not oldlevel)
1309              (consp entry))
1310         (setq oldlevel (gnus-info-level (nth 2 entry)))
1311       (setq oldlevel (or oldlevel gnus-level-killed)))
1312     (when (stringp previous)
1313       (setq previous (gnus-group-entry previous)))
1314
1315     (if (and (>= oldlevel gnus-level-zombie)
1316              (gnus-group-entry group))
1317         ;; We are trying to subscribe a group that is already
1318         ;; subscribed.
1319         ()                              ; Do nothing.
1320
1321       (unless (gnus-ephemeral-group-p group)
1322         (gnus-dribble-enter
1323          (format "(gnus-group-change-level %S %S %S %S %S)"
1324                  group level oldlevel (car (nth 2 previous)) fromkilled)))
1325
1326       ;; Then we remove the newgroup from any old structures, if needed.
1327       ;; If the group was killed, we remove it from the killed or zombie
1328       ;; list.  If not, and it is in fact going to be killed, we remove
1329       ;; it from the newsrc hash table and assoc.
1330       (cond
1331        ((>= oldlevel gnus-level-zombie)
1332         ;; oldlevel could be wrong.
1333         (setq gnus-zombie-list (delete group gnus-zombie-list))
1334         (setq gnus-killed-list (delete group gnus-killed-list)))
1335        (t
1336         (when (and (>= level gnus-level-zombie)
1337                    entry)
1338           (gnus-sethash (car (nth 2 entry)) nil gnus-newsrc-hashtb)
1339           (when (nth 3 entry)
1340             (setcdr (gnus-group-entry (car (nth 3 entry)))
1341                     (cdr entry)))
1342           (setcdr (cdr entry) (cdddr entry)))))
1343
1344       ;; Finally we enter (if needed) the list where it is supposed to
1345       ;; go, and change the subscription level.  If it is to be killed,
1346       ;; we enter it into the killed or zombie list.
1347       (cond
1348        ((>= level gnus-level-zombie)
1349         ;; Remove from the hash table.
1350         (gnus-sethash group nil gnus-newsrc-hashtb)
1351         ;; We do not enter foreign groups into the list of dead
1352         ;; groups.
1353         (unless (gnus-group-foreign-p group)
1354           (if (= level gnus-level-zombie)
1355               (push group gnus-zombie-list)
1356             (if (= oldlevel gnus-level-killed)
1357                 ;; Remove from active hashtb.
1358                 (unintern group gnus-active-hashtb)
1359               ;; Don't add it into killed-list if it was killed.
1360               (push group gnus-killed-list)))))
1361        (t
1362         ;; If the list is to be entered into the newsrc assoc, and
1363         ;; it was killed, we have to create an entry in the newsrc
1364         ;; hashtb format and fix the pointers in the newsrc assoc.
1365         (if (< oldlevel gnus-level-zombie)
1366             ;; It was alive, and it is going to stay alive, so we
1367             ;; just change the level and don't change any pointers or
1368             ;; hash table entries.
1369             (setcar (cdaddr entry) level)
1370           (if (listp entry)
1371               (setq info (cdr entry)
1372                     num (car entry))
1373             (setq active (gnus-active group))
1374             (setq num
1375                   (if active (- (1+ (cdr active)) (car active)) t))
1376             ;; Shorten the select method if possible, if we need to
1377             ;; store it at all (native groups).
1378             (let ((method (gnus-method-simplify
1379                            (or gnus-override-subscribe-method
1380                                (gnus-group-method group)))))
1381               (if method
1382                   (setq info (list group level nil nil method))
1383                 (setq info (list group level nil)))))
1384           (unless previous
1385             (setq previous
1386                   (let ((p gnus-newsrc-alist))
1387                     (while (cddr p)
1388                       (setq p (cdr p)))
1389                     p)))
1390           (setq entry (cons info (cddr previous)))
1391           (if (cdr previous)
1392               (progn
1393                 (setcdr (cdr previous) entry)
1394                 (gnus-sethash group (cons num (cdr previous))
1395                               gnus-newsrc-hashtb))
1396             (setcdr previous entry)
1397             (gnus-sethash group (cons num previous)
1398                           gnus-newsrc-hashtb))
1399           (when (cdr entry)
1400             (setcdr (gnus-group-entry (caadr entry)) entry))
1401           (gnus-dribble-enter
1402            (format
1403             "(gnus-group-set-info '%S)" info)))))
1404       (when gnus-group-change-level-function
1405         (funcall gnus-group-change-level-function
1406                  group level oldlevel previous)))))
1407
1408 (defun gnus-kill-newsgroup (newsgroup)
1409   "Obsolete function.  Kills a newsgroup."
1410   (gnus-group-change-level
1411    (gnus-group-entry newsgroup) gnus-level-killed))
1412
1413 (defun gnus-check-bogus-newsgroups (&optional confirm)
1414   "Remove bogus newsgroups.
1415 If CONFIRM is non-nil, the user has to confirm the deletion of every
1416 newsgroup."
1417   (let ((newsrc (cdr gnus-newsrc-alist))
1418         bogus group entry info)
1419     (gnus-message 5 "Checking bogus newsgroups...")
1420     (unless (gnus-read-active-file-p)
1421       (gnus-read-active-file t))
1422     (when (gnus-read-active-file-p)
1423       ;; Find all bogus newsgroup that are subscribed.
1424       (while newsrc
1425         (setq info (pop newsrc)
1426               group (gnus-info-group info))
1427         (unless (or (gnus-active group) ; Active
1428                     (and (gnus-info-method info)
1429                          (not (gnus-secondary-method-p
1430                                (gnus-info-method info))))) ; Foreign
1431           ;; Found a bogus newsgroup.
1432           (push group bogus)))
1433       (if confirm
1434           (map-y-or-n-p
1435            "Remove bogus group %s? "
1436            (lambda (group)
1437              ;; Remove all bogus subscribed groups by first killing them, and
1438              ;; then removing them from the list of killed groups.
1439              (when (setq entry (gnus-group-entry group))
1440                (gnus-group-change-level entry gnus-level-killed)
1441                (setq gnus-killed-list (delete group gnus-killed-list))))
1442            bogus '("group" "groups" "remove"))
1443         (while (setq group (pop bogus))
1444           ;; Remove all bogus subscribed groups by first killing them, and
1445           ;; then removing them from the list of killed groups.
1446           (when (setq entry (gnus-group-entry group))
1447             (gnus-group-change-level entry gnus-level-killed)
1448             (setq gnus-killed-list (delete group gnus-killed-list)))))
1449       ;; Then we remove all bogus groups from the list of killed and
1450       ;; zombie groups.  They are removed without confirmation.
1451       (let ((dead-lists '(gnus-killed-list gnus-zombie-list))
1452             killed)
1453         (while dead-lists
1454           (setq killed (symbol-value (car dead-lists)))
1455           (while killed
1456             (unless (gnus-active (setq group (pop killed)))
1457               ;; The group is bogus.
1458               ;; !!!Slow as hell.
1459               (set (car dead-lists)
1460                    (delete group (symbol-value (car dead-lists))))))
1461           (setq dead-lists (cdr dead-lists))))
1462       (gnus-run-hooks 'gnus-check-bogus-groups-hook)
1463       (gnus-message 5 "Checking bogus newsgroups...done"))))
1464
1465 (defun gnus-check-duplicate-killed-groups ()
1466   "Remove duplicates from the list of killed groups."
1467   (interactive)
1468   (let ((killed gnus-killed-list))
1469     (while killed
1470       (gnus-message 9 "%d" (length killed))
1471       (setcdr killed (delete (car killed) (cdr killed)))
1472       (setq killed (cdr killed)))))
1473
1474 ;; We want to inline a function from gnus-cache, so we cheat here:
1475 (eval-when-compile
1476   (defvar gnus-cache-active-hashtb)
1477   (defun gnus-cache-possibly-alter-active (group active)
1478     "Alter the ACTIVE info for GROUP to reflect the articles in the cache."
1479     (when gnus-cache-active-hashtb
1480       (let ((cache-active (gnus-gethash group gnus-cache-active-hashtb)))
1481         (when cache-active
1482           (when (< (car cache-active) (car active))
1483             (setcar active (car cache-active)))
1484           (when (> (cdr cache-active) (cdr active))
1485             (setcdr active (cdr cache-active))))))))
1486
1487 (defun gnus-activate-group (group &optional scan dont-check method)
1488   ;; Check whether a group has been activated or not.
1489   ;; If SCAN, request a scan of that group as well.
1490   (let ((method (or method (inline (gnus-find-method-for-group group))))
1491         active)
1492     (and (inline (gnus-check-server method))
1493          ;; We escape all bugs and quit here to make it possible to
1494          ;; continue if a group is so out-there that it reports bugs
1495          ;; and stuff.
1496          (progn
1497            (and scan
1498                 (gnus-check-backend-function 'request-scan (car method))
1499                 (gnus-request-scan group method))
1500            t)
1501          (if (or debug-on-error debug-on-quit)
1502              (inline (gnus-request-group group dont-check method))
1503            (condition-case nil
1504                (inline (gnus-request-group group dont-check method))
1505              ;;(error nil)
1506              (quit
1507               (message "Quit activating %s" group)
1508               nil)))
1509          (unless dont-check
1510            (setq active (gnus-parse-active))
1511            ;; If there are no articles in the group, the GROUP
1512            ;; command may have responded with the `(0 . 0)'.  We
1513            ;; ignore this if we already have an active entry
1514            ;; for the group.
1515            (if (and (zerop (car active))
1516                     (zerop (cdr active))
1517                     (gnus-active group))
1518                (gnus-active group)
1519
1520              ;; If a cache is present, we may have to alter the active info.
1521              (when gnus-use-cache
1522                (inline (gnus-cache-possibly-alter-active
1523                         group active)))
1524
1525              ;; If the agent is enabled, we may have to alter the active info.
1526              (when gnus-agent
1527                (gnus-agent-possibly-alter-active group active))
1528
1529              (gnus-set-active group active)
1530              ;; Return the new active info.
1531              active)))))
1532
1533 (defun gnus-get-unread-articles-in-group (info active &optional update)
1534   (when (and info active)
1535     ;; Allow the backend to update the info in the group.
1536     (when (and update
1537                (gnus-request-update-info
1538                 info (inline (gnus-find-method-for-group
1539                               (gnus-info-group info)))))
1540       (gnus-activate-group (gnus-info-group info) nil t))
1541
1542     (let* ((range (gnus-info-read info))
1543            (num 0))
1544
1545       ;; These checks are present in gnus-activate-group but skipped
1546       ;; due to setting dont-check in the preceeding call.
1547
1548       ;; If a cache is present, we may have to alter the active info.
1549       (when (and gnus-use-cache info)
1550         (inline (gnus-cache-possibly-alter-active
1551                  (gnus-info-group info) active)))
1552
1553       ;; If the agent is enabled, we may have to alter the active info.
1554       (when (and gnus-agent info)
1555         (gnus-agent-possibly-alter-active (gnus-info-group info) active info))
1556
1557       ;; Modify the list of read articles according to what articles
1558       ;; are available; then tally the unread articles and add the
1559       ;; number to the group hash table entry.
1560       (cond
1561        ((zerop (cdr active))
1562         (setq num 0))
1563        ((not range)
1564         (setq num (- (1+ (cdr active)) (car active))))
1565        ((not (listp (cdr range)))
1566         ;; Fix a single (num . num) range according to the
1567         ;; active hash table.
1568         ;; Fix by Carsten Bormann <cabo@Informatik.Uni-Bremen.DE>.
1569         (and (< (cdr range) (car active)) (setcdr range (1- (car active))))
1570         (and (> (cdr range) (cdr active)) (setcdr range (cdr active)))
1571         ;; Compute number of unread articles.
1572         (setq num (max 0 (- (cdr active) (- (1+ (cdr range)) (car range))))))
1573        (t
1574         ;; The read list is a list of ranges.  Fix them according to
1575         ;; the active hash table.
1576         ;; First peel off any elements that are below the lower
1577         ;; active limit.
1578         (while (and (cdr range)
1579                     (>= (car active)
1580                         (or (and (atom (cadr range)) (cadr range))
1581                             (caadr range))))
1582           (if (numberp (car range))
1583               (setcar range
1584                       (cons (car range)
1585                             (or (and (numberp (cadr range))
1586                                      (cadr range))
1587                                 (cdadr range))))
1588             (setcdr (car range)
1589                     (or (and (numberp (nth 1 range)) (nth 1 range))
1590                         (cdadr range))))
1591           (setcdr range (cddr range)))
1592         ;; Adjust the first element to be the same as the lower limit.
1593         (when (and (not (atom (car range)))
1594                    (< (cdar range) (car active)))
1595           (setcdr (car range) (1- (car active))))
1596         ;; Then we want to peel off any elements that are higher
1597         ;; than the upper active limit.
1598         (let ((srange range))
1599           ;; Go past all valid elements.
1600           (while (and (cdr srange)
1601                       (<= (or (and (atom (cadr srange))
1602                                    (cadr srange))
1603                               (caadr srange))
1604                           (cdr active)))
1605             (setq srange (cdr srange)))
1606           (when (cdr srange)
1607             ;; Nuke all remaining invalid elements.
1608             (setcdr srange nil))
1609
1610           ;; Adjust the final element.
1611           (when (and (not (atom (car srange)))
1612                      (> (cdar srange) (cdr active)))
1613             (setcdr (car srange) (cdr active))))
1614         ;; Compute the number of unread articles.
1615         (while range
1616           (setq num (+ num (- (1+ (or (and (atom (car range)) (car range))
1617                                       (cdar range)))
1618                               (or (and (atom (car range)) (car range))
1619                                   (caar range)))))
1620           (setq range (cdr range)))
1621         (setq num (max 0 (- (cdr active) num)))))
1622       ;; Set the number of unread articles.
1623       (when (and info
1624                  (gnus-group-entry (gnus-info-group info)))
1625         (setcar (gnus-group-entry (gnus-info-group info)) num))
1626       num)))
1627
1628 ;; Go though `gnus-newsrc-alist' and compare with `gnus-active-hashtb'
1629 ;; and compute how many unread articles there are in each group.
1630 (defun gnus-get-unread-articles (&optional level)
1631   (setq gnus-server-method-cache nil)
1632   (let* ((newsrc (cdr gnus-newsrc-alist))
1633          (level (or level gnus-activate-level (1+ gnus-level-subscribed)))
1634          (foreign-level
1635           (min
1636            (cond ((and gnus-activate-foreign-newsgroups
1637                        (not (numberp gnus-activate-foreign-newsgroups)))
1638                   (1+ gnus-level-subscribed))
1639                  ((numberp gnus-activate-foreign-newsgroups)
1640                   gnus-activate-foreign-newsgroups)
1641                  (t 0))
1642            level))
1643          (methods-cache nil)
1644          (type-cache nil)
1645          scanned-methods info group active method retrieve-groups cmethod
1646          method-type ignore)
1647     (gnus-message 6 "Checking new news...")
1648
1649     (while newsrc
1650       (setq active (gnus-active (setq group (gnus-info-group
1651                                                   (setq info (pop newsrc))))))
1652
1653       ;; Check newsgroups.  If the user doesn't want to check them, or
1654       ;; they can't be checked (for instance, if the news server can't
1655       ;; be reached) we just set the number of unread articles in this
1656       ;; newsgroup to t.  This means that Gnus thinks that there are
1657       ;; unread articles, but it has no idea how many.
1658
1659       ;; To be more explicit:
1660       ;; >0 for an active group with messages
1661       ;; 0 for an active group with no unread messages
1662       ;; nil for non-foreign groups that the user has requested not be checked
1663       ;; t for unchecked foreign groups or bogus groups, or groups that can't
1664       ;;   be checked, for one reason or other.
1665       (when (setq method (gnus-info-method info))
1666         (if (setq cmethod (assoc method methods-cache))
1667             (setq method (cdr cmethod))
1668           (setq cmethod (inline (gnus-server-get-method nil method)))
1669           (push (cons method cmethod) methods-cache)
1670           (setq method cmethod)))
1671       (when (and method
1672                  (not (setq method-type (cdr (assoc method type-cache)))))
1673         (setq method-type
1674                    (cond
1675                     ((gnus-secondary-method-p method)
1676                      'secondary)
1677                     ((inline (gnus-server-equal gnus-select-method method))
1678                      'primary)
1679                     (t
1680                      'foreign)))
1681         (push (cons method method-type) type-cache))
1682
1683       (setq ignore nil)
1684       (cond ((and method (eq method-type 'foreign))
1685              ;; These groups are foreign.  Check the level.
1686              (if (<= (gnus-info-level info) foreign-level)
1687                  (when (and (<= (gnus-info-level info) foreign-level)
1688                             (setq active (gnus-activate-group group 'scan)))
1689                    ;; Let the Gnus agent save the active file.
1690                    (when (and gnus-agent active (gnus-online method))
1691                      (gnus-agent-save-group-info
1692                       method (gnus-group-real-name group) active))
1693                    (unless (inline (gnus-virtual-group-p group))
1694                      (inline (gnus-close-group group)))
1695                    (when (fboundp (intern (concat (symbol-name (car method))
1696                                                   "-request-update-info")))
1697                      (inline (gnus-request-update-info info method))))
1698                (setq ignore t)))
1699             ;; These groups are native or secondary.
1700             ((> (gnus-info-level info) level)
1701              ;; We don't want these groups.
1702              (setq active 'ignore))
1703             ;; Activate groups.
1704             ((not gnus-read-active-file)
1705              (if (gnus-check-backend-function 'retrieve-groups group)
1706                  ;; if server support gnus-retrieve-groups we push
1707                  ;; the group onto retrievegroups for later checking
1708                  (if (assoc method retrieve-groups)
1709                      (setcdr (assoc method retrieve-groups)
1710                              (cons group (cdr (assoc method retrieve-groups))))
1711                    (push (list method group) retrieve-groups))
1712                ;; hack: `nnmail-get-new-mail' changes the mail-source depending
1713                ;; on the group, so we must perform a scan for every group
1714                ;; if the users has any directory mail sources.
1715                ;; hack: if `nnmail-scan-directory-mail-source-once' is non-nil,
1716                ;; for it scan all spool files even when the groups are
1717                ;; not required.
1718                (if (and
1719                     (or nnmail-scan-directory-mail-source-once
1720                         (null (assq 'directory
1721                                     (or mail-sources
1722                                         (if (listp nnmail-spool-file)
1723                                             nnmail-spool-file
1724                                           (list nnmail-spool-file))))))
1725                     (member method scanned-methods))
1726                    (setq active (gnus-activate-group group))
1727                  (setq active (gnus-activate-group group 'scan))
1728                  (push method scanned-methods))
1729                (when active
1730                  (gnus-close-group group)))))
1731
1732       ;; Get the number of unread articles in the group.
1733       (cond
1734        ((eq active 'ignore)
1735         ;; Don't do anything.
1736         )
1737        (active
1738         (unless ignore
1739           (inline (gnus-get-unread-articles-in-group info active t))))
1740        (t
1741         ;; The group couldn't be reached, so we nix out the number of
1742         ;; unread articles and stuff.
1743         (gnus-set-active group nil)
1744         (let ((tmp (gnus-group-entry group)))
1745           (when tmp
1746             (setcar tmp t))))))
1747
1748     ;; iterate through groups on methods which support gnus-retrieve-groups
1749     ;; and fetch a partial active file and use it to find new news.
1750     (dolist (rg retrieve-groups)
1751       (let ((method (or (car rg) gnus-select-method))
1752             (groups (cdr rg)))
1753         (when (gnus-check-server method)
1754           ;; Request that the backend scan its incoming messages.
1755           (when (gnus-check-backend-function 'request-scan (car method))
1756             (gnus-request-scan nil method))
1757           (gnus-read-active-file-2
1758                 (mapcar (lambda (group) (gnus-group-real-name group)) groups)
1759                 method)
1760           (dolist (group groups)
1761             (cond
1762              ((setq active (gnus-active (gnus-info-group
1763                                          (setq info (gnus-get-info group)))))
1764               (inline (gnus-get-unread-articles-in-group info active t)))
1765              (t
1766               ;; The group couldn't be reached, so we nix out the number of
1767               ;; unread articles and stuff.
1768               (gnus-set-active group nil)
1769               (setcar (gnus-group-entry group) t)))))))
1770
1771     (gnus-message 6 "Checking new news...done")))
1772
1773 ;; Create a hash table out of the newsrc alist.  The `car's of the
1774 ;; alist elements are used as keys.
1775 (defun gnus-make-hashtable-from-newsrc-alist ()
1776   (let ((alist gnus-newsrc-alist)
1777         (ohashtb gnus-newsrc-hashtb)
1778         prev)
1779     (setq gnus-newsrc-hashtb (gnus-make-hashtable (length alist)))
1780     (setq alist
1781           (setq prev (setq gnus-newsrc-alist
1782                            (if (equal (caar gnus-newsrc-alist)
1783                                       "dummy.group")
1784                                gnus-newsrc-alist
1785                              (cons (list "dummy.group" 0 nil) alist)))))
1786     (while alist
1787       (gnus-sethash
1788        (caar alist)
1789        ;; Preserve number of unread articles in groups.
1790        (cons (and ohashtb (car (gnus-gethash (caar alist) ohashtb)))
1791              prev)
1792        gnus-newsrc-hashtb)
1793       (setq prev alist
1794             alist (cdr alist)))))
1795
1796 (defun gnus-make-hashtable-from-killed ()
1797   "Create a hash table from the killed and zombie lists."
1798   (let ((lists '(gnus-killed-list gnus-zombie-list))
1799         list)
1800     (setq gnus-killed-hashtb
1801           (gnus-make-hashtable
1802            (+ (length gnus-killed-list) (length gnus-zombie-list))))
1803     (while lists
1804       (setq list (symbol-value (pop lists)))
1805       (while list
1806         (gnus-sethash (car list) (pop list) gnus-killed-hashtb)))))
1807
1808 (defun gnus-parse-active ()
1809   "Parse active info in the nntp server buffer."
1810   (save-excursion
1811     (set-buffer nntp-server-buffer)
1812     (goto-char (point-min))
1813     ;; Parse the result we got from `gnus-request-group'.
1814     (when (looking-at "[0-9]+ [0-9]+ \\([0-9]+\\) [0-9]+")
1815       (goto-char (match-beginning 1))
1816       (cons (read (current-buffer))
1817             (read (current-buffer))))))
1818
1819 (defun gnus-make-articles-unread (group articles)
1820   "Mark ARTICLES in GROUP as unread."
1821   (let* ((info (nth 2 (or (gnus-group-entry group)
1822                           (gnus-group-entry
1823                            (gnus-group-real-name group)))))
1824          (ranges (gnus-info-read info))
1825          news article)
1826     (while articles
1827       (when (gnus-member-of-range
1828              (setq article (pop articles)) ranges)
1829         (push article news)))
1830     (when news
1831       ;; Enter this list into the group info.
1832       (gnus-info-set-read
1833        info (gnus-remove-from-range (gnus-info-read info) (nreverse news)))
1834
1835       ;; Set the number of unread articles in gnus-newsrc-hashtb.
1836       (gnus-get-unread-articles-in-group info (gnus-active group))
1837
1838       ;; Insert the change into the group buffer and the dribble file.
1839       (gnus-group-update-group group t))))
1840
1841 (defun gnus-make-ascending-articles-unread (group articles)
1842   "Mark ascending ARTICLES in GROUP as unread."
1843   (let* ((entry (or (gnus-group-entry group)
1844                     (gnus-group-entry (gnus-group-real-name group))))
1845          (info (nth 2 entry))
1846          (ranges (gnus-info-read info))
1847          (r ranges)
1848          modified)
1849
1850     (while articles
1851       (let ((article (pop articles))) ; get the next article to remove from ranges
1852         (while (let ((range (car ranges))) ; note the current range
1853                  (if (atom range)       ; single value range
1854                      (cond ((not range)
1855                             ;; the articles extend past the end of the ranges
1856                             ;; OK - I'm done
1857                             (setq articles nil))
1858                            ((< range article)
1859                             ;; this range preceeds the article. Leave the range unmodified.
1860                             (pop ranges)
1861                             ranges)
1862                            ((= range article)
1863                             ;; this range exactly matches the article; REMOVE THE RANGE.
1864                             ;; NOTE: When the range being removed is the last range, the list is corrupted by inserting null at its end.
1865                             (setcar ranges (cadr ranges))
1866                             (setcdr ranges (cddr ranges))
1867                             (setq modified (if (car ranges) t 'remove-null))
1868                             nil))
1869                    (let ((min (car range))
1870                          (max (cdr range)))
1871                      ;; I have a min/max range to consider
1872                      (cond ((> min max) ; invalid range introduced by splitter
1873                             (setcar ranges (cadr ranges))
1874                             (setcdr ranges (cddr ranges))
1875                             (setq modified (if (car ranges) t 'remove-null))
1876                             ranges)
1877                            ((= min max)
1878                             ;; replace min/max range with a single-value range
1879                             (setcar ranges min)
1880                             ranges)
1881                            ((< max article)
1882                             ;; this range preceeds the article. Leave the range unmodified.
1883                             (pop ranges)
1884                             ranges)
1885                            ((< article min)
1886                             ;; this article preceeds the range.  Return null to move to the
1887                             ;; next article
1888                             nil)
1889                            (t
1890                             ;; this article splits the range into two parts
1891                             (setcdr ranges (cons (cons (1+ article) max) (cdr ranges)))
1892                             (setcdr range (1- article))
1893                             (setq modified t)
1894                             ranges))))))))
1895                   
1896     (when modified
1897       (when (eq modified 'remove-null)
1898         (setq r (delq nil r)))
1899       ;; Enter this list into the group info.
1900       (gnus-info-set-read info r)
1901
1902       ;; Set the number of unread articles in gnus-newsrc-hashtb.
1903       (gnus-get-unread-articles-in-group info (gnus-active group))
1904
1905       ;; Insert the change into the group buffer and the dribble file.
1906       (gnus-group-update-group group t))))
1907
1908 ;; Enter all dead groups into the hashtb.
1909 (defun gnus-update-active-hashtb-from-killed ()
1910   (let ((hashtb (setq gnus-active-hashtb (gnus-make-hashtable 4096)))
1911         (lists (list gnus-killed-list gnus-zombie-list))
1912         killed)
1913     (while lists
1914       (setq killed (car lists))
1915       (while killed
1916         (gnus-sethash (car killed) nil hashtb)
1917         (setq killed (cdr killed)))
1918       (setq lists (cdr lists)))))
1919
1920 (defun gnus-get-killed-groups ()
1921   "Go through the active hashtb and mark all unknown groups as killed."
1922   ;; First make sure active file has been read.
1923   (unless (gnus-read-active-file-p)
1924     (let ((gnus-read-active-file t))
1925       (gnus-read-active-file)))
1926   (unless gnus-killed-hashtb
1927     (gnus-make-hashtable-from-killed))
1928   ;; Go through all newsgroups that are known to Gnus - enlarge kill list.
1929   (mapatoms
1930    (lambda (sym)
1931      (let ((groups 0)
1932            (group (symbol-name sym)))
1933        (if (or (null group)
1934                (gnus-gethash group gnus-killed-hashtb)
1935                (gnus-gethash group gnus-newsrc-hashtb))
1936            ()
1937          (let ((do-sub (gnus-matches-options-n group)))
1938            (if (or (eq do-sub 'subscribe) (eq do-sub 'ignore))
1939                ()
1940              (setq groups (1+ groups))
1941              (push group gnus-killed-list)
1942              (gnus-sethash group group gnus-killed-hashtb))))))
1943    gnus-active-hashtb)
1944   (gnus-dribble-touch))
1945
1946 ;; Get the active file(s) from the backend(s).
1947 (defun gnus-read-active-file (&optional force not-native)
1948   (gnus-group-set-mode-line)
1949   (let ((methods
1950          (mapcar
1951           (lambda (m) (if (stringp m) (gnus-server-get-method nil m) m))
1952           (append
1953            (if (and (not not-native)
1954                     (gnus-check-server gnus-select-method))
1955                ;; The native server is available.
1956                (cons gnus-select-method gnus-secondary-select-methods)
1957              ;; The native server is down, so we just do the
1958              ;; secondary ones.
1959              gnus-secondary-select-methods)
1960            ;; Also read from the archive server.
1961            (when (gnus-archive-server-wanted-p)
1962              (list "archive")))))
1963         method)
1964     (setq gnus-have-read-active-file nil)
1965     (save-excursion
1966       (set-buffer nntp-server-buffer)
1967       (while (setq method (pop methods))
1968         ;; Only do each method once, in case the methods appear more
1969         ;; than once in this list.
1970         (unless (member method methods)
1971           (if (or debug-on-error debug-on-quit)
1972               (gnus-read-active-file-1 method force)
1973             (condition-case ()
1974                 (gnus-read-active-file-1 method force)
1975               ;; We catch C-g so that we can continue past servers
1976               ;; that do not respond.
1977               (quit
1978                (message "Quit reading the active file")
1979                nil))))))))
1980
1981 (defun gnus-read-active-file-1 (method force)
1982   (let (where mesg)
1983     (setq where (nth 1 method)
1984           mesg (format "Reading active file%s via %s..."
1985                        (if (and where (not (zerop (length where))))
1986                            (concat " from " where) "")
1987                        (car method)))
1988     (gnus-message 5 mesg)
1989     (when (gnus-check-server method)
1990       ;; Request that the backend scan its incoming messages.
1991       (when (gnus-check-backend-function 'request-scan (car method))
1992         (gnus-request-scan nil method))
1993       (cond
1994        ((and (eq gnus-read-active-file 'some)
1995              (gnus-check-backend-function 'retrieve-groups (car method))
1996              (not force))
1997         (let ((newsrc (cdr gnus-newsrc-alist))
1998               (gmethod (gnus-server-get-method nil method))
1999               groups info)
2000           (while (setq info (pop newsrc))
2001             (when (inline
2002                     (gnus-server-equal
2003                           (inline
2004                             (gnus-find-method-for-group
2005                                   (gnus-info-group info) info))
2006                           gmethod))
2007               (push (gnus-group-real-name (gnus-info-group info))
2008                     groups)))
2009           (gnus-read-active-file-2 groups method)))
2010        ((null method)
2011         t)
2012        (t
2013         (if (not (gnus-request-list method))
2014             (unless (equal method gnus-message-archive-method)
2015               (gnus-error 1 "Cannot read active file from %s server"
2016                           (car method)))
2017           (gnus-message 5 mesg)
2018           (gnus-active-to-gnus-format method gnus-active-hashtb nil t)
2019           ;; We mark this active file as read.
2020           (push method gnus-have-read-active-file)
2021           (gnus-message 5 "%sdone" mesg)))))))
2022
2023 (defun gnus-read-active-file-2 (groups method)
2024   "Read an active file for GROUPS in METHOD using `gnus-retrieve-groups'."
2025   (when groups
2026     (save-excursion
2027       (set-buffer nntp-server-buffer)
2028       (gnus-check-server method)
2029       (let ((list-type (gnus-retrieve-groups groups method)))
2030         (cond ((not list-type)
2031                (gnus-error
2032                 1.2 "Cannot read partial active file from %s server."
2033                 (car method)))
2034               ((eq list-type 'active)
2035                (gnus-active-to-gnus-format method gnus-active-hashtb nil t))
2036               (t
2037                (gnus-groups-to-gnus-format method gnus-active-hashtb t)))))))
2038
2039 ;; Read an active file and place the results in `gnus-active-hashtb'.
2040 (defun gnus-active-to-gnus-format (&optional method hashtb ignore-errors
2041                                              real-active)
2042   (unless method
2043     (setq method gnus-select-method))
2044   (let ((cur (current-buffer))
2045         (hashtb (or hashtb
2046                     (if (and gnus-active-hashtb
2047                              (not (equal method gnus-select-method)))
2048                         gnus-active-hashtb
2049                       (setq gnus-active-hashtb
2050                             (if (equal method gnus-select-method)
2051                                 (gnus-make-hashtable
2052                                  (count-lines (point-min) (point-max)))
2053                               (gnus-make-hashtable 4096)))))))
2054     ;; Delete unnecessary lines.
2055     (goto-char (point-min))
2056     (cond
2057      ((string= gnus-ignored-newsgroups "")
2058       (delete-matching-lines "^to\\."))
2059      (t
2060       (delete-matching-lines (concat "^to\\.\\|" gnus-ignored-newsgroups))))
2061
2062     (goto-char (point-min))
2063     (unless (re-search-forward "[\\\"]" nil t)
2064       ;; Make the group names readable as a lisp expression even if they
2065       ;; contain special characters.
2066       (goto-char (point-max))
2067       (while (re-search-backward "[][';?()#]" nil t)
2068         (insert ?\\)))
2069
2070     ;; Let the Gnus agent save the active file.
2071     (when (and gnus-agent real-active (gnus-online method))
2072       (gnus-agent-save-active method))
2073
2074     ;; If these are groups from a foreign select method, we insert the
2075     ;; group prefix in front of the group names.
2076     (when (not (gnus-server-equal
2077                 (gnus-server-get-method nil method)
2078                 (gnus-server-get-method nil gnus-select-method)))
2079       (let ((prefix (gnus-group-prefixed-name "" method)))
2080         (goto-char (point-min))
2081         (while (and (not (eobp))
2082                     (progn
2083                       (when (= (following-char) ?\")
2084                         (forward-char 1))
2085                       (insert prefix)
2086                       (zerop (forward-line 1)))))))
2087     ;; Store the active file in a hash table.
2088     (goto-char (point-min))
2089     (let (group max min)
2090       (while (not (eobp))
2091         (condition-case ()
2092             (progn
2093               (narrow-to-region (point) (point-at-eol))
2094               ;; group gets set to a symbol interned in the hash table
2095               ;; (what a hack!!) - jwz
2096               (setq group (let ((obarray hashtb)) (read cur)))
2097               ;; ### The extended group name scheme makes
2098               ;; the previous optimization strategy sort of pointless...
2099               (when (stringp group)
2100                 (setq group (intern group hashtb)))
2101               (if (and (numberp (setq max (read cur)))
2102                        (numberp (setq min (read cur)))
2103                        (progn
2104                          (skip-chars-forward " \t")
2105                          (not
2106                           (or (eq (char-after) ?=)
2107                               (eq (char-after) ?x)
2108                               (eq (char-after) ?j)))))
2109                   (progn
2110                     (set group (cons min max))
2111                     ;; if group is moderated, stick in moderation table
2112                     (when (eq (char-after) ?m)
2113                       (unless gnus-moderated-hashtb
2114                         (setq gnus-moderated-hashtb (gnus-make-hashtable)))
2115                       (gnus-sethash (symbol-name group) t
2116                                     gnus-moderated-hashtb)))
2117                 (set group nil)))
2118           (error
2119            (and group
2120                 (symbolp group)
2121                 (set group nil))
2122            (unless ignore-errors
2123              (gnus-message 3 "Warning - invalid active: %s"
2124                            (buffer-substring
2125                             (point-at-bol) (point-at-eol))))))
2126         (widen)
2127         (forward-line 1)))))
2128
2129 (defun gnus-groups-to-gnus-format (method &optional hashtb real-active)
2130   ;; Parse a "groups" active file.
2131   (let ((cur (current-buffer))
2132         (hashtb (or hashtb
2133                     (if (and method gnus-active-hashtb)
2134                         gnus-active-hashtb
2135                       (setq gnus-active-hashtb
2136                             (gnus-make-hashtable
2137                              (count-lines (point-min) (point-max)))))))
2138         (prefix (and method
2139                      (not (gnus-server-equal
2140                            (gnus-server-get-method nil method)
2141                            (gnus-server-get-method nil gnus-select-method)))
2142                      (gnus-group-prefixed-name "" method))))
2143
2144     ;; Let the Gnus agent save the active file.
2145     (if (and gnus-agent
2146              real-active
2147              (gnus-online method)
2148              (gnus-agent-method-p method))
2149         (progn
2150           (gnus-agent-save-active method)
2151           (gnus-active-to-gnus-format method hashtb nil real-active))
2152
2153       (goto-char (point-min))
2154       ;; We split this into to separate loops, one with the prefix
2155       ;; and one without to speed the reading up somewhat.
2156       (if prefix
2157           (let (min max opoint group)
2158             (while (not (eobp))
2159               (condition-case ()
2160                   (progn
2161                     (read cur) (read cur)
2162                     (setq min (read cur)
2163                           max (read cur)
2164                           opoint (point))
2165                     (skip-chars-forward " \t")
2166                     (insert prefix)
2167                     (goto-char opoint)
2168                     (set (let ((obarray hashtb)) (read cur))
2169                          (cons min max)))
2170                 (error (and group (symbolp group) (set group nil))))
2171               (forward-line 1)))
2172         (let (min max group)
2173           (while (not (eobp))
2174             (condition-case ()
2175                 (when (eq (char-after) ?2)
2176                   (read cur) (read cur)
2177                   (setq min (read cur)
2178                         max (read cur))
2179                   (set (setq group (let ((obarray hashtb)) (read cur)))
2180                        (cons min max)))
2181               (error (and group (symbolp group) (set group nil))))
2182             (forward-line 1)))))))
2183
2184 (defun gnus-read-newsrc-file (&optional force)
2185   "Read startup file.
2186 If FORCE is non-nil, the .newsrc file is read."
2187   ;; Reset variables that might be defined in the .newsrc.eld file.
2188   (let ((variables (remove 'gnus-format-specs gnus-variable-list)))
2189     (while variables
2190       (set (car variables) nil)
2191       (setq variables (cdr variables))))
2192   (let* ((newsrc-file gnus-current-startup-file)
2193          (quick-file (concat newsrc-file ".el")))
2194     (save-excursion
2195       ;; We always load the .newsrc.eld file.  If always contains
2196       ;; much information that can not be gotten from the .newsrc
2197       ;; file (ticked articles, killed groups, foreign methods, etc.)
2198       (gnus-read-newsrc-el-file quick-file)
2199
2200       (when (and gnus-read-newsrc-file
2201                  (file-exists-p gnus-current-startup-file)
2202                  (or force
2203                      (and (file-newer-than-file-p newsrc-file quick-file)
2204                           (file-newer-than-file-p newsrc-file
2205                                                   (concat quick-file "d")))
2206                      (not gnus-newsrc-alist)))
2207         ;; We read the .newsrc file.  Note that if there if a
2208         ;; .newsrc.eld file exists, it has already been read, and
2209         ;; the `gnus-newsrc-hashtb' has been created.  While reading
2210         ;; the .newsrc file, Gnus will only use the information it
2211         ;; can find there for changing the data already read -
2212         ;; i. e., reading the .newsrc file will not trash the data
2213         ;; already read (except for read articles).
2214         (save-excursion
2215           (gnus-message 5 "Reading %s..." newsrc-file)
2216           (set-buffer (nnheader-find-file-noselect newsrc-file))
2217           (buffer-disable-undo)
2218           (gnus-newsrc-to-gnus-format)
2219           (kill-buffer (current-buffer))
2220           (gnus-message 5 "Reading %s...done" newsrc-file)))
2221
2222       ;; Convert old to new.
2223       (gnus-convert-old-newsrc))))
2224
2225 (defun gnus-convert-old-newsrc ()
2226   "Convert old newsrc formats into the current format, if needed."
2227   (let ((fcv (and gnus-newsrc-file-version
2228                   (gnus-continuum-version gnus-newsrc-file-version))))
2229     (when fcv
2230       ;; A .newsrc.eld file was loaded.
2231       (let (prompt-displayed
2232             (converters
2233              (sort
2234               (mapcar (lambda (date-func)
2235                         (cons (gnus-continuum-version (car date-func))
2236                               date-func))
2237                       ;; This is a list of converters that must be run
2238                       ;; to bring the newsrc file up to the current
2239                       ;; version.  If you create an incompatibility
2240                       ;; with older versions, you should create an
2241                       ;; entry here.  The entry should consist of the
2242                       ;; current gnus version (hardcoded so that it
2243                       ;; doesn't change with each release) and the
2244                       ;; function that must be applied to convert the
2245                       ;; previous version into the current version.
2246                       '(("September Gnus v0.1" nil 
2247                          gnus-convert-old-ticks)
2248                         ("Oort Gnus v0.08"     "legacy-gnus-agent"
2249                          gnus-agent-convert-to-compressed-agentview)
2250                         ("No Gnus v0.2"        "legacy-gnus-agent"
2251                          gnus-agent-unlist-expire-days)
2252                         ("No Gnus v0.2"        "legacy-gnus-agent" 
2253                          gnus-agent-unhook-expire-days)))
2254               #'car-less-than-car)))
2255         ;; Skip converters older than the file version
2256         (while (and converters (>= fcv (caar converters)))
2257           (pop converters))
2258
2259         ;; Perform converters to bring older version up to date.
2260         (when (and converters (< fcv (caar converters)))
2261           (while (and converters (< fcv (caar converters)))
2262             (let* ((converter-spec  (pop converters))
2263                    (convert-to      (nth 1 converter-spec))
2264                    (load-from       (nth 2 converter-spec))
2265                    (func            (nth 3 converter-spec)))
2266               (when (and load-from
2267                          (not (fboundp func)))
2268                 (load load-from t))
2269               
2270               (or prompt-displayed
2271                   (not (gnus-convert-converter-needs-prompt func))
2272                   (while (let (c
2273                                (cursor-in-echo-area t)
2274                                (echo-keystrokes 0))
2275                            (message "Convert newsrc from version '%s' to '%s'? (n/y/?)"
2276                                     gnus-newsrc-file-version gnus-version)
2277                            (setq c (read-char-exclusive))
2278
2279                            (cond ((or (eq c ?n) (eq c ?N))
2280                                   (error "Can not start gnus using old (unconverted) newsrc"))
2281                                  ((or (eq c ?y) (eq c ?Y))
2282                                   (setq prompt-displayed t)
2283                                   nil)
2284                                  ((eq c ?\?)
2285                                   (message "This conversion is irreversible. \
2286  You should backup your files before proceeding.")
2287                                   (sit-for 5)
2288                                   t)
2289                                  (t
2290                                   (gnus-message 3 "Ignoring unexpected input")
2291                                   (sit-for 3)
2292                                   t)))))
2293
2294               (funcall func convert-to)))
2295           (gnus-dribble-enter 
2296            (format ";Converted newsrc from version '%s' to '%s'? (n/y/?)"
2297                    gnus-newsrc-file-version gnus-version)))))))
2298
2299 (defun gnus-convert-mark-converter-prompt (converter no-prompt)
2300   (setplist converter
2301             (let* ((symbol 'gnus-convert-no-prompt)
2302                    (value (delq symbol (symbol-plist converter))))
2303             (if no-prompt
2304                 (cons symbol value)
2305               value))))
2306
2307 (defun gnus-convert-converter-needs-prompt (converter)
2308   (not (memq 'gnus-convert-no-prompt (symbol-plist converter))))
2309
2310 (defun gnus-convert-old-ticks (converting-to)
2311   (let ((newsrc (cdr gnus-newsrc-alist))
2312         marks info dormant ticked)
2313     (while (setq info (pop newsrc))
2314       (when (setq marks (gnus-info-marks info))
2315         (setq dormant (cdr (assq 'dormant marks))
2316               ticked (cdr (assq 'tick marks)))
2317         (when (or dormant ticked)
2318           (gnus-info-set-read
2319            info
2320            (gnus-add-to-range
2321             (gnus-info-read info)
2322             (nconc (gnus-uncompress-range dormant)
2323                    (gnus-uncompress-range ticked)))))))))
2324
2325 (defun gnus-load (file)
2326   "Load FILE, but in such a way that read errors can be reported."
2327   (with-temp-buffer
2328     (insert-file-contents file)
2329     (while (not (eobp))
2330       (condition-case type
2331           (let ((form (read (current-buffer))))
2332             (eval form))
2333         (error
2334          (unless (eq (car type) 'end-of-file)
2335            (let ((error (format "Error in %s line %d" file
2336                                 (count-lines (point-min) (point)))))
2337              (ding)
2338              (unless (gnus-yes-or-no-p (concat error "; continue? "))
2339                (error "%s" error)))))))))
2340
2341 (defun gnus-read-newsrc-el-file (file)
2342   (let ((ding-file (concat file "d")))
2343     (when (file-exists-p ding-file)
2344       ;; We always, always read the .eld file.
2345       (gnus-message 5 "Reading %s..." ding-file)
2346       (let (gnus-newsrc-assoc)
2347         (let ((coding-system-for-read gnus-ding-file-coding-system))
2348           (gnus-load ding-file))
2349         ;; Older versions of `gnus-format-specs' are no longer valid
2350         ;; in Oort Gnus 0.01.
2351         (let ((version
2352                (and gnus-newsrc-file-version
2353                     (gnus-continuum-version gnus-newsrc-file-version))))
2354           (when (or (not version)
2355                     (< version 5.090009))
2356             (setq gnus-format-specs gnus-default-format-specs)))
2357         (when gnus-newsrc-assoc
2358           (setq gnus-newsrc-alist gnus-newsrc-assoc))))
2359     (gnus-make-hashtable-from-newsrc-alist)
2360     (when (file-newer-than-file-p file ding-file)
2361       ;; Old format quick file
2362       (gnus-message 5 "Reading %s..." file)
2363       ;; The .el file is newer than the .eld file, so we read that one
2364       ;; as well.
2365       (gnus-read-old-newsrc-el-file file)))
2366   (gnus-run-hooks 'gnus-read-newsrc-el-hook))
2367
2368 ;; Parse the old-style quick startup file
2369 (defun gnus-read-old-newsrc-el-file (file)
2370   (let (newsrc killed marked group m info)
2371     (prog1
2372         (let ((gnus-killed-assoc nil)
2373               gnus-marked-assoc gnus-newsrc-alist gnus-newsrc-assoc)
2374           (prog1
2375               (ignore-errors
2376                 (load file t t t))
2377             (setq newsrc gnus-newsrc-assoc
2378                   killed gnus-killed-assoc
2379                   marked gnus-marked-assoc)))
2380       (setq gnus-newsrc-alist nil)
2381       (while (setq group (pop newsrc))
2382         (if (setq info (gnus-get-info (car group)))
2383             (progn
2384               (gnus-info-set-read info (cddr group))
2385               (gnus-info-set-level
2386                info (if (nth 1 group) gnus-level-default-subscribed
2387                       gnus-level-default-unsubscribed))
2388               (push info gnus-newsrc-alist))
2389           (push (setq info
2390                       (list (car group)
2391                             (if (nth 1 group) gnus-level-default-subscribed
2392                               gnus-level-default-unsubscribed)
2393                             (cddr group)))
2394                 gnus-newsrc-alist))
2395         ;; Copy marks into info.
2396         (when (setq m (assoc (car group) marked))
2397           (unless (nthcdr 3 info)
2398             (nconc info (list nil)))
2399           (gnus-info-set-marks
2400            info (list (cons 'tick (gnus-compress-sequence
2401                                    (sort (cdr m) '<) t))))))
2402       (setq newsrc killed)
2403       (while newsrc
2404         (setcar newsrc (caar newsrc))
2405         (setq newsrc (cdr newsrc)))
2406       (setq gnus-killed-list killed))
2407     ;; The .el file version of this variable does not begin with
2408     ;; "options", while the .eld version does, so we just add it if it
2409     ;; isn't there.
2410     (when
2411         gnus-newsrc-options
2412       (when (not (string-match "^ *options" gnus-newsrc-options))
2413         (setq gnus-newsrc-options (concat "options " gnus-newsrc-options)))
2414       (when (not (string-match "\n$" gnus-newsrc-options))
2415         (setq gnus-newsrc-options (concat gnus-newsrc-options "\n")))
2416       ;; Finally, if we read some options lines, we parse them.
2417       (unless (string= gnus-newsrc-options "")
2418         (gnus-newsrc-parse-options gnus-newsrc-options)))
2419
2420     (setq gnus-newsrc-alist (nreverse gnus-newsrc-alist))
2421     (gnus-make-hashtable-from-newsrc-alist)))
2422
2423 (defun gnus-make-newsrc-file (file)
2424   "Make server dependent file name by catenating FILE and server host name."
2425   (let* ((file (expand-file-name file nil))
2426          (real-file (concat file "-" (nth 1 gnus-select-method))))
2427     (if (or (file-exists-p real-file)
2428             (file-exists-p (concat real-file ".el"))
2429             (file-exists-p (concat real-file ".eld")))
2430         real-file
2431       file)))
2432
2433 (defun gnus-newsrc-to-gnus-format ()
2434   (setq gnus-newsrc-options "")
2435   (setq gnus-newsrc-options-n nil)
2436
2437   (unless gnus-active-hashtb
2438     (setq gnus-active-hashtb (gnus-make-hashtable 4096)))
2439   (let ((buf (current-buffer))
2440         (already-read (> (length gnus-newsrc-alist) 1))
2441         group subscribed options-symbol newsrc Options-symbol
2442         symbol reads num1)
2443     (goto-char (point-min))
2444     ;; We intern the symbol `options' in the active hashtb so that we
2445     ;; can `eq' against it later.
2446     (set (setq options-symbol (intern "options" gnus-active-hashtb)) nil)
2447     (set (setq Options-symbol (intern "Options" gnus-active-hashtb)) nil)
2448
2449     (while (not (eobp))
2450       ;; We first read the first word on the line by narrowing and
2451       ;; then reading into `gnus-active-hashtb'.  Most groups will
2452       ;; already exist in that hashtb, so this will save some string
2453       ;; space.
2454       (narrow-to-region
2455        (point)
2456        (progn (skip-chars-forward "^ \t!:\n") (point)))
2457       (goto-char (point-min))
2458       (setq symbol
2459             (and (/= (point-min) (point-max))
2460                  (let ((obarray gnus-active-hashtb)) (read buf))))
2461       (widen)
2462       ;; Now, the symbol we have read is either `options' or a group
2463       ;; name.  If it is an options line, we just add it to a string.
2464       (cond
2465        ((or (eq symbol options-symbol)
2466             (eq symbol Options-symbol))
2467         (setq gnus-newsrc-options
2468               ;; This concating is quite inefficient, but since our
2469               ;; thorough studies show that approx 99.37% of all
2470               ;; .newsrc files only contain a single options line, we
2471               ;; don't give a damn, frankly, my dear.
2472               (concat gnus-newsrc-options
2473                       (buffer-substring
2474                        (point-at-bol)
2475                        ;; Options may continue on the next line.
2476                        (or (and (re-search-forward "^[^ \t]" nil 'move)
2477                                 (point-at-bol))
2478                            (point)))))
2479         (forward-line -1))
2480        (symbol
2481         ;; Group names can be just numbers.
2482         (when (numberp symbol)
2483           (setq symbol (intern (int-to-string symbol) gnus-active-hashtb)))
2484         (unless (boundp symbol)
2485           (set symbol nil))
2486         ;; It was a group name.
2487         (setq subscribed (eq (char-after) ?:)
2488               group (symbol-name symbol)
2489               reads nil)
2490         (if (eolp)
2491             ;; If the line ends here, this is clearly a buggy line, so
2492             ;; we put point a the beginning of line and let the cond
2493             ;; below do the error handling.
2494             (beginning-of-line)
2495           ;; We skip to the beginning of the ranges.
2496           (skip-chars-forward "!: \t"))
2497         ;; We are now at the beginning of the list of read articles.
2498         ;; We read them range by range.
2499         (while
2500             (cond
2501              ((looking-at "[0-9]+")
2502               ;; We narrow and read a number instead of buffer-substring/
2503               ;; string-to-int because it's faster.  narrow/widen is
2504               ;; faster than save-restriction/narrow, and save-restriction
2505               ;; produces a garbage object.
2506               (setq num1 (progn
2507                            (narrow-to-region (match-beginning 0) (match-end 0))
2508                            (read buf)))
2509               (widen)
2510               ;; If the next character is a dash, then this is a range.
2511               (if (eq (char-after) ?-)
2512                   (progn
2513                     ;; We read the upper bound of the range.
2514                     (forward-char 1)
2515                     (if (not (looking-at "[0-9]+"))
2516                         ;; This is a buggy line, by we pretend that
2517                         ;; it's kinda OK.  Perhaps the user should be
2518                         ;; dinged?
2519                         (push num1 reads)
2520                       (push
2521                        (cons num1
2522                              (progn
2523                                (narrow-to-region (match-beginning 0)
2524                                                  (match-end 0))
2525                                (read buf)))
2526                        reads)
2527                       (widen)))
2528                 ;; It was just a simple number, so we add it to the
2529                 ;; list of ranges.
2530                 (push num1 reads))
2531               ;; If the next char in ?\n, then we have reached the end
2532               ;; of the line and return nil.
2533               (not (eq (char-after) ?\n)))
2534              ((eq (char-after) ?\n)
2535               ;; End of line, so we end.
2536               nil)
2537              (t
2538               ;; Not numbers and not eol, so this might be a buggy
2539               ;; line...
2540               (unless (eobp)
2541                 ;; If it was eob instead of ?\n, we allow it.
2542                 ;; The line was buggy.
2543                 (setq group nil)
2544                 (gnus-error 3.1 "Mangled line: %s"
2545                             (buffer-substring (point-at-bol)
2546                                               (point-at-eol))))
2547               nil))
2548           ;; Skip past ", ".  Spaces are invalid in these ranges, but
2549           ;; we allow them, because it's a common mistake to put a
2550           ;; space after the comma.
2551           (skip-chars-forward ", "))
2552
2553         ;; We have already read .newsrc.eld, so we gently update the
2554         ;; data in the hash table with the information we have just
2555         ;; read.
2556         (when group
2557           (let ((info (gnus-get-info group))
2558                 level)
2559             (if info
2560                 ;; There is an entry for this file in the alist.
2561                 (progn
2562                   (gnus-info-set-read info (nreverse reads))
2563                   ;; We update the level very gently.  In fact, we
2564                   ;; only change it if there's been a status change
2565                   ;; from subscribed to unsubscribed, or vice versa.
2566                   (setq level (gnus-info-level info))
2567                   (cond ((and (<= level gnus-level-subscribed)
2568                               (not subscribed))
2569                          (setq level (if reads
2570                                          gnus-level-default-unsubscribed
2571                                        (1+ gnus-level-default-unsubscribed))))
2572                         ((and (> level gnus-level-subscribed) subscribed)
2573                          (setq level gnus-level-default-subscribed)))
2574                   (gnus-info-set-level info level))
2575               ;; This is a new group.
2576               (setq info (list group
2577                                (if subscribed
2578                                    gnus-level-default-subscribed
2579                                  (if reads
2580                                      (1+ gnus-level-subscribed)
2581                                    gnus-level-default-unsubscribed))
2582                                (nreverse reads))))
2583             (push info newsrc)))))
2584       (forward-line 1))
2585
2586     (setq newsrc (nreverse newsrc))
2587
2588     (if (not already-read)
2589         ()
2590       ;; We now have two newsrc lists - `newsrc', which is what we
2591       ;; have read from .newsrc, and `gnus-newsrc-alist', which is
2592       ;; what we've read from .newsrc.eld.  We have to merge these
2593       ;; lists.  We do this by "attaching" any (foreign) groups in the
2594       ;; gnus-newsrc-alist to the (native) group that precedes them.
2595       (let ((rc (cdr gnus-newsrc-alist))
2596             (prev gnus-newsrc-alist)
2597             entry mentry)
2598         (while rc
2599           (or (null (nth 4 (car rc)))   ; It's a native group.
2600               (assoc (caar rc) newsrc)  ; It's already in the alist.
2601               (if (setq entry (assoc (caar prev) newsrc))
2602                   (setcdr (setq mentry (memq entry newsrc))
2603                           (cons (car rc) (cdr mentry)))
2604                 (push (car rc) newsrc)))
2605           (setq prev rc
2606                 rc (cdr rc)))))
2607
2608     (setq gnus-newsrc-alist newsrc)
2609     ;; We make the newsrc hashtb.
2610     (gnus-make-hashtable-from-newsrc-alist)
2611
2612     ;; Finally, if we read some options lines, we parse them.
2613     (unless (string= gnus-newsrc-options "")
2614       (gnus-newsrc-parse-options gnus-newsrc-options))))
2615
2616 ;; Parse options lines to find "options -n !all rec.all" and stuff.
2617 ;; The return value will be a list on the form
2618 ;; ((regexp1 . ignore)
2619 ;;  (regexp2 . subscribe)...)
2620 ;; When handling new newsgroups, groups that match a `ignore' regexp
2621 ;; will be ignored, and groups that match a `subscribe' regexp will be
2622 ;; subscribed.  A line like
2623 ;; options -n !all rec.all
2624 ;; will lead to a list that looks like
2625 ;; (("^rec\\..+" . subscribe)
2626 ;;  ("^.+" . ignore))
2627 ;; So all "rec.*" groups will be subscribed, while all the other
2628 ;; groups will be ignored.  Note that "options -n !all rec.all" is very
2629 ;; different from "options -n rec.all !all".
2630 (defun gnus-newsrc-parse-options (options)
2631   (let (out eol)
2632     (save-excursion
2633       (gnus-set-work-buffer)
2634       (insert (regexp-quote options))
2635       ;; First we treat all continuation lines.
2636       (goto-char (point-min))
2637       (while (re-search-forward "\n[ \t]+" nil t)
2638         (replace-match " " t t))
2639       ;; Then we transform all "all"s into ".+"s.
2640       (goto-char (point-min))
2641       (while (re-search-forward "\\ball\\b" nil t)
2642         (replace-match ".+" t t))
2643       (goto-char (point-min))
2644       ;; We remove all other options than the "-n" ones.
2645       (while (re-search-forward "[ \t]-[^n][^-]*" nil t)
2646         (replace-match " ")
2647         (forward-char -1))
2648       (goto-char (point-min))
2649
2650       ;; We are only interested in "options -n" lines - we
2651       ;; ignore the other option lines.
2652       (while (re-search-forward "[ \t]-n" nil t)
2653         (setq eol
2654               (or (save-excursion
2655                     (and (re-search-forward "[ \t]-n" (point-at-eol) t)
2656                          (- (point) 2)))
2657                   (point-at-eol)))
2658         ;; Search for all "words"...
2659         (while (re-search-forward "[^ \t,\n]+" eol t)
2660           (if (eq (char-after (match-beginning 0)) ?!)
2661               ;; If the word begins with a bang (!), this is a "not"
2662               ;; spec.  We put this spec (minus the bang) and the
2663               ;; symbol `ignore' into the list.
2664               (push (cons (concat
2665                            "^" (buffer-substring
2666                                 (1+ (match-beginning 0))
2667                                 (match-end 0))
2668                            "\\($\\|\\.\\)")
2669                           'ignore)
2670                     out)
2671             ;; There was no bang, so this is a "yes" spec.
2672             (push (cons (concat "^" (match-string 0) "\\($\\|\\.\\)")
2673                         'subscribe)
2674                   out))))
2675
2676       (setq gnus-newsrc-options-n out))))
2677
2678 (eval-and-compile
2679   (defalias 'gnus-long-file-names
2680     (if (fboundp 'msdos-long-file-names)
2681       'msdos-long-file-names
2682       (lambda () t))))
2683
2684 (defun gnus-save-newsrc-file (&optional force)
2685   "Save .newsrc file."
2686   ;; Note: We cannot save .newsrc file if all newsgroups are removed
2687   ;; from the variable gnus-newsrc-alist.
2688   (when (and (or gnus-newsrc-alist gnus-killed-list)
2689              gnus-current-startup-file)
2690     ;; Save agent range limits for the currently active method.
2691     (when gnus-agent
2692       (gnus-agent-save-local force))
2693
2694     (save-excursion
2695       (if (and (or gnus-use-dribble-file gnus-slave)
2696                (not force)
2697                (or (not gnus-dribble-buffer)
2698                    (not (buffer-name gnus-dribble-buffer))
2699                    (zerop (save-excursion
2700                             (set-buffer gnus-dribble-buffer)
2701                             (buffer-size)))))
2702           (gnus-message 4 "(No changes need to be saved)")
2703         (gnus-run-hooks 'gnus-save-newsrc-hook)
2704         (if gnus-slave
2705             (gnus-slave-save-newsrc)
2706           ;; Save .newsrc.
2707           (when gnus-save-newsrc-file
2708             (gnus-message 8 "Saving %s..." gnus-current-startup-file)
2709             (gnus-gnus-to-newsrc-format)
2710             (gnus-message 8 "Saving %s...done" gnus-current-startup-file))
2711
2712           ;; Save .newsrc.eld.
2713           (set-buffer (gnus-get-buffer-create " *Gnus-newsrc*"))
2714           (make-local-variable 'version-control)
2715           (setq version-control gnus-backup-startup-file)
2716           (setq buffer-file-name
2717                 (concat gnus-current-startup-file ".eld"))
2718           (setq default-directory (file-name-directory buffer-file-name))
2719           (buffer-disable-undo)
2720           (erase-buffer)
2721           (gnus-message 5 "Saving %s.eld..." gnus-current-startup-file)
2722
2723           (if gnus-save-startup-file-via-temp-buffer
2724               (let ((coding-system-for-write gnus-ding-file-coding-system)
2725                     (standard-output (current-buffer)))
2726                 (gnus-gnus-to-quick-newsrc-format)
2727                 (gnus-run-hooks 'gnus-save-quick-newsrc-hook)
2728                 (save-buffer))
2729             (let ((coding-system-for-write gnus-ding-file-coding-system)
2730                   (version-control gnus-backup-startup-file)
2731                   (startup-file (concat gnus-current-startup-file ".eld"))
2732                   (working-dir (file-name-directory gnus-current-startup-file))
2733                   working-file
2734                   (i -1))
2735               ;; Generate the name of a non-existent file.
2736               (while (progn (setq working-file
2737                                   (format
2738                                    (if (and (eq system-type 'ms-dos)
2739                                             (not (gnus-long-file-names)))
2740                                        "%s#%d.tm#" ; MSDOS limits files to 8+3
2741                                      (if (memq system-type '(vax-vms axp-vms))
2742                                          "%s$tmp$%d"
2743                                        "%s#tmp#%d"))
2744                                    working-dir (setq i (1+ i))))
2745                             (file-exists-p working-file)))
2746
2747               (unwind-protect
2748                   (progn
2749                     (gnus-with-output-to-file working-file
2750                       (gnus-gnus-to-quick-newsrc-format)
2751                       (gnus-run-hooks 'gnus-save-quick-newsrc-hook))
2752
2753                     ;; These bindings will mislead the current buffer
2754                     ;; into thinking that it is visiting the startup
2755                     ;; file.
2756                     (let ((buffer-backed-up nil)
2757                           (buffer-file-name startup-file)
2758                           (file-precious-flag t)
2759                           (setmodes (file-modes startup-file)))
2760                       ;; Backup the current version of the startup file.
2761                       (backup-buffer)
2762
2763                       ;; Replace the existing startup file with the temp file.
2764                       (rename-file working-file startup-file t)
2765                       (set-file-modes startup-file setmodes)))
2766                 (condition-case nil
2767                     (delete-file working-file)
2768                   (file-error nil)))))
2769
2770           (gnus-kill-buffer (current-buffer))
2771           (gnus-message
2772            5 "Saving %s.eld...done" gnus-current-startup-file))
2773         (gnus-dribble-delete-file)
2774         (gnus-group-set-mode-line)))))
2775
2776 (defun gnus-gnus-to-quick-newsrc-format (&optional minimal name &rest specific-variables)
2777   "Print Gnus variables such as `gnus-newsrc-alist' in Lisp format."
2778     (princ ";; -*- emacs-lisp -*-\n")
2779     (if name
2780         (princ (format ";; %s\n" name))
2781       (princ ";; Gnus startup file.\n"))
2782
2783     (unless minimal
2784       (princ "\
2785 ;; Never delete this file -- if you want to force Gnus to read the
2786 ;; .newsrc file (if you have one), touch .newsrc instead.\n")
2787       (princ "(setq gnus-newsrc-file-version ")
2788       (princ (gnus-prin1-to-string gnus-version))
2789       (princ ")\n"))
2790
2791     (let* ((print-quoted t)
2792            (print-readably t)
2793            (print-escape-multibyte nil)
2794            (print-escape-nonascii t)
2795            (print-length nil)
2796            (print-level nil)
2797            (print-escape-newlines t)
2798            (gnus-killed-list
2799             (if (and gnus-save-killed-list
2800                      (stringp gnus-save-killed-list))
2801                 (gnus-strip-killed-list)
2802               gnus-killed-list))
2803            (variables
2804             (or specific-variables
2805                 (if gnus-save-killed-list gnus-variable-list
2806                   ;; Remove the `gnus-killed-list' from the list of variables
2807                   ;; to be saved, if required.
2808                   (delq 'gnus-killed-list (copy-sequence gnus-variable-list)))))
2809            ;; Peel off the "dummy" group.
2810            (gnus-newsrc-alist (cdr gnus-newsrc-alist))
2811            variable)
2812       ;; Insert the variables into the file.
2813       (while variables
2814         (when (and (boundp (setq variable (pop variables)))
2815                    (symbol-value variable))
2816           (princ "(setq ")
2817           (princ (symbol-name variable))
2818           (princ " '")
2819           (prin1 (symbol-value variable))
2820           (princ ")\n")))))
2821
2822 (defun gnus-strip-killed-list ()
2823   "Return the killed list minus the groups that match `gnus-save-killed-list'."
2824   (let ((list gnus-killed-list)
2825         olist)
2826     (while list
2827       (when (string-match gnus-save-killed-list (car list))
2828         (push (car list) olist))
2829       (pop list))
2830     (nreverse olist)))
2831
2832 (defun gnus-gnus-to-newsrc-format ()
2833   ;; Generate and save the .newsrc file.
2834   (save-excursion
2835     (set-buffer (create-file-buffer gnus-current-startup-file))
2836     (let ((newsrc (cdr gnus-newsrc-alist))
2837           (standard-output (current-buffer))
2838           info ranges range method)
2839       (setq buffer-file-name gnus-current-startup-file)
2840       (setq default-directory (file-name-directory buffer-file-name))
2841       (buffer-disable-undo)
2842       (erase-buffer)
2843       ;; Write options.
2844       (when gnus-newsrc-options
2845         (insert gnus-newsrc-options))
2846       ;; Write subscribed and unsubscribed.
2847       (while (setq info (pop newsrc))
2848         ;; Don't write foreign groups to .newsrc.
2849         (when (or (null (setq method (gnus-info-method info)))
2850                   (equal method "native")
2851                   (inline (gnus-server-equal method gnus-select-method)))
2852           (insert (gnus-info-group info)
2853                   (if (> (gnus-info-level info) gnus-level-subscribed)
2854                       "!" ":"))
2855           (when (setq ranges (gnus-info-read info))
2856             (insert " ")
2857             (if (not (listp (cdr ranges)))
2858                 (if (= (car ranges) (cdr ranges))
2859                     (princ (car ranges))
2860                   (princ (car ranges))
2861                   (insert "-")
2862                   (princ (cdr ranges)))
2863               (while (setq range (pop ranges))
2864                 (if (or (atom range) (= (car range) (cdr range)))
2865                     (princ (or (and (atom range) range) (car range)))
2866                   (princ (car range))
2867                   (insert "-")
2868                   (princ (cdr range)))
2869                 (when ranges
2870                   (insert ",")))))
2871           (insert "\n")))
2872       (make-local-variable 'version-control)
2873       (setq version-control 'never)
2874       ;; It has been reported that sometime the modtime on the .newsrc
2875       ;; file seems to be off.  We really do want to overwrite it, so
2876       ;; we clear the modtime here before saving.  It's a bit odd,
2877       ;; though...
2878       ;; sometimes the modtime clear isn't sufficient.  most brute force:
2879       ;; delete the silly thing entirely first.  but this fails to provide
2880       ;; such niceties as .newsrc~ creation.
2881       (if gnus-modtime-botch
2882           (delete-file gnus-startup-file)
2883         (clear-visited-file-modtime))
2884       (gnus-run-hooks 'gnus-save-standard-newsrc-hook)
2885       (save-buffer)
2886       (kill-buffer (current-buffer)))))
2887
2888 \f
2889 ;;;
2890 ;;; Slave functions.
2891 ;;;
2892
2893 (defvar gnus-slave-mode nil)
2894
2895 (defun gnus-slave-mode ()
2896   "Minor mode for slave Gnusae."
2897   (add-minor-mode 'gnus-slave-mode " Slave" (make-sparse-keymap))
2898   (gnus-run-hooks 'gnus-slave-mode-hook))
2899
2900 (defun gnus-slave-save-newsrc ()
2901   (save-excursion
2902     (set-buffer gnus-dribble-buffer)
2903     (let ((slave-name
2904            (mm-make-temp-file (concat gnus-current-startup-file "-slave-")))
2905           (modes (ignore-errors
2906                    (file-modes (concat gnus-current-startup-file ".eld")))))
2907       (let ((coding-system-for-write gnus-ding-file-coding-system))
2908         (gnus-write-buffer slave-name))
2909       (when modes
2910         (set-file-modes slave-name modes)))))
2911
2912 (defun gnus-master-read-slave-newsrc ()
2913   (let ((slave-files
2914          (directory-files
2915           (file-name-directory gnus-current-startup-file)
2916           t (concat
2917              "^" (regexp-quote
2918                   (concat
2919                    (file-name-nondirectory gnus-current-startup-file)
2920                    "-slave-")))
2921           t))
2922         file)
2923     (if (not slave-files)
2924         ()                              ; There are no slave files to read.
2925       (gnus-message 7 "Reading slave newsrcs...")
2926       (save-excursion
2927         (set-buffer (gnus-get-buffer-create " *gnus slave*"))
2928         (setq slave-files
2929               (sort (mapcar (lambda (file)
2930                               (list (nth 5 (file-attributes file)) file))
2931                             slave-files)
2932                     (lambda (f1 f2)
2933                       (or (< (caar f1) (caar f2))
2934                           (< (nth 1 (car f1)) (nth 1 (car f2)))))))
2935         (while slave-files
2936           (erase-buffer)
2937           (setq file (nth 1 (car slave-files)))
2938           (nnheader-insert-file-contents file)
2939           (when (condition-case ()
2940                     (progn
2941                       (eval-buffer (current-buffer))
2942                       t)
2943                   (error
2944                    (gnus-error 3.2 "Possible error in %s" file)
2945                    nil))
2946             (unless gnus-slave          ; Slaves shouldn't delete these files.
2947               (ignore-errors
2948                 (delete-file file))))
2949           (setq slave-files (cdr slave-files))))
2950       (gnus-dribble-touch)
2951       (gnus-message 7 "Reading slave newsrcs...done"))))
2952
2953 \f
2954 ;;;
2955 ;;; Group description.
2956 ;;;
2957
2958 (defun gnus-read-all-descriptions-files ()
2959   (let ((methods (cons gnus-select-method
2960                        (nconc
2961                         (when (gnus-archive-server-wanted-p)
2962                           (list "archive"))
2963                         gnus-secondary-select-methods))))
2964     (while methods
2965       (gnus-read-descriptions-file (car methods))
2966       (setq methods (cdr methods)))
2967     t))
2968
2969 (defun gnus-read-descriptions-file (&optional method)
2970   (let ((method (or method gnus-select-method))
2971         group)
2972     (when (stringp method)
2973       (setq method (gnus-server-to-method method)))
2974     ;; We create the hashtable whether we manage to read the desc file
2975     ;; to avoid trying to re-read after a failed read.
2976     (unless gnus-description-hashtb
2977       (setq gnus-description-hashtb
2978             (gnus-make-hashtable (length gnus-active-hashtb))))
2979     ;; Mark this method's desc file as read.
2980     (gnus-sethash (gnus-group-prefixed-name "" method) "Has read"
2981                   gnus-description-hashtb)
2982
2983     (gnus-message 5 "Reading descriptions file via %s..." (car method))
2984     (cond
2985      ((null (gnus-get-function method 'request-list-newsgroups t))
2986       t)
2987      ((not (gnus-check-server method))
2988       (gnus-message 1 "Couldn't open server")
2989       nil)
2990      ((not (gnus-request-list-newsgroups method))
2991       (gnus-message 1 "Couldn't read newsgroups descriptions")
2992       nil)
2993      (t
2994       (save-excursion
2995         (save-restriction
2996           (set-buffer nntp-server-buffer)
2997           (goto-char (point-min))
2998           (when (or (search-forward "\n.\n" nil t)
2999                     (goto-char (point-max)))
3000             (beginning-of-line)
3001             (narrow-to-region (point-min) (point)))
3002           ;; If these are groups from a foreign select method, we insert the
3003           ;; group prefix in front of the group names.
3004           (and method (not (inline
3005                              (gnus-server-equal
3006                               (gnus-server-get-method nil method)
3007                               (gnus-server-get-method
3008                                nil gnus-select-method))))
3009                (let ((prefix (gnus-group-prefixed-name "" method)))
3010                  (goto-char (point-min))
3011                  (while (and (not (eobp))
3012                              (progn (insert prefix)
3013                                     (zerop (forward-line 1)))))))
3014           (goto-char (point-min))
3015           (while (not (eobp))
3016             ;; If we get an error, we set group to 0, which is not a
3017             ;; symbol...
3018             (setq group
3019                   (condition-case ()
3020                       (let ((obarray gnus-description-hashtb))
3021                         ;; Group is set to a symbol interned in this
3022                         ;; hash table.
3023                         (read nntp-server-buffer))
3024                     (error 0)))
3025             (skip-chars-forward " \t")
3026             ;; ...  which leads to this line being effectively ignored.
3027             (when (symbolp group)
3028               (let* ((str (buffer-substring
3029                            (point) (progn (end-of-line) (point))))
3030                      (name (symbol-name group))
3031                      (charset
3032                       (or (gnus-group-name-charset method name)
3033                           (gnus-parameter-charset name)
3034                           gnus-default-charset)))
3035                 ;; Fixme: Don't decode in unibyte mode.
3036                 (when (and str charset (featurep 'mule))
3037                   (setq str (mm-decode-coding-string str charset)))
3038                 (set group str)))
3039             (forward-line 1))))
3040       (gnus-message 5 "Reading descriptions file...done")
3041       t))))
3042
3043 (defun gnus-group-get-description (group)
3044   "Get the description of a group by sending XGTITLE to the server."
3045   (when (gnus-request-group-description group)
3046     (save-excursion
3047       (set-buffer nntp-server-buffer)
3048       (goto-char (point-min))
3049       (when (looking-at "[^ \t]+[ \t]+\\(.*\\)")
3050         (match-string 1)))))
3051
3052 ;;;###autoload
3053 (defun gnus-declare-backend (name &rest abilities)
3054   "Declare back end NAME with ABILITIES as a Gnus back end."
3055   (setq gnus-valid-select-methods
3056         (nconc gnus-valid-select-methods
3057                (list (apply 'list name abilities))))
3058   (gnus-redefine-select-method-widget))
3059
3060 (defun gnus-set-default-directory ()
3061   "Set the default directory in the current buffer to `gnus-default-directory'.
3062 If this variable is nil, don't do anything."
3063   (setq default-directory
3064         (if (and gnus-default-directory
3065                  (file-exists-p gnus-default-directory))
3066             (file-name-as-directory (expand-file-name gnus-default-directory))
3067           default-directory)))
3068
3069 (eval-and-compile
3070 (defalias 'gnus-display-time-event-handler
3071   (if (gnus-boundp 'display-time-timer)
3072       'display-time-event-handler
3073     (lambda () "Does nothing as `display-time-timer' is not bound.
3074 Would otherwise be an alias for `display-time-event-handler'." nil))))
3075
3076 ;;;###autoload
3077 (defun gnus-fixup-nnimap-unread-after-getting-new-news ()
3078   (let (server group info)
3079     (mapatoms
3080      (lambda (sym)
3081        (when (and (setq group (symbol-name sym))
3082                   (gnus-group-entry group)
3083                   (setq info (symbol-value sym)))
3084          (gnus-sethash group (cons (nth 2 info) (cdr (gnus-group-entry group)))
3085                        gnus-newsrc-hashtb)))
3086      (if (boundp 'nnimap-mailbox-info)
3087          (symbol-value 'nnimap-mailbox-info)
3088        (make-vector 1 0)))))
3089
3090
3091 (provide 'gnus-start)
3092
3093 ;;; arch-tag: f4584a22-b7b7-4853-abfc-a637329af5d2
3094 ;;; gnus-start.el ends here
3095
3096