17493
|
1 ;;; nnml.el --- mail spool access for Gnus
|
|
2 ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc.
|
|
3
|
|
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
|
|
5 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
|
|
6 ;; Keywords: news, mail
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; Based on nnspool.el by Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>.
|
|
28 ;; For an overview of what the interface functions do, please see the
|
|
29 ;; Gnus sources.
|
|
30
|
|
31 ;;; Code:
|
|
32
|
|
33 (require 'nnheader)
|
|
34 (require 'nnmail)
|
|
35 (require 'nnoo)
|
|
36 (require 'cl)
|
|
37
|
|
38 (nnoo-declare nnml)
|
|
39
|
|
40 (defvoo nnml-directory message-directory
|
|
41 "Mail spool directory.")
|
|
42
|
|
43 (defvoo nnml-active-file
|
|
44 (concat (file-name-as-directory nnml-directory) "active")
|
|
45 "Mail active file.")
|
|
46
|
|
47 (defvoo nnml-newsgroups-file
|
|
48 (concat (file-name-as-directory nnml-directory) "newsgroups")
|
|
49 "Mail newsgroups description file.")
|
|
50
|
|
51 (defvoo nnml-get-new-mail t
|
|
52 "If non-nil, nnml will check the incoming mail file and split the mail.")
|
|
53
|
|
54 (defvoo nnml-nov-is-evil nil
|
|
55 "If non-nil, Gnus will never generate and use nov databases for mail groups.
|
|
56 Using nov databases will speed up header fetching considerably.
|
|
57 This variable shouldn't be flipped much. If you have, for some reason,
|
|
58 set this to t, and want to set it to nil again, you should always run
|
|
59 the `nnml-generate-nov-databases' command. The function will go
|
|
60 through all nnml directories and generate nov databases for them
|
|
61 all. This may very well take some time.")
|
|
62
|
|
63 (defvoo nnml-prepare-save-mail-hook nil
|
|
64 "Hook run narrowed to an article before saving.")
|
|
65
|
|
66 (defvoo nnml-inhibit-expiry nil
|
|
67 "If non-nil, inhibit expiry.")
|
|
68
|
|
69
|
|
70
|
|
71
|
|
72 (defconst nnml-version "nnml 1.0"
|
|
73 "nnml version.")
|
|
74
|
|
75 (defvoo nnml-nov-file-name ".overview")
|
|
76
|
|
77 (defvoo nnml-current-directory nil)
|
|
78 (defvoo nnml-current-group nil)
|
|
79 (defvoo nnml-status-string "")
|
|
80 (defvoo nnml-nov-buffer-alist nil)
|
|
81 (defvoo nnml-group-alist nil)
|
|
82 (defvoo nnml-active-timestamp nil)
|
|
83 (defvoo nnml-article-file-alist nil)
|
|
84
|
|
85 (defvoo nnml-generate-active-function 'nnml-generate-active-info)
|
|
86
|
|
87
|
|
88
|
|
89 ;;; Interface functions.
|
|
90
|
|
91 (nnoo-define-basics nnml)
|
|
92
|
|
93 (deffoo nnml-retrieve-headers (sequence &optional group server fetch-old)
|
|
94 (when (nnml-possibly-change-directory group server)
|
|
95 (save-excursion
|
|
96 (set-buffer nntp-server-buffer)
|
|
97 (erase-buffer)
|
|
98 (let ((file nil)
|
|
99 (number (length sequence))
|
|
100 (count 0)
|
|
101 beg article)
|
|
102 (if (stringp (car sequence))
|
|
103 'headers
|
|
104 (if (nnml-retrieve-headers-with-nov sequence fetch-old)
|
|
105 'nov
|
|
106 (while sequence
|
|
107 (setq article (car sequence))
|
|
108 (setq file (nnml-article-to-file article))
|
|
109 (when (and file
|
|
110 (file-exists-p file)
|
|
111 (not (file-directory-p file)))
|
|
112 (insert (format "221 %d Article retrieved.\n" article))
|
|
113 (setq beg (point))
|
|
114 (nnheader-insert-head file)
|
|
115 (goto-char beg)
|
|
116 (if (search-forward "\n\n" nil t)
|
|
117 (forward-char -1)
|
|
118 (goto-char (point-max))
|
|
119 (insert "\n\n"))
|
|
120 (insert ".\n")
|
|
121 (delete-region (point) (point-max)))
|
|
122 (setq sequence (cdr sequence))
|
|
123 (setq count (1+ count))
|
|
124 (and (numberp nnmail-large-newsgroup)
|
|
125 (> number nnmail-large-newsgroup)
|
|
126 (zerop (% count 20))
|
|
127 (nnheader-message 6 "nnml: Receiving headers... %d%%"
|
|
128 (/ (* count 100) number))))
|
|
129
|
|
130 (and (numberp nnmail-large-newsgroup)
|
|
131 (> number nnmail-large-newsgroup)
|
|
132 (nnheader-message 6 "nnml: Receiving headers...done"))
|
|
133
|
|
134 (nnheader-fold-continuation-lines)
|
|
135 'headers))))))
|
|
136
|
|
137 (deffoo nnml-open-server (server &optional defs)
|
|
138 (nnoo-change-server 'nnml server defs)
|
|
139 (when (not (file-exists-p nnml-directory))
|
|
140 (condition-case ()
|
|
141 (make-directory nnml-directory t)
|
|
142 (error)))
|
|
143 (cond
|
|
144 ((not (file-exists-p nnml-directory))
|
|
145 (nnml-close-server)
|
|
146 (nnheader-report 'nnml "Couldn't create directory: %s" nnml-directory))
|
|
147 ((not (file-directory-p (file-truename nnml-directory)))
|
|
148 (nnml-close-server)
|
|
149 (nnheader-report 'nnml "Not a directory: %s" nnml-directory))
|
|
150 (t
|
|
151 (nnheader-report 'nnml "Opened server %s using directory %s"
|
|
152 server nnml-directory)
|
|
153 t)))
|
|
154
|
|
155 (defun nnml-request-regenerate (server)
|
|
156 (nnml-possibly-change-directory nil server)
|
|
157 (nnml-generate-nov-databases)
|
|
158 t)
|
|
159
|
|
160 (deffoo nnml-request-article (id &optional group server buffer)
|
|
161 (nnml-possibly-change-directory group server)
|
|
162 (let* ((nntp-server-buffer (or buffer nntp-server-buffer))
|
|
163 path gpath group-num)
|
|
164 (if (stringp id)
|
|
165 (when (and (setq group-num (nnml-find-group-number id))
|
|
166 (cdr
|
|
167 (assq (cdr group-num)
|
|
168 (nnheader-article-to-file-alist
|
|
169 (setq gpath
|
|
170 (nnmail-group-pathname
|
|
171 (car group-num)
|
|
172 nnml-directory))))))
|
|
173 (setq path (concat gpath (int-to-string (cdr group-num)))))
|
|
174 (setq path (nnml-article-to-file id)))
|
|
175 (cond
|
|
176 ((not path)
|
|
177 (nnheader-report 'nnml "No such article: %s" id))
|
|
178 ((not (file-exists-p path))
|
|
179 (nnheader-report 'nnml "No such file: %s" path))
|
|
180 ((file-directory-p path)
|
|
181 (nnheader-report 'nnml "File is a directory: %s" path))
|
|
182 ((not (save-excursion (nnmail-find-file path)))
|
|
183 (nnheader-report 'nnml "Couldn't read file: %s" path))
|
|
184 (t
|
|
185 (nnheader-report 'nnml "Article %s retrieved" id)
|
|
186 ;; We return the article number.
|
|
187 (cons (if group-num (car group-num) group)
|
|
188 (string-to-int (file-name-nondirectory path)))))))
|
|
189
|
|
190 (deffoo nnml-request-group (group &optional server dont-check)
|
|
191 (cond
|
|
192 ((not (nnml-possibly-change-directory group server))
|
|
193 (nnheader-report 'nnml "Invalid group (no such directory)"))
|
|
194 ((not (file-exists-p nnml-current-directory))
|
|
195 (nnheader-report 'nnml "Directory %s does not exist"
|
|
196 nnml-current-directory))
|
|
197 ((not (file-directory-p nnml-current-directory))
|
|
198 (nnheader-report 'nnml "%s is not a directory" nnml-current-directory))
|
|
199 (dont-check
|
|
200 (nnheader-report 'nnml "Group %s selected" group)
|
|
201 t)
|
|
202 (t
|
|
203 (nnheader-re-read-dir nnml-current-directory)
|
|
204 (nnmail-activate 'nnml)
|
|
205 (let ((active (nth 1 (assoc group nnml-group-alist))))
|
|
206 (if (not active)
|
|
207 (nnheader-report 'nnml "No such group: %s" group)
|
|
208 (nnheader-report 'nnml "Selected group %s" group)
|
|
209 (nnheader-insert "211 %d %d %d %s\n"
|
|
210 (max (1+ (- (cdr active) (car active))) 0)
|
|
211 (car active) (cdr active) group))))))
|
|
212
|
|
213 (deffoo nnml-request-scan (&optional group server)
|
|
214 (setq nnml-article-file-alist nil)
|
|
215 (nnml-possibly-change-directory group server)
|
|
216 (nnmail-get-new-mail 'nnml 'nnml-save-nov nnml-directory group))
|
|
217
|
|
218 (deffoo nnml-close-group (group &optional server)
|
|
219 (setq nnml-article-file-alist nil)
|
|
220 t)
|
|
221
|
|
222 (deffoo nnml-request-create-group (group &optional server args)
|
|
223 (nnmail-activate 'nnml)
|
|
224 (unless (assoc group nnml-group-alist)
|
|
225 (let (active)
|
|
226 (push (list group (setq active (cons 1 0)))
|
|
227 nnml-group-alist)
|
|
228 (nnml-possibly-create-directory group)
|
|
229 (nnml-possibly-change-directory group server)
|
|
230 (let ((articles (nnheader-directory-articles nnml-current-directory)))
|
|
231 (when articles
|
|
232 (setcar active (apply 'min articles))
|
|
233 (setcdr active (apply 'max articles))))
|
|
234 (nnmail-save-active nnml-group-alist nnml-active-file)))
|
|
235 t)
|
|
236
|
|
237 (deffoo nnml-request-list (&optional server)
|
|
238 (save-excursion
|
|
239 (nnmail-find-file nnml-active-file)
|
|
240 (setq nnml-group-alist (nnmail-get-active))
|
|
241 t))
|
|
242
|
|
243 (deffoo nnml-request-newgroups (date &optional server)
|
|
244 (nnml-request-list server))
|
|
245
|
|
246 (deffoo nnml-request-list-newsgroups (&optional server)
|
|
247 (save-excursion
|
|
248 (nnmail-find-file nnml-newsgroups-file)))
|
|
249
|
|
250 (deffoo nnml-request-expire-articles (articles group
|
|
251 &optional server force)
|
|
252 (nnml-possibly-change-directory group server)
|
|
253 (let* ((active-articles
|
|
254 (nnheader-directory-articles nnml-current-directory))
|
|
255 (is-old t)
|
|
256 article rest mod-time number)
|
|
257 (nnmail-activate 'nnml)
|
|
258
|
|
259 (while (and articles is-old)
|
|
260 (when (setq article (nnml-article-to-file (setq number (pop articles))))
|
|
261 (when (setq mod-time (nth 5 (file-attributes article)))
|
|
262 (if (and (nnml-deletable-article-p group number)
|
|
263 (setq is-old
|
|
264 (nnmail-expired-article-p group mod-time force
|
|
265 nnml-inhibit-expiry)))
|
|
266 (progn
|
|
267 (nnheader-message 5 "Deleting article %s in %s"
|
|
268 article group)
|
|
269 (condition-case ()
|
|
270 (funcall nnmail-delete-file-function article)
|
|
271 (file-error
|
|
272 (push number rest)))
|
|
273 (setq active-articles (delq number active-articles))
|
|
274 (nnml-nov-delete-article group number))
|
|
275 (push number rest)))))
|
|
276 (let ((active (nth 1 (assoc group nnml-group-alist))))
|
|
277 (when active
|
|
278 (setcar active (or (and active-articles
|
|
279 (apply 'min active-articles))
|
|
280 (1+ (cdr active)))))
|
|
281 (nnmail-save-active nnml-group-alist nnml-active-file))
|
|
282 (nnml-save-nov)
|
|
283 (nconc rest articles)))
|
|
284
|
|
285 (deffoo nnml-request-move-article
|
|
286 (article group server accept-form &optional last)
|
|
287 (let ((buf (get-buffer-create " *nnml move*"))
|
|
288 result)
|
|
289 (nnml-possibly-change-directory group server)
|
|
290 (nnml-update-file-alist)
|
|
291 (and
|
|
292 (nnml-deletable-article-p group article)
|
|
293 (nnml-request-article article group server)
|
|
294 (save-excursion
|
|
295 (set-buffer buf)
|
|
296 (insert-buffer-substring nntp-server-buffer)
|
|
297 (setq result (eval accept-form))
|
|
298 (kill-buffer (current-buffer))
|
|
299 result)
|
|
300 (progn
|
|
301 (nnml-possibly-change-directory group server)
|
|
302 (condition-case ()
|
|
303 (funcall nnmail-delete-file-function
|
|
304 (nnml-article-to-file article))
|
|
305 (file-error nil))
|
|
306 (nnml-nov-delete-article group article)
|
|
307 (when last
|
|
308 (nnml-save-nov)
|
|
309 (nnmail-save-active nnml-group-alist nnml-active-file))))
|
|
310 result))
|
|
311
|
|
312 (deffoo nnml-request-accept-article (group &optional server last)
|
|
313 (nnml-possibly-change-directory group server)
|
|
314 (nnmail-check-syntax)
|
|
315 (let (result)
|
|
316 (when nnmail-cache-accepted-message-ids
|
|
317 (nnmail-cache-insert (nnmail-fetch-field "message-id")))
|
|
318 (if (stringp group)
|
|
319 (and
|
|
320 (nnmail-activate 'nnml)
|
|
321 (setq result (car (nnml-save-mail
|
|
322 (list (cons group (nnml-active-number group))))))
|
|
323 (progn
|
|
324 (nnmail-save-active nnml-group-alist nnml-active-file)
|
|
325 (and last (nnml-save-nov))))
|
|
326 (and
|
|
327 (nnmail-activate 'nnml)
|
|
328 (if (and (not (setq result (nnmail-article-group 'nnml-active-number)))
|
|
329 (yes-or-no-p "Moved to `junk' group; delete article? "))
|
|
330 (setq result 'junk)
|
|
331 (setq result (car (nnml-save-mail result))))
|
|
332 (when last
|
|
333 (nnmail-save-active nnml-group-alist nnml-active-file)
|
|
334 (when nnmail-cache-accepted-message-ids
|
|
335 (nnmail-cache-close))
|
|
336 (nnml-save-nov))))
|
|
337 result))
|
|
338
|
|
339 (deffoo nnml-request-replace-article (article group buffer)
|
|
340 (nnml-possibly-change-directory group)
|
|
341 (save-excursion
|
|
342 (set-buffer buffer)
|
|
343 (nnml-possibly-create-directory group)
|
|
344 (let ((chars (nnmail-insert-lines))
|
|
345 (art (concat (int-to-string article) "\t"))
|
|
346 headers)
|
|
347 (when (condition-case ()
|
|
348 (progn
|
|
349 (nnmail-write-region
|
|
350 (point-min) (point-max)
|
|
351 (or (nnml-article-to-file article)
|
|
352 (concat nnml-current-directory
|
|
353 (int-to-string article)))
|
|
354 nil (if (nnheader-be-verbose 5) nil 'nomesg))
|
|
355 t)
|
|
356 (error nil))
|
|
357 (setq headers (nnml-parse-head chars article))
|
|
358 ;; Replace the NOV line in the NOV file.
|
|
359 (save-excursion
|
|
360 (set-buffer (nnml-open-nov group))
|
|
361 (goto-char (point-min))
|
|
362 (if (or (looking-at art)
|
|
363 (search-forward (concat "\n" art) nil t))
|
|
364 ;; Delete the old NOV line.
|
|
365 (delete-region (progn (beginning-of-line) (point))
|
|
366 (progn (forward-line 1) (point)))
|
|
367 ;; The line isn't here, so we have to find out where
|
|
368 ;; we should insert it. (This situation should never
|
|
369 ;; occur, but one likes to make sure...)
|
|
370 (while (and (looking-at "[0-9]+\t")
|
|
371 (< (string-to-int
|
|
372 (buffer-substring
|
|
373 (match-beginning 0) (match-end 0)))
|
|
374 article)
|
|
375 (zerop (forward-line 1)))))
|
|
376 (beginning-of-line)
|
|
377 (nnheader-insert-nov headers)
|
|
378 (nnml-save-nov)
|
|
379 t)))))
|
|
380
|
|
381 (deffoo nnml-request-delete-group (group &optional force server)
|
|
382 (nnml-possibly-change-directory group server)
|
|
383 (when force
|
|
384 ;; Delete all articles in GROUP.
|
|
385 (let ((articles
|
|
386 (directory-files
|
|
387 nnml-current-directory t
|
|
388 (concat nnheader-numerical-short-files
|
|
389 "\\|" (regexp-quote nnml-nov-file-name) "$")))
|
|
390 article)
|
|
391 (while articles
|
|
392 (setq article (pop articles))
|
|
393 (when (file-writable-p article)
|
|
394 (nnheader-message 5 "Deleting article %s in %s..." article group)
|
|
395 (funcall nnmail-delete-file-function article))))
|
|
396 ;; Try to delete the directory itself.
|
|
397 (condition-case ()
|
|
398 (delete-directory nnml-current-directory)
|
|
399 (error nil)))
|
|
400 ;; Remove the group from all structures.
|
|
401 (setq nnml-group-alist
|
|
402 (delq (assoc group nnml-group-alist) nnml-group-alist)
|
|
403 nnml-current-group nil
|
|
404 nnml-current-directory nil)
|
|
405 ;; Save the active file.
|
|
406 (nnmail-save-active nnml-group-alist nnml-active-file)
|
|
407 t)
|
|
408
|
|
409 (deffoo nnml-request-rename-group (group new-name &optional server)
|
|
410 (nnml-possibly-change-directory group server)
|
|
411 (let ((new-dir (nnmail-group-pathname new-name nnml-directory))
|
|
412 (old-dir (nnmail-group-pathname group nnml-directory)))
|
|
413 (when (condition-case ()
|
|
414 (progn
|
|
415 (make-directory new-dir t)
|
|
416 t)
|
|
417 (error nil))
|
|
418 ;; We move the articles file by file instead of renaming
|
|
419 ;; the directory -- there may be subgroups in this group.
|
|
420 ;; One might be more clever, I guess.
|
|
421 (let ((files (nnheader-article-to-file-alist old-dir)))
|
|
422 (while files
|
|
423 (rename-file
|
|
424 (concat old-dir (cdar files))
|
|
425 (concat new-dir (cdar files)))
|
|
426 (pop files)))
|
|
427 ;; Move .overview file.
|
|
428 (let ((overview (concat old-dir nnml-nov-file-name)))
|
|
429 (when (file-exists-p overview)
|
|
430 (rename-file overview (concat new-dir nnml-nov-file-name))))
|
|
431 (when (<= (length (directory-files old-dir)) 2)
|
|
432 (condition-case ()
|
|
433 (delete-directory old-dir)
|
|
434 (error nil)))
|
|
435 ;; That went ok, so we change the internal structures.
|
|
436 (let ((entry (assoc group nnml-group-alist)))
|
|
437 (when entry
|
|
438 (setcar entry new-name))
|
|
439 (setq nnml-current-directory nil
|
|
440 nnml-current-group nil)
|
|
441 ;; Save the new group alist.
|
|
442 (nnmail-save-active nnml-group-alist nnml-active-file)
|
|
443 t))))
|
|
444
|
|
445 (deffoo nnml-set-status (article name value &optional group server)
|
|
446 (nnml-possibly-change-directory group server)
|
|
447 (let ((file (nnml-article-to-file article)))
|
|
448 (cond
|
|
449 ((not (file-exists-p file))
|
|
450 (nnheader-report 'nnml "File %s does not exist" file))
|
|
451 (t
|
|
452 (nnheader-temp-write file
|
|
453 (nnheader-insert-file-contents file)
|
|
454 (nnmail-replace-status name value))
|
|
455 t))))
|
|
456
|
|
457
|
|
458 ;;; Internal functions.
|
|
459
|
|
460 (defun nnml-article-to-file (article)
|
|
461 (nnml-update-file-alist)
|
|
462 (let (file)
|
|
463 (when (setq file (cdr (assq article nnml-article-file-alist)))
|
|
464 (concat nnml-current-directory file))))
|
|
465
|
|
466 (defun nnml-deletable-article-p (group article)
|
|
467 "Say whether ARTICLE in GROUP can be deleted."
|
|
468 (let (path)
|
|
469 (when (setq path (nnml-article-to-file article))
|
|
470 (when (file-writable-p path)
|
|
471 (or (not nnmail-keep-last-article)
|
|
472 (not (eq (cdr (nth 1 (assoc group nnml-group-alist)))
|
|
473 article)))))))
|
|
474
|
|
475 ;; Find an article number in the current group given the Message-ID.
|
|
476 (defun nnml-find-group-number (id)
|
|
477 (save-excursion
|
|
478 (set-buffer (get-buffer-create " *nnml id*"))
|
|
479 (buffer-disable-undo (current-buffer))
|
|
480 (let ((alist nnml-group-alist)
|
|
481 number)
|
|
482 ;; We want to look through all .overview files, but we want to
|
|
483 ;; start with the one in the current directory. It seems most
|
|
484 ;; likely that the article we are looking for is in that group.
|
|
485 (if (setq number (nnml-find-id nnml-current-group id))
|
|
486 (cons nnml-current-group number)
|
|
487 ;; It wasn't there, so we look through the other groups as well.
|
|
488 (while (and (not number)
|
|
489 alist)
|
|
490 (or (string= (caar alist) nnml-current-group)
|
|
491 (setq number (nnml-find-id (caar alist) id)))
|
|
492 (or number
|
|
493 (setq alist (cdr alist))))
|
|
494 (and number
|
|
495 (cons (caar alist) number))))))
|
|
496
|
|
497 (defun nnml-find-id (group id)
|
|
498 (erase-buffer)
|
|
499 (let ((nov (concat (nnmail-group-pathname group nnml-directory)
|
|
500 nnml-nov-file-name))
|
|
501 number found)
|
|
502 (when (file-exists-p nov)
|
|
503 (nnheader-insert-file-contents nov)
|
|
504 (while (and (not found)
|
|
505 (search-forward id nil t)) ; We find the ID.
|
|
506 ;; And the id is in the fourth field.
|
|
507 (if (not (and (search-backward "\t" nil t 4)
|
|
508 (not (search-backward"\t" (gnus-point-at-bol) t))))
|
|
509 (forward-line 1)
|
|
510 (beginning-of-line)
|
|
511 (setq found t)
|
|
512 ;; We return the article number.
|
|
513 (setq number
|
|
514 (condition-case ()
|
|
515 (read (current-buffer))
|
|
516 (error nil)))))
|
|
517 number)))
|
|
518
|
|
519 (defun nnml-retrieve-headers-with-nov (articles &optional fetch-old)
|
|
520 (if (or gnus-nov-is-evil nnml-nov-is-evil)
|
|
521 nil
|
|
522 (let ((nov (concat nnml-current-directory nnml-nov-file-name)))
|
|
523 (when (file-exists-p nov)
|
|
524 (save-excursion
|
|
525 (set-buffer nntp-server-buffer)
|
|
526 (erase-buffer)
|
|
527 (nnheader-insert-file-contents nov)
|
|
528 (if (and fetch-old
|
|
529 (not (numberp fetch-old)))
|
|
530 t ; Don't remove anything.
|
|
531 (nnheader-nov-delete-outside-range
|
|
532 (if fetch-old (max 1 (- (car articles) fetch-old))
|
|
533 (car articles))
|
|
534 (car (last articles)))
|
|
535 t))))))
|
|
536
|
|
537 (defun nnml-possibly-change-directory (group &optional server)
|
|
538 (when (and server
|
|
539 (not (nnml-server-opened server)))
|
|
540 (nnml-open-server server))
|
|
541 (if (not group)
|
|
542 t
|
|
543 (let ((pathname (nnmail-group-pathname group nnml-directory)))
|
|
544 (when (not (equal pathname nnml-current-directory))
|
|
545 (setq nnml-current-directory pathname
|
|
546 nnml-current-group group
|
|
547 nnml-article-file-alist nil))
|
|
548 (file-exists-p nnml-current-directory))))
|
|
549
|
|
550 (defun nnml-possibly-create-directory (group)
|
|
551 (let (dir dirs)
|
|
552 (setq dir (nnmail-group-pathname group nnml-directory))
|
|
553 (while (not (file-directory-p dir))
|
|
554 (push dir dirs)
|
|
555 (setq dir (file-name-directory (directory-file-name dir))))
|
|
556 (while dirs
|
|
557 (make-directory (directory-file-name (car dirs)))
|
|
558 (nnheader-message 5 "Creating mail directory %s" (car dirs))
|
|
559 (setq dirs (cdr dirs)))))
|
|
560
|
|
561 (defun nnml-save-mail (group-art)
|
|
562 "Called narrowed to an article."
|
|
563 (let (chars headers)
|
|
564 (setq chars (nnmail-insert-lines))
|
|
565 (nnmail-insert-xref group-art)
|
|
566 (run-hooks 'nnmail-prepare-save-mail-hook)
|
|
567 (run-hooks 'nnml-prepare-save-mail-hook)
|
|
568 (goto-char (point-min))
|
|
569 (while (looking-at "From ")
|
|
570 (replace-match "X-From-Line: ")
|
|
571 (forward-line 1))
|
|
572 ;; We save the article in all the groups it belongs in.
|
|
573 (let ((ga group-art)
|
|
574 first)
|
|
575 (while ga
|
|
576 (nnml-possibly-create-directory (caar ga))
|
|
577 (let ((file (concat (nnmail-group-pathname
|
|
578 (caar ga) nnml-directory)
|
|
579 (int-to-string (cdar ga)))))
|
|
580 (if first
|
|
581 ;; It was already saved, so we just make a hard link.
|
|
582 (funcall nnmail-crosspost-link-function first file t)
|
|
583 ;; Save the article.
|
|
584 (nnmail-write-region (point-min) (point-max) file nil
|
|
585 (if (nnheader-be-verbose 5) nil 'nomesg))
|
|
586 (setq first file)))
|
|
587 (setq ga (cdr ga))))
|
|
588 ;; Generate a nov line for this article. We generate the nov
|
|
589 ;; line after saving, because nov generation destroys the
|
|
590 ;; header.
|
|
591 (setq headers (nnml-parse-head chars))
|
|
592 ;; Output the nov line to all nov databases that should have it.
|
|
593 (let ((ga group-art))
|
|
594 (while ga
|
|
595 (nnml-add-nov (caar ga) (cdar ga) headers)
|
|
596 (setq ga (cdr ga))))
|
|
597 group-art))
|
|
598
|
|
599 (defun nnml-active-number (group)
|
|
600 "Compute the next article number in GROUP."
|
|
601 (let ((active (cadr (assoc group nnml-group-alist))))
|
|
602 ;; The group wasn't known to nnml, so we just create an active
|
|
603 ;; entry for it.
|
|
604 (unless active
|
|
605 ;; Perhaps the active file was corrupt? See whether
|
|
606 ;; there are any articles in this group.
|
|
607 (nnml-possibly-create-directory group)
|
|
608 (nnml-possibly-change-directory group)
|
|
609 (unless nnml-article-file-alist
|
|
610 (setq nnml-article-file-alist
|
|
611 (sort
|
|
612 (nnheader-article-to-file-alist nnml-current-directory)
|
|
613 (lambda (a1 a2) (< (car a1) (car a2))))))
|
|
614 (setq active
|
|
615 (if nnml-article-file-alist
|
|
616 (cons (caar nnml-article-file-alist)
|
|
617 (caar (last nnml-article-file-alist)))
|
|
618 (cons 1 0)))
|
|
619 (push (list group active) nnml-group-alist))
|
|
620 (setcdr active (1+ (cdr active)))
|
|
621 (while (file-exists-p
|
|
622 (concat (nnmail-group-pathname group nnml-directory)
|
|
623 (int-to-string (cdr active))))
|
|
624 (setcdr active (1+ (cdr active))))
|
|
625 (cdr active)))
|
|
626
|
|
627 (defun nnml-add-nov (group article headers)
|
|
628 "Add a nov line for the GROUP base."
|
|
629 (save-excursion
|
|
630 (set-buffer (nnml-open-nov group))
|
|
631 (goto-char (point-max))
|
|
632 (mail-header-set-number headers article)
|
|
633 (nnheader-insert-nov headers)))
|
|
634
|
|
635 (defsubst nnml-header-value ()
|
|
636 (buffer-substring (match-end 0) (progn (end-of-line) (point))))
|
|
637
|
|
638 (defun nnml-parse-head (chars &optional number)
|
|
639 "Parse the head of the current buffer."
|
|
640 (save-excursion
|
|
641 (save-restriction
|
|
642 (goto-char (point-min))
|
|
643 (narrow-to-region
|
|
644 (point)
|
|
645 (1- (or (search-forward "\n\n" nil t) (point-max))))
|
|
646 ;; Fold continuation lines.
|
|
647 (goto-char (point-min))
|
|
648 (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t)
|
|
649 (replace-match " " t t))
|
|
650 ;; Remove any tabs; they are too confusing.
|
|
651 (subst-char-in-region (point-min) (point-max) ?\t ? )
|
|
652 (let ((headers (nnheader-parse-head t)))
|
|
653 (mail-header-set-chars headers chars)
|
|
654 (mail-header-set-number headers number)
|
|
655 headers))))
|
|
656
|
|
657 (defun nnml-open-nov (group)
|
|
658 (or (cdr (assoc group nnml-nov-buffer-alist))
|
|
659 (let ((buffer (nnheader-find-file-noselect
|
|
660 (concat (nnmail-group-pathname group nnml-directory)
|
|
661 nnml-nov-file-name))))
|
|
662 (save-excursion
|
|
663 (set-buffer buffer)
|
|
664 (buffer-disable-undo (current-buffer)))
|
|
665 (push (cons group buffer) nnml-nov-buffer-alist)
|
|
666 buffer)))
|
|
667
|
|
668 (defun nnml-save-nov ()
|
|
669 (save-excursion
|
|
670 (while nnml-nov-buffer-alist
|
|
671 (when (buffer-name (cdar nnml-nov-buffer-alist))
|
|
672 (set-buffer (cdar nnml-nov-buffer-alist))
|
|
673 (when (buffer-modified-p)
|
|
674 (nnmail-write-region 1 (point-max) (buffer-file-name) nil 'nomesg))
|
|
675 (set-buffer-modified-p nil)
|
|
676 (kill-buffer (current-buffer)))
|
|
677 (setq nnml-nov-buffer-alist (cdr nnml-nov-buffer-alist)))))
|
|
678
|
|
679 ;;;###autoload
|
|
680 (defun nnml-generate-nov-databases ()
|
|
681 "Generate NOV databases in all nnml directories."
|
|
682 (interactive)
|
|
683 ;; Read the active file to make sure we don't re-use articles
|
|
684 ;; numbers in empty groups.
|
|
685 (nnmail-activate 'nnml)
|
|
686 (nnml-open-server (or (nnoo-current-server 'nnml) ""))
|
|
687 (setq nnml-directory (expand-file-name nnml-directory))
|
|
688 ;; Recurse down the directories.
|
|
689 (nnml-generate-nov-databases-1 nnml-directory nil t)
|
|
690 ;; Save the active file.
|
|
691 (nnmail-save-active nnml-group-alist nnml-active-file))
|
|
692
|
|
693 (defun nnml-generate-nov-databases-1 (dir &optional seen no-active)
|
|
694 "Regenerate the NOV database in DIR."
|
|
695 (interactive "DRegenerate NOV in: ")
|
|
696 (setq dir (file-name-as-directory dir))
|
|
697 ;; Only scan this sub-tree if we haven't been here yet.
|
|
698 (unless (member (file-truename dir) seen)
|
|
699 (push (file-truename dir) seen)
|
|
700 ;; We descend recursively
|
|
701 (let ((dirs (directory-files dir t nil t))
|
|
702 dir)
|
|
703 (while (setq dir (pop dirs))
|
|
704 (when (and (not (member (file-name-nondirectory dir) '("." "..")))
|
|
705 (file-directory-p dir))
|
|
706 (nnml-generate-nov-databases-1 dir seen))))
|
|
707 ;; Do this directory.
|
|
708 (let ((files (sort (nnheader-article-to-file-alist dir)
|
|
709 (lambda (a b) (< (car a) (car b))))))
|
|
710 (when files
|
|
711 (funcall nnml-generate-active-function dir)
|
|
712 ;; Generate the nov file.
|
|
713 (nnml-generate-nov-file dir files)
|
|
714 (unless no-active
|
|
715 (nnmail-save-active nnml-group-alist nnml-active-file))))))
|
|
716
|
|
717 (defvar files)
|
|
718 (defun nnml-generate-active-info (dir)
|
|
719 ;; Update the active info for this group.
|
|
720 (let ((group (nnheader-file-to-group
|
|
721 (directory-file-name dir) nnml-directory)))
|
|
722 (setq nnml-group-alist
|
|
723 (delq (assoc group nnml-group-alist) nnml-group-alist))
|
|
724 (push (list group
|
|
725 (cons (caar files)
|
|
726 (let ((f files))
|
|
727 (while (cdr f) (setq f (cdr f)))
|
|
728 (caar f))))
|
|
729 nnml-group-alist)))
|
|
730
|
|
731 (defun nnml-generate-nov-file (dir files)
|
|
732 (let* ((dir (file-name-as-directory dir))
|
|
733 (nov (concat dir nnml-nov-file-name))
|
|
734 (nov-buffer (get-buffer-create " *nov*"))
|
|
735 chars file headers)
|
|
736 (save-excursion
|
|
737 ;; Init the nov buffer.
|
|
738 (set-buffer nov-buffer)
|
|
739 (buffer-disable-undo (current-buffer))
|
|
740 (erase-buffer)
|
|
741 (set-buffer nntp-server-buffer)
|
|
742 ;; Delete the old NOV file.
|
|
743 (when (file-exists-p nov)
|
|
744 (funcall nnmail-delete-file-function nov))
|
|
745 (while files
|
|
746 (unless (file-directory-p (setq file (concat dir (cdar files))))
|
|
747 (erase-buffer)
|
|
748 (nnheader-insert-file-contents file)
|
|
749 (narrow-to-region
|
|
750 (goto-char (point-min))
|
|
751 (progn
|
|
752 (search-forward "\n\n" nil t)
|
|
753 (setq chars (- (point-max) (point)))
|
|
754 (max 1 (1- (point)))))
|
|
755 (when (and (not (= 0 chars)) ; none of them empty files...
|
|
756 (not (= (point-min) (point-max))))
|
|
757 (goto-char (point-min))
|
|
758 (setq headers (nnml-parse-head chars (caar files)))
|
|
759 (save-excursion
|
|
760 (set-buffer nov-buffer)
|
|
761 (goto-char (point-max))
|
|
762 (nnheader-insert-nov headers)))
|
|
763 (widen))
|
|
764 (setq files (cdr files)))
|
|
765 (save-excursion
|
|
766 (set-buffer nov-buffer)
|
|
767 (nnmail-write-region 1 (point-max) nov nil 'nomesg)
|
|
768 (kill-buffer (current-buffer))))))
|
|
769
|
|
770 (defun nnml-nov-delete-article (group article)
|
|
771 (save-excursion
|
|
772 (set-buffer (nnml-open-nov group))
|
|
773 (when (nnheader-find-nov-line article)
|
|
774 (delete-region (point) (progn (forward-line 1) (point)))
|
|
775 (when (bobp)
|
|
776 (let ((active (cadr (assoc group nnml-group-alist)))
|
|
777 num)
|
|
778 (when active
|
|
779 (if (eobp)
|
|
780 (setf (car active) (1+ (cdr active)))
|
|
781 (when (and (setq num (ignore-errors (read (current-buffer))))
|
|
782 (numberp num))
|
|
783 (setf (car active) num)))))))
|
|
784 t))
|
|
785
|
|
786 (defun nnml-update-file-alist ()
|
|
787 (unless nnml-article-file-alist
|
|
788 (setq nnml-article-file-alist
|
|
789 (nnheader-article-to-file-alist nnml-current-directory))))
|
|
790
|
|
791 (provide 'nnml)
|
|
792
|
|
793 ;;; nnml.el ends here
|