*** empty log message ***
[gnus] / lisp / nnmbox.el
1 ;;; nnmbox.el --- mail mbox access for Gnus
2 ;; Copyright (C) 1995,96 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 ;; For an overview of what the interface functions do, please see the
28 ;; Gnus sources.  
29
30 ;;; Code:
31
32 (require 'nnheader)
33 (require 'rmail)
34 (require 'nnmail)
35 (eval-when-compile (require 'cl))
36
37 (defvar nnmbox-mbox-file (expand-file-name "~/mbox")
38   "The name of the mail box file in the user's home directory.")
39
40 (defvar nnmbox-active-file (expand-file-name "~/.mbox-active")
41   "The name of the active file for the mail box.")
42
43 (defvar nnmbox-get-new-mail t
44   "If non-nil, nnmbox will check the incoming mail file and split the mail.")
45
46 (defvar nnmbox-prepare-save-mail-hook nil
47   "Hook run narrowed to an article before saving.")
48
49 \f
50
51 (defconst nnmbox-version "nnmbox 1.0"
52   "nnmbox version.")
53
54 (defvar nnmbox-current-group nil
55   "Current nnmbox news group directory.")
56
57 (defconst nnmbox-mbox-buffer nil)
58
59 (defvar nnmbox-status-string "")
60
61 (defvar nnmbox-group-alist nil)
62 (defvar nnmbox-active-timestamp nil)
63
64 \f
65
66 (defvar nnmbox-current-server nil)
67 (defvar nnmbox-server-alist nil)
68 (defvar nnmbox-server-variables 
69   `((nnmbox-mbox-file ,nnmbox-mbox-file)
70     (nnmbox-active-file ,nnmbox-active-file)
71     (nnmbox-get-new-mail ,nnmbox-get-new-mail)
72     (nnmbox-current-group nil)
73     (nnmbox-active-timestamp nil)
74     (nnmbox-prepare-save-mail-hook nil)
75     (nnmbox-status-string "")
76     (nnmbox-group-alist nil)))
77
78 \f
79
80 ;;; Interface functions
81
82 (defun nnmbox-retrieve-headers (sequence &optional newsgroup server fetch-old)
83   (save-excursion
84     (set-buffer nntp-server-buffer)
85     (erase-buffer)
86     (let ((number (length sequence))
87           (count 0)
88           article art-string start stop)
89       (nnmbox-possibly-change-newsgroup newsgroup)
90       (while sequence
91         (setq article (car sequence))
92         (setq art-string (nnmbox-article-string article))
93         (set-buffer nnmbox-mbox-buffer)
94         (if (or (search-forward art-string nil t)
95                 (progn (goto-char (point-min))
96                        (search-forward art-string nil t)))
97             (progn
98               (setq start 
99                     (save-excursion
100                       (re-search-backward 
101                        (concat "^" rmail-unix-mail-delimiter) nil t)
102                       (point)))
103               (search-forward "\n\n" nil t)
104               (setq stop (1- (point)))
105               (set-buffer nntp-server-buffer)
106               (insert (format "221 %d Article retrieved.\n" article))
107               (insert-buffer-substring nnmbox-mbox-buffer start stop)
108               (goto-char (point-max))
109               (insert ".\n")))
110         (setq sequence (cdr sequence))
111         (setq count (1+ count))
112         (and (numberp nnmail-large-newsgroup)
113              (> number nnmail-large-newsgroup)
114              (zerop (% count 20))
115              (nnheader-message 5 "nnmbox: Receiving headers... %d%%"
116                                (/ (* count 100) number))))
117
118       (and (numberp nnmail-large-newsgroup)
119            (> number nnmail-large-newsgroup)
120            (nnheader-message 5 "nnmbox: Receiving headers...done"))
121
122       (set-buffer nntp-server-buffer)
123       (nnheader-fold-continuation-lines)
124       'headers)))
125
126 (defun nnmbox-open-server (server &optional defs)
127   (nnheader-change-server 'nnmbox server defs)
128   (cond 
129    ((not (file-exists-p nnmbox-mbox-file))
130     (nnmbox-close-server)
131     (nnheader-report 'nnmbox "No such file: %s" nnmbox-mbox-file))
132    ((file-directory-p nnmbox-mbox-file)
133     (nnmbox-close-server)
134     (nnheader-report 'nnmbox "Not a regular file: %s" nnmbox-mbox-file))
135    (t
136     (nnheader-report 'nnmbox "Opened server %s using mbox %s" server
137                      nnmbox-mbox-file)
138     t)))
139
140 (defun nnmbox-close-server (&optional server)
141   (when (and nnmbox-mbox-buffer
142              (buffer-name nnmbox-mbox-buffer))
143     (kill-buffer nnmbox-mbox-buffer))
144   (setq nnmbox-current-server nil)
145   t)
146
147 (defun nnmbox-server-opened (&optional server)
148   (and (equal server nnmbox-current-server)
149        nnmbox-mbox-buffer
150        (buffer-name nnmbox-mbox-buffer)
151        nntp-server-buffer
152        (buffer-name nntp-server-buffer)))
153
154 (defun nnmbox-status-message (&optional server)
155   nnmbox-status-string)
156
157 (defun nnmbox-request-article (article &optional newsgroup server buffer)
158   (nnmbox-possibly-change-newsgroup newsgroup)
159   (save-excursion
160     (set-buffer nnmbox-mbox-buffer)
161     (goto-char (point-min))
162     (if (search-forward (nnmbox-article-string article) nil t)
163         (let (start stop)
164           (re-search-backward (concat "^" rmail-unix-mail-delimiter) nil t)
165           (setq start (point))
166           (forward-line 1)
167           (or (and (re-search-forward 
168                     (concat "^" rmail-unix-mail-delimiter) nil t)
169                    (forward-line -1))
170               (goto-char (point-max)))
171           (setq stop (point))
172           (let ((nntp-server-buffer (or buffer nntp-server-buffer)))
173             (set-buffer nntp-server-buffer)
174             (erase-buffer)
175             (insert-buffer-substring nnmbox-mbox-buffer start stop)
176             (goto-char (point-min))
177             (while (looking-at "From ")
178               (delete-char 5)
179               (insert "X-From-Line: ")
180               (forward-line 1))
181             (if (numberp article) 
182                 (cons nnmbox-current-group article)
183               (nnmbox-article-group-number)))))))
184
185 (defun nnmbox-request-group (group &optional server dont-check)
186   (let ((active (cadr (assoc group nnmbox-group-alist))))
187     (cond 
188      ((null active)
189       (nnheader-report 'nnmbox "No such group: %s" group))
190      ((null (nnmbox-possibly-change-newsgroup group))
191       (nnheader-report 'nnmbox "No such group: %s" group))
192      (dont-check
193       (nnheader-report 'nnmbox "Selected group %s" group)
194       (nnheader-insert ""))
195      (t
196       (nnheader-report 'nnmbox "Selected group %s" group)
197       (nnheader-insert "211 %d %d %d %s\n" 
198                        (1+ (- (cdr active) (car active)))
199                        (car active) (cdr active) group)
200       t))))
201
202 (defun nnmbox-request-scan (&optional group server)
203   (nnmbox-read-mbox)
204   (nnmail-get-new-mail 
205    'nnmbox 
206    (lambda ()
207      (save-excursion
208        (set-buffer nnmbox-mbox-buffer)
209        (save-buffer)))
210    nnmbox-mbox-file group
211    (lambda ()
212      (save-excursion
213        (let ((in-buf (current-buffer)))
214          (set-buffer nnmbox-mbox-buffer)
215          (goto-char (point-max))
216          (insert-buffer-substring in-buf))))))
217
218 (defun nnmbox-close-group (group &optional server)
219   t)
220
221 (defun nnmbox-request-list (&optional server)
222   (save-excursion
223     (or (nnmail-find-file nnmbox-active-file)
224         (progn
225           (setq nnmbox-group-alist (nnmail-get-active))
226           (nnmail-save-active nnmbox-group-alist nnmbox-active-file)
227           (nnmail-find-file nnmbox-active-file)))))
228
229 (defun nnmbox-request-newgroups (date &optional server)
230   (nnmbox-request-list server))
231
232 (defun nnmbox-request-list-newsgroups (&optional server)
233   (nnheader-report 'nnmbox "LIST NEWSGROUPS is not implemented."))
234
235 (defun nnmbox-request-expire-articles 
236   (articles newsgroup &optional server force)
237   (nnmbox-possibly-change-newsgroup newsgroup)
238   (let* ((is-old t)
239          rest)
240     (nnmail-activate 'nnmbox)
241
242     (save-excursion 
243       (set-buffer nnmbox-mbox-buffer)
244       (while (and articles is-old)
245         (goto-char (point-min))
246         (if (search-forward (nnmbox-article-string (car articles)) nil t)
247             (if (setq is-old
248                       (nnmail-expired-article-p
249                        newsgroup
250                        (buffer-substring 
251                         (point) (progn (end-of-line) (point))) force))
252                 (progn
253                   (nnheader-message 5 "Deleting article %d in %s..."
254                                     (car articles) newsgroup)
255                   (nnmbox-delete-mail))
256               (setq rest (cons (car articles) rest))))
257         (setq articles (cdr articles)))
258       (save-buffer)
259       ;; Find the lowest active article in this group.
260       (let ((active (nth 1 (assoc newsgroup nnmbox-group-alist))))
261         (goto-char (point-min))
262         (while (and (not (search-forward
263                           (nnmbox-article-string (car active)) nil t))
264                     (<= (car active) (cdr active)))
265           (setcar active (1+ (car active)))
266           (goto-char (point-min))))
267       (nnmail-save-active nnmbox-group-alist nnmbox-active-file)
268       (nconc rest articles))))
269
270 (defun nnmbox-request-move-article
271   (article group server accept-form &optional last)
272   (nnmbox-possibly-change-newsgroup group)
273   (let ((buf (get-buffer-create " *nnmbox move*"))
274         result)
275     (and 
276      (nnmbox-request-article article group server)
277      (save-excursion
278        (set-buffer buf)
279        (buffer-disable-undo (current-buffer))
280        (erase-buffer)
281        (insert-buffer-substring nntp-server-buffer)
282        (goto-char (point-min))
283        (while (re-search-forward 
284                "^X-Gnus-Newsgroup:" 
285                (save-excursion (search-forward "\n\n" nil t) (point)) t)
286          (delete-region (progn (beginning-of-line) (point))
287                         (progn (forward-line 1) (point))))
288        (setq result (eval accept-form))
289        (kill-buffer buf)
290        result)
291      (save-excursion
292        (set-buffer nnmbox-mbox-buffer)
293        (goto-char (point-min))
294        (if (search-forward (nnmbox-article-string article) nil t)
295            (nnmbox-delete-mail))
296        (and last (save-buffer))))
297     result))
298
299 (defun nnmbox-request-accept-article (group &optional last)
300   (let ((buf (current-buffer))
301         result)
302     (goto-char (point-min))
303     (if (looking-at "X-From-Line: ")
304         (replace-match "From ")
305       (insert "From nobody " (current-time-string) "\n"))
306     (and 
307      (nnmail-activate 'nnmbox)
308      (progn
309        (set-buffer buf)
310        (goto-char (point-min))
311        (search-forward "\n\n" nil t)
312        (forward-line -1)
313        (while (re-search-backward "^X-Gnus-Newsgroup: " nil t)
314          (delete-region (point) (progn (forward-line 1) (point))))
315        (setq result (nnmbox-save-mail (and (stringp group) group))))
316      (save-excursion
317        (set-buffer nnmbox-mbox-buffer)
318        (goto-char (point-max))
319        (insert-buffer-substring buf)
320        (and last (save-buffer))
321        result)
322      (nnmail-save-active nnmbox-group-alist nnmbox-active-file))
323     (car result)))
324
325 (defun nnmbox-request-replace-article (article group buffer)
326   (nnmbox-possibly-change-newsgroup group)
327   (save-excursion
328     (set-buffer nnmbox-mbox-buffer)
329     (goto-char (point-min))
330     (if (not (search-forward (nnmbox-article-string article) nil t))
331         nil
332       (nnmbox-delete-mail t t)
333       (insert-buffer-substring buffer)
334       (save-buffer)
335       t)))
336
337 (defun nnmbox-request-delete-group (group &optional force server)
338   (nnmbox-possibly-change-newsgroup group)
339   ;; Delete all articles in GROUP.
340   (if (not force)
341       ()                                ; Don't delete the articles.
342     (save-excursion
343       (set-buffer nnmbox-mbox-buffer)
344       (goto-char (point-min))
345       ;; Delete all articles in this group.
346       (let ((ident (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group ":"))
347             found)
348         (while (search-forward ident nil t)
349           (setq found t)
350           (nnmbox-delete-mail))
351         (and found (save-buffer)))))
352   ;; Remove the group from all structures.
353   (setq nnmbox-group-alist 
354         (delq (assoc group nnmbox-group-alist) nnmbox-group-alist)
355         nnmbox-current-group nil)
356   ;; Save the active file.
357   (nnmail-save-active nnmbox-group-alist nnmbox-active-file)
358   t)
359
360 (defun nnmbox-request-rename-group (group new-name &optional server)
361   (nnmbox-possibly-change-newsgroup group)
362   (save-excursion
363     (set-buffer nnmbox-mbox-buffer)
364     (goto-char (point-min))
365     (let ((ident (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group ":"))
366           (new-ident (concat "\nX-Gnus-Newsgroup: " new-name ":"))
367           found)
368       (while (search-forward ident nil t)
369         (replace-match new-ident t t)
370         (setq found t))
371       (and found (save-buffer))))
372   (let ((entry (assoc group nnmbox-group-alist)))
373     (and entry (setcar entry new-name))
374     (setq nnmbox-current-group nil)
375     ;; Save the new group alist.
376     (nnmail-save-active nnmbox-group-alist nnmbox-active-file)
377     t))
378
379 \f
380 ;;; Internal functions.
381
382 ;; If FORCE, delete article no matter how many X-Gnus-Newsgroup
383 ;; headers there are. If LEAVE-DELIM, don't delete the Unix mbox
384 ;; delimiter line.
385 (defun nnmbox-delete-mail (&optional force leave-delim)
386   ;; Delete the current X-Gnus-Newsgroup line.
387   (or force
388       (delete-region
389        (progn (beginning-of-line) (point))
390        (progn (forward-line 1) (point))))
391   ;; Beginning of the article.
392   (save-excursion
393     (save-restriction
394       (narrow-to-region
395        (save-excursion
396          (re-search-backward (concat "^" rmail-unix-mail-delimiter) nil t)
397          (if leave-delim (progn (forward-line 1) (point))
398            (match-beginning 0)))
399        (progn
400          (forward-line 1)
401          (or (and (re-search-forward (concat "^" rmail-unix-mail-delimiter) 
402                                      nil t)
403                   (if (and (not (bobp)) leave-delim)
404                       (progn (forward-line -2) (point))
405                     (match-beginning 0)))
406              (point-max))))
407       (goto-char (point-min))
408       ;; Only delete the article if no other groups owns it as well.
409       (if (or force (not (re-search-forward "^X-Gnus-Newsgroup: " nil t)))
410           (delete-region (point-min) (point-max))))))
411
412 (defun nnmbox-possibly-change-newsgroup (newsgroup)
413   (if (or (not nnmbox-mbox-buffer)
414           (not (buffer-name nnmbox-mbox-buffer)))
415       (save-excursion
416         (set-buffer (setq nnmbox-mbox-buffer 
417                           (nnheader-find-file-noselect
418                            nnmbox-mbox-file nil 'raw)))
419         (buffer-disable-undo (current-buffer))))
420   (if (not nnmbox-group-alist)
421       (nnmail-activate 'nnmbox))
422   (if newsgroup
423       (if (assoc newsgroup nnmbox-group-alist)
424           (setq nnmbox-current-group newsgroup))
425     t))
426
427 (defun nnmbox-article-string (article)
428   (if (numberp article)
429       (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group ":" 
430               (int-to-string article) " ")
431     (concat "\nMessage-ID: " article)))
432
433 (defun nnmbox-article-group-number ()
434   (save-excursion
435     (goto-char (point-min))
436     (and (re-search-forward "^X-Gnus-Newsgroup: +\\([^:]+\\):\\([0-9]+\\) "
437                             nil t)
438          (cons (buffer-substring (match-beginning 1) (match-end 1))
439                (string-to-int
440                 (buffer-substring (match-beginning 2) (match-end 2)))))))
441
442 (defun nnmbox-save-mail (&optional group)
443   "Called narrowed to an article."
444   (let* ((nnmail-split-methods 
445           (if group (list (list group "")) nnmail-split-methods))
446          (group-art (nreverse (nnmail-article-group 'nnmbox-active-number)))
447          (delim (concat "^" rmail-unix-mail-delimiter)))
448     (goto-char (point-min))
449     ;; This might come from somewhere else.
450     (unless (looking-at delim)
451       (insert "From nobody " (current-time-string) "\n")
452       (goto-char (point-min)))
453     ;; Quote all "From " lines in the article.
454     (forward-line 1)
455     (while (re-search-forward delim nil t)
456       (beginning-of-line)
457       (insert "> "))
458     (nnmail-insert-lines)
459     (nnmail-insert-xref group-art)
460     (nnmbox-insert-newsgroup-line group-art)
461     (run-hooks 'nnmbox-prepare-save-mail-hook)
462     group-art))
463
464 (defun nnmbox-insert-newsgroup-line (group-art)
465   (save-excursion
466     (goto-char (point-min))
467     (if (search-forward "\n\n" nil t)
468         (progn
469           (forward-char -1)
470           (while group-art
471             (insert (format "X-Gnus-Newsgroup: %s:%d   %s\n" 
472                             (caar group-art) (cdar group-art)
473                             (current-time-string)))
474             (setq group-art (cdr group-art)))))
475     t))
476
477 (defun nnmbox-active-number (group)
478   ;; Find the next article number in GROUP.
479   (let ((active (cadr (assoc group nnmbox-group-alist))))
480     (if active
481         (setcdr active (1+ (cdr active)))
482       ;; This group is new, so we create a new entry for it.
483       ;; This might be a bit naughty... creating groups on the drop of
484       ;; a hat, but I don't know...
485       (setq nnmbox-group-alist (cons (list group (setq active (cons 1 1)))
486                                      nnmbox-group-alist)))
487     (cdr active)))
488
489 (defun nnmbox-read-mbox ()
490   (nnmail-activate 'nnmbox)
491   (if (not (file-exists-p nnmbox-mbox-file))
492       (write-region 1 1 nnmbox-mbox-file t 'nomesg))
493   (if (and nnmbox-mbox-buffer
494            (buffer-name nnmbox-mbox-buffer)
495            (save-excursion
496              (set-buffer nnmbox-mbox-buffer)
497              (= (buffer-size) (nth 7 (file-attributes nnmbox-mbox-file)))))
498       ()
499     (save-excursion
500       (let ((delim (concat "^" rmail-unix-mail-delimiter))
501             start end)
502         (set-buffer (setq nnmbox-mbox-buffer 
503                           (nnheader-find-file-noselect
504                            nnmbox-mbox-file nil 'raw)))
505         (buffer-disable-undo (current-buffer))
506         (goto-char (point-min))
507         (while (re-search-forward delim nil t)
508           (setq start (match-beginning 0))
509           (if (not (search-forward "\nX-Gnus-Newsgroup: " 
510                                    (save-excursion 
511                                      (setq end
512                                            (or
513                                             (and
514                                              (re-search-forward delim nil t)
515                                              (match-beginning 0))
516                                             (point-max))))
517                                    t))
518               (save-excursion
519                 (save-restriction
520                   (narrow-to-region start end)
521                   (nnmbox-save-mail))))
522           (goto-char end))))))
523
524 (provide 'nnmbox)
525
526 ;;; nnmbox.el ends here