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