1 ;;; nnfolder.el --- mail folder access for Gnus
3 ;; Copyright (C) 1995-2011 Free Software Foundation, Inc.
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>
12 ;; This file is part of GNU Emacs.
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 3 of the License, or
17 ;; (at your option) any later version.
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.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 ;; For Emacs <22.2 and XEmacs.
33 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
39 (eval-when-compile (require 'cl
))
44 ;; FIXME not explicitly used in this file.
45 (autoload 'gnus-article-unpropagatable-p
"gnus-sum")
47 (nnoo-declare nnfolder
)
49 (defvoo nnfolder-directory
(expand-file-name message-directory
)
50 "The name of the nnfolder directory.")
52 (defvoo nnfolder-nov-directory nil
53 "The name of the nnfolder NOV directory.
54 If nil, `nnfolder-directory' is used.")
56 (defvoo nnfolder-marks-directory nil
57 "The name of the nnfolder MARKS directory.
58 If nil, `nnfolder-directory' is used.")
60 (defvoo nnfolder-active-file
61 (nnheader-concat nnfolder-directory
"active")
62 "The name of the active file.")
64 ;; I renamed this variable to something more in keeping with the general GNU
67 (defvoo nnfolder-ignore-active-file nil
68 "If non-nil, the active file is ignored.
69 This causes nnfolder to do some extra work in order to determine the
70 true active ranges of an mbox file. Note that the active file is
71 still saved, but its values are not used. This costs some extra time
72 when scanning an mbox when opening it.")
74 (defvoo nnfolder-distrust-mbox nil
75 "If non-nil, the folder will be distrusted.
76 This means that nnfolder will not trust the user with respect to
77 inserting unaccounted for mail in the middle of an mbox file. This
78 can greatly slow down scans, which now must scan the entire file for
79 unmarked messages. When nil, scans occur forward from the last marked
80 message, a huge time saver for large mailboxes.")
82 (defvoo nnfolder-newsgroups-file
83 (concat (file-name-as-directory nnfolder-directory
) "newsgroups")
84 "Mail newsgroups description file.")
86 (defvoo nnfolder-get-new-mail t
87 "If non-nil, nnfolder will check the incoming mail file and split the mail.")
89 (defvoo nnfolder-prepare-save-mail-hook nil
90 "Hook run narrowed to an article before saving.")
92 (defvoo nnfolder-save-buffer-hook nil
93 "Hook run before saving the nnfolder mbox buffer.")
96 (defvoo nnfolder-inhibit-expiry nil
97 "If non-nil, inhibit expiry.")
101 (defconst nnfolder-version
"nnfolder 2.0"
104 (defconst nnfolder-article-marker
"X-Gnus-Article-Number: "
105 "String used to demarcate what the article number for a message is.")
107 (defvoo nnfolder-current-group nil
)
108 (defvoo nnfolder-current-buffer nil
)
109 (defvoo nnfolder-status-string
"")
110 (defvoo nnfolder-group-alist nil
)
111 (defvoo nnfolder-buffer-alist nil
)
112 (defvoo nnfolder-scantime-alist nil
)
113 (defvoo nnfolder-active-timestamp nil
)
114 (defvoo nnfolder-active-file-coding-system mm-text-coding-system
)
115 (defvoo nnfolder-active-file-coding-system-for-write
116 nnmail-active-file-coding-system
)
117 (defvoo nnfolder-file-coding-system mm-text-coding-system
)
118 (defvoo nnfolder-file-coding-system-for-write nnheader-file-coding-system
119 "Coding system for save nnfolder file.
120 if nil, `nnfolder-file-coding-system' is used.") ; FIXME: fill-in the doc-string of this variable
122 (defvoo nnfolder-nov-is-evil nil
123 "If non-nil, Gnus will never generate and use nov databases for mail groups.
124 Using nov databases will speed up header fetching considerably.
125 This variable shouldn't be flipped much. If you have, for some reason,
126 set this to t, and want to set it to nil again, you should always run
127 the `nnfolder-generate-active-file' command. The function will go
128 through all nnfolder directories and generate nov databases for them
129 all. This may very well take some time.")
131 (defvoo nnfolder-nov-file-suffix
".nov")
133 (defvoo nnfolder-nov-buffer-alist nil
)
135 (defvar nnfolder-nov-buffer-file-name nil
)
137 (defvoo nnfolder-marks-is-evil nil
138 "If non-nil, Gnus will never generate and use marks file for mail groups.
139 Using marks files makes it possible to backup and restore mail groups
140 separately from `.newsrc.eld'. If you have, for some reason, set
141 this to t, and want to set it to nil again, you should always remove
142 the corresponding marks file (usually base nnfolder file name
143 concatenated with `.mrk', but see `nnfolder-marks-file-suffix') for
144 the group. Then the marks file will be regenerated properly by Gnus.")
146 (defvoo nnfolder-marks nil
)
148 (defvoo nnfolder-marks-file-suffix
".mrk")
150 (defvar nnfolder-marks-modtime
(gnus-make-hashtable))
154 ;;; Interface functions
156 (nnoo-define-basics nnfolder
)
158 (deffoo nnfolder-retrieve-headers
(articles &optional group server fetch-old
)
159 (with-current-buffer nntp-server-buffer
161 (let (article start stop num
)
162 (nnfolder-possibly-change-group group server
)
163 (when nnfolder-current-buffer
164 (set-buffer nnfolder-current-buffer
)
165 (goto-char (point-min))
166 (if (stringp (car articles
))
168 (if (nnfolder-retrieve-headers-with-nov articles fetch-old
)
170 (setq articles
(gnus-sorted-intersection
171 ;; Is ARTICLES sorted?
173 (nnfolder-existing-articles)))
174 (while (setq article
(pop articles
))
175 (set-buffer nnfolder-current-buffer
)
176 (cond ((nnfolder-goto-article article
)
178 (setq stop
(if (search-forward "\n\n" nil t
)
181 (set-buffer nntp-server-buffer
)
182 (insert (format "221 %d Article retrieved.\n" article
))
183 (insert-buffer-substring nnfolder-current-buffer
185 (goto-char (point-max))
188 ;; If we couldn't find this article, skip over ranges
189 ;; of missing articles so we don't search the whole file
194 ;; Check that we are either at BOF or after an
195 ;; article with a lower number. We do this so we
196 ;; won't be confused by out-of-order article numbers,
197 ;; as caused by active file bogosity.
200 ((search-backward (concat "\n" nnfolder-article-marker
)
202 (goto-char (match-end 0))
203 (setq num
(string-to-number
205 (point) (point-at-eol))))
208 ;; Check that we are before an article with a
210 (search-forward (concat "\n" nnfolder-article-marker
)
213 (setq num
(string-to-number
215 (point) (point-at-eol))))
217 ;; Discard any article numbers before the one we're
220 (< (car articles
) num
))
221 (setq articles
(cdr articles
))))
223 (set-buffer nntp-server-buffer
)
224 (nnheader-fold-continuation-lines)
227 (deffoo nnfolder-open-server
(server &optional defs
)
228 (nnoo-change-server 'nnfolder server defs
)
229 (nnmail-activate 'nnfolder t
)
230 (gnus-make-directory nnfolder-directory
)
231 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
232 (and nnfolder-nov-directory
233 (gnus-make-directory nnfolder-nov-directory
)))
234 (unless nnfolder-marks-is-evil
235 (and nnfolder-marks-directory
236 (gnus-make-directory nnfolder-marks-directory
)))
238 ((not (file-exists-p nnfolder-directory
))
239 (nnfolder-close-server)
240 (nnheader-report 'nnfolder
"Couldn't create directory: %s"
242 ((not (file-directory-p (file-truename nnfolder-directory
)))
243 (nnfolder-close-server)
244 (nnheader-report 'nnfolder
"Not a directory: %s" nnfolder-directory
))
246 (nnmail-activate 'nnfolder
)
247 (nnheader-report 'nnfolder
"Opened server %s using directory %s"
248 server nnfolder-directory
)
251 (deffoo nnfolder-request-close
()
252 (let ((alist nnfolder-buffer-alist
))
254 (nnfolder-close-group (caar alist
) nil t
)
255 (setq alist
(cdr alist
))))
256 (nnoo-close-server 'nnfolder
)
257 (setq nnfolder-buffer-alist nil
258 nnfolder-group-alist nil
))
260 (deffoo nnfolder-request-article
(article &optional group server buffer
)
261 (nnfolder-possibly-change-group group server
)
262 (with-current-buffer nnfolder-current-buffer
263 (goto-char (point-min))
264 (when (nnfolder-goto-article article
)
268 (unless (and (nnmail-search-unix-mail-delim)
270 (goto-char (point-max)))
272 (let ((nntp-server-buffer (or buffer nntp-server-buffer
)))
273 (set-buffer nntp-server-buffer
)
275 (insert-buffer-substring nnfolder-current-buffer start stop
)
276 (goto-char (point-min))
277 (while (looking-at "From ")
279 (insert "X-From-Line: ")
281 (if (numberp article
)
282 (cons nnfolder-current-group article
)
283 (goto-char (point-min))
284 (cons nnfolder-current-group
285 (if (search-forward (concat "\n" nnfolder-article-marker
)
287 (string-to-number (buffer-substring
288 (point) (point-at-eol)))
291 (deffoo nnfolder-request-group
(group &optional server dont-check info
)
292 (nnfolder-possibly-change-group group server t
)
294 (cond ((not (assoc group nnfolder-group-alist
))
295 (nnheader-report 'nnfolder
"No such group: %s" group
))
296 ((file-directory-p (nnfolder-group-pathname group
))
297 (nnheader-report 'nnfolder
"%s is a directory"
298 (file-name-as-directory
299 (let ((nnmail-pathname-coding-system nil
))
300 (nnfolder-group-pathname group
)))))
302 (nnheader-report 'nnfolder
"Selected group %s" group
)
305 (let* ((active (assoc group nnfolder-group-alist
))
307 (range (cadr active
)))
310 (nnheader-report 'nnfolder
"No such group: %s" group
))
311 ((null nnfolder-current-group
)
312 (nnheader-report 'nnfolder
"Empty group: %s" group
))
314 (nnheader-report 'nnfolder
"Selected group %s" group
)
315 (nnheader-insert "211 %d %d %d %s\n"
316 (1+ (- (cdr range
) (car range
)))
317 (car range
) (cdr range
) group
))))))))
319 (deffoo nnfolder-request-scan
(&optional group server
)
320 (nnfolder-possibly-change-group nil server
)
321 (when nnfolder-get-new-mail
322 (nnfolder-possibly-change-group group server
)
324 'nnfolder
'nnfolder-save-all-buffers
325 nnfolder-directory group
)))
327 (defun nnfolder-save-all-buffers ()
328 (let ((bufs nnfolder-buffer-alist
))
331 (if (not (gnus-buffer-live-p (nth 1 (car bufs
))))
332 (setq nnfolder-buffer-alist
333 (delq (car bufs
) nnfolder-buffer-alist
))
334 (set-buffer (nth 1 (car bufs
)))
335 (nnfolder-save-buffer)
336 (kill-buffer (current-buffer)))
337 (setq bufs
(cdr bufs
))))))
339 ;; Don't close the buffer if we're not shutting down the server. This way,
340 ;; we can keep the buffer in the group buffer cache, and not have to grovel
341 ;; over the buffer again unless we add new mail to it or modify it in some
344 (deffoo nnfolder-close-group
(group &optional server force
)
345 ;; Make sure we _had_ the group open.
346 (when (or (assoc group nnfolder-buffer-alist
)
347 (equal group nnfolder-current-group
))
348 (let ((inf (assoc group nnfolder-buffer-alist
)))
350 (when (and nnfolder-current-group
351 nnfolder-current-buffer
)
352 (push (list nnfolder-current-group nnfolder-current-buffer
)
353 nnfolder-buffer-alist
))
354 (setq nnfolder-buffer-alist
355 (delq inf nnfolder-buffer-alist
))
356 (setq nnfolder-current-buffer
(cadr inf
)
357 nnfolder-current-group
(car inf
))))
358 (when (and nnfolder-current-buffer
359 (buffer-name nnfolder-current-buffer
))
360 (with-current-buffer nnfolder-current-buffer
361 ;; If the buffer was modified, write the file out now.
362 (nnfolder-save-buffer)
363 ;; If we're shutting the server down, we need to kill the
364 ;; buffer and remove it from the open buffer list. Or, of
365 ;; course, if we're trying to minimize our space impact.
366 (kill-buffer (current-buffer))
367 (setq nnfolder-buffer-alist
(delq (assoc group nnfolder-buffer-alist
)
368 nnfolder-buffer-alist
)))))
369 (setq nnfolder-current-group nil
370 nnfolder-current-buffer nil
)
373 (deffoo nnfolder-request-create-group
(group &optional server args
)
374 (nnfolder-possibly-change-group nil server
)
375 (nnmail-activate 'nnfolder
)
376 (cond ((zerop (length group
))
377 (nnheader-report 'nnfolder
"Invalid (empty) group name"))
378 ((file-directory-p (nnfolder-group-pathname group
))
379 (nnheader-report 'nnfolder
"%s is a directory"
380 (file-name-as-directory
381 (let ((nnmail-pathname-coding-system nil
))
382 (nnfolder-group-pathname group
)))))
383 ((assoc group nnfolder-group-alist
)
386 (push (list group
(cons 1 0)) nnfolder-group-alist
)
387 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
389 (nnfolder-read-folder group
))
392 (deffoo nnfolder-request-list
(&optional server
)
393 (nnfolder-possibly-change-group nil server
)
395 (let ((nnmail-file-coding-system nnfolder-active-file-coding-system
))
396 (nnmail-find-file nnfolder-active-file
)
397 (setq nnfolder-group-alist
(nnmail-get-active)))
400 (deffoo nnfolder-request-newgroups
(date &optional server
)
401 (nnfolder-possibly-change-group nil server
)
402 (nnfolder-request-list server
))
404 (deffoo nnfolder-request-list-newsgroups
(&optional server
)
405 (nnfolder-possibly-change-group nil server
)
407 (let ((nnmail-file-coding-system nnfolder-file-coding-system
))
408 (nnmail-find-file nnfolder-newsgroups-file
))))
410 ;; Return a list consisting of all article numbers existing in the
413 (defun nnfolder-existing-articles ()
415 (when nnfolder-current-buffer
416 (set-buffer nnfolder-current-buffer
)
417 (goto-char (point-min))
418 (let ((marker (concat "\n" nnfolder-article-marker
))
421 (while (and (search-forward marker nil t
)
422 (re-search-forward number nil t
))
423 (let ((newnum (string-to-number (match-string 0))))
424 (if (nnmail-within-headers-p)
425 (push newnum numbers
))))
426 ;; The article numbers are increasing, so this result is sorted.
427 (nreverse numbers
)))))
429 (autoload 'gnus-request-group
"gnus-int")
430 (declare-function gnus-request-create-group
"gnus-int"
431 (group &optional gnus-command-method args
))
433 (deffoo nnfolder-request-expire-articles
(articles newsgroup
434 &optional server force
)
435 (nnfolder-possibly-change-group newsgroup server
)
437 ;; The articles we have deleted so far.
438 (deleted-articles nil
)
439 ;; The articles that really exist and will
440 ;; be expired if they are old enough.
442 (gnus-sorted-intersection articles
(nnfolder-existing-articles)))
444 (nnmail-activate 'nnfolder
)
446 (with-current-buffer nnfolder-current-buffer
447 ;; Since messages are sorted in arrival order and expired in the
448 ;; same order, we can stop as soon as we find a message that is
450 (while (and maybe-expirable is-old
)
451 (goto-char (point-min))
452 (when (and (nnfolder-goto-article (car maybe-expirable
))
453 (search-forward (concat "\n" nnfolder-article-marker
)
457 (nnmail-expired-article-p
460 (point) (progn (end-of-line) (point)))
461 force nnfolder-inhibit-expiry
))
462 (setq target nnmail-expiry-target
)
463 (unless (eq target
'delete
)
465 (nnfolder-request-article (car maybe-expirable
)
466 newsgroup server
(current-buffer))
467 (let ((nnfolder-current-directory nil
))
468 (when (functionp target
)
469 (setq target
(funcall target newsgroup
)))
470 (when (and target
(not (eq target
'delete
)))
471 (if (or (gnus-request-group target
)
472 (gnus-request-create-group target
))
473 (nnmail-expiry-target-group target newsgroup
)
474 (setq target nil
)))))
475 (nnfolder-possibly-change-group newsgroup server
))
477 (nnheader-message 5 "Deleting article %d in %s..."
478 (car maybe-expirable
) newsgroup
)
479 (nnfolder-delete-mail)
480 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
481 (nnfolder-nov-delete-article newsgroup
(car maybe-expirable
)))
482 ;; Must remember which articles were actually deleted
483 (push (car maybe-expirable
) deleted-articles
))))
484 (setq maybe-expirable
(cdr maybe-expirable
)))
485 (unless nnfolder-inhibit-expiry
486 (nnheader-message 5 "Deleting articles...done"))
487 (nnfolder-save-buffer)
488 (nnfolder-adjust-min-active newsgroup
)
489 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
490 (nnfolder-save-all-buffers)
491 (gnus-sorted-difference articles
(nreverse deleted-articles
)))))
493 (deffoo nnfolder-request-move-article
(article group server accept-form
494 &optional last move-is-internal
)
496 (let ((buf (get-buffer-create " *nnfolder move*"))
499 (nnfolder-request-article article group server
)
500 (with-current-buffer buf
502 (insert-buffer-substring nntp-server-buffer
)
503 (goto-char (point-min))
504 (while (re-search-forward
505 (concat "^" nnfolder-article-marker
)
506 (save-excursion (and (search-forward "\n\n" nil t
) (point)))
509 (setq result
(eval accept-form
))
513 (nnfolder-possibly-change-group group server
)
514 (set-buffer nnfolder-current-buffer
)
515 (goto-char (point-min))
516 (when (nnfolder-goto-article article
)
517 (nnfolder-delete-mail))
518 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
519 (nnfolder-nov-delete-article group article
))
521 (nnfolder-save-buffer)
522 (nnfolder-adjust-min-active group
)
523 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
))))
526 (deffoo nnfolder-request-accept-article
(group &optional server last
)
528 (nnfolder-possibly-change-group group server
)
529 (nnmail-check-syntax)
530 (let ((buf (current-buffer))
532 (goto-char (point-min))
533 (when (looking-at "X-From-Line: ")
534 (replace-match "From ")
535 (while (progn (forward-line) (looking-at "[ \t]"))
538 (let ((nnmail-file-coding-system nnfolder-active-file-coding-system
)
539 (nntp-server-buffer (current-buffer)))
540 (nnmail-find-file nnfolder-active-file
)
541 (setq nnfolder-group-alist
(nnmail-parse-active))))
543 (goto-char (point-min))
544 (if (search-forward "\n\n" nil t
)
546 (goto-char (point-max)))
547 (while (re-search-backward (concat "^" nnfolder-article-marker
) nil t
)
548 (delete-region (point) (progn (forward-line 1) (point))))
549 (when nnmail-cache-accepted-message-ids
550 (nnmail-cache-insert (nnmail-fetch-field "message-id")
552 (nnmail-fetch-field "subject")
553 (nnmail-fetch-field "from")))
554 (setq result
(if (stringp group
)
555 (list (cons group
(nnfolder-active-number group
)))
557 (nnmail-article-group 'nnfolder-active-number
))))
558 (if (and (null result
)
559 (yes-or-no-p "Moved to `junk' group; delete article? "))
562 (car (nnfolder-save-mail result
)))))
565 (nnfolder-possibly-change-folder (or (caar art-group
) group
))
566 (nnfolder-save-buffer)
567 (when nnmail-cache-accepted-message-ids
568 (nnmail-cache-close))))
569 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
571 (nnheader-report 'nnfolder
"Couldn't store article"))
574 (deffoo nnfolder-request-replace-article
(article group buffer
)
575 (nnfolder-possibly-change-group group
)
576 (with-current-buffer buffer
577 (goto-char (point-min))
578 (if (not (looking-at "X-From-Line: "))
579 (insert "From nobody " (current-time-string) "\n")
580 (replace-match "From ")
582 (while (looking-at "[ \t]")
585 (nnfolder-normalize-buffer)
586 (set-buffer nnfolder-current-buffer
)
587 (goto-char (point-min))
588 (if (not (nnfolder-goto-article article
))
590 (nnfolder-delete-mail)
591 (insert-buffer-substring buffer
)
592 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
593 (with-current-buffer buffer
594 (let ((headers (nnfolder-parse-head article
595 (point-min) (point-max))))
596 (with-current-buffer (nnfolder-open-nov group
)
597 (if (nnheader-find-nov-line article
)
598 (delete-region (point) (progn (forward-line 1) (point))))
599 (nnheader-insert-nov headers
)))))
600 (nnfolder-save-buffer)
603 (deffoo nnfolder-request-delete-group
(group &optional force server
)
604 (nnfolder-close-group group server t
)
605 ;; Delete all articles in GROUP.
607 () ; Don't delete the articles.
608 ;; Delete the file that holds the group.
609 (let ((data (nnfolder-group-pathname group
))
610 (nov (nnfolder-group-nov-pathname group
))
611 (mrk (nnfolder-group-marks-pathname group
)))
612 (ignore-errors (delete-file data
))
613 (ignore-errors (delete-file nov
))
614 (ignore-errors (delete-file mrk
))))
615 ;; Remove the group from all structures.
616 (setq nnfolder-group-alist
617 (delq (assoc group nnfolder-group-alist
) nnfolder-group-alist
)
618 nnfolder-current-group nil
619 nnfolder-current-buffer nil
)
620 ;; Save the active file.
621 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
624 (deffoo nnfolder-request-rename-group
(group new-name
&optional server
)
625 (nnfolder-possibly-change-group group server
)
626 (with-current-buffer nnfolder-current-buffer
627 (and (file-writable-p buffer-file-name
)
629 (let ((new-file (nnfolder-group-pathname new-name
)))
630 (gnus-make-directory (file-name-directory new-file
))
631 (rename-file buffer-file-name new-file
)
632 (when (file-exists-p (nnfolder-group-nov-pathname group
))
633 (setq new-file
(nnfolder-group-nov-pathname new-name
))
634 (gnus-make-directory (file-name-directory new-file
))
635 (rename-file (nnfolder-group-nov-pathname group
) new-file
))
636 (when (file-exists-p (nnfolder-group-marks-pathname group
))
637 (setq new-file
(nnfolder-group-marks-pathname new-name
))
638 (gnus-make-directory (file-name-directory new-file
))
639 (rename-file (nnfolder-group-marks-pathname group
) new-file
)))
641 ;; That went ok, so we change the internal structures.
642 (let ((entry (assoc group nnfolder-group-alist
)))
643 (and entry
(setcar entry new-name
))
644 (setq nnfolder-current-buffer nil
645 nnfolder-current-group nil
)
646 ;; Save the new group alist.
647 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
648 ;; We kill the buffer instead of renaming it and stuff.
649 (kill-buffer (current-buffer))
652 (deffoo nnfolder-request-regenerate
(server)
653 (nnfolder-possibly-change-group nil server
)
654 (nnfolder-generate-active-file)
658 ;;; Internal functions.
660 (defun nnfolder-adjust-min-active (group)
661 ;; Find the lowest active article in this group.
662 (let* ((active (cadr (assoc group nnfolder-group-alist
)))
663 (marker (concat "\n" nnfolder-article-marker
))
665 (activemin (cdr active
)))
666 (with-current-buffer nnfolder-current-buffer
667 (goto-char (point-min))
668 (while (and (search-forward marker nil t
)
669 (re-search-forward number nil t
))
670 (let ((newnum (string-to-number (match-string 0))))
671 (if (nnmail-within-headers-p)
672 (setq activemin
(min activemin newnum
)))))
673 (setcar active activemin
))))
675 (defun nnfolder-article-string (article)
676 (if (numberp article
)
677 (concat "\n" nnfolder-article-marker
(int-to-string article
) " ")
678 (concat "\nMessage-ID: " article
)))
680 (defun nnfolder-goto-article (article)
681 "Place point at the start of the headers of ARTICLE.
682 ARTICLE can be an article number or a Message-ID.
683 Returns t if successful, nil otherwise."
684 (let ((art-string (nnfolder-article-string article
))
686 ;; It is likely that we are at or before the delimiter line.
687 ;; We therefore go to the end of the previous line, and start
688 ;; searching from there.
693 ;; First search forward.
694 (while (and (setq found
(search-forward art-string nil t
))
695 (not (nnmail-within-headers-p))))
696 ;; If unsuccessful, search backward from where we started,
699 (while (and (setq found
(search-backward art-string nil t
))
700 (not (nnmail-within-headers-p)))))
702 (nnmail-search-unix-mail-delim-backward))))
704 (defun nnfolder-delete-mail (&optional leave-delim
)
705 "Delete the message that point is in.
706 If optional argument LEAVE-DELIM is t, then mailbox delimiter is not
707 deleted. Point is left where the deleted region was."
711 ;; In case point is at the beginning of the message already.
713 (nnmail-search-unix-mail-delim-backward)
714 (if leave-delim
(progn (forward-line 1) (point))
718 (if (nnmail-search-unix-mail-delim)
721 (run-hooks 'nnfolder-delete-mail-hook
)
722 (delete-region (point-min) (point-max))))
724 (defun nnfolder-possibly-change-group (group &optional server dont-check
)
727 (not (nnfolder-server-opened server
)))
728 (nnfolder-open-server server
))
729 (unless (gnus-buffer-live-p nnfolder-current-buffer
)
730 (setq nnfolder-current-buffer nil
731 nnfolder-current-group nil
))
733 (let ((file-name-coding-system nnmail-pathname-coding-system
))
735 (not (equal group nnfolder-current-group
))
737 (nnmail-activate 'nnfolder
)
738 (and (assoc group nnfolder-group-alist
)
739 (file-exists-p (nnfolder-group-pathname group
)))))
741 (setq nnfolder-current-group group
742 nnfolder-current-buffer nil
)
744 ;; If we have to change groups, see if we don't already have
745 ;; the folder in memory. If we do, verify the modtime and
746 ;; destroy the folder if needed so we can rescan it.
747 (setq nnfolder-current-buffer
748 (nth 1 (assoc group nnfolder-buffer-alist
)))
750 ;; If the buffer is not live, make sure it isn't in the
751 ;; alist. If it is live, verify that nobody else has
752 ;; touched the file since last time.
753 (when (and nnfolder-current-buffer
754 (not (gnus-buffer-live-p nnfolder-current-buffer
)))
755 (setq nnfolder-buffer-alist
(delq inf nnfolder-buffer-alist
)
756 nnfolder-current-buffer nil
))
758 (setq nnfolder-current-group group
)
760 (when (or (not nnfolder-current-buffer
)
761 (not (verify-visited-file-modtime
762 nnfolder-current-buffer
)))
764 (setq file
(nnfolder-group-pathname group
))
765 ;; See whether we need to create the new file.
766 (unless (file-exists-p file
)
767 (gnus-make-directory (file-name-directory file
))
768 (let ((nnmail-file-coding-system
769 (or nnfolder-file-coding-system-for-write
770 nnfolder-file-coding-system-for-write
)))
771 (nnmail-write-region (point-min) (point-min)
773 (when (setq nnfolder-current-buffer
(nnfolder-read-folder group
))
774 (set-buffer nnfolder-current-buffer
)
775 (push (list group nnfolder-current-buffer
)
776 nnfolder-buffer-alist
)))))))))
778 (defun nnfolder-save-mail (group-art-list)
779 "Called narrowed to an article."
780 (let* (save-list group-art
)
781 (goto-char (point-min))
782 ;; The From line may have been quoted by movemail.
783 (when (looking-at ">From")
785 ;; This might come from somewhere else.
786 (unless (looking-at "From ")
787 (insert "From nobody " (current-time-string) "\n")
788 (goto-char (point-min)))
789 ;; Quote all "From " lines in the article.
791 (let (case-fold-search)
792 (while (re-search-forward "^From " nil t
)
795 (setq save-list group-art-list
)
796 (nnmail-insert-lines)
797 (nnmail-insert-xref group-art-list
)
798 (run-hooks 'nnmail-prepare-save-mail-hook
)
799 (run-hooks 'nnfolder-prepare-save-mail-hook
)
801 ;; Insert the mail into each of the destination groups.
802 (while (setq group-art
(pop group-art-list
))
803 ;; Kill any previous newsgroup markers.
804 (goto-char (point-min))
805 (if (search-forward "\n\n" nil t
)
807 (goto-char (point-max)))
808 (while (search-backward (concat "\n" nnfolder-article-marker
) nil t
)
809 (delete-region (1+ (point)) (progn (forward-line 2) (point))))
811 ;; Insert the new newsgroup marker.
812 (nnfolder-insert-newsgroup-line group-art
)
815 (let ((beg (point-min))
817 (obuf (current-buffer)))
818 (nnfolder-possibly-change-folder (car group-art
))
819 (let ((buffer-read-only nil
))
820 (nnfolder-normalize-buffer)
821 (insert-buffer-substring obuf beg end
))
822 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
824 (nnfolder-add-nov (car group-art
) (cdr group-art
)
825 (nnfolder-parse-head nil beg end
))))))
827 ;; Did we save it anywhere?
830 (defun nnfolder-normalize-buffer ()
831 "Make sure there are two newlines at the end of the buffer."
832 (goto-char (point-max))
833 (skip-chars-backward "\n")
834 (delete-region (point) (point-max))
838 (defun nnfolder-insert-newsgroup-line (group-art)
840 (goto-char (point-min))
841 (unless (search-forward "\n\n" nil t
)
842 (goto-char (point-max))
845 (insert (format (concat nnfolder-article-marker
"%d %s\n")
846 (cdr group-art
) (message-make-date)))))
848 (defun nnfolder-active-number (group)
849 ;; Find the next article number in GROUP.
850 (let ((active (cadr (assoc group nnfolder-group-alist
))))
852 (setcdr active
(1+ (cdr active
)))
853 ;; This group is new, so we create a new entry for it.
854 ;; This might be a bit naughty... creating groups on the drop of
855 ;; a hat, but I don't know...
856 (push (list group
(setq active
(cons 1 1)))
857 nnfolder-group-alist
))
860 (defun nnfolder-possibly-change-folder (group)
861 (let ((inf (assoc group nnfolder-buffer-alist
)))
863 (gnus-buffer-live-p (cadr inf
)))
864 (set-buffer (cadr inf
))
866 (setq nnfolder-buffer-alist
(delq inf nnfolder-buffer-alist
)))
867 (when nnfolder-group-alist
868 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
))
869 (push (list group
(nnfolder-read-folder group
))
870 nnfolder-buffer-alist
))))
872 ;; This method has a problem if you've accidentally let the active
873 ;; list get out of sync with the files. This could happen, say, if
874 ;; you've accidentally gotten new mail with something other than Gnus
875 ;; (but why would _that_ ever happen? :-). In that case, we will be
876 ;; in the middle of processing the file, ready to add new X-Gnus
877 ;; article number markers, and we'll run across a message with no ID
878 ;; yet - the active list _may_not_ be ready for us yet.
880 ;; To handle this, I'm modifying this routine to maintain the maximum
881 ;; ID seen so far, and when we hit a message with no ID, we will
882 ;; _manually_ scan the rest of the message looking for any more,
883 ;; possibly higher IDs. We'll assume the maximum that we find is the
884 ;; highest active. Note that this shouldn't cost us much extra time
885 ;; at all, but will be a lot less vulnerable to glitches between the
886 ;; mbox and the active file.
888 (defun nnfolder-read-folder (group)
889 (let* ((file (nnfolder-group-pathname group
))
890 (nov (nnfolder-group-nov-pathname group
))
892 (let ((nnheader-file-coding-system
893 nnfolder-file-coding-system
))
894 (nnheader-find-file-noselect file t
)))))
895 (mm-enable-multibyte) ;; Use multibyte buffer for future copying.
896 (buffer-disable-undo)
897 (if (equal (cadr (assoc group nnfolder-scantime-alist
))
898 (nth 5 (file-attributes file
)))
899 ;; This looks up-to-date, so we don't do any scanning.
900 (if (file-exists-p file
)
902 (push (list group buffer
) nnfolder-buffer-alist
)
903 (set-buffer-modified-p t
)
904 (nnfolder-save-buffer))
905 ;; Parse the damn thing.
907 (goto-char (point-min))
908 ;; Remove any blank lines at the start.
909 (while (eq (following-char) ?
\n)
911 (nnmail-activate 'nnfolder
)
913 (let ((delim "^From ")
914 (marker (concat "\n" nnfolder-article-marker
))
916 (active (or (cadr (assoc group nnfolder-group-alist
))
918 (scantime (assoc group nnfolder-scantime-alist
))
919 (minid (or (and (boundp 'most-positive-fixnum
)
920 most-positive-fixnum
)
922 maxid start end newscantime
923 novbuf articles newnum
925 (setq maxid
(cdr active
))
927 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
928 (and (file-exists-p nov
)
929 (file-newer-than-file-p nov file
)))
930 (unless (file-exists-p nov
)
931 (gnus-make-directory (file-name-directory nov
)))
933 (setq novbuf
(nnfolder-open-nov group
))
934 (goto-char (point-min))
936 (push (read novbuf
) articles
)
938 (setq articles
(nreverse articles
))))
939 (goto-char (point-min))
941 ;; Anytime the active number is 1 or 0, it is suspect. In
942 ;; that case, search the file manually to find the active
943 ;; number. Or, of course, if we're being paranoid. (This
944 ;; would also be the place to build other lists from the
945 ;; header markers, such as expunge lists, etc., if we ever
946 ;; desired to abandon the active file entirely for mboxes.)
947 (when (or nnfolder-ignore-active-file
950 (while (and (search-forward marker nil t
)
952 (setq newnum
(string-to-number (match-string 0)))
953 (when (nnmail-within-headers-p)
954 (setq maxid
(max maxid newnum
)
955 minid
(min minid newnum
))
957 (if (memq newnum articles
)
958 (setq articles
(delq newnum articles
))
959 (let ((headers (nnfolder-parse-head newnum
)))
960 (with-current-buffer novbuf
961 (nnheader-find-nov-line newnum
)
962 (nnheader-insert-nov headers
)))))))
963 (when (and novbuf articles
)
964 (with-current-buffer novbuf
965 (dolist (article articles
)
966 (when (nnheader-find-nov-line article
)
967 (delete-region (point)
968 (progn (forward-line 1) (point)))))))
969 (setcar active
(max 1 (min minid maxid
)))
970 (setcdr active
(max maxid
(cdr active
)))
971 (goto-char (point-min)))
973 ;; As long as we trust that the user will only insert
974 ;; unmarked mail at the end, go to the end and search
975 ;; backwards for the last marker. Find the start of that
976 ;; message, and begin to search for unmarked messages from
978 (when (not (or nnfolder-distrust-mbox
980 (goto-char (point-max))
981 (unless (re-search-backward marker nil t
)
982 (goto-char (point-min)))
983 ;;(when (nnmail-search-unix-mail-delim)
984 ;; (goto-char (point-min)))
987 ;; Keep track of the active number on our own, and insert it
988 ;; back into the active list when we're done. Also, prime
989 ;; the pump to cut down on the number of searches we do.
990 (unless (nnmail-search-unix-mail-delim)
991 (goto-char (point-max)))
992 (setq end
(point-marker))
993 (while (not (= end
(point-max)))
994 (setq start
(marker-position end
))
996 ;; There may be more than one "From " line, so we skip past
998 (while (looking-at delim
)
1000 (set-marker end
(if (nnmail-search-unix-mail-delim)
1004 (when (not (search-forward marker end t
))
1005 (narrow-to-region start end
)
1006 (nnmail-insert-lines)
1007 (nnfolder-insert-newsgroup-line
1010 (nnfolder-active-number group
))))
1012 (let ((headers (nnfolder-parse-head newnum
(point-min)
1014 (with-current-buffer novbuf
1015 (goto-char (point-max))
1016 (nnheader-insert-nov headers
))))
1019 (set-marker end nil
)
1020 ;; Make absolutely sure that the active list reflects
1022 (nnfolder-save-active nnfolder-group-alist nnfolder-active-file
)
1024 ;; Set the scantime for this group.
1025 (setq newscantime
(visited-file-modtime))
1027 (setcdr scantime
(list newscantime
))
1028 (push (list group newscantime
)
1029 nnfolder-scantime-alist
))
1032 (nnfolder-save-nov))
1033 (current-buffer))))))
1036 (defun nnfolder-generate-active-file ()
1037 "Look for mbox folders in the nnfolder directory and make them into groups.
1038 This command does not work if you use short group names."
1040 (nnmail-activate 'nnfolder
)
1041 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
1042 (dolist (file (directory-files (or nnfolder-nov-directory
1046 (regexp-quote nnfolder-nov-file-suffix
)
1048 (when (not (message-mail-file-mbox-p file
))
1050 (delete-file file
)))))
1051 (dolist (file (directory-files nnfolder-directory
))
1052 (when (and (not (backup-file-name-p file
))
1053 (message-mail-file-mbox-p
1054 (nnheader-concat nnfolder-directory file
)))
1055 (let ((oldgroup (assoc file nnfolder-group-alist
)))
1057 (nnheader-message 5 "Refreshing group %s..." file
)
1058 (nnheader-message 5 "Adding group %s..." file
))
1060 (setq nnfolder-group-alist
1061 (delq oldgroup
(copy-sequence nnfolder-group-alist
))))
1062 (push (list file
(cons 1 0)) nnfolder-group-alist
)
1063 (nnfolder-possibly-change-folder file
)
1064 (nnfolder-possibly-change-group file
)
1065 (nnfolder-close-group file
))))
1066 (nnheader-message 5 ""))
1068 (defun nnfolder-group-pathname (group)
1069 "Make file name for GROUP."
1071 (mm-encode-coding-string group nnmail-pathname-coding-system
))
1072 (let ((dir (file-name-as-directory (expand-file-name nnfolder-directory
))))
1073 ;; If this file exists, we use it directly.
1074 (if (or nnmail-use-long-file-names
1075 (file-exists-p (concat dir group
)))
1077 ;; If not, we translate dots into slashes.
1078 (concat dir
(nnheader-replace-chars-in-string group ?. ?
/)))))
1080 (defun nnfolder-group-nov-pathname (group)
1081 "Make pathname for GROUP NOV."
1082 (let ((nnfolder-directory
1083 (or nnfolder-nov-directory nnfolder-directory
)))
1084 (concat (nnfolder-group-pathname group
) nnfolder-nov-file-suffix
)))
1086 (defvar copyright-update
)
1088 (defun nnfolder-save-buffer ()
1090 (when (buffer-modified-p)
1091 (run-hooks 'nnfolder-save-buffer-hook
)
1092 (gnus-make-directory (file-name-directory (buffer-file-name)))
1093 (let ((coding-system-for-write
1094 (or nnfolder-file-coding-system-for-write
1095 nnfolder-file-coding-system
)))
1096 (set (make-local-variable 'copyright-update
) nil
)
1098 (unless (or gnus-nov-is-evil nnfolder-nov-is-evil
)
1099 (nnfolder-save-nov)))
1101 (defun nnfolder-save-active (group-alist active-file
)
1102 (let ((nnmail-active-file-coding-system
1103 (or nnfolder-active-file-coding-system-for-write
1104 nnfolder-active-file-coding-system
)))
1105 (nnmail-save-active group-alist active-file
)))
1107 (defun nnfolder-open-nov (group)
1108 (or (cdr (assoc group nnfolder-nov-buffer-alist
))
1109 (let ((buffer (get-buffer-create (format " *nnfolder overview %s*" group
))))
1110 (with-current-buffer buffer
1111 (set (make-local-variable 'nnfolder-nov-buffer-file-name
)
1112 (nnfolder-group-nov-pathname group
))
1114 (when (file-exists-p nnfolder-nov-buffer-file-name
)
1115 (nnheader-insert-file-contents nnfolder-nov-buffer-file-name
)))
1116 (push (cons group buffer
) nnfolder-nov-buffer-alist
)
1119 (defun nnfolder-save-nov ()
1121 (while nnfolder-nov-buffer-alist
1122 (when (buffer-name (cdar nnfolder-nov-buffer-alist
))
1123 (set-buffer (cdar nnfolder-nov-buffer-alist
))
1124 (when (buffer-modified-p)
1125 (gnus-make-directory (file-name-directory
1126 nnfolder-nov-buffer-file-name
))
1127 (nnmail-write-region 1 (point-max) nnfolder-nov-buffer-file-name
1129 (set-buffer-modified-p nil
)
1130 (kill-buffer (current-buffer)))
1131 (setq nnfolder-nov-buffer-alist
(cdr nnfolder-nov-buffer-alist
)))))
1133 (defun nnfolder-nov-delete-article (group article
)
1134 (with-current-buffer (nnfolder-open-nov group
)
1135 (when (nnheader-find-nov-line article
)
1136 (delete-region (point) (progn (forward-line 1) (point))))
1139 (defun nnfolder-retrieve-headers-with-nov (articles &optional fetch-old
)
1140 (if (or gnus-nov-is-evil nnfolder-nov-is-evil
)
1142 (let ((nov (nnfolder-group-nov-pathname nnfolder-current-group
)))
1143 (when (file-exists-p nov
)
1144 (with-current-buffer nntp-server-buffer
1146 (nnheader-insert-file-contents nov
)
1148 (not (numberp fetch-old
)))
1149 t
; Don't remove anything.
1150 (nnheader-nov-delete-outside-range
1151 (if fetch-old
(max 1 (- (car articles
) fetch-old
))
1153 (car (last articles
)))
1156 (defun nnfolder-parse-head (&optional number b e
)
1157 "Parse the head of the current buffer."
1158 (let ((buf (current-buffer))
1162 (setq b
(if (nnmail-search-unix-mail-delim-backward)
1163 (point) (point-min)))
1165 (setq e
(if (nnmail-search-unix-mail-delim)
1166 (point) (point-max))))
1167 (setq chars
(- e b
))
1168 (unless (zerop chars
)
1170 (if (search-forward "\n\n" e t
) (setq e
(1- (point)))))
1172 (insert-buffer-substring buf b e
)
1173 (let ((headers (nnheader-parse-naked-head)))
1174 (mail-header-set-chars headers chars
)
1175 (mail-header-set-number headers number
)
1178 (defun nnfolder-add-nov (group article headers
)
1179 "Add a nov line for the GROUP base."
1180 (with-current-buffer (nnfolder-open-nov group
)
1181 (goto-char (point-max))
1182 (mail-header-set-number headers article
)
1183 (nnheader-insert-nov headers
)))
1185 (deffoo nnfolder-request-set-mark
(group actions
&optional server
)
1187 (not (nnfolder-server-opened server
)))
1188 (nnfolder-open-server server
))
1189 (unless nnfolder-marks-is-evil
1190 (nnfolder-open-marks group server
)
1191 (setq nnfolder-marks
(nnheader-update-marks-actions nnfolder-marks actions
))
1192 (nnfolder-save-marks group server
))
1195 (deffoo nnfolder-request-marks
(group info
&optional server
)
1198 (not (nnfolder-server-opened server
)))
1199 (nnfolder-open-server server
))
1200 (when (and (not nnfolder-marks-is-evil
) (nnfolder-marks-changed-p group
))
1201 (nnheader-message 8 "Updating marks for %s..." group
)
1202 (nnfolder-open-marks group server
)
1203 ;; Update info using `nnfolder-marks'.
1204 (mapc (lambda (pred)
1205 (unless (memq (cdr pred
) gnus-article-unpropagated-mark-lists
)
1206 (gnus-info-set-marks
1208 (gnus-update-alist-soft
1210 (cdr (assq (cdr pred
) nnfolder-marks
))
1211 (gnus-info-marks info
))
1213 gnus-article-mark-lists
)
1214 (let ((seen (cdr (assq 'read nnfolder-marks
))))
1215 (gnus-info-set-read info
1216 (if (and (integerp (car seen
))
1218 (list (cons (car seen
) (car seen
)))
1220 (nnheader-message 8 "Updating marks for %s...done" group
))
1223 (defun nnfolder-group-marks-pathname (group)
1224 "Make pathname for GROUP NOV."
1225 (let ((nnfolder-directory (or nnfolder-marks-directory nnfolder-directory
)))
1226 (concat (nnfolder-group-pathname group
) nnfolder-marks-file-suffix
)))
1228 (defun nnfolder-marks-changed-p (group)
1229 (let ((file (nnfolder-group-marks-pathname group
)))
1230 (if (null (gnus-gethash file nnfolder-marks-modtime
))
1231 t
;; never looked at marks file, assume it has changed
1232 (not (equal (gnus-gethash file nnfolder-marks-modtime
)
1233 (nth 5 (file-attributes file
)))))))
1235 (defun nnfolder-save-marks (group server
)
1236 (let ((file-name-coding-system nnmail-pathname-coding-system
)
1237 (file (nnfolder-group-marks-pathname group
)))
1240 (with-temp-file file
1242 (gnus-prin1 nnfolder-marks
)
1245 (nth 5 (file-attributes file
))
1246 nnfolder-marks-modtime
))
1247 (error (or (gnus-yes-or-no-p
1248 (format "Could not write to %s (%s). Continue? " file err
))
1249 (error "Cannot write to %s (%s)" file err
))))))
1251 (defun nnfolder-open-marks (group server
)
1252 (let ((file (nnfolder-group-marks-pathname group
)))
1253 (if (file-exists-p file
)
1256 (gnus-sethash file
(nth 5 (file-attributes file
))
1257 nnfolder-marks-modtime
)
1258 (nnheader-insert-file-contents file
)
1259 (setq nnfolder-marks
(read (current-buffer)))
1260 (dolist (el gnus-article-unpropagated-mark-lists
)
1261 (setq nnfolder-marks
(gnus-remassoc el nnfolder-marks
))))
1262 (error (or (gnus-yes-or-no-p
1263 (format "Error reading nnfolder marks file %s (%s). Continuing will use marks from .newsrc.eld. Continue? " file err
))
1264 (error "Cannot read nnfolder marks file %s (%s)" file err
))))
1265 ;; User didn't have a .marks file. Probably first time
1266 ;; user of the .marks stuff. Bootstrap it from .newsrc.eld.
1267 (let ((info (gnus-get-info
1268 (gnus-group-prefixed-name
1270 (gnus-server-to-method (format "nnfolder:%s" server
))))))
1271 (nnheader-message 7 "Bootstrapping marks for %s..." group
)
1272 (setq nnfolder-marks
(gnus-info-marks info
))
1273 (push (cons 'read
(gnus-info-read info
)) nnfolder-marks
)
1274 (dolist (el gnus-article-unpropagated-mark-lists
)
1275 (setq nnfolder-marks
(gnus-remassoc el nnfolder-marks
)))
1276 (nnfolder-save-marks group server
)
1277 (nnheader-message 7 "Bootstrapping marks for %s...done" group
)))))
1281 ;;; nnfolder.el ends here