1 ;;; nnmh.el --- mhspool access for Gnus
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
8 ;; Keywords: news, mail
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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
37 (eval-when-compile (require 'cl
))
41 (defvoo nnmh-directory message-directory
42 "Mail spool directory.")
44 (defvoo nnmh-get-new-mail t
45 "If non-nil, nnmh will check the incoming mail file and split the mail.")
47 (defvoo nnmh-prepare-save-mail-hook nil
48 "Hook run narrowed to an article before saving.")
50 (defvoo nnmh-be-safe nil
51 "If non-nil, nnmh will check all articles to make sure whether they are new or not.
52 Go through the .nnmh-articles file and compare with the actual
53 articles in this folder. The articles that are \"new\" will be marked
58 (defconst nnmh-version
"nnmh 1.0"
61 (defvoo nnmh-current-directory nil
62 "Current news group directory.")
64 (defvoo nnmh-status-string
"")
65 (defvoo nnmh-group-alist nil
)
66 ;; Don't even think about setting this variable. It does not exist.
67 ;; Forget about it. Uh-huh. Nope. Nobody here. It's only bound
68 ;; dynamically by certain functions in nndraft.
69 (defvar nnmh-allow-delete-final nil
)
73 ;;; Interface functions.
75 (nnoo-define-basics nnmh
)
77 (deffoo nnmh-retrieve-headers
(articles &optional newsgroup server fetch-old
)
78 (with-current-buffer nntp-server-buffer
81 (number (length articles
))
82 (large (and (numberp nnmail-large-newsgroup
)
83 (> number nnmail-large-newsgroup
)))
85 (file-name-coding-system nnmail-pathname-coding-system
)
87 (nnmh-possibly-change-directory newsgroup server
)
88 ;; We don't support fetching by Message-ID.
89 (if (stringp (car articles
))
92 (when (and (file-exists-p
93 (setq file
(concat (file-name-as-directory
94 nnmh-current-directory
)
96 (setq article
(pop articles
))))))
97 (not (file-directory-p file
)))
98 (insert (format "221 %d Article retrieved.\n" article
))
100 (nnheader-insert-head file
)
102 (if (search-forward "\n\n" nil t
)
104 (goto-char (point-max))
107 (delete-region (point) (point-max)))
108 (setq count
(1+ count
))
112 (nnheader-message 5 "nnmh: Receiving headers... %d%%"
113 (/ (* count
100) number
))))
116 (nnheader-message 5 "nnmh: Receiving headers...done"))
118 (nnheader-fold-continuation-lines)
121 (deffoo nnmh-open-server
(server &optional defs
)
122 (nnoo-change-server 'nnmh server defs
)
123 (when (not (file-exists-p nnmh-directory
))
125 (make-directory nnmh-directory t
)
128 ((not (file-exists-p nnmh-directory
))
130 (nnheader-report 'nnmh
"Couldn't create directory: %s" nnmh-directory
))
131 ((not (file-directory-p (file-truename nnmh-directory
)))
133 (nnheader-report 'nnmh
"Not a directory: %s" nnmh-directory
))
135 (nnheader-report 'nnmh
"Opened server %s using directory %s"
136 server nnmh-directory
)
139 (deffoo nnmh-request-article
(id &optional newsgroup server buffer
)
140 (nnmh-possibly-change-directory newsgroup server
)
141 (let ((file (if (stringp id
)
143 (concat nnmh-current-directory
(int-to-string id
))))
144 (file-name-coding-system nnmail-pathname-coding-system
)
145 (nntp-server-buffer (or buffer nntp-server-buffer
)))
148 (not (file-directory-p file
))
149 (save-excursion (nnmail-find-file file
))
150 (string-to-number (file-name-nondirectory file
)))))
152 (deffoo nnmh-request-group
(group &optional server dont-check
)
153 (nnheader-init-server-buffer)
154 (nnmh-possibly-change-directory group server
)
155 (let ((pathname (nnmail-group-pathname group nnmh-directory
))
156 (file-name-coding-system nnmail-pathname-coding-system
)
159 ((not (file-directory-p pathname
))
161 'nnmh
"Can't select group (no such directory): %s" group
))
163 (setq nnmh-current-directory pathname
)
164 (and nnmh-get-new-mail
166 (nnmh-update-gnus-unreads group
))
169 (nnheader-report 'nnmh
"Selected group %s" group
)
172 ;; Re-scan the directory if it's on a foreign system.
173 (nnheader-re-read-dir pathname
)
176 (mapcar 'string-to-number
177 (directory-files pathname nil
"^[0-9]+$" t
))
181 (setq nnmh-group-alist
182 (delq (assoc group nnmh-group-alist
) nnmh-group-alist
))
183 (push (list group
(cons (car dir
) (car (last dir
))))
185 (nnheader-report 'nnmh
"Selected group %s" group
)
187 "211 %d %d %d %s\n" (length dir
) (car dir
)
188 (car (last dir
)) group
))
190 (nnheader-report 'nnmh
"Empty group %s" group
)
191 (nnheader-insert (format "211 0 1 0 %s\n" group
))))))))))
193 (deffoo nnmh-request-scan
(&optional group server
)
194 (nnmail-get-new-mail 'nnmh nil nnmh-directory group
))
196 (deffoo nnmh-request-list
(&optional server dir
)
198 (nnmh-possibly-change-directory nil server
)
199 (let ((file-name-coding-system nnmail-pathname-coding-system
)
201 (file-truename (or dir
(file-name-as-directory nnmh-directory
)))))
202 (nnmh-request-list-1 nnmh-toplev
))
203 (setq nnmh-group-alist
(nnmail-get-active))
207 (defun nnmh-request-list-1 (dir)
208 (setq dir
(expand-file-name dir
))
209 ;; Recurse down all directories.
210 (let ((dirs (and (file-readable-p dir
)
211 (nnheader-directory-files dir t nil t
)))
213 ;; Recurse down directories.
214 (while (setq rdir
(pop dirs
))
215 (when (and (file-directory-p rdir
)
216 (file-readable-p rdir
)
217 (not (equal (file-truename rdir
)
218 (file-truename dir
))))
219 (nnmh-request-list-1 rdir
))))
220 ;; For each directory, generate an active file line.
221 (unless (string= (expand-file-name nnmh-toplev
) dir
)
222 (let ((files (mapcar 'string-to-number
223 (directory-files dir nil
"^[0-9]+$" t
))))
225 (with-current-buffer nntp-server-buffer
226 (goto-char (point-max))
233 (file-truename (file-name-as-directory
234 (expand-file-name nnmh-toplev
))))
236 (mm-string-to-multibyte ;Why? Isn't it multibyte already?
237 (mm-encode-coding-string
238 (nnheader-replace-chars-in-string
239 (substring dir
(match-end 0))
241 nnmail-pathname-coding-system
)))
243 (apply 'min files
)))))))
246 (deffoo nnmh-request-newgroups
(date &optional server
)
247 (nnmh-request-list server
))
249 (deffoo nnmh-request-expire-articles
(articles newsgroup
250 &optional server force
)
251 (nnmh-possibly-change-directory newsgroup server
)
253 (nnmail-expiry-target
254 (or (gnus-group-find-parameter newsgroup
'expiry-target t
)
255 nnmail-expiry-target
))
256 article rest mod-time
)
257 (nnheader-init-server-buffer)
259 (while (and articles is-old
)
260 (setq article
(concat nnmh-current-directory
261 (int-to-string (car articles
))))
262 (when (setq mod-time
(nth 5 (file-attributes article
)))
263 (if (and (nnmh-deletable-article-p newsgroup
(car articles
))
265 (nnmail-expired-article-p newsgroup mod-time force
)))
267 ;; Allow a special target group. -- jcn
268 (unless (eq nnmail-expiry-target
'delete
)
270 (nnmh-request-article (car articles
)
271 newsgroup server
(current-buffer))
272 (nnmail-expiry-target-group
273 nnmail-expiry-target newsgroup
)))
274 (nnheader-message 5 "Deleting article %s in %s..."
277 (funcall nnmail-delete-file-function article
)
279 (nnheader-message 1 "Couldn't delete article %s in %s"
281 (push (car articles
) rest
))))
282 (push (car articles
) rest
)))
283 (setq articles
(cdr articles
)))
284 (nnheader-message 5 "")
285 (nconc rest articles
)))
287 (deffoo nnmh-close-group
(group &optional server
)
290 (deffoo nnmh-request-move-article
(article group server accept-form
291 &optional last move-is-internal
)
292 (let ((buf (get-buffer-create " *nnmh move*"))
295 (nnmh-deletable-article-p group article
)
296 (nnmh-request-article article group server
)
297 (with-current-buffer buf
299 (insert-buffer-substring nntp-server-buffer
)
300 (setq result
(eval accept-form
))
301 (kill-buffer (current-buffer))
304 (nnmh-possibly-change-directory group server
)
306 (funcall nnmail-delete-file-function
307 (concat nnmh-current-directory
(int-to-string article
)))
311 (deffoo nnmh-request-accept-article
(group &optional server last noinsert
)
312 (nnmh-possibly-change-directory group server
)
313 (nnmail-check-syntax)
314 (when nnmail-cache-accepted-message-ids
315 (nnmail-cache-insert (nnmail-fetch-field "message-id")
317 (nnmail-fetch-field "subject")
318 (nnmail-fetch-field "from")))
319 (nnheader-init-server-buffer)
323 (nnmh-active-number group
)
325 (list (cons group
(nnmh-active-number group
)))
327 (let ((res (nnmail-article-group 'nnmh-active-number
)))
329 (yes-or-no-p "Moved to `junk' group; delete article? "))
331 (car (nnmh-save-mail res noinsert
)))))
332 (when (and last nnmail-cache-accepted-message-ids
)
333 (nnmail-cache-close))))
335 (deffoo nnmh-request-replace-article
(article group buffer
)
336 (nnmh-possibly-change-directory group
)
337 (with-current-buffer buffer
338 (nnmh-possibly-create-directory group
)
341 (point-min) (point-max)
342 (concat nnmh-current-directory
(int-to-string article
))
343 nil
(if (nnheader-be-verbose 5) nil
'nomesg
))
346 (deffoo nnmh-request-create-group
(group &optional server args
)
347 (nnheader-init-server-buffer)
348 (unless (assoc group nnmh-group-alist
)
350 (push (list group
(setq active
(cons 1 0)))
352 (nnmh-possibly-create-directory group
)
353 (nnmh-possibly-change-directory group server
)
354 (let ((articles (mapcar 'string-to-number
356 nnmh-current-directory nil
"^[0-9]+$"))))
358 (setcar active
(apply 'min articles
))
359 (setcdr active
(apply 'max articles
))))))
362 (deffoo nnmh-request-delete-group
(group &optional force server
)
363 (nnmh-possibly-change-directory group server
)
364 ;; Delete all articles in GROUP.
366 () ; Don't delete the articles.
367 (let ((articles (directory-files nnmh-current-directory t
"^[0-9]+$")))
369 (when (file-writable-p (car articles
))
370 (nnheader-message 5 "Deleting article %s in %s..."
371 (car articles
) group
)
372 (funcall nnmail-delete-file-function
(car articles
)))
373 (setq articles
(cdr articles
))))
374 ;; Try to delete the directory itself.
376 (delete-directory nnmh-current-directory
)))
377 ;; Remove the group from all structures.
378 (setq nnmh-group-alist
379 (delq (assoc group nnmh-group-alist
) nnmh-group-alist
)
380 nnmh-current-directory nil
)
383 (deffoo nnmh-request-rename-group
(group new-name
&optional server
)
384 (nnmh-possibly-change-directory group server
)
385 (let ((new-dir (nnmail-group-pathname new-name nnmh-directory
))
386 (old-dir (nnmail-group-pathname group nnmh-directory
)))
388 (make-directory new-dir t
)
390 ;; We move the articles file by file instead of renaming
391 ;; the directory -- there may be subgroups in this group.
392 ;; One might be more clever, I guess.
393 (let ((files (nnheader-article-to-file-alist old-dir
)))
396 (concat old-dir
(cdar files
))
397 (concat new-dir
(cdar files
)))
399 (when (<= (length (directory-files old-dir
)) 2)
401 (delete-directory old-dir
)))
402 ;; That went ok, so we change the internal structures.
403 (let ((entry (assoc group nnmh-group-alist
)))
405 (setcar entry new-name
))
406 (setq nnmh-current-directory nil
)
409 (nnoo-define-skeleton nnmh
)
412 ;;; Internal functions.
414 (defun nnmh-possibly-change-directory (newsgroup &optional server
)
416 (not (nnmh-server-opened server
)))
417 (nnmh-open-server server
))
419 (let ((pathname (nnmail-group-pathname newsgroup nnmh-directory
))
420 (file-name-coding-system nnmail-pathname-coding-system
))
421 (if (file-directory-p pathname
)
422 (setq nnmh-current-directory pathname
)
423 (nnheader-report 'nnmh
"Not a directory: %s" nnmh-directory
)))))
425 (defun nnmh-possibly-create-directory (group)
427 (setq dir
(nnmail-group-pathname group nnmh-directory
))
428 (while (not (file-directory-p dir
))
430 (setq dir
(file-name-directory (directory-file-name dir
))))
432 (when (make-directory (directory-file-name (car dirs
)))
433 (error "Could not create directory %s" (car dirs
)))
434 (nnheader-message 5 "Creating mail directory %s" (car dirs
))
435 (setq dirs
(cdr dirs
)))))
437 (defun nnmh-save-mail (group-art &optional noinsert
)
438 "Called narrowed to an article."
440 (nnmail-insert-lines)
441 (nnmail-insert-xref group-art
))
442 (run-hooks 'nnmail-prepare-save-mail-hook
)
443 (run-hooks 'nnmh-prepare-save-mail-hook
)
444 (goto-char (point-min))
445 (while (looking-at "From ")
446 (replace-match "X-From-Line: ")
448 ;; We save the article in all the newsgroups it belongs in.
452 (nnmh-possibly-create-directory (caar ga
))
453 (let ((file (concat (nnmail-group-pathname
454 (caar ga
) nnmh-directory
)
455 (int-to-string (cdar ga
)))))
457 ;; It was already saved, so we just make a hard link.
458 (funcall nnmail-crosspost-link-function first file t
)
460 (nnmail-write-region (point-min) (point-max) file nil nil
)
465 (defun nnmh-active-number (group)
466 "Compute the next article number in GROUP."
467 (let ((active (cadr (assoc group nnmh-group-alist
)))
468 (dir (nnmail-group-pathname group nnmh-directory
))
469 (file-name-coding-system nnmail-pathname-coding-system
)
472 ;; The group wasn't known to nnmh, so we just create an active
474 (setq active
(cons 1 0))
475 (push (list group active
) nnmh-group-alist
)
476 (unless (file-exists-p dir
)
477 (gnus-make-directory dir
))
478 ;; Find the highest number in the group.
480 (mapcar 'string-to-number
481 (directory-files dir nil
"^[0-9]+$"))
484 (setcdr active
(car files
)))))
485 (setcdr active
(1+ (cdr active
)))
487 ;; See whether the file exists...
489 (setq file
(concat (nnmail-group-pathname group nnmh-directory
)
490 (int-to-string (cdr active
)))))
491 ;; ... or there is a buffer that will make that file exist
493 (get-file-buffer file
))
494 ;; Skip past that file.
495 (setcdr active
(1+ (cdr active
))))
498 (defun nnmh-update-gnus-unreads (group)
499 ;; Go through the .nnmh-articles file and compare with the actual
500 ;; articles in this folder. The articles that are "new" will be
501 ;; marked as unread by Gnus.
502 (let* ((dir nnmh-current-directory
)
503 (files (sort (mapcar 'string-to-number
504 (directory-files nnmh-current-directory
507 (nnmh-file (concat dir
".nnmh-articles"))
509 ;; Load the .nnmh-articles file.
510 (when (file-exists-p nnmh-file
)
512 (let (nnmh-newsgroup-articles)
513 (ignore-errors (load nnmh-file nil t t
))
514 nnmh-newsgroup-articles
)))
515 ;; Add all new articles to the `new' list.
518 (unless (assq (car art
) articles
)
519 (push (car art
) new
))
520 (setq art
(cdr art
))))
521 ;; Remove all deleted articles.
522 (let ((art articles
))
524 (unless (memq (caar art
) files
)
525 (setq articles
(delq (car art
) articles
)))
526 (setq art
(cdr art
))))
527 ;; Check whether the articles really are the ones that Gnus thinks
528 ;; they are by looking at the time-stamps.
529 (let ((arts articles
)
531 (while (setq art
(pop arts
))
533 (nth 5 (file-attributes
534 (concat dir
(int-to-string (car art
)))))
536 (setq articles
(delq art articles
))
537 (push (car art
) new
))))
538 ;; Go through all the new articles and add them, and their
539 ;; time-stamps, to the list.
545 (nth 5 (file-attributes
546 (concat dir
(int-to-string art
))))))
548 ;; Make Gnus mark all new articles as unread.
550 (gnus-make-articles-unread
551 (gnus-group-prefixed-name group
(list 'nnmh
""))
552 (setq new
(sort new
'<))))
553 ;; Sort the article list with highest numbers first.
554 (setq articles
(sort articles
(lambda (art1 art2
)
555 (> (car art1
) (car art2
)))))
556 ;; Finally write this list back to the .nnmh-articles file.
557 (with-temp-file nnmh-file
558 (insert ";; Gnus article active file for " group
"\n\n")
559 (insert "(setq nnmh-newsgroup-articles '")
560 (gnus-prin1 articles
)
563 (defun nnmh-deletable-article-p (group article
)
564 "Say whether ARTICLE in GROUP can be deleted."
565 (let ((path (concat nnmh-current-directory
(int-to-string article
))))
567 (and (file-writable-p path
)
569 ;; We can never delete the last article in the group.
570 (not (eq (cdr (nth 1 (assoc group nnmh-group-alist
)))
573 nnmh-allow-delete-final
))))
577 ;; arch-tag: 36c12a98-3bad-44b3-9953-628078ef0e04
578 ;;; nnmh.el ends here