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