1 ;;; elmo-maildir.el --- Maildir interface for ELMO.
3 ;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
5 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
6 ;; Keywords: mail, net news
8 ;; This file is part of ELMO (Elisp Library for Message Orchestration).
10 ;; This program 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)
15 ;; This program 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.
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.
32 (eval-when-compile (require 'cl))
38 (defcustom elmo-maildir-folder-path "~/Maildir"
39 "*Maildir folder path."
43 ;;; ELMO Maildir folder
45 (luna-define-class elmo-maildir-folder
47 (directory unread-locations flagged-locations))
48 (luna-define-internal-accessors 'elmo-maildir-folder))
50 (luna-define-method elmo-folder-initialize ((folder
53 (if (file-name-absolute-p name)
54 (elmo-maildir-folder-set-directory-internal
56 (expand-file-name name))
57 (elmo-maildir-folder-set-directory-internal
61 elmo-maildir-folder-path)))
64 (luna-define-method elmo-folder-expand-msgdb-path ((folder
67 (elmo-replace-string-as-filename
68 (elmo-maildir-folder-directory-internal folder))
71 elmo-msgdb-directory)))
73 (defun elmo-maildir-message-file-name (folder location)
74 "Get a file name of the message from FOLDER which corresponded to
76 (let ((file (file-name-completion
80 (elmo-maildir-folder-directory-internal folder)))))
83 (if (eq file t) location file)
86 (elmo-maildir-folder-directory-internal folder))))))
88 (defsubst elmo-maildir-list-location (dir &optional child-dir)
89 (let* ((cur-dir (expand-file-name (or child-dir "cur") dir))
90 (cur (directory-files cur-dir
92 unread-locations flagged-locations seen flagged sym
97 (if (string-match "^\\([^:]+\\):\\([^:]+\\)$" x)
102 ((string-match "S" (elmo-match-string 2 x))
104 ((string-match "F" (elmo-match-string 2 x))
106 (setq sym (elmo-match-string 1 x))
107 (unless seen (setq unread-locations
108 (cons sym unread-locations)))
109 (if flagged (setq flagged-locations
110 (cons sym flagged-locations)))
114 (list locations unread-locations flagged-locations)))
116 (luna-define-method elmo-map-folder-list-message-locations
117 ((folder elmo-maildir-folder))
118 (elmo-maildir-update-current folder)
119 (let ((locs (elmo-maildir-list-location
120 (elmo-maildir-folder-directory-internal folder))))
121 ;; 0: locations, 1: unread-locations, 2: flagged-locations
122 (elmo-maildir-folder-set-unread-locations-internal folder (nth 1 locs))
123 (elmo-maildir-folder-set-flagged-locations-internal folder (nth 2 locs))
126 (luna-define-method elmo-map-folder-list-unreads
127 ((folder elmo-maildir-folder))
128 (elmo-maildir-folder-unread-locations-internal folder))
130 (luna-define-method elmo-map-folder-list-importants
131 ((folder elmo-maildir-folder))
132 (elmo-maildir-folder-flagged-locations-internal folder))
134 (luna-define-method elmo-folder-msgdb-create
135 ((folder elmo-maildir-folder) numbers seen-list)
136 (let* ((unread-list (elmo-maildir-folder-unread-locations-internal folder))
137 (flagged-list (elmo-maildir-folder-flagged-locations-internal folder))
138 (len (length numbers))
140 overview number-alist mark-alist entity
142 (message "Creating msgdb...")
145 (setq location (elmo-map-message-location folder number))
147 (elmo-msgdb-create-overview-entity-from-file
149 (elmo-maildir-message-file-name folder location)))
152 (elmo-msgdb-append-element overview entity))
154 (elmo-msgdb-number-add number-alist
155 (elmo-msgdb-overview-entity-get-number
157 (elmo-msgdb-overview-entity-get-id
160 ((member location unread-list)
161 (setq mark elmo-msgdb-new-mark)) ; unread!
162 ((member location flagged-list)
163 (setq mark elmo-msgdb-important-mark)))
164 (if (setq mark (or (elmo-msgdb-global-mark-get
165 (elmo-msgdb-overview-entity-get-id
169 (elmo-msgdb-mark-append
171 (elmo-msgdb-overview-entity-get-number
174 (when (> len elmo-display-progress-threshold)
176 (elmo-display-progress
177 'elmo-maildir-msgdb-create "Creating msgdb..."
178 (/ (* i 100) len)))))
179 (message "Creating msgdb...done")
180 (elmo-msgdb-sort-by-date
181 (list overview number-alist mark-alist))))
183 (defun elmo-maildir-cleanup-temporal (dir)
184 ;; Delete files in the tmp dir which are not accessed
185 ;; for more than 36 hours.
186 (let ((cur-time (current-time))
191 (setq last-accessed (nth 4 (file-attributes file)))
192 (when (or (> (- (car cur-time)(car last-accessed)) 1)
193 (and (eq (- (car cur-time)(car last-accessed)) 1)
194 (> (- (cadr cur-time)(cadr last-accessed))
196 (message "Maildir: %d tmp file(s) are cleared."
197 (setq count (1+ count)))
198 (delete-file file))))
199 (directory-files (expand-file-name "tmp" dir)
203 (defun elmo-maildir-update-current (folder)
204 "Move all new msgs to cur in the maildir."
205 (let* ((maildir (elmo-maildir-folder-directory-internal folder))
206 (news (directory-files (expand-file-name "new"
210 ;; cleanup tmp directory.
211 (elmo-maildir-cleanup-temporal maildir)
212 ;; move new msgs to cur directory.
215 (expand-file-name (car news) (expand-file-name "new" maildir))
216 (expand-file-name (concat (car news) ":2,")
217 (expand-file-name "cur" maildir)))
218 (setq news (cdr news)))))
220 (defun elmo-maildir-set-mark (filename mark)
221 "Mark the FILENAME file in the maildir. MARK is a character."
222 (if (string-match "^\\([^:]+:[12],\\)\\(.*\\)$" filename)
223 (let ((flaglist (string-to-char-list (elmo-match-string
225 (unless (memq mark flaglist)
226 (setq flaglist (sort (cons mark flaglist) '<))
227 (rename-file filename
228 (concat (elmo-match-string 1 filename)
229 (char-list-to-string flaglist)))))
230 ;; Rescue no info file in maildir.
231 (rename-file filename
232 (concat filename ":2," (char-to-string mark))))
235 (defun elmo-maildir-delete-mark (filename mark)
236 "Mark the FILENAME file in the maildir. MARK is a character."
237 (if (string-match "^\\([^:]+:2,\\)\\(.*\\)$" filename)
238 (let ((flaglist (string-to-char-list (elmo-match-string
240 (when (memq mark flaglist)
241 (setq flaglist (delq mark flaglist))
242 (rename-file filename
243 (concat (elmo-match-string 1 filename)
245 (char-list-to-string flaglist))))))))
247 (defsubst elmo-maildir-set-mark-msgs (folder locs mark)
249 (elmo-maildir-set-mark
250 (elmo-maildir-message-file-name folder loc)
254 (defsubst elmo-maildir-delete-mark-msgs (folder locs mark)
256 (elmo-maildir-delete-mark
257 (elmo-maildir-message-file-name folder loc)
261 (luna-define-method elmo-map-folder-mark-as-important ((folder elmo-maildir-folder)
263 (elmo-maildir-set-mark-msgs folder locs ?F))
265 (luna-define-method elmo-map-folder-unmark-important ((folder elmo-maildir-folder)
267 (elmo-maildir-delete-mark-msgs folder locs ?F))
269 (luna-define-method elmo-map-folder-mark-as-read ((folder elmo-maildir-folder)
271 (elmo-maildir-set-mark-msgs folder locs ?S))
273 (luna-define-method elmo-map-folder-unmark-read ((folder elmo-maildir-folder)
275 (elmo-maildir-delete-mark-msgs folder locs ?S))
277 (luna-define-method elmo-map-folder-mark-as-answered ((folder
280 (elmo-maildir-set-mark-msgs folder locs ?R))
282 (luna-define-method elmo-map-folder-unmark-answered ((folder
285 (elmo-maildir-delete-mark-msgs folder locs ?R))
287 (luna-define-method elmo-folder-list-subfolders
288 ((folder elmo-maildir-folder) &optional one-level)
289 (let ((prefix (concat (elmo-folder-name-internal folder)
290 (unless (string= (elmo-folder-prefix-internal folder)
291 (elmo-folder-name-internal folder))
293 (elmo-list-subdirectories-ignore-regexp
294 "^\\(\\.\\.?\\|cur\\|tmp\\|new\\)$")
295 elmo-have-link-count)
297 (list (elmo-folder-name-internal folder))
298 (elmo-mapcar-list-of-list
299 (function (lambda (x) (concat prefix x)))
300 (elmo-list-subdirectories
301 (elmo-maildir-folder-directory-internal folder)
305 (defvar elmo-maildir-sequence-number-internal 0)
308 ((>= emacs-major-version 19)
309 (defun elmo-maildir-make-unique-string ()
310 "This function generates a string that can be used as a unique
311 file name for maildir directories."
312 (let ((cur-time (current-time)))
313 (format "%.0f.%d_%d.%s"
315 (float 65536)) (cadr cur-time))
317 (incf elmo-maildir-sequence-number-internal)
319 ((eq emacs-major-version 18)
320 ;; A fake function for v18
321 (defun elmo-maildir-make-unique-string ()
322 "This function generates a string that can be used as a unique
323 file name for maildir directories."
324 (unless (fboundp 'float-to-string)
325 (load-library "float"))
326 (let ((time (current-time)))
330 (f+ (f* (f (car time))
335 (% (abs (random t)) 10000); dummy pid
338 (defun elmo-maildir-temporal-filename (basedir)
339 (let ((filename (expand-file-name
340 (concat "tmp/" (elmo-maildir-make-unique-string))
342 (unless (file-exists-p (file-name-directory filename))
343 (make-directory (file-name-directory filename)))
344 (while (file-exists-p filename)
345 ;;; I don't want to wait.
349 (concat "tmp/" (elmo-maildir-make-unique-string))
353 (luna-define-method elmo-folder-append-buffer ((folder elmo-maildir-folder)
354 unread &optional number)
355 (let ((basedir (elmo-maildir-folder-directory-internal folder))
356 (src-buf (current-buffer))
360 (setq filename (elmo-maildir-temporal-filename basedir))
361 (setq dst-buf (current-buffer))
362 (with-current-buffer src-buf
363 (copy-to-buffer dst-buf (point-min) (point-max)))
364 (as-binary-output-file
365 (write-region (point-min) (point-max) filename nil 'no-msg))
366 ;; add link from new.
367 (elmo-add-name-to-file
370 (concat "new/" (file-name-nondirectory filename))
373 ;; If an error occured, return nil.
376 (luna-define-method elmo-folder-message-file-p ((folder elmo-maildir-folder))
379 (luna-define-method elmo-message-file-name ((folder elmo-maildir-folder)
381 (elmo-maildir-message-file-name
383 (elmo-map-message-location folder number)))
385 (luna-define-method elmo-folder-message-make-temp-file-p
386 ((folder elmo-maildir-folder))
389 (luna-define-method elmo-folder-message-make-temp-files ((folder
394 (let ((temp-dir (elmo-folder-make-temporary-directory folder))
395 (cur-number (if start-number 0)))
396 (dolist (number numbers)
398 (elmo-message-file-name folder number)
400 (int-to-string (if start-number (incf cur-number) number))
404 (luna-define-method elmo-folder-append-messages :around
405 ((folder elmo-maildir-folder)
406 src-folder numbers &optional same-number)
407 (if (elmo-folder-message-file-p src-folder)
408 (let ((dir (elmo-maildir-folder-directory-internal folder))
411 (dolist (number numbers)
412 (setq filename (elmo-maildir-temporal-filename dir))
414 (elmo-message-file-name src-folder number)
416 (elmo-add-name-to-file
419 (concat "new/" (file-name-nondirectory filename))
421 (elmo-progress-notify 'elmo-folder-move-messages))
423 (luna-call-next-method)))
425 (luna-define-method elmo-map-folder-delete-messages
426 ((folder elmo-maildir-folder) locations)
428 (dolist (location locations)
429 (setq file (elmo-maildir-message-file-name folder location))
431 (file-writable-p file)
432 (not (file-directory-p file)))
433 (delete-file file)))))
435 (luna-define-method elmo-map-message-fetch ((folder elmo-maildir-folder)
437 &optional section unseen)
438 (let ((file (elmo-maildir-message-file-name folder location)))
439 (when (file-exists-p file)
440 (insert-file-contents-as-binary file))))
442 (luna-define-method elmo-folder-exists-p ((folder elmo-maildir-folder))
443 (let ((basedir (elmo-maildir-folder-directory-internal folder)))
444 (and (file-directory-p (expand-file-name "new" basedir))
445 (file-directory-p (expand-file-name "cur" basedir))
446 (file-directory-p (expand-file-name "tmp" basedir)))))
448 (luna-define-method elmo-folder-diff ((folder elmo-maildir-folder)
450 (let* ((dir (elmo-maildir-folder-directory-internal folder))
451 (new-len (length (car (elmo-maildir-list-location dir "new"))))
452 (cur-len (length (car (elmo-maildir-list-location dir "cur")))))
453 (cons new-len (+ new-len cur-len))))
455 (luna-define-method elmo-folder-creatable-p ((folder elmo-maildir-folder))
458 (luna-define-method elmo-folder-writable-p ((folder elmo-maildir-folder))
461 (luna-define-method elmo-folder-create ((folder elmo-maildir-folder))
462 (let ((basedir (elmo-maildir-folder-directory-internal folder)))
465 (dolist (dir '("." "new" "cur" "tmp"))
466 (setq dir (expand-file-name dir basedir))
467 (or (file-directory-p dir)
469 (elmo-make-directory dir)
470 (set-file-modes dir 448))))
474 (luna-define-method elmo-folder-delete :before ((folder elmo-maildir-folder))
475 (let ((basedir (elmo-maildir-folder-directory-internal folder)))
477 (let ((tmp-files (directory-files
478 (expand-file-name "tmp" basedir)
480 ;; Delete files in tmp.
481 (dolist (file tmp-files)
483 (dolist (dir '("new" "cur" "tmp" "."))
484 (setq dir (expand-file-name dir basedir))
485 (if (not (file-directory-p dir))
487 (elmo-delete-directory dir t)))
492 (product-provide (provide 'elmo-maildir) (require 'elmo-version))
494 ;;; elmo-maildir.el ends here