Synch with Oort Gnus.
[elisp/gnus.git-] / lisp / nnfolder.el
1 ;;; nnfolder.el --- mail folder access for Gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Simon Josefsson <simon@josefsson.org> (adding MARKS)
6 ;;      ShengHuo Zhu <zsh@cs.rochester.edu> (adding NOV)
7 ;;      Scott Byer <byer@mv.us.adobe.com>
8 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;;      Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
10 ;; Keywords: mail
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 (eval-when-compile (require 'cl))
34 (eval-when-compile (require 'gnus-clfns))
35
36 (require 'nnheader)
37 (require 'message)
38 (require 'nnmail)
39 (require 'nnoo)
40 (require 'gnus)
41 (require 'gnus-util)
42 (require 'gnus-range)
43
44 (eval-and-compile
45   (autoload 'gnus-article-unpropagatable-p "gnus-sum")
46   (autoload 'gnus-intersection "gnus-range"))
47
48 (nnoo-declare nnfolder)
49
50 (defvoo nnfolder-directory (expand-file-name message-directory)
51   "The name of the nnfolder directory.")
52
53 (defvoo nnfolder-nov-directory nil
54   "The name of the nnfolder NOV directory.
55 If nil, `nnfolder-directory' is used.")
56
57 (defvoo nnfolder-marks-directory nil
58   "The name of the nnfolder MARKS directory.
59 If nil, `nnfolder-directory' is used.")
60
61 (defvoo nnfolder-active-file
62     (nnheader-concat nnfolder-directory "active")
63   "The name of the active file.")
64
65 ;; I renamed this variable to something more in keeping with the general GNU
66 ;; style. -SLB
67
68 (defvoo nnfolder-ignore-active-file nil
69   "If non-nil, the active file is ignored.
70 This causes nnfolder to do some extra work in order to determine the
71 true active ranges of an mbox file.  Note that the active file is
72 still saved, but its values are not used.  This costs some extra time
73 when scanning an mbox when opening it.")
74
75 (defvoo nnfolder-distrust-mbox nil
76   "If non-nil, the folder will be distrusted.
77 This means that nnfolder will not trust the user with respect to
78 inserting unaccounted for mail in the middle of an mbox file.  This
79 can greatly slow down scans, which now must scan the entire file for
80 unmarked messages.  When nil, scans occur forward from the last marked
81 message, a huge time saver for large mailboxes.")
82
83 (defvoo nnfolder-newsgroups-file
84     (concat (file-name-as-directory nnfolder-directory) "newsgroups")
85   "Mail newsgroups description file.")
86
87 (defvoo nnfolder-get-new-mail t
88   "If non-nil, nnfolder will check the incoming mail file and split the mail.")
89
90 (defvoo nnfolder-prepare-save-mail-hook nil
91   "Hook run narrowed to an article before saving.")
92
93 (defvoo nnfolder-save-buffer-hook nil
94   "Hook run before saving the nnfolder mbox buffer.")
95
96
97 (defvoo nnfolder-inhibit-expiry nil
98   "If non-nil, inhibit expiry.")
99
100 \f
101
102 (defconst nnfolder-version "nnfolder 2.0"
103   "nnfolder version.")
104
105 (defconst nnfolder-article-marker "X-Gnus-Article-Number: "
106   "String used to demarcate what the article number for a message is.")
107
108 (defvoo nnfolder-current-group nil)
109 (defvoo nnfolder-current-buffer nil)
110 (defvoo nnfolder-status-string "")
111 (defvoo nnfolder-group-alist nil)
112 (defvoo nnfolder-buffer-alist nil)
113 (defvoo nnfolder-scantime-alist nil)
114 (defvoo nnfolder-active-timestamp nil)
115 (defvoo nnfolder-active-file-coding-system nnheader-text-coding-system)
116 (defvoo nnfolder-active-file-coding-system-for-write
117     nnmail-active-file-coding-system)
118 (defvoo nnfolder-file-coding-system nnheader-text-coding-system)
119 (defvoo nnfolder-file-coding-system-for-write nnheader-file-coding-system
120   "Coding system for save nnfolder file.
121 if nil, `nnfolder-file-coding-system' is used.") ; FIXME: fill-in the doc-string of this variable
122
123 (defvoo nnfolder-nov-is-evil nil
124   "If non-nil, Gnus will never generate and use nov databases for mail groups.
125 Using nov databases will speed up header fetching considerably.
126 This variable shouldn't be flipped much.  If you have, for some reason,
127 set this to t, and want to set it to nil again, you should always run
128 the `nnfolder-generate-active-file' command.  The function will go
129 through all nnfolder directories and generate nov databases for them
130 all.  This may very well take some time.")
131
132 (defvoo nnfolder-nov-file-suffix ".nov")
133
134 (defvoo nnfolder-nov-buffer-alist nil)
135
136 (defvar nnfolder-nov-buffer-file-name nil)
137
138 (defvoo nnfolder-marks-is-evil nil
139   "If non-nil, Gnus will never generate and use marks file for mail groups.
140 Using marks files makes it possible to backup and restore mail groups
141 separately from `.newsrc.eld'.  If you have, for some reason, set
142 this to t, and want to set it to nil again, you should always remove
143 the corresponding marks file (usually base nnfolder file name
144 concatenated with `.mrk', but see `nnfolder-marks-file-suffix') for
145 the group.  Then the marks file will be regenerated properly by Gnus.")
146
147 (defvoo nnfolder-marks nil)
148
149 (defvoo nnfolder-marks-file-suffix ".mrk")
150
151 (defvar nnfolder-marks-modtime (gnus-make-hashtable))
152
153 \f
154
155 ;;; Interface functions
156
157 (nnoo-define-basics nnfolder)
158
159 (deffoo nnfolder-retrieve-headers (articles &optional group server fetch-old)
160   (save-excursion
161     (set-buffer nntp-server-buffer)
162     (erase-buffer)
163     (let (article start stop)
164       (nnfolder-possibly-change-group group server)
165       (when nnfolder-current-buffer
166         (set-buffer nnfolder-current-buffer)
167         (goto-char (point-min))
168         (if (stringp (car articles))
169             'headers
170           (if (nnfolder-retrieve-headers-with-nov articles fetch-old)
171               'nov
172             (setq articles (gnus-sorted-intersection
173                             ;; Is ARTICLES sorted?
174                             (sort articles '<)
175                             (nnfolder-existing-articles)))
176             (while (setq article (pop articles))
177               (set-buffer nnfolder-current-buffer)
178               (when (nnfolder-goto-article article)
179                 (setq start (point))
180                 (setq stop (if (search-forward "\n\n" nil t)
181                                (1- (point))
182                              (point-max)))
183                 (set-buffer nntp-server-buffer)
184                 (insert (format "221 %d Article retrieved.\n" article))
185                 (insert-buffer-substring nnfolder-current-buffer start stop)
186                 (goto-char (point-max))
187                 (insert ".\n")))
188             (set-buffer nntp-server-buffer)
189             (nnheader-fold-continuation-lines)
190             'headers))))))
191
192 (deffoo nnfolder-open-server (server &optional defs)
193   (nnoo-change-server 'nnfolder server defs)
194   (nnmail-activate 'nnfolder t)
195   (gnus-make-directory nnfolder-directory)
196   (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
197     (and nnfolder-nov-directory
198          (gnus-make-directory nnfolder-nov-directory)))
199   (unless nnfolder-marks-is-evil
200     (and nnfolder-marks-directory
201          (gnus-make-directory nnfolder-marks-directory)))
202   (cond
203    ((not (file-exists-p nnfolder-directory))
204     (nnfolder-close-server)
205     (nnheader-report 'nnfolder "Couldn't create directory: %s"
206                      nnfolder-directory))
207    ((not (file-directory-p (file-truename nnfolder-directory)))
208     (nnfolder-close-server)
209     (nnheader-report 'nnfolder "Not a directory: %s" nnfolder-directory))
210    (t
211     (nnmail-activate 'nnfolder)
212     (nnheader-report 'nnfolder "Opened server %s using directory %s"
213                      server nnfolder-directory)
214     t)))
215
216 (deffoo nnfolder-request-close ()
217   (let ((alist nnfolder-buffer-alist))
218     (while alist
219       (nnfolder-close-group (caar alist) nil t)
220       (setq alist (cdr alist))))
221   (nnoo-close-server 'nnfolder)
222   (setq nnfolder-buffer-alist nil
223         nnfolder-group-alist nil))
224
225 (deffoo nnfolder-request-article (article &optional group server buffer)
226   (nnfolder-possibly-change-group group server)
227   (save-excursion
228     (set-buffer nnfolder-current-buffer)
229     (goto-char (point-min))
230     (when (nnfolder-goto-article article)
231       (let (start stop)
232         (setq start (point))
233         (forward-line 1)
234         (unless (and (nnmail-search-unix-mail-delim)
235                      (forward-line -1))
236           (goto-char (point-max)))
237         (setq stop (point))
238         (let ((nntp-server-buffer (or buffer nntp-server-buffer)))
239           (set-buffer nntp-server-buffer)
240           (erase-buffer)
241           (insert-buffer-substring nnfolder-current-buffer start stop)
242           (goto-char (point-min))
243           (while (looking-at "From ")
244             (delete-char 5)
245             (insert "X-From-Line: ")
246             (forward-line 1))
247           (if (numberp article)
248               (cons nnfolder-current-group article)
249             (goto-char (point-min))
250             (cons nnfolder-current-group
251                   (if (search-forward (concat "\n" nnfolder-article-marker)
252                                       nil t)
253                       (string-to-int
254                        (buffer-substring
255                         (point) (progn (end-of-line) (point))))
256                     -1))))))))
257
258 (deffoo nnfolder-request-group (group &optional server dont-check)
259   (nnfolder-possibly-change-group group server t)
260   (save-excursion
261     (if (not (assoc group nnfolder-group-alist))
262         (nnheader-report 'nnfolder "No such group: %s" group)
263       (if dont-check
264           (progn
265             (nnheader-report 'nnfolder "Selected group %s" group)
266             t)
267         (let* ((active (assoc group nnfolder-group-alist))
268                (group (car active))
269                (range (cadr active)))
270           (cond
271            ((null active)
272             (nnheader-report 'nnfolder "No such group: %s" group))
273            ((null nnfolder-current-group)
274             (nnheader-report 'nnfolder "Empty group: %s" group))
275            (t
276             (nnheader-report 'nnfolder "Selected group %s" group)
277             (nnheader-insert "211 %d %d %d %s\n"
278                              (1+ (- (cdr range) (car range)))
279                              (car range) (cdr range) group))))))))
280
281 (deffoo nnfolder-request-scan (&optional group server)
282   (nnfolder-possibly-change-group nil server)
283   (when nnfolder-get-new-mail
284     (nnfolder-possibly-change-group group server)
285     (nnmail-get-new-mail
286      'nnfolder
287      (lambda ()
288        (let ((bufs nnfolder-buffer-alist))
289          (save-excursion
290            (while bufs
291              (if (not (gnus-buffer-live-p (nth 1 (car bufs))))
292                  (setq nnfolder-buffer-alist
293                        (delq (car bufs) nnfolder-buffer-alist))
294                (set-buffer (nth 1 (car bufs)))
295                (nnfolder-save-buffer)
296                (kill-buffer (current-buffer)))
297              (setq bufs (cdr bufs))))))
298      nnfolder-directory
299      group)))
300
301 ;; Don't close the buffer if we're not shutting down the server.  This way,
302 ;; we can keep the buffer in the group buffer cache, and not have to grovel
303 ;; over the buffer again unless we add new mail to it or modify it in some
304 ;; way.
305
306 (deffoo nnfolder-close-group (group &optional server force)
307   ;; Make sure we _had_ the group open.
308   (when (or (assoc group nnfolder-buffer-alist)
309             (equal group nnfolder-current-group))
310     (let ((inf (assoc group nnfolder-buffer-alist)))
311       (when inf
312         (when (and nnfolder-current-group
313                    nnfolder-current-buffer)
314           (push (list nnfolder-current-group nnfolder-current-buffer)
315                 nnfolder-buffer-alist))
316         (setq nnfolder-buffer-alist
317               (delq inf nnfolder-buffer-alist))
318         (setq nnfolder-current-buffer (cadr inf)
319               nnfolder-current-group (car inf))))
320     (when (and nnfolder-current-buffer
321                (buffer-name nnfolder-current-buffer))
322       (save-excursion
323         (set-buffer nnfolder-current-buffer)
324         ;; If the buffer was modified, write the file out now.
325         (nnfolder-save-buffer)
326         ;; If we're shutting the server down, we need to kill the
327         ;; buffer and remove it from the open buffer list.  Or, of
328         ;; course, if we're trying to minimize our space impact.
329         (kill-buffer (current-buffer))
330         (setq nnfolder-buffer-alist (delq (assoc group nnfolder-buffer-alist)
331                                           nnfolder-buffer-alist)))))
332   (setq nnfolder-current-group nil
333         nnfolder-current-buffer nil)
334   t)
335
336 (deffoo nnfolder-request-create-group (group &optional server args)
337   (nnfolder-possibly-change-group nil server)
338   (nnmail-activate 'nnfolder)
339   (when group
340     (unless (assoc group nnfolder-group-alist)
341       (push (list group (cons 1 0)) nnfolder-group-alist)
342       (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
343       (nnfolder-read-folder group)))
344   t)
345
346 (deffoo nnfolder-request-list (&optional server)
347   (nnfolder-possibly-change-group nil server)
348   (save-excursion
349     (let ((nnmail-file-coding-system nnfolder-active-file-coding-system))
350       (nnmail-find-file nnfolder-active-file)
351       (setq nnfolder-group-alist (nnmail-get-active)))
352     t))
353
354 (deffoo nnfolder-request-newgroups (date &optional server)
355   (nnfolder-possibly-change-group nil server)
356   (nnfolder-request-list server))
357
358 (deffoo nnfolder-request-list-newsgroups (&optional server)
359   (nnfolder-possibly-change-group nil server)
360   (save-excursion
361     (let ((nnmail-file-coding-system nnfolder-file-coding-system))
362       (nnmail-find-file nnfolder-newsgroups-file))))
363
364 ;; Return a list consisting of all article numbers existing in the
365 ;; current folder.
366
367 (defun nnfolder-existing-articles ()
368   (save-excursion
369     (when nnfolder-current-buffer
370       (set-buffer nnfolder-current-buffer)
371       (goto-char (point-min))
372       (let ((marker (concat "\n" nnfolder-article-marker))
373             (number "[0-9]+")
374             numbers)
375         (while (and (search-forward marker nil t)
376                     (re-search-forward number nil t))
377           (let ((newnum (string-to-number (match-string 0))))
378             (if (nnmail-within-headers-p)
379                 (push newnum numbers))))
380         ;; The article numbers are increasing, so this result is sorted.
381         (nreverse numbers)))))
382
383 (deffoo nnfolder-request-expire-articles
384     (articles newsgroup &optional server force)
385   (nnfolder-possibly-change-group newsgroup server)
386   (let* ((is-old t)
387          ;; The articles we have deleted so far.
388          (deleted-articles nil)
389          ;; The articles that really exist and will
390          ;; be expired if they are old enough.
391          (maybe-expirable
392           (gnus-sorted-intersection articles (nnfolder-existing-articles))))
393     (nnmail-activate 'nnfolder)
394
395     (save-excursion
396       (set-buffer nnfolder-current-buffer)
397       ;; Since messages are sorted in arrival order and expired in the
398       ;; same order, we can stop as soon as we find a message that is
399       ;; too old.
400       (while (and maybe-expirable is-old)
401         (goto-char (point-min))
402         (when (and (nnfolder-goto-article (car maybe-expirable))
403                    (search-forward (concat "\n" nnfolder-article-marker)
404                                    nil t))
405           (forward-sexp)
406           (when (setq is-old
407                       (nnmail-expired-article-p
408                        newsgroup
409                        (buffer-substring
410                         (point) (progn (end-of-line) (point)))
411                        force nnfolder-inhibit-expiry))
412             (unless (eq nnmail-expiry-target 'delete)
413               (with-temp-buffer
414                 (nnfolder-request-article (car maybe-expirable)
415                                           newsgroup server (current-buffer))
416                 (let ((nnfolder-current-directory nil))
417                   (nnmail-expiry-target-group
418                    nnmail-expiry-target newsgroup)))
419               (nnfolder-possibly-change-group newsgroup server))
420             (nnheader-message 5 "Deleting article %d in %s..."
421                               (car maybe-expirable) newsgroup)
422             (nnfolder-delete-mail)
423             (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
424               (nnfolder-nov-delete-article newsgroup (car maybe-expirable)))
425             ;; Must remember which articles were actually deleted
426             (push (car maybe-expirable) deleted-articles)))
427         (setq maybe-expirable (cdr maybe-expirable)))
428       (unless nnfolder-inhibit-expiry
429         (nnheader-message 5 "Deleting articles...done"))
430       (nnfolder-save-buffer)
431       (nnfolder-adjust-min-active newsgroup)
432       (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
433       (gnus-sorted-difference articles (nreverse deleted-articles)))))
434
435 (deffoo nnfolder-request-move-article (article group server
436                                                accept-form &optional last)
437   (save-excursion
438     (let ((buf (get-buffer-create " *nnfolder move*"))
439           result)
440       (and
441        (nnfolder-request-article article group server)
442        (save-excursion
443          (set-buffer buf)
444          (erase-buffer)
445          (insert-buffer-substring nntp-server-buffer)
446          (goto-char (point-min))
447          (while (re-search-forward
448                  (concat "^" nnfolder-article-marker)
449                  (save-excursion (and (search-forward "\n\n" nil t) (point)))
450                  t)
451            (delete-region (progn (beginning-of-line) (point))
452                           (progn (forward-line 1) (point))))
453          (setq result (eval accept-form))
454          (kill-buffer buf)
455          result)
456        (save-excursion
457          (nnfolder-possibly-change-group group server)
458          (set-buffer nnfolder-current-buffer)
459          (goto-char (point-min))
460          (when (nnfolder-goto-article article)
461            (nnfolder-delete-mail))
462          (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
463            (nnfolder-nov-delete-article group article))
464          (when last
465            (nnfolder-save-buffer)
466            (nnfolder-adjust-min-active group)
467            (nnfolder-save-active nnfolder-group-alist nnfolder-active-file))))
468       result)))
469
470 (deffoo nnfolder-request-accept-article (group &optional server last)
471   (save-excursion
472     (nnfolder-possibly-change-group group server)
473     (nnmail-check-syntax)
474     (let ((buf (current-buffer))
475           result art-group)
476       (goto-char (point-min))
477       (when (looking-at "X-From-Line: ")
478         (save-match-data
479           (mail-header-unfold-field))
480         (replace-match "From "))
481       (with-temp-buffer
482         (let ((nnmail-file-coding-system nnfolder-active-file-coding-system)
483               (nntp-server-buffer (current-buffer)))
484           (nnmail-find-file nnfolder-active-file)
485           (setq nnfolder-group-alist (nnmail-parse-active))))
486       (save-excursion
487         (goto-char (point-min))
488         (if (search-forward "\n\n" nil t)
489             (forward-line -1)
490           (goto-char (point-max)))
491         (while (re-search-backward (concat "^" nnfolder-article-marker) nil t)
492           (delete-region (point) (progn (forward-line 1) (point))))
493         (when nnmail-cache-accepted-message-ids
494           (nnmail-cache-insert (nnmail-fetch-field "message-id")))
495         (setq result (if (stringp group)
496                          (list (cons group (nnfolder-active-number group)))
497                        (setq art-group
498                              (nnmail-article-group 'nnfolder-active-number))))
499         (if (and (null result)
500                  (yes-or-no-p "Moved to `junk' group; delete article? "))
501             (setq result 'junk)
502           (setq result
503                 (car (nnfolder-save-mail result)))))
504       (when last
505         (save-excursion
506           (nnfolder-possibly-change-folder (or (caar art-group) group))
507           (nnfolder-save-buffer)
508           (when nnmail-cache-accepted-message-ids
509             (nnmail-cache-close))))
510       (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
511       (unless result
512         (nnheader-report 'nnfolder "Couldn't store article"))
513       result)))
514
515 (deffoo nnfolder-request-replace-article (article group buffer)
516   (nnfolder-possibly-change-group group)
517   (save-excursion
518     (set-buffer buffer)
519     (goto-char (point-min))
520     (if (not (looking-at "X-From-Line: "))
521         (insert "From nobody " (current-time-string) "\n")
522       (replace-match "From ")
523       (forward-line 1)
524       (while (looking-at "[ \t]")
525         (delete-char -1)
526         (forward-line 1)))
527     (nnfolder-normalize-buffer)
528     (set-buffer nnfolder-current-buffer)
529     (goto-char (point-min))
530     (if (not (nnfolder-goto-article article))
531         nil
532       (nnfolder-delete-mail)
533       (insert-buffer-substring buffer)
534       (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
535         (save-excursion
536           (set-buffer buffer)
537           (let ((headers (nnfolder-parse-head article
538                                               (point-min) (point-max))))
539             (with-current-buffer (nnfolder-open-nov group)
540               (if (nnheader-find-nov-line article)
541                   (delete-region (point) (progn (forward-line 1) (point))))
542               (nnheader-insert-nov headers)))))
543       (nnfolder-save-buffer)
544       t)))
545
546 (deffoo nnfolder-request-delete-group (group &optional force server)
547   (nnfolder-close-group group server t)
548   ;; Delete all articles in GROUP.
549   (if (not force)
550       ()                                ; Don't delete the articles.
551     ;; Delete the file that holds the group.
552     (ignore-errors
553       (delete-file (nnfolder-group-pathname group))
554       (when (file-exists-p (nnfolder-group-nov-pathname group))
555         (delete-file (nnfolder-group-nov-pathname group)))
556       (when (file-exists-p (nnfolder-group-marks-pathname group))
557         (delete-file (nnfolder-group-marks-pathname group)))))
558   ;; Remove the group from all structures.
559   (setq nnfolder-group-alist
560         (delq (assoc group nnfolder-group-alist) nnfolder-group-alist)
561         nnfolder-current-group nil
562         nnfolder-current-buffer nil)
563   ;; Save the active file.
564   (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
565   t)
566
567 (deffoo nnfolder-request-rename-group (group new-name &optional server)
568   (nnfolder-possibly-change-group group server)
569   (save-excursion
570     (set-buffer nnfolder-current-buffer)
571     (and (file-writable-p buffer-file-name)
572          (ignore-errors
573            (let ((new-file (nnfolder-group-pathname new-name)))
574              (gnus-make-directory (file-name-directory new-file))
575              (rename-file buffer-file-name new-file)
576              (when (file-exists-p (nnfolder-group-nov-pathname group))
577                (setq new-file (nnfolder-group-nov-pathname new-name))
578                (gnus-make-directory (file-name-directory new-file))
579                (rename-file (nnfolder-group-nov-pathname group) new-file))
580              (when (file-exists-p (nnfolder-group-marks-pathname group))
581                (setq new-file (nnfolder-group-marks-pathname new-name))
582                (gnus-make-directory (file-name-directory new-file))
583                (rename-file (nnfolder-group-marks-pathname group) new-file)))
584            t)
585          ;; That went ok, so we change the internal structures.
586          (let ((entry (assoc group nnfolder-group-alist)))
587            (and entry (setcar entry new-name))
588            (setq nnfolder-current-buffer nil
589                  nnfolder-current-group nil)
590            ;; Save the new group alist.
591            (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
592            ;; We kill the buffer instead of renaming it and stuff.
593            (kill-buffer (current-buffer))
594            t))))
595
596 (deffoo nnfolder-request-regenerate (server)
597   (nnfolder-possibly-change-group nil server)
598   (nnfolder-generate-active-file)
599   t)
600
601 \f
602 ;;; Internal functions.
603
604 (defun nnfolder-adjust-min-active (group)
605   ;; Find the lowest active article in this group.
606   (let* ((active (cadr (assoc group nnfolder-group-alist)))
607          (marker (concat "\n" nnfolder-article-marker))
608          (number "[0-9]+")
609          (activemin (cdr active)))
610     (save-excursion
611       (set-buffer nnfolder-current-buffer)
612       (goto-char (point-min))
613       (while (and (search-forward marker nil t)
614                   (re-search-forward number nil t))
615         (let ((newnum (string-to-number (match-string 0))))
616           (if (nnmail-within-headers-p)
617               (setq activemin (min activemin newnum)))))
618       (setcar active activemin))))
619
620 (defun nnfolder-article-string (article)
621   (if (numberp article)
622       (concat "\n" nnfolder-article-marker (int-to-string article) " ")
623     (concat "\nMessage-ID: " article)))
624
625 (defun nnfolder-goto-article (article)
626   "Place point at the start of the headers of ARTICLE.
627 ARTICLE can be an article number or a Message-ID.
628 Returns t if successful, nil otherwise."
629   (let ((art-string (nnfolder-article-string article))
630         start found)
631     ;; It is likely that we are at or before the delimiter line.
632     ;; We therefore go to the end of the previous line, and start
633     ;; searching from there.
634     (beginning-of-line)
635     (unless (bobp)
636       (forward-char -1))
637     (setq start (point))
638     ;; First search forward.
639     (while (and (setq found (search-forward art-string nil t))
640                 (not (nnmail-within-headers-p))))
641     ;; If unsuccessful, search backward from where we started,
642     (unless found
643       (goto-char start)
644       (while (and (setq found (search-backward art-string nil t))
645                   (not (nnmail-within-headers-p)))))
646     (when found
647       (nnmail-search-unix-mail-delim-backward))))
648
649 (defun nnfolder-delete-mail (&optional leave-delim)
650   "Delete the message that point is in.
651 If optional argument LEAVE-DELIM is t, then mailbox delimiter is not
652 deleted.  Point is left where the deleted region was."
653   (save-restriction
654     (narrow-to-region
655      (save-excursion
656        ;; In case point is at the beginning of the message already.
657        (forward-line 1)
658        (nnmail-search-unix-mail-delim-backward)
659        (if leave-delim (progn (forward-line 1) (point))
660          (point)))
661      (progn
662        (forward-line 1)
663        (if (nnmail-search-unix-mail-delim)
664            (point)
665          (point-max))))
666     (run-hooks 'nnfolder-delete-mail-hook)
667     (delete-region (point-min) (point-max))))
668
669 (defun nnfolder-possibly-change-group (group &optional server dont-check)
670   ;; Change servers.
671   (when (and server
672              (not (nnfolder-server-opened server)))
673     (nnfolder-open-server server))
674   (unless (gnus-buffer-live-p nnfolder-current-buffer)
675     (setq nnfolder-current-buffer nil
676           nnfolder-current-group nil))
677   ;; Change group.
678   (let ((file-name-coding-system nnmail-pathname-coding-system)
679         (pathname-coding-system nnmail-pathname-coding-system))
680     (when (and group
681                (not (equal group nnfolder-current-group))
682                (progn
683                  (nnmail-activate 'nnfolder)
684                  (and (assoc group nnfolder-group-alist)
685                       (file-exists-p (nnfolder-group-pathname group)))))
686       (if dont-check
687           (setq nnfolder-current-group group
688                 nnfolder-current-buffer nil)
689         (let (inf file)
690           ;; If we have to change groups, see if we don't already have the
691           ;; folder in memory.  If we do, verify the modtime and destroy
692           ;; the folder if needed so we can rescan it.
693           (setq nnfolder-current-buffer
694                 (nth 1 (assoc group nnfolder-buffer-alist)))
695
696           ;; If the buffer is not live, make sure it isn't in the alist.  If it
697           ;; is live, verify that nobody else has touched the file since last
698           ;; time.
699           (when (and nnfolder-current-buffer
700                      (not (gnus-buffer-live-p nnfolder-current-buffer)))
701             (setq nnfolder-buffer-alist (delq inf nnfolder-buffer-alist)
702                   nnfolder-current-buffer nil))
703
704           (setq nnfolder-current-group group)
705
706           (when (or (not nnfolder-current-buffer)
707                     (not (verify-visited-file-modtime
708                           nnfolder-current-buffer)))
709             (save-excursion
710               (setq file (nnfolder-group-pathname group))
711               ;; See whether we need to create the new file.
712               (unless (file-exists-p file)
713                 (gnus-make-directory (file-name-directory file))
714                 (let ((nnmail-file-coding-system
715                        (or nnfolder-file-coding-system-for-write
716                            nnfolder-file-coding-system-for-write)))
717                   (nnmail-write-region (point-min) (point-min)
718                                        file t 'nomesg)))
719               (when (setq nnfolder-current-buffer (nnfolder-read-folder group))
720                 (set-buffer nnfolder-current-buffer)
721                 (push (list group nnfolder-current-buffer)
722                       nnfolder-buffer-alist)))))))))
723
724 (defun nnfolder-save-mail (group-art-list)
725   "Called narrowed to an article."
726   (let* (save-list group-art)
727     (goto-char (point-min))
728     ;; The From line may have been quoted by movemail.
729     (when (looking-at ">From")
730       (delete-char 1))
731     ;; This might come from somewhere else.
732     (unless (looking-at "From ")
733       (insert "From nobody " (current-time-string) "\n")
734       (goto-char (point-min)))
735     ;; Quote all "From " lines in the article.
736     (forward-line 1)
737     (let (case-fold-search)
738       (while (re-search-forward "^From " nil t)
739         (beginning-of-line)
740         (insert "> ")))
741     (setq save-list group-art-list)
742     (nnmail-insert-lines)
743     (nnmail-insert-xref group-art-list)
744     (run-hooks 'nnmail-prepare-save-mail-hook)
745     (run-hooks 'nnfolder-prepare-save-mail-hook)
746
747     ;; Insert the mail into each of the destination groups.
748     (while (setq group-art (pop group-art-list))
749       ;; Kill any previous newsgroup markers.
750       (goto-char (point-min))
751       (if (search-forward "\n\n" nil t)
752           (forward-line -1)
753         (goto-char (point-max)))
754       (while (search-backward (concat "\n" nnfolder-article-marker) nil t)
755         (delete-region (1+ (point)) (progn (forward-line 2) (point))))
756
757       ;; Insert the new newsgroup marker.
758       (nnfolder-insert-newsgroup-line group-art)
759
760       (save-excursion
761         (let ((beg (point-min))
762               (end (point-max))
763               (obuf (current-buffer)))
764           (nnfolder-possibly-change-folder (car group-art))
765           (let ((buffer-read-only nil))
766             (nnfolder-normalize-buffer)
767             (insert-buffer-substring obuf beg end))
768           (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
769             (set-buffer obuf)
770             (nnfolder-add-nov (car group-art) (cdr group-art)
771                               (nnfolder-parse-head nil beg end))))))
772
773     ;; Did we save it anywhere?
774     save-list))
775
776 (defun nnfolder-normalize-buffer ()
777   "Make sure there are two newlines at the end of the buffer."
778   (goto-char (point-max))
779   (skip-chars-backward "\n")
780   (delete-region (point) (point-max))
781   (unless (bobp)
782     (insert "\n\n")))
783
784 (defun nnfolder-insert-newsgroup-line (group-art)
785   (save-excursion
786     (goto-char (point-min))
787     (unless (search-forward "\n\n" nil t)
788       (goto-char (point-max))
789       (insert "\n"))
790     (forward-char -1)
791     (insert (format (concat nnfolder-article-marker "%d   %s\n")
792                     (cdr group-art) (current-time-string)))))
793
794 (defun nnfolder-active-number (group)
795   ;; Find the next article number in GROUP.
796   (let ((active (cadr (assoc group nnfolder-group-alist))))
797     (if active
798         (setcdr active (1+ (cdr active)))
799       ;; This group is new, so we create a new entry for it.
800       ;; This might be a bit naughty... creating groups on the drop of
801       ;; a hat, but I don't know...
802       (push (list group (setq active (cons 1 1)))
803             nnfolder-group-alist))
804     (cdr active)))
805
806 (defun nnfolder-possibly-change-folder (group)
807   (let ((inf (assoc group nnfolder-buffer-alist)))
808     (if (and inf
809              (gnus-buffer-live-p (cadr inf)))
810         (set-buffer (cadr inf))
811       (when inf
812         (setq nnfolder-buffer-alist (delq inf nnfolder-buffer-alist)))
813       (when nnfolder-group-alist
814         (nnfolder-save-active nnfolder-group-alist nnfolder-active-file))
815       (push (list group (nnfolder-read-folder group))
816             nnfolder-buffer-alist))))
817
818 ;; This method has a problem if you've accidentally let the active
819 ;; list get out of sync with the files.  This could happen, say, if
820 ;; you've accidentally gotten new mail with something other than Gnus
821 ;; (but why would _that_ ever happen? :-).  In that case, we will be
822 ;; in the middle of processing the file, ready to add new X-Gnus
823 ;; article number markers, and we'll run across a message with no ID
824 ;; yet - the active list _may_not_ be ready for us yet.
825
826 ;; To handle this, I'm modifying this routine to maintain the maximum
827 ;; ID seen so far, and when we hit a message with no ID, we will
828 ;; _manually_ scan the rest of the message looking for any more,
829 ;; possibly higher IDs.  We'll assume the maximum that we find is the
830 ;; highest active.  Note that this shouldn't cost us much extra time
831 ;; at all, but will be a lot less vulnerable to glitches between the
832 ;; mbox and the active file.
833
834 (defun nnfolder-read-folder (group)
835   (let* ((file (nnfolder-group-pathname group))
836          (nov  (nnfolder-group-nov-pathname group))
837          (buffer (set-buffer
838                   (let ((nnheader-file-coding-system
839                          nnfolder-file-coding-system))
840                     (nnheader-find-file-noselect file)))))
841     (if (equal (cadr (assoc group nnfolder-scantime-alist))
842                (nth 5 (file-attributes file)))
843         ;; This looks up-to-date, so we don't do any scanning.
844         (if (file-exists-p file)
845             buffer
846           (push (list group buffer) nnfolder-buffer-alist)
847           (set-buffer-modified-p t)
848           (nnfolder-save-buffer))
849       ;; Parse the damn thing.
850       (save-excursion
851         (goto-char (point-min))
852         ;; Remove any blank lines at the start.
853         (while (eq (following-char) ?\n)
854           (delete-char 1))
855         (nnmail-activate 'nnfolder)
856         ;; Read in the file.
857         (let ((delim "^From ")
858               (marker (concat "\n" nnfolder-article-marker))
859               (number "[0-9]+")
860               (active (or (cadr (assoc group nnfolder-group-alist))
861                           (cons 1 0)))
862               (scantime (assoc group nnfolder-scantime-alist))
863               (minid (lsh -1 -1))
864               maxid start end newscantime
865               novbuf articles newnum
866               buffer-read-only)
867           (buffer-disable-undo)
868           (setq maxid (cdr active))
869
870           (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
871                       (and (file-exists-p nov)
872                            (file-newer-than-file-p nov file)))
873             (unless (file-exists-p nov)
874               (gnus-make-directory (file-name-directory nov)))
875             (with-current-buffer
876                 (setq novbuf (nnfolder-open-nov group))
877               (goto-char (point-min))
878               (while (not (eobp))
879                 (push (read novbuf) articles)
880                 (forward-line 1))
881               (setq articles (nreverse articles))))
882           (goto-char (point-min))
883
884           ;; Anytime the active number is 1 or 0, it is suspect.  In that
885           ;; case, search the file manually to find the active number.  Or,
886           ;; of course, if we're being paranoid.  (This would also be the
887           ;; place to build other lists from the header markers, such as
888           ;; expunge lists, etc., if we ever desired to abandon the active
889           ;; file entirely for mboxes.)
890           (when (or nnfolder-ignore-active-file
891                     novbuf
892                     (< maxid 2))
893             (while (and (search-forward marker nil t)
894                         (looking-at number))
895               (setq newnum (string-to-number (match-string 0)))
896               (when (nnmail-within-headers-p)
897                 (setq maxid (max maxid newnum)
898                       minid (min minid newnum))
899                 (when novbuf
900                   (if (memq newnum articles)
901                       (setq articles (delq newnum articles))
902                     (let ((headers (nnfolder-parse-head newnum)))
903                       (with-current-buffer novbuf
904                         (nnheader-find-nov-line newnum)
905                         (nnheader-insert-nov headers)))))))
906             (when (and novbuf articles)
907               (with-current-buffer novbuf
908                 (dolist (article articles)
909                   (when (nnheader-find-nov-line article)
910                     (delete-region (point)
911                                    (progn (forward-line 1) (point)))))))
912             (setcar active (max 1 (min minid maxid)))
913             (setcdr active (max maxid (cdr active)))
914             (goto-char (point-min)))
915
916           ;; As long as we trust that the user will only insert unmarked mail
917           ;; at the end, go to the end and search backwards for the last
918           ;; marker.  Find the start of that message, and begin to search for
919           ;; unmarked messages from there.
920           (when (not (or nnfolder-distrust-mbox
921                          (< maxid 2)))
922             (goto-char (point-max))
923             (unless (re-search-backward marker nil t)
924               (goto-char (point-min)))
925             ;;(when (nnmail-search-unix-mail-delim)
926             ;;  (goto-char (point-min)))
927             )
928
929           ;; Keep track of the active number on our own, and insert it back
930           ;; into the active list when we're done.  Also, prime the pump to
931           ;; cut down on the number of searches we do.
932           (unless (nnmail-search-unix-mail-delim)
933             (goto-char (point-max)))
934           (setq end (point-marker))
935           (while (not (= end (point-max)))
936             (setq start (marker-position end))
937             (goto-char end)
938             ;; There may be more than one "From " line, so we skip past
939             ;; them.
940             (while (looking-at delim)
941               (forward-line 1))
942             (set-marker end (if (nnmail-search-unix-mail-delim)
943                                 (point)
944                               (point-max)))
945             (goto-char start)
946             (when (not (search-forward marker end t))
947               (narrow-to-region start end)
948               (nnmail-insert-lines)
949               (nnfolder-insert-newsgroup-line
950                (cons nil
951                      (setq newnum
952                            (nnfolder-active-number group))))
953               (when novbuf
954                 (let ((headers (nnfolder-parse-head newnum (point-min)
955                                                     (point-max))))
956                   (with-current-buffer novbuf
957                     (goto-char (point-max))
958                     (nnheader-insert-nov headers))))
959               (widen)))
960
961           (set-marker end nil)
962           ;; Make absolutely sure that the active list reflects reality!
963           (nnfolder-save-active nnfolder-group-alist nnfolder-active-file)
964
965           ;; Set the scantime for this group.
966           (setq newscantime (visited-file-modtime))
967           (if scantime
968               (setcdr scantime (list newscantime))
969             (push (list group newscantime)
970                   nnfolder-scantime-alist))
971           ;; Save nov.
972           (when novbuf
973             (nnfolder-save-nov))
974           (current-buffer))))))
975
976 ;;;###autoload
977 (defun nnfolder-generate-active-file ()
978   "Look for mbox folders in the nnfolder directory and make them into groups.
979 This command does not work if you use short group names."
980   (interactive)
981   (nnmail-activate 'nnfolder)
982   (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
983     (dolist (file (directory-files (or nnfolder-nov-directory
984                                        nnfolder-directory)
985                                    t
986                                    (concat
987                                     (regexp-quote nnfolder-nov-file-suffix)
988                                     "$")))
989       (when (not (message-mail-file-mbox-p file))
990         (ignore-errors
991           (delete-file file)))))
992   (let ((files (directory-files nnfolder-directory))
993         file)
994     (while (setq file (pop files))
995       (when (and (not (backup-file-name-p file))
996                  (message-mail-file-mbox-p
997                   (nnheader-concat nnfolder-directory file)))
998         (let ((oldgroup (assoc file nnfolder-group-alist)))
999           (if oldgroup
1000               (nnheader-message 5 "Refreshing group %s..." file)
1001             (nnheader-message 5 "Adding group %s..." file))
1002           (if oldgroup
1003               (setq nnfolder-group-alist
1004                     (delq oldgroup (copy-sequence nnfolder-group-alist))))
1005           (push (list file (cons 1 0)) nnfolder-group-alist)
1006           (nnfolder-possibly-change-folder file)
1007           (nnfolder-possibly-change-group file)
1008           (nnfolder-close-group file))))
1009     (nnheader-message 5 "")))
1010
1011 (defun nnfolder-group-pathname (group)
1012   "Make pathname for GROUP."
1013   (setq group
1014         (encode-coding-string group nnmail-pathname-coding-system))
1015   (let ((dir (file-name-as-directory (expand-file-name nnfolder-directory))))
1016     ;; If this file exists, we use it directly.
1017     (if (or nnmail-use-long-file-names
1018             (file-exists-p (concat dir group)))
1019         (concat dir group)
1020       ;; If not, we translate dots into slashes.
1021       (concat dir (nnheader-replace-chars-in-string group ?. ?/)))))
1022
1023 (defun nnfolder-group-nov-pathname (group)
1024   "Make pathname for GROUP NOV."
1025   (let ((nnfolder-directory
1026          (or nnfolder-nov-directory nnfolder-directory)))
1027     (concat (nnfolder-group-pathname group) nnfolder-nov-file-suffix)))
1028
1029 (defun nnfolder-save-buffer ()
1030   "Save the buffer."
1031   (when (buffer-modified-p)
1032     (run-hooks 'nnfolder-save-buffer-hook)
1033     (gnus-make-directory (file-name-directory (buffer-file-name)))
1034     (let* ((coding-system-for-write
1035             (or nnfolder-file-coding-system-for-write
1036                 nnfolder-file-coding-system))
1037            (output-coding-system coding-system-for-write))
1038       (save-buffer)))
1039   (unless (or gnus-nov-is-evil nnfolder-nov-is-evil)
1040     (nnfolder-save-nov)))
1041
1042 (defun nnfolder-save-active (group-alist active-file)
1043   (let ((nnmail-active-file-coding-system
1044          (or nnfolder-active-file-coding-system-for-write
1045              nnfolder-active-file-coding-system)))
1046     (nnmail-save-active group-alist active-file)))
1047
1048 (defun nnfolder-open-nov (group)
1049   (or (cdr (assoc group nnfolder-nov-buffer-alist))
1050       (let ((buffer (get-buffer-create (format " *nnfolder overview %s*" group))))
1051         (save-excursion
1052           (set-buffer buffer)
1053           (set (make-local-variable 'nnfolder-nov-buffer-file-name)
1054                (nnfolder-group-nov-pathname group))
1055           (erase-buffer)
1056           (when (file-exists-p nnfolder-nov-buffer-file-name)
1057             (nnheader-insert-file-contents nnfolder-nov-buffer-file-name)))
1058         (push (cons group buffer) nnfolder-nov-buffer-alist)
1059         buffer)))
1060
1061 (defun nnfolder-save-nov ()
1062   (save-excursion
1063     (while nnfolder-nov-buffer-alist
1064       (when (buffer-name (cdar nnfolder-nov-buffer-alist))
1065         (set-buffer (cdar nnfolder-nov-buffer-alist))
1066         (when (buffer-modified-p)
1067           (gnus-make-directory (file-name-directory
1068                                 nnfolder-nov-buffer-file-name))
1069           (nnmail-write-region 1 (point-max) nnfolder-nov-buffer-file-name
1070                                nil 'nomesg))
1071         (set-buffer-modified-p nil)
1072         (kill-buffer (current-buffer)))
1073       (setq nnfolder-nov-buffer-alist (cdr nnfolder-nov-buffer-alist)))))
1074
1075 (defun nnfolder-nov-delete-article (group article)
1076   (save-excursion
1077     (set-buffer (nnfolder-open-nov group))
1078     (when (nnheader-find-nov-line article)
1079       (delete-region (point) (progn (forward-line 1) (point))))
1080     t))
1081
1082 (defun nnfolder-retrieve-headers-with-nov (articles &optional fetch-old)
1083   (if (or gnus-nov-is-evil nnfolder-nov-is-evil)
1084       nil
1085     (let ((nov (nnfolder-group-nov-pathname nnfolder-current-group)))
1086       (when (file-exists-p nov)
1087         (save-excursion
1088           (set-buffer nntp-server-buffer)
1089           (erase-buffer)
1090           (nnheader-insert-file-contents nov)
1091           (if (and fetch-old
1092                    (not (numberp fetch-old)))
1093               t                         ; Don't remove anything.
1094             (nnheader-nov-delete-outside-range
1095              (if fetch-old (max 1 (- (car articles) fetch-old))
1096                (car articles))
1097              (car (last articles)))
1098             t))))))
1099
1100 (defun nnfolder-parse-head (&optional number b e)
1101   "Parse the head of the current buffer."
1102   (let ((buf (current-buffer))
1103         chars)
1104     (save-excursion
1105       (unless b
1106         (setq b (if (nnmail-search-unix-mail-delim-backward)
1107                     (point) (point-min)))
1108         (forward-line 1)
1109         (setq e (if (nnmail-search-unix-mail-delim)
1110                     (point) (point-max))))
1111       (setq chars (- e b))
1112       (unless (zerop chars)
1113         (goto-char b)
1114         (if (search-forward "\n\n" e t) (setq e (1- (point)))))
1115       (with-temp-buffer
1116         (insert-buffer-substring buf b e)
1117         ;; Fold continuation lines.
1118         (goto-char (point-min))
1119         (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t)
1120           (replace-match " " t t))
1121         ;; Remove any tabs; they are too confusing.
1122         (subst-char-in-region (point-min) (point-max) ?\t ? )
1123         (let ((headers (nnheader-parse-head t)))
1124           (mail-header-set-chars headers chars)
1125           (mail-header-set-number headers number)
1126           headers)))))
1127
1128 (defun nnfolder-add-nov (group article headers)
1129   "Add a nov line for the GROUP base."
1130   (save-excursion
1131     (set-buffer (nnfolder-open-nov group))
1132     (goto-char (point-max))
1133     (mail-header-set-number headers article)
1134     (nnheader-insert-nov headers)))
1135
1136 (deffoo nnfolder-request-set-mark (group actions &optional server)
1137   (when (and server
1138              (not (nnfolder-server-opened server)))
1139     (nnfolder-open-server server))
1140   (unless nnfolder-marks-is-evil
1141     (nnfolder-open-marks group server)
1142     (dolist (action actions)
1143       (let ((range (nth 0 action))
1144             (what  (nth 1 action))
1145             (marks (nth 2 action)))
1146         (assert (or (eq what 'add) (eq what 'del)) t
1147                 "Unknown request-set-mark action: %s" what)
1148         (dolist (mark marks)
1149           (setq nnfolder-marks (gnus-update-alist-soft
1150                             mark
1151                             (funcall (if (eq what 'add) 'gnus-range-add
1152                                        'gnus-remove-from-range)
1153                                      (cdr (assoc mark nnfolder-marks)) range)
1154                             nnfolder-marks)))))
1155     (nnfolder-save-marks group server))
1156   nil)
1157
1158 (deffoo nnfolder-request-update-info (group info &optional server)
1159   ;; Change servers.
1160   (when (and server
1161              (not (nnfolder-server-opened server)))
1162     (nnfolder-open-server server))
1163   (when (and (not nnfolder-marks-is-evil) (nnfolder-marks-changed-p group))
1164     (nnheader-message 8 "Updating marks for %s..." group)
1165     (nnfolder-open-marks group server)
1166     ;; Update info using `nnfolder-marks'.
1167     (mapcar (lambda (pred)
1168               (unless (memq (cdr pred) gnus-article-unpropagated-mark-lists)
1169                 (gnus-info-set-marks
1170                  info
1171                  (gnus-update-alist-soft
1172                   (cdr pred)
1173                   (cdr (assq (cdr pred) nnfolder-marks))
1174                   (gnus-info-marks info))
1175                  t)))
1176             gnus-article-mark-lists)
1177     (let ((seen (cdr (assq 'read nnfolder-marks))))
1178       (gnus-info-set-read info
1179                           (if (and (integerp (car seen))
1180                                    (null (cdr seen)))
1181                               (list (cons (car seen) (car seen)))
1182                             seen)))
1183     (nnheader-message 8 "Updating marks for %s...done" group))
1184   info)
1185
1186 (defun nnfolder-group-marks-pathname (group)
1187   "Make pathname for GROUP NOV."
1188   (let ((nnfolder-directory (or nnfolder-marks-directory nnfolder-directory)))
1189     (concat (nnfolder-group-pathname group) nnfolder-marks-file-suffix)))
1190
1191 (defun nnfolder-marks-changed-p (group)
1192   (let ((file (nnfolder-group-marks-pathname group)))
1193     (if (null (gnus-gethash file nnfolder-marks-modtime))
1194         t ;; never looked at marks file, assume it has changed
1195       (not (equal (gnus-gethash file nnfolder-marks-modtime)
1196                   (nth 5 (file-attributes file)))))))
1197
1198 (defun nnfolder-save-marks (group server)
1199   (let ((file-name-coding-system nnmail-pathname-coding-system)
1200         (file (nnfolder-group-marks-pathname group)))
1201     (condition-case err
1202         (progn
1203           (with-temp-file file
1204             (erase-buffer)
1205             (gnus-prin1 nnfolder-marks)
1206             (insert "\n"))
1207           (gnus-sethash file
1208                         (nth 5 (file-attributes file))
1209                         nnfolder-marks-modtime))
1210       (error (or (gnus-yes-or-no-p
1211                   (format "Could not write to %s (%s).  Continue? " file err))
1212                  (error "Cannot write to %s (%s)" err))))))
1213
1214 (defun nnfolder-open-marks (group server)
1215   (let ((file (nnfolder-group-marks-pathname group)))
1216     (if (file-exists-p file)
1217         (condition-case err
1218             (with-temp-buffer
1219               (gnus-sethash file (nth 5 (file-attributes file))
1220                             nnfolder-marks-modtime)
1221               (nnheader-insert-file-contents file)
1222               (setq nnfolder-marks (read (current-buffer)))
1223               (dolist (el gnus-article-unpropagated-mark-lists)
1224                 (setq nnfolder-marks (gnus-remassoc el nnfolder-marks))))
1225           (error (or (gnus-yes-or-no-p
1226                       (format "Error reading nnfolder marks file %s (%s).  Continuing will use marks from .newsrc.eld.  Continue? " file err))
1227                      (error "Cannot read nnfolder marks file %s (%s)" file err))))
1228       ;; User didn't have a .marks file.  Probably first time
1229       ;; user of the .marks stuff.  Bootstrap it from .newsrc.eld.
1230       (let ((info (gnus-get-info
1231                    (gnus-group-prefixed-name
1232                     group
1233                     (gnus-server-to-method (format "nnfolder:%s" server))))))
1234         (nnheader-message 7 "Bootstrapping marks for %s..." group)
1235         (setq nnfolder-marks (gnus-info-marks info))
1236         (push (cons 'read (gnus-info-read info)) nnfolder-marks)
1237         (dolist (el gnus-article-unpropagated-mark-lists)
1238           (setq nnfolder-marks (gnus-remassoc el nnfolder-marks)))
1239         (nnfolder-save-marks group server)
1240         (nnheader-message 7 "Bootstrapping marks for %s...done" group)))))
1241
1242 (provide 'nnfolder)
1243
1244 ;;; nnfolder.el ends here