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