1 ;;; nnml.el --- mail spool access for Gnus
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Simon Josefsson <simon@josefsson.org> (adding MARKS)
7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
9 ;; Keywords: news, mail
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
30 ;; Based on nnspool.el by Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>.
31 ;; For an overview of what the interface functions do, please see the
40 (eval-when-compile (require 'cl
))
43 (autoload 'gnus-article-unpropagatable-p
"gnus-sum"))
47 (defvoo nnml-directory message-directory
48 "Spool directory for the nnml mail backend.")
50 (defvoo nnml-active-file
51 (expand-file-name "active" nnml-directory
)
54 (defvoo nnml-newsgroups-file
55 (expand-file-name "newsgroups" nnml-directory
)
56 "Mail newsgroups description file.")
58 (defvoo nnml-get-new-mail t
59 "If non-nil, nnml will check the incoming mail file and split the mail.")
61 (defvoo nnml-nov-is-evil nil
62 "If non-nil, Gnus will never generate and use nov databases for mail spools.
63 Using nov databases will speed up header fetching considerably.
64 This variable shouldn't be flipped much. If you have, for some reason,
65 set this to t, and want to set it to nil again, you should always run
66 the `nnml-generate-nov-databases' command. The function will go
67 through all nnml directories and generate nov databases for them
68 all. This may very well take some time.")
70 (defvoo nnml-marks-is-evil nil
71 "If non-nil, Gnus will never generate and use marks file for mail spools.
72 Using marks files makes it possible to backup and restore mail groups
73 separately from `.newsrc.eld'. If you have, for some reason, set this
74 to t, and want to set it to nil again, you should always remove the
75 corresponding marks file (usually named `.marks' in the nnml group
76 directory, but see `nnml-marks-file-name') for the group. Then the
77 marks file will be regenerated properly by Gnus.")
79 (defvoo nnml-prepare-save-mail-hook nil
80 "Hook run narrowed to an article before saving.")
82 (defvoo nnml-inhibit-expiry nil
83 "If non-nil, inhibit expiry.")
85 (defvoo nnml-use-compressed-files nil
86 "If non-nil, allow using compressed message files.")
90 (defconst nnml-version
"nnml 1.0"
93 (defvoo nnml-nov-file-name
".overview")
94 (defvoo nnml-marks-file-name
".marks")
96 (defvoo nnml-current-directory nil
)
97 (defvoo nnml-current-group nil
)
98 (defvoo nnml-status-string
"")
99 (defvoo nnml-nov-buffer-alist nil
)
100 (defvoo nnml-group-alist nil
)
101 (defvoo nnml-active-timestamp nil
)
102 (defvoo nnml-article-file-alist nil
)
104 (defvoo nnml-generate-active-function
'nnml-generate-active-info
)
106 (defvar nnml-nov-buffer-file-name nil
)
108 (defvoo nnml-file-coding-system nnmail-file-coding-system
)
110 (defvoo nnml-marks nil
)
112 (defvar nnml-marks-modtime
(gnus-make-hashtable))
115 ;;; Interface functions.
117 (nnoo-define-basics nnml
)
119 (deffoo nnml-retrieve-headers
(sequence &optional group server fetch-old
)
120 (when (nnml-possibly-change-directory group server
)
122 (set-buffer nntp-server-buffer
)
125 (number (length sequence
))
127 (file-name-coding-system nnmail-pathname-coding-system
)
129 (if (stringp (car sequence
))
131 (if (nnml-retrieve-headers-with-nov sequence fetch-old
)
134 (setq article
(car sequence
))
135 (setq file
(nnml-article-to-file article
))
138 (not (file-directory-p file
)))
139 (insert (format "221 %d Article retrieved.\n" article
))
141 (nnheader-insert-head file
)
143 (if (re-search-forward "\n\r?\n" nil t
)
145 (goto-char (point-max))
148 (delete-region (point) (point-max)))
149 (setq sequence
(cdr sequence
))
150 (setq count
(1+ count
))
151 (and (numberp nnmail-large-newsgroup
)
152 (> number nnmail-large-newsgroup
)
154 (nnheader-message 6 "nnml: Receiving headers... %d%%"
155 (/ (* count
100) number
))))
157 (and (numberp nnmail-large-newsgroup
)
158 (> number nnmail-large-newsgroup
)
159 (nnheader-message 6 "nnml: Receiving headers...done"))
161 (nnheader-fold-continuation-lines)
164 (deffoo nnml-open-server
(server &optional defs
)
165 (nnoo-change-server 'nnml server defs
)
166 (when (not (file-exists-p nnml-directory
))
167 (ignore-errors (make-directory nnml-directory t
)))
169 ((not (file-exists-p nnml-directory
))
171 (nnheader-report 'nnml
"Couldn't create directory: %s" nnml-directory
))
172 ((not (file-directory-p (file-truename nnml-directory
)))
174 (nnheader-report 'nnml
"Not a directory: %s" nnml-directory
))
176 (nnheader-report 'nnml
"Opened server %s using directory %s"
177 server nnml-directory
)
180 (deffoo nnml-request-regenerate
(server)
181 (nnml-possibly-change-directory nil server
)
182 (nnml-generate-nov-databases server
)
185 (deffoo nnml-request-article
(id &optional group server buffer
)
186 (nnml-possibly-change-directory group server
)
187 (let* ((nntp-server-buffer (or buffer nntp-server-buffer
))
188 (file-name-coding-system nnmail-pathname-coding-system
)
189 path gpath group-num
)
191 (when (and (setq group-num
(nnml-find-group-number id
))
193 (assq (cdr group-num
)
194 (nnheader-article-to-file-alist
196 (nnmail-group-pathname
199 (setq path
(concat gpath
(int-to-string (cdr group-num
)))))
200 (setq path
(nnml-article-to-file id
)))
203 (nnheader-report 'nnml
"No such article: %s" id
))
204 ((not (file-exists-p path
))
205 (nnheader-report 'nnml
"No such file: %s" path
))
206 ((file-directory-p path
)
207 (nnheader-report 'nnml
"File is a directory: %s" path
))
208 ((not (save-excursion (let ((nnmail-file-coding-system
209 nnml-file-coding-system
))
210 (nnmail-find-file path
))))
211 (nnheader-report 'nnml
"Couldn't read file: %s" path
))
213 (nnheader-report 'nnml
"Article %s retrieved" id
)
214 ;; We return the article number.
215 (cons (if group-num
(car group-num
) group
)
216 (string-to-number (file-name-nondirectory path
)))))))
218 (deffoo nnml-request-group
(group &optional server dont-check
)
219 (let ((file-name-coding-system nnmail-pathname-coding-system
))
221 ((not (nnml-possibly-change-directory group server
))
222 (nnheader-report 'nnml
"Invalid group (no such directory)"))
223 ((not (file-exists-p nnml-current-directory
))
224 (nnheader-report 'nnml
"Directory %s does not exist"
225 nnml-current-directory
))
226 ((not (file-directory-p nnml-current-directory
))
227 (nnheader-report 'nnml
"%s is not a directory" nnml-current-directory
))
229 (nnheader-report 'nnml
"Group %s selected" group
)
232 (nnheader-re-read-dir nnml-current-directory
)
233 (nnmail-activate 'nnml
)
234 (let ((active (nth 1 (assoc group nnml-group-alist
))))
236 (nnheader-report 'nnml
"No such group: %s" group
)
237 (nnheader-report 'nnml
"Selected group %s" group
)
238 (nnheader-insert "211 %d %d %d %s\n"
239 (max (1+ (- (cdr active
) (car active
))) 0)
240 (car active
) (cdr active
) group
)))))))
242 (deffoo nnml-request-scan
(&optional group server
)
243 (setq nnml-article-file-alist nil
)
244 (nnml-possibly-change-directory group server
)
245 (nnmail-get-new-mail 'nnml
'nnml-save-nov nnml-directory group
))
247 (deffoo nnml-close-group
(group &optional server
)
248 (setq nnml-article-file-alist nil
)
251 (deffoo nnml-request-create-group
(group &optional server args
)
252 (nnml-possibly-change-directory nil server
)
253 (nnmail-activate 'nnml
)
255 ((assoc group nnml-group-alist
)
257 ((and (file-exists-p (nnmail-group-pathname group nnml-directory
))
258 (not (file-directory-p (nnmail-group-pathname group nnml-directory
))))
259 (nnheader-report 'nnml
"%s is a file"
260 (nnmail-group-pathname group nnml-directory
)))
263 (push (list group
(setq active
(cons 1 0)))
265 (nnml-possibly-create-directory group
)
266 (nnml-possibly-change-directory group server
)
267 (let ((articles (nnml-directory-articles nnml-current-directory
)))
269 (setcar active
(apply 'min articles
))
270 (setcdr active
(apply 'max articles
))))
271 (nnmail-save-active nnml-group-alist nnml-active-file
)
274 (deffoo nnml-request-list
(&optional server
)
276 (let ((nnmail-file-coding-system nnmail-active-file-coding-system
)
277 (file-name-coding-system nnmail-pathname-coding-system
))
278 (nnmail-find-file nnml-active-file
))
279 (setq nnml-group-alist
(nnmail-get-active))
282 (deffoo nnml-request-newgroups
(date &optional server
)
283 (nnml-request-list server
))
285 (deffoo nnml-request-list-newsgroups
(&optional server
)
287 (nnmail-find-file nnml-newsgroups-file
)))
289 (deffoo nnml-request-expire-articles
(articles group
&optional server force
)
290 (nnml-possibly-change-directory group server
)
291 (let ((active-articles
292 (nnml-directory-articles nnml-current-directory
))
294 article rest mod-time number
)
295 (nnmail-activate 'nnml
)
297 (setq active-articles
(sort active-articles
'<))
298 ;; Articles not listed in active-articles are already gone,
299 ;; so don't try to expire them.
300 (setq articles
(gnus-sorted-intersection articles active-articles
))
302 (while (and articles is-old
)
303 (if (and (setq article
(nnml-article-to-file
304 (setq number
(pop articles
))))
305 (setq mod-time
(nth 5 (file-attributes article
)))
306 (nnml-deletable-article-p group number
)
307 (setq is-old
(nnmail-expired-article-p group mod-time force
308 nnml-inhibit-expiry
)))
310 ;; Allow a special target group.
311 (unless (eq nnmail-expiry-target
'delete
)
313 (nnml-request-article number group server
(current-buffer))
314 (let (nnml-current-directory
316 nnml-article-file-alist
)
317 (nnmail-expiry-target-group nnmail-expiry-target group
)))
318 ;; Maybe directory is changed during nnmail-expiry-target-group.
319 (nnml-possibly-change-directory group server
))
320 (nnheader-message 5 "Deleting article %s in %s"
323 (funcall nnmail-delete-file-function article
)
326 (setq active-articles
(delq number active-articles
))
327 (nnml-nov-delete-article group number
))
329 (let ((active (nth 1 (assoc group nnml-group-alist
))))
331 (setcar active
(or (and active-articles
332 (apply 'min active-articles
))
334 (nnmail-save-active nnml-group-alist nnml-active-file
))
336 (nconc rest articles
)))
338 (deffoo nnml-request-move-article
339 (article group server accept-form
&optional last
)
340 (let ((buf (get-buffer-create " *nnml move*"))
342 (nnml-possibly-change-directory group server
)
343 (nnml-update-file-alist)
345 (nnml-deletable-article-p group article
)
346 (nnml-request-article article group server
)
347 (let (nnml-current-directory
349 nnml-article-file-alist
)
352 (insert-buffer-substring nntp-server-buffer
)
353 (setq result
(eval accept-form
))
354 (kill-buffer (current-buffer))
357 (nnml-possibly-change-directory group server
)
359 (funcall nnmail-delete-file-function
360 (nnml-article-to-file article
))
362 (nnml-nov-delete-article group article
)
365 (nnmail-save-active nnml-group-alist nnml-active-file
))))
368 (deffoo nnml-request-accept-article
(group &optional server last
)
369 (nnml-possibly-change-directory group server
)
370 (nnmail-check-syntax)
372 (when nnmail-cache-accepted-message-ids
373 (nnmail-cache-insert (nnmail-fetch-field "message-id")
375 (nnmail-fetch-field "subject")
376 (nnmail-fetch-field "from")))
379 (nnmail-activate 'nnml
)
380 (setq result
(car (nnml-save-mail
381 (list (cons group
(nnml-active-number group
))))))
383 (nnmail-save-active nnml-group-alist nnml-active-file
)
384 (and last
(nnml-save-nov))))
386 (nnmail-activate 'nnml
)
387 (if (and (not (setq result
(nnmail-article-group 'nnml-active-number
)))
388 (yes-or-no-p "Moved to `junk' group; delete article? "))
390 (setq result
(car (nnml-save-mail result
))))
392 (nnmail-save-active nnml-group-alist nnml-active-file
)
393 (when nnmail-cache-accepted-message-ids
394 (nnmail-cache-close))
398 (deffoo nnml-request-post
(&optional server
)
399 (nnmail-do-request-post 'nnml-request-accept-article server
))
401 (deffoo nnml-request-replace-article
(article group buffer
)
402 (nnml-possibly-change-directory group
)
405 (nnml-possibly-create-directory group
)
406 (let ((chars (nnmail-insert-lines))
407 (art (concat (int-to-string article
) "\t"))
411 (point-min) (point-max)
412 (or (nnml-article-to-file article
)
413 (expand-file-name (int-to-string article
)
414 nnml-current-directory
))
415 nil
(if (nnheader-be-verbose 5) nil
'nomesg
))
417 (setq headers
(nnml-parse-head chars article
))
418 ;; Replace the NOV line in the NOV file.
420 (set-buffer (nnml-open-nov group
))
421 (goto-char (point-min))
422 (if (or (looking-at art
)
423 (search-forward (concat "\n" art
) nil t
))
424 ;; Delete the old NOV line.
426 ;; The line isn't here, so we have to find out where
427 ;; we should insert it. (This situation should never
428 ;; occur, but one likes to make sure...)
429 (while (and (looking-at "[0-9]+\t")
432 (match-beginning 0) (match-end 0)))
434 (zerop (forward-line 1)))))
436 (nnheader-insert-nov headers
)
440 (deffoo nnml-request-delete-group
(group &optional force server
)
441 (nnml-possibly-change-directory group server
)
443 ;; Delete all articles in GROUP.
446 nnml-current-directory t
447 (concat nnheader-numerical-short-files
448 "\\|" (regexp-quote nnml-nov-file-name
) "$"
449 "\\|" (regexp-quote nnml-marks-file-name
) "$")))
452 (setq article
(pop articles
))
453 (when (file-writable-p article
)
454 (nnheader-message 5 "Deleting article %s in %s..." article group
)
455 (funcall nnmail-delete-file-function article
))))
456 ;; Try to delete the directory itself.
457 (ignore-errors (delete-directory nnml-current-directory
)))
458 ;; Remove the group from all structures.
459 (setq nnml-group-alist
460 (delq (assoc group nnml-group-alist
) nnml-group-alist
)
461 nnml-current-group nil
462 nnml-current-directory nil
)
463 ;; Save the active file.
464 (nnmail-save-active nnml-group-alist nnml-active-file
)
467 (deffoo nnml-request-rename-group
(group new-name
&optional server
)
468 (nnml-possibly-change-directory group server
)
469 (let ((new-dir (nnmail-group-pathname new-name nnml-directory
))
470 (old-dir (nnmail-group-pathname group nnml-directory
)))
472 (make-directory new-dir t
)
474 ;; We move the articles file by file instead of renaming
475 ;; the directory -- there may be subgroups in this group.
476 ;; One might be more clever, I guess.
477 (let ((files (nnheader-article-to-file-alist old-dir
)))
480 (concat old-dir
(cdar files
))
481 (concat new-dir
(cdar files
)))
483 ;; Move .overview file.
484 (let ((overview (concat old-dir nnml-nov-file-name
)))
485 (when (file-exists-p overview
)
486 (rename-file overview
(concat new-dir nnml-nov-file-name
))))
488 (let ((marks (concat old-dir nnml-marks-file-name
)))
489 (when (file-exists-p marks
)
490 (rename-file marks
(concat new-dir nnml-marks-file-name
))))
491 (when (<= (length (directory-files old-dir
)) 2)
492 (ignore-errors (delete-directory old-dir
)))
493 ;; That went ok, so we change the internal structures.
494 (let ((entry (assoc group nnml-group-alist
)))
496 (setcar entry new-name
))
497 (setq nnml-current-directory nil
498 nnml-current-group nil
)
499 ;; Save the new group alist.
500 (nnmail-save-active nnml-group-alist nnml-active-file
)
503 (deffoo nnml-set-status
(article name value
&optional group server
)
504 (nnml-possibly-change-directory group server
)
505 (let ((file (nnml-article-to-file article
)))
507 ((not (file-exists-p file
))
508 (nnheader-report 'nnml
"File %s does not exist" file
))
511 (nnheader-insert-file-contents file
)
512 (nnmail-replace-status name value
))
516 ;;; Internal functions.
518 (defun nnml-article-to-file (article)
519 (nnml-update-file-alist)
522 (if nnml-use-compressed-files
523 (cdr (assq article nnml-article-file-alist
))
524 (number-to-string article
)))
525 (expand-file-name file nnml-current-directory
)
526 (when (not nnheader-directory-files-is-safe
)
527 ;; Just to make sure nothing went wrong when reading over NFS --
530 (setq file
(expand-file-name (number-to-string article
)
531 nnml-current-directory
)))
532 (nnml-update-file-alist t
)
535 (defun nnml-deletable-article-p (group article
)
536 "Say whether ARTICLE in GROUP can be deleted."
538 (when (setq path
(nnml-article-to-file article
))
539 (when (file-writable-p path
)
540 (or (not nnmail-keep-last-article
)
541 (not (eq (cdr (nth 1 (assoc group nnml-group-alist
)))
544 ;; Find an article number in the current group given the Message-ID.
545 (defun nnml-find-group-number (id)
547 (set-buffer (get-buffer-create " *nnml id*"))
548 (let ((alist nnml-group-alist
)
550 ;; We want to look through all .overview files, but we want to
551 ;; start with the one in the current directory. It seems most
552 ;; likely that the article we are looking for is in that group.
553 (if (setq number
(nnml-find-id nnml-current-group id
))
554 (cons nnml-current-group number
)
555 ;; It wasn't there, so we look through the other groups as well.
556 (while (and (not number
)
558 (or (string= (caar alist
) nnml-current-group
)
559 (setq number
(nnml-find-id (caar alist
) id
)))
561 (setq alist
(cdr alist
))))
563 (cons (caar alist
) number
))))))
565 (defun nnml-find-id (group id
)
567 (let ((nov (expand-file-name nnml-nov-file-name
568 (nnmail-group-pathname group nnml-directory
)))
570 (when (file-exists-p nov
)
571 (nnheader-insert-file-contents nov
)
572 (while (and (not found
)
573 (search-forward id nil t
)) ; We find the ID.
574 ;; And the id is in the fourth field.
575 (if (not (and (search-backward "\t" nil t
4)
576 (not (search-backward"\t" (gnus-point-at-bol) t
))))
580 ;; We return the article number.
582 (ignore-errors (read (current-buffer))))))
585 (defun nnml-retrieve-headers-with-nov (articles &optional fetch-old
)
586 (if (or gnus-nov-is-evil nnml-nov-is-evil
)
588 (let ((nov (expand-file-name nnml-nov-file-name nnml-current-directory
)))
589 (when (file-exists-p nov
)
591 (set-buffer nntp-server-buffer
)
593 (nnheader-insert-file-contents nov
)
595 (not (numberp fetch-old
)))
596 t
; Don't remove anything.
597 (nnheader-nov-delete-outside-range
598 (if fetch-old
(max 1 (- (car articles
) fetch-old
))
600 (car (last articles
)))
603 (defun nnml-possibly-change-directory (group &optional server
)
605 (not (nnml-server-opened server
)))
606 (nnml-open-server server
))
609 (let ((pathname (nnmail-group-pathname group nnml-directory
))
610 (file-name-coding-system nnmail-pathname-coding-system
))
611 (when (not (equal pathname nnml-current-directory
))
612 (setq nnml-current-directory pathname
613 nnml-current-group group
614 nnml-article-file-alist nil
))
615 (file-exists-p nnml-current-directory
))))
617 (defun nnml-possibly-create-directory (group)
618 (let ((dir (nnmail-group-pathname group nnml-directory
)))
619 (unless (file-exists-p dir
)
620 (make-directory (directory-file-name dir
) t
)
621 (nnheader-message 5 "Creating mail directory %s" dir
))))
623 (defun nnml-save-mail (group-art)
624 "Called narrowed to an article."
625 (let (chars headers extension
)
626 (setq chars
(nnmail-insert-lines))
628 (and nnml-use-compressed-files
631 (nnmail-insert-xref group-art
)
632 (run-hooks 'nnmail-prepare-save-mail-hook
)
633 (run-hooks 'nnml-prepare-save-mail-hook
)
634 (goto-char (point-min))
635 (while (looking-at "From ")
636 (replace-match "X-From-Line: ")
638 ;; We save the article in all the groups it belongs in.
642 (nnml-possibly-create-directory (caar ga
))
643 (let ((file (concat (nnmail-group-pathname
644 (caar ga
) nnml-directory
)
645 (int-to-string (cdar ga
))
648 ;; It was already saved, so we just make a hard link.
649 (funcall nnmail-crosspost-link-function first file t
)
651 (nnmail-write-region (point-min) (point-max) file nil
652 (if (nnheader-be-verbose 5) nil
'nomesg
))
655 ;; Generate a nov line for this article. We generate the nov
656 ;; line after saving, because nov generation destroys the
658 (setq headers
(nnml-parse-head chars
))
659 ;; Output the nov line to all nov databases that should have it.
660 (let ((ga group-art
))
662 (nnml-add-nov (caar ga
) (cdar ga
) headers
)
666 (defun nnml-active-number (group)
667 "Compute the next article number in GROUP."
668 (let ((active (cadr (assoc group nnml-group-alist
))))
669 ;; The group wasn't known to nnml, so we just create an active
672 ;; Perhaps the active file was corrupt? See whether
673 ;; there are any articles in this group.
674 (nnml-possibly-create-directory group
)
675 (nnml-possibly-change-directory group
)
676 (unless nnml-article-file-alist
677 (setq nnml-article-file-alist
679 (nnml-current-group-article-to-file-alist)
680 'car-less-than-car
)))
682 (if nnml-article-file-alist
683 (cons (caar nnml-article-file-alist
)
684 (caar (last nnml-article-file-alist
)))
686 (push (list group active
) nnml-group-alist
))
687 (setcdr active
(1+ (cdr active
)))
688 (while (file-exists-p
689 (expand-file-name (int-to-string (cdr active
))
690 (nnmail-group-pathname group nnml-directory
)))
691 (setcdr active
(1+ (cdr active
))))
694 (defun nnml-add-nov (group article headers
)
695 "Add a nov line for the GROUP base."
697 (set-buffer (nnml-open-nov group
))
698 (goto-char (point-max))
699 (mail-header-set-number headers article
)
700 (nnheader-insert-nov headers
)))
702 (defsubst nnml-header-value
()
703 (buffer-substring (match-end 0) (gnus-point-at-eol)))
705 (defun nnml-parse-head (chars &optional number
)
706 "Parse the head of the current buffer."
709 (unless (zerop (buffer-size))
711 (goto-char (point-min))
712 (if (re-search-forward "\n\r?\n" nil t
)
715 (let ((headers (nnheader-parse-naked-head)))
716 (mail-header-set-chars headers chars
)
717 (mail-header-set-number headers number
)
720 (defun nnml-get-nov-buffer (group)
721 (let ((buffer (get-buffer-create (format " *nnml overview %s*" group
))))
724 (set (make-local-variable 'nnml-nov-buffer-file-name
)
727 (nnmail-group-pathname group nnml-directory
)))
729 (when (file-exists-p nnml-nov-buffer-file-name
)
730 (nnheader-insert-file-contents nnml-nov-buffer-file-name
)))
733 (defun nnml-open-nov (group)
734 (or (cdr (assoc group nnml-nov-buffer-alist
))
735 (let ((buffer (nnml-get-nov-buffer group
)))
736 (push (cons group buffer
) nnml-nov-buffer-alist
)
739 (defun nnml-save-nov ()
741 (while nnml-nov-buffer-alist
742 (when (buffer-name (cdar nnml-nov-buffer-alist
))
743 (set-buffer (cdar nnml-nov-buffer-alist
))
744 (when (buffer-modified-p)
745 (nnmail-write-region (point-min) (point-max)
746 nnml-nov-buffer-file-name nil
'nomesg
))
747 (set-buffer-modified-p nil
)
748 (kill-buffer (current-buffer)))
749 (setq nnml-nov-buffer-alist
(cdr nnml-nov-buffer-alist
)))))
752 (defun nnml-generate-nov-databases (&optional server
)
753 "Generate NOV databases in all nnml directories."
754 (interactive (list (or (nnoo-current-server 'nnml
) "")))
755 ;; Read the active file to make sure we don't re-use articles
756 ;; numbers in empty groups.
757 (nnmail-activate 'nnml
)
758 (unless (nnml-server-opened server
)
759 (nnml-open-server server
))
760 (setq nnml-directory
(expand-file-name nnml-directory
))
761 ;; Recurse down the directories.
762 (nnml-generate-nov-databases-1 nnml-directory nil t
)
763 ;; Save the active file.
764 (nnmail-save-active nnml-group-alist nnml-active-file
))
766 (defun nnml-generate-nov-databases-1 (dir &optional seen no-active
)
767 "Regenerate the NOV database in DIR."
768 (interactive "DRegenerate NOV in: ")
769 (setq dir
(file-name-as-directory dir
))
770 ;; Only scan this sub-tree if we haven't been here yet.
771 (unless (member (file-truename dir
) seen
)
772 (push (file-truename dir
) seen
)
773 ;; We descend recursively
774 (let ((dirs (directory-files dir t nil t
))
776 (while (setq dir
(pop dirs
))
777 (when (and (not (string-match "^\\." (file-name-nondirectory dir
)))
778 (file-directory-p dir
))
779 (nnml-generate-nov-databases-1 dir seen
))))
780 ;; Do this directory.
781 (let ((files (sort (nnheader-article-to-file-alist dir
)
782 'car-less-than-car
)))
784 (let* ((group (nnheader-file-to-group
785 (directory-file-name dir
) nnml-directory
))
786 (info (cadr (assoc group nnml-group-alist
))))
788 (setcar info
(1+ (cdr info
)))))
789 (funcall nnml-generate-active-function dir
)
790 ;; Generate the nov file.
791 (nnml-generate-nov-file dir files
)
793 (nnmail-save-active nnml-group-alist nnml-active-file
))))))
795 (eval-when-compile (defvar files
))
796 (defun nnml-generate-active-info (dir)
797 ;; Update the active info for this group.
798 (let* ((group (nnheader-file-to-group
799 (directory-file-name dir
) nnml-directory
))
800 (entry (assoc group nnml-group-alist
))
801 (last (or (caadr entry
) 0)))
802 (setq nnml-group-alist
(delq entry nnml-group-alist
))
804 (cons (or (caar files
) (1+ last
))
807 (while (cdr f
) (setq f
(cdr f
)))
812 (defun nnml-generate-nov-file (dir files
)
813 (let* ((dir (file-name-as-directory dir
))
814 (nov (concat dir nnml-nov-file-name
))
815 (nov-buffer (get-buffer-create " *nov*"))
818 ;; Init the nov buffer.
819 (set-buffer nov-buffer
)
820 (buffer-disable-undo)
822 (set-buffer nntp-server-buffer
)
823 ;; Delete the old NOV file.
824 (when (file-exists-p nov
)
825 (funcall nnmail-delete-file-function nov
))
827 (unless (file-directory-p (setq file
(concat dir
(cdar files
))))
829 (nnheader-insert-file-contents file
)
831 (goto-char (point-min))
833 (re-search-forward "\n\r?\n" nil t
)
834 (setq chars
(- (point-max) (point)))
835 (max (point-min) (1- (point)))))
836 (unless (zerop (buffer-size))
837 (goto-char (point-min))
838 (setq headers
(nnml-parse-head chars
(caar files
)))
840 (set-buffer nov-buffer
)
841 (goto-char (point-max))
842 (nnheader-insert-nov headers
)))
844 (setq files
(cdr files
)))
846 (set-buffer nov-buffer
)
847 (nnmail-write-region (point-min) (point-max) nov nil
'nomesg
)
848 (kill-buffer (current-buffer))))))
850 (defun nnml-nov-delete-article (group article
)
852 (set-buffer (nnml-open-nov group
))
853 (when (nnheader-find-nov-line article
)
854 (delete-region (point) (progn (forward-line 1) (point)))
856 (let ((active (cadr (assoc group nnml-group-alist
)))
860 (setf (car active
) (1+ (cdr active
)))
861 (when (and (setq num
(ignore-errors (read (current-buffer))))
863 (setf (car active
) num
)))))))
866 (defun nnml-update-file-alist (&optional force
)
867 (when nnml-use-compressed-files
868 (when (or (not nnml-article-file-alist
)
870 (setq nnml-article-file-alist
871 (nnml-current-group-article-to-file-alist)))))
873 (defun nnml-directory-articles (dir)
874 "Return a list of all article files in a directory.
875 Use the nov database for that directory if available."
876 (if (or gnus-nov-is-evil nnml-nov-is-evil
878 (expand-file-name nnml-nov-file-name dir
))))
879 (nnheader-directory-articles dir
)
880 ;; build list from .overview if available
881 ;; We would use nnml-open-nov, except that nnml-nov-buffer-alist is
882 ;; defvoo'd, and we might get called when it hasn't been swapped in.
886 (buffer (nnml-get-nov-buffer nnml-current-group
)))
888 (goto-char (point-min))
890 (setq art
(read (current-buffer)))
895 (defun nnml-current-group-article-to-file-alist ()
896 "Return an alist of article/file pairs in the current group.
897 Use the nov database for the current group if available."
898 (if (or nnml-use-compressed-files
902 (expand-file-name nnml-nov-file-name
903 nnml-current-directory
))))
904 (nnheader-article-to-file-alist nnml-current-directory
)
905 ;; build list from .overview if available
908 (buffer (nnml-get-nov-buffer nnml-current-group
))
911 (goto-char (point-min))
913 (setq art
(read (current-buffer)))
914 ;; assume file name is unadorned (ie. not compressed etc)
915 (push (cons art
(int-to-string art
)) alist
)
919 (deffoo nnml-request-set-mark
(group actions
&optional server
)
920 (nnml-possibly-change-directory group server
)
921 (unless nnml-marks-is-evil
922 (nnml-open-marks group server
)
923 (dolist (action actions
)
924 (let ((range (nth 0 action
))
925 (what (nth 1 action
))
926 (marks (nth 2 action
)))
927 (assert (or (eq what
'add
) (eq what
'del
)) nil
928 "Unknown request-set-mark action: %s" what
)
930 (setq nnml-marks
(gnus-update-alist-soft
932 (funcall (if (eq what
'add
) 'gnus-range-add
933 'gnus-remove-from-range
)
934 (cdr (assoc mark nnml-marks
)) range
)
936 (nnml-save-marks group server
))
939 (deffoo nnml-request-update-info
(group info
&optional server
)
940 (nnml-possibly-change-directory group server
)
941 (when (and (not nnml-marks-is-evil
) (nnml-marks-changed-p group
))
942 (nnheader-message 8 "Updating marks for %s..." group
)
943 (nnml-open-marks group server
)
944 ;; Update info using `nnml-marks'.
945 (mapcar (lambda (pred)
946 (unless (memq (cdr pred
) gnus-article-unpropagated-mark-lists
)
949 (gnus-update-alist-soft
951 (cdr (assq (cdr pred
) nnml-marks
))
952 (gnus-info-marks info
))
954 gnus-article-mark-lists
)
955 (let ((seen (cdr (assq 'read nnml-marks
))))
956 (gnus-info-set-read info
957 (if (and (integerp (car seen
))
959 (list (cons (car seen
) (car seen
)))
961 (nnheader-message 8 "Updating marks for %s...done" group
))
964 (defun nnml-marks-changed-p (group)
965 (let ((file (expand-file-name nnml-marks-file-name
966 (nnmail-group-pathname group nnml-directory
))))
967 (if (null (gnus-gethash file nnml-marks-modtime
))
968 t
;; never looked at marks file, assume it has changed
969 (not (equal (gnus-gethash file nnml-marks-modtime
)
970 (nth 5 (file-attributes file
)))))))
972 (defun nnml-save-marks (group server
)
973 (let ((file-name-coding-system nnmail-pathname-coding-system
)
974 (file (expand-file-name nnml-marks-file-name
975 (nnmail-group-pathname group nnml-directory
))))
978 (nnml-possibly-create-directory group
)
981 (gnus-prin1 nnml-marks
)
984 (nth 5 (file-attributes file
))
986 (error (or (gnus-yes-or-no-p
987 (format "Could not write to %s (%s). Continue? " file err
))
988 (error "Cannot write to %s (%s)" file err
))))))
990 (defun nnml-open-marks (group server
)
991 (let ((file (expand-file-name
993 (nnmail-group-pathname group nnml-directory
))))
994 (if (file-exists-p file
)
997 (gnus-sethash file
(nth 5 (file-attributes file
))
999 (nnheader-insert-file-contents file
)
1000 (setq nnml-marks
(read (current-buffer)))
1001 (dolist (el gnus-article-unpropagated-mark-lists
)
1002 (setq nnml-marks
(gnus-remassoc el nnml-marks
))))
1003 (error (or (gnus-yes-or-no-p
1004 (format "Error reading nnml marks file %s (%s). Continuing will use marks from .newsrc.eld. Continue? " file err
))
1005 (error "Cannot read nnml marks file %s (%s)" file err
))))
1006 ;; User didn't have a .marks file. Probably first time
1007 ;; user of the .marks stuff. Bootstrap it from .newsrc.eld.
1008 (let ((info (gnus-get-info
1009 (gnus-group-prefixed-name
1011 (gnus-server-to-method (format "nnml:%s" server
))))))
1012 (nnheader-message 7 "Bootstrapping marks for %s..." group
)
1013 (setq nnml-marks
(gnus-info-marks info
))
1014 (push (cons 'read
(gnus-info-read info
)) nnml-marks
)
1015 (dolist (el gnus-article-unpropagated-mark-lists
)
1016 (setq nnml-marks
(gnus-remassoc el nnml-marks
)))
1017 (nnml-save-marks group server
)
1018 (nnheader-message 7 "Bootstrapping marks for %s...done" group
)))))
1022 ;;; arch-tag: 52c97dc3-9735-45de-b439-9e4d23b52004
1023 ;;; nnml.el ends here