T-gnus 6.14.6; synch up with Gnus v5.8.8.
[elisp/gnus.git-] / lisp / nnbabyl.el
1 ;;; nnbabyl.el --- rmail mbox access for Gnus
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1099, 2000
4 ;;      Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;;      Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
8 ;; Keywords: news, mail
9
10 ;; This file is part of GNU Emacs.
11
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 2, or (at your option)
15 ;; any later version.
16
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.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; For an overview of what the interface functions do, please see the
30 ;; Gnus sources.
31
32 ;;; Code:
33
34 (eval-when-compile (require 'cl))
35
36 (require 'nnheader)
37 (condition-case nil
38     (require 'rmail)
39   (t (nnheader-message
40       5 "Ignore rmail errors from this file, you don't have rmail")))
41 (require 'nnmail)
42 (require 'nnoo)
43
44 (nnoo-declare nnbabyl)
45
46 (defvoo nnbabyl-mbox-file (expand-file-name "~/RMAIL")
47   "The name of the rmail box file in the users home directory.")
48
49 (defvoo nnbabyl-active-file (expand-file-name "~/.rmail-active")
50   "The name of the active file for the rmail box.")
51
52 (defvoo nnbabyl-get-new-mail t
53   "If non-nil, nnbabyl will check the incoming mail file and split the mail.")
54
55 (defvoo nnbabyl-prepare-save-mail-hook nil
56   "Hook run narrowed to an article before saving.")
57
58 \f
59
60 (defvar nnbabyl-mail-delimiter "\^_")
61
62 (defconst nnbabyl-version "nnbabyl 1.0"
63   "nnbabyl version.")
64
65 (defvoo nnbabyl-mbox-buffer nil)
66 (defvoo nnbabyl-current-group nil)
67 (defvoo nnbabyl-status-string "")
68 (defvoo nnbabyl-group-alist nil)
69 (defvoo nnbabyl-active-timestamp nil)
70
71 (defvoo nnbabyl-previous-buffer-mode nil)
72
73 (eval-and-compile
74   (autoload 'gnus-set-text-properties "gnus-ems"))
75
76 \f
77
78 ;;; Interface functions
79
80 (nnoo-define-basics nnbabyl)
81
82 (deffoo nnbabyl-retrieve-headers (articles &optional group server fetch-old)
83   (save-excursion
84     (set-buffer nntp-server-buffer)
85     (erase-buffer)
86     (let ((number (length articles))
87           (count 0)
88           (delim (concat "^" nnbabyl-mail-delimiter))
89           article art-string start stop)
90       (nnbabyl-possibly-change-newsgroup group server)
91       (while (setq article (pop articles))
92         (setq art-string (nnbabyl-article-string article))
93         (set-buffer nnbabyl-mbox-buffer)
94         (end-of-line)
95         (when (or (search-forward art-string nil t)
96                   (search-backward art-string nil t))
97           (unless (re-search-backward delim nil t)
98             (goto-char (point-min)))
99           (while (and (not (looking-at ".+:"))
100                       (zerop (forward-line 1))))
101           (setq start (point))
102           (search-forward "\n\n" nil t)
103           (setq stop (1- (point)))
104           (set-buffer nntp-server-buffer)
105           (insert "221 ")
106           (princ article (current-buffer))
107           (insert " Article retrieved.\n")
108           (insert-buffer-substring nnbabyl-mbox-buffer start stop)
109           (goto-char (point-max))
110           (insert ".\n"))
111         (and (numberp nnmail-large-newsgroup)
112              (> number nnmail-large-newsgroup)
113              (zerop (% (incf count) 20))
114              (nnheader-message 5 "nnbabyl: Receiving headers... %d%%"
115                                (/ (* count 100) number))))
116
117       (and (numberp nnmail-large-newsgroup)
118            (> number nnmail-large-newsgroup)
119            (nnheader-message 5 "nnbabyl: Receiving headers...done"))
120
121       (set-buffer nntp-server-buffer)
122       (nnheader-fold-continuation-lines)
123       'headers)))
124
125 (deffoo nnbabyl-open-server (server &optional defs)
126   (nnoo-change-server 'nnbabyl server defs)
127   (nnbabyl-create-mbox)
128   (cond
129    ((not (file-exists-p nnbabyl-mbox-file))
130     (nnbabyl-close-server)
131     (nnheader-report 'nnbabyl "No such file: %s" nnbabyl-mbox-file))
132    ((file-directory-p nnbabyl-mbox-file)
133     (nnbabyl-close-server)
134     (nnheader-report 'nnbabyl "Not a regular file: %s" nnbabyl-mbox-file))
135    (t
136     (nnheader-report 'nnbabyl "Opened server %s using mbox %s" server
137                      nnbabyl-mbox-file)
138     t)))
139
140 (deffoo nnbabyl-close-server (&optional server)
141   ;; Restore buffer mode.
142   (when (and (nnbabyl-server-opened)
143              nnbabyl-previous-buffer-mode)
144     (save-excursion
145       (set-buffer nnbabyl-mbox-buffer)
146       (narrow-to-region
147        (caar nnbabyl-previous-buffer-mode)
148        (cdar nnbabyl-previous-buffer-mode))
149       (funcall (cdr nnbabyl-previous-buffer-mode))))
150   (nnoo-close-server 'nnbabyl server)
151   (setq nnbabyl-mbox-buffer nil)
152   t)
153
154 (deffoo nnbabyl-server-opened (&optional server)
155   (and (nnoo-current-server-p 'nnbabyl server)
156        nnbabyl-mbox-buffer
157        (buffer-name nnbabyl-mbox-buffer)
158        nntp-server-buffer
159        (buffer-name nntp-server-buffer)))
160
161 (deffoo nnbabyl-request-article (article &optional newsgroup server buffer)
162   (nnbabyl-possibly-change-newsgroup newsgroup server)
163   (save-excursion
164     (set-buffer nnbabyl-mbox-buffer)
165     (goto-char (point-min))
166     (when (search-forward (nnbabyl-article-string article) nil t)
167       (let (start stop summary-line)
168         (unless (re-search-backward (concat "^" nnbabyl-mail-delimiter) nil t)
169           (goto-char (point-min))
170           (end-of-line))
171         (while (and (not (looking-at ".+:"))
172                     (zerop (forward-line 1))))
173         (setq start (point))
174         (or (when (re-search-forward
175                    (concat "^" nnbabyl-mail-delimiter) nil t)
176               (beginning-of-line)
177               t)
178             (goto-char (point-max)))
179         (setq stop (point))
180         (let ((nntp-server-buffer (or buffer nntp-server-buffer)))
181           (set-buffer nntp-server-buffer)
182           (erase-buffer)
183           (insert-buffer-substring nnbabyl-mbox-buffer start stop)
184           (goto-char (point-min))
185           ;; If there is an EOOH header, then we have to remove some
186           ;; duplicated headers.
187           (setq summary-line (looking-at "Summary-line:"))
188           (when (search-forward "\n*** EOOH ***" nil t)
189             (if summary-line
190                 ;; The headers to be deleted are located before the
191                 ;; EOOH line...
192                 (delete-region (point-min) (progn (forward-line 1)
193                                                   (point)))
194               ;; ...or after.
195               (delete-region (progn (beginning-of-line) (point))
196                              (or (search-forward "\n\n" nil t)
197                                  (point)))))
198           (if (numberp article)
199               (cons nnbabyl-current-group article)
200             (nnbabyl-article-group-number)))))))
201
202 (deffoo nnbabyl-request-group (group &optional server dont-check)
203   (let ((active (cadr (assoc group nnbabyl-group-alist))))
204     (save-excursion
205       (cond
206        ((or (null active)
207             (null (nnbabyl-possibly-change-newsgroup group server)))
208         (nnheader-report 'nnbabyl "No such group: %s" group))
209        (dont-check
210         (nnheader-report 'nnbabyl "Selected group %s" group)
211         (nnheader-insert ""))
212        (t
213         (nnheader-report 'nnbabyl "Selected group %s" group)
214         (nnheader-insert "211 %d %d %d %s\n"
215                          (1+ (- (cdr active) (car active)))
216                          (car active) (cdr active) group))))))
217
218 (deffoo nnbabyl-request-scan (&optional group server)
219   (nnbabyl-possibly-change-newsgroup group server)
220   (nnbabyl-read-mbox)
221   (nnmail-get-new-mail
222    'nnbabyl
223    (lambda ()
224      (save-excursion
225        (set-buffer nnbabyl-mbox-buffer)
226        (save-buffer)))
227    (file-name-directory nnbabyl-mbox-file)
228    group
229    (lambda ()
230      (save-excursion
231        (let ((in-buf (current-buffer)))
232          (goto-char (point-min))
233          (while (search-forward "\n\^_\n" nil t)
234            (delete-char -1))
235          (set-buffer nnbabyl-mbox-buffer)
236          (goto-char (point-max))
237          (search-backward "\n\^_" nil t)
238          (goto-char (match-end 0))
239          (insert-buffer-substring in-buf)))
240      (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))))
241
242 (deffoo nnbabyl-close-group (group &optional server)
243   t)
244
245 (deffoo nnbabyl-request-create-group (group &optional server args)
246   (nnmail-activate 'nnbabyl)
247   (unless (assoc group nnbabyl-group-alist)
248     (push (list group (cons 1 0))
249           nnbabyl-group-alist)
250     (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))
251   t)
252
253 (deffoo nnbabyl-request-list (&optional server)
254   (save-excursion
255     (nnmail-find-file nnbabyl-active-file)
256     (setq nnbabyl-group-alist (nnmail-get-active))
257     t))
258
259 (deffoo nnbabyl-request-newgroups (date &optional server)
260   (nnbabyl-request-list server))
261
262 (deffoo nnbabyl-request-list-newsgroups (&optional server)
263   (nnheader-report 'nnbabyl "nnbabyl: LIST NEWSGROUPS is not implemented."))
264
265 (deffoo nnbabyl-request-expire-articles
266     (articles newsgroup &optional server force)
267   (nnbabyl-possibly-change-newsgroup newsgroup server)
268   (let* ((is-old t)
269          rest)
270     (nnmail-activate 'nnbabyl)
271
272     (save-excursion
273       (set-buffer nnbabyl-mbox-buffer)
274       (gnus-set-text-properties (point-min) (point-max) nil)
275       (while (and articles is-old)
276         (goto-char (point-min))
277         (when (search-forward (nnbabyl-article-string (car articles)) nil t)
278           (if (setq is-old
279                     (nnmail-expired-article-p
280                      newsgroup
281                      (buffer-substring
282                       (point) (progn (end-of-line) (point))) force))
283               (progn
284                 (nnheader-message 5 "Deleting article %d in %s..."
285                                   (car articles) newsgroup)
286                 (nnbabyl-delete-mail))
287             (push (car articles) rest)))
288         (setq articles (cdr articles)))
289       (save-buffer)
290       ;; Find the lowest active article in this group.
291       (let ((active (nth 1 (assoc newsgroup nnbabyl-group-alist))))
292         (goto-char (point-min))
293         (while (and (not (search-forward
294                           (nnbabyl-article-string (car active)) nil t))
295                     (<= (car active) (cdr active)))
296           (setcar active (1+ (car active)))
297           (goto-char (point-min))))
298       (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
299       (nconc rest articles))))
300
301 (deffoo nnbabyl-request-move-article
302     (article group server accept-form &optional last)
303   (let ((buf (get-buffer-create " *nnbabyl move*"))
304         result)
305     (and
306      (nnbabyl-request-article article group server)
307      (save-excursion
308        (set-buffer buf)
309        (insert-buffer-substring nntp-server-buffer)
310        (goto-char (point-min))
311        (while (re-search-forward
312                "^X-Gnus-Newsgroup:"
313                (save-excursion (search-forward "\n\n" nil t) (point)) t)
314          (delete-region (progn (beginning-of-line) (point))
315                         (progn (forward-line 1) (point))))
316        (setq result (eval accept-form))
317        (kill-buffer (current-buffer))
318        result)
319      (save-excursion
320        (nnbabyl-possibly-change-newsgroup group server)
321        (set-buffer nnbabyl-mbox-buffer)
322        (goto-char (point-min))
323        (if (search-forward (nnbabyl-article-string article) nil t)
324            (nnbabyl-delete-mail))
325        (and last (save-buffer))))
326     result))
327
328 (deffoo nnbabyl-request-accept-article (group &optional server last)
329   (nnbabyl-possibly-change-newsgroup group server)
330   (nnmail-check-syntax)
331   (let ((buf (current-buffer))
332         result beg)
333     (and
334      (nnmail-activate 'nnbabyl)
335      (save-excursion
336        (goto-char (point-min))
337        (search-forward "\n\n" nil t)
338        (forward-line -1)
339        (save-excursion
340          (while (re-search-backward "^X-Gnus-Newsgroup: " beg t)
341            (delete-region (point) (progn (forward-line 1) (point)))))
342        (when nnmail-cache-accepted-message-ids
343          (nnmail-cache-insert (nnmail-fetch-field "message-id")))
344        (setq result
345              (if (stringp group)
346                  (list (cons group (nnbabyl-active-number group)))
347                (nnmail-article-group 'nnbabyl-active-number)))
348        (if (and (null result)
349                 (yes-or-no-p "Moved to `junk' group; delete article? "))
350            (setq result 'junk)
351          (setq result (car (nnbabyl-save-mail result))))
352        (set-buffer nnbabyl-mbox-buffer)
353        (goto-char (point-max))
354        (search-backward "\n\^_")
355        (goto-char (match-end 0))
356        (insert-buffer-substring buf)
357        (when last
358          (when nnmail-cache-accepted-message-ids
359            (nnmail-cache-insert (nnmail-fetch-field "message-id")))
360          (save-buffer)
361          (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))
362        result))))
363
364 (deffoo nnbabyl-request-replace-article (article group buffer)
365   (nnbabyl-possibly-change-newsgroup group)
366   (save-excursion
367     (set-buffer nnbabyl-mbox-buffer)
368     (goto-char (point-min))
369     (if (not (search-forward (nnbabyl-article-string article) nil t))
370         nil
371       (nnbabyl-delete-mail t t)
372       (insert-buffer-substring buffer)
373       (save-buffer)
374       t)))
375
376 (deffoo nnbabyl-request-delete-group (group &optional force server)
377   (nnbabyl-possibly-change-newsgroup group server)
378   ;; Delete all articles in GROUP.
379   (if (not force)
380       ()                                ; Don't delete the articles.
381     (save-excursion
382       (set-buffer nnbabyl-mbox-buffer)
383       (goto-char (point-min))
384       ;; Delete all articles in this group.
385       (let ((ident (concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"))
386             found)
387         (while (search-forward ident nil t)
388           (setq found t)
389           (nnbabyl-delete-mail))
390         (when found
391           (save-buffer)))))
392   ;; Remove the group from all structures.
393   (setq nnbabyl-group-alist
394         (delq (assoc group nnbabyl-group-alist) nnbabyl-group-alist)
395         nnbabyl-current-group nil)
396   ;; Save the active file.
397   (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
398   t)
399
400 (deffoo nnbabyl-request-rename-group (group new-name &optional server)
401   (nnbabyl-possibly-change-newsgroup group server)
402   (save-excursion
403     (set-buffer nnbabyl-mbox-buffer)
404     (goto-char (point-min))
405     (let ((ident (concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"))
406           (new-ident (concat "\nX-Gnus-Newsgroup: " new-name ":"))
407           found)
408       (while (search-forward ident nil t)
409         (replace-match new-ident t t)
410         (setq found t))
411       (when found
412         (save-buffer))))
413   (let ((entry (assoc group nnbabyl-group-alist)))
414     (and entry (setcar entry new-name))
415     (setq nnbabyl-current-group nil)
416     ;; Save the new group alist.
417     (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
418     t))
419
420 \f
421 ;;; Internal functions.
422
423 ;; If FORCE, delete article no matter how many X-Gnus-Newsgroup
424 ;; headers there are.  If LEAVE-DELIM, don't delete the Unix mbox
425 ;; delimiter line.
426 (defun nnbabyl-delete-mail (&optional force leave-delim)
427   ;; Delete the current X-Gnus-Newsgroup line.
428   (unless force
429     (delete-region
430      (progn (beginning-of-line) (point))
431      (progn (forward-line 1) (point))))
432   ;; Beginning of the article.
433   (save-excursion
434     (save-restriction
435       (widen)
436       (narrow-to-region
437        (save-excursion
438          (unless (re-search-backward (concat "^" nnbabyl-mail-delimiter) nil t)
439            (goto-char (point-min))
440            (end-of-line))
441          (if leave-delim (progn (forward-line 1) (point))
442            (match-beginning 0)))
443        (progn
444          (forward-line 1)
445          (or (and (re-search-forward (concat "^" nnbabyl-mail-delimiter)
446                                      nil t)
447                   (match-beginning 0))
448              (point-max))))
449       (goto-char (point-min))
450       ;; Only delete the article if no other groups owns it as well.
451       (when (or force (not (re-search-forward "^X-Gnus-Newsgroup: " nil t)))
452         (delete-region (point-min) (point-max))))))
453
454 (defun nnbabyl-possibly-change-newsgroup (newsgroup &optional server)
455   (when (and server
456              (not (nnbabyl-server-opened server)))
457     (nnbabyl-open-server server))
458   (when (or (not nnbabyl-mbox-buffer)
459             (not (buffer-name nnbabyl-mbox-buffer)))
460     (save-excursion (nnbabyl-read-mbox)))
461   (unless nnbabyl-group-alist
462     (nnmail-activate 'nnbabyl))
463   (if newsgroup
464       (if (assoc newsgroup nnbabyl-group-alist)
465           (setq nnbabyl-current-group newsgroup)
466         (nnheader-report 'nnbabyl "No such group in file"))
467     t))
468
469 (defun nnbabyl-article-string (article)
470   (if (numberp article)
471       (concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"
472               (int-to-string article) " ")
473     (concat "\nMessage-ID: " article)))
474
475 (defun nnbabyl-article-group-number ()
476   (save-excursion
477     (goto-char (point-min))
478     (when (re-search-forward "^X-Gnus-Newsgroup: +\\([^:]+\\):\\([0-9]+\\) "
479                              nil t)
480       (cons (buffer-substring (match-beginning 1) (match-end 1))
481             (string-to-int
482              (buffer-substring (match-beginning 2) (match-end 2)))))))
483
484 (defun nnbabyl-insert-lines ()
485   "Insert how many lines and chars there are in the body of the mail."
486   (let (lines chars)
487     (save-excursion
488       (goto-char (point-min))
489       (when (search-forward "\n\n" nil t)
490         ;; There may be an EOOH line here...
491         (when (looking-at "\\*\\*\\* EOOH \\*\\*\\*")
492           (search-forward "\n\n" nil t))
493         (setq chars (- (point-max) (point))
494               lines (max (- (count-lines (point) (point-max)) 1) 0))
495         ;; Move back to the end of the headers.
496         (goto-char (point-min))
497         (search-forward "\n\n" nil t)
498         (forward-char -1)
499         (save-excursion
500           (when (re-search-backward "^Lines: " nil t)
501             (delete-region (point) (progn (forward-line 1) (point)))))
502         (insert (format "Lines: %d\n" lines))
503         chars))))
504
505 (defun nnbabyl-save-mail (group-art)
506   ;; Called narrowed to an article.
507   (nnbabyl-insert-lines)
508   (nnmail-insert-xref group-art)
509   (nnbabyl-insert-newsgroup-line group-art)
510   (run-hooks 'nnbabyl-prepare-save-mail-hook)
511   group-art)
512
513 (defun nnbabyl-insert-newsgroup-line (group-art)
514   (save-excursion
515     (goto-char (point-min))
516     (while (looking-at "From ")
517       (replace-match "Mail-from: From " t t)
518       (forward-line 1))
519     ;; If there is a C-l at the beginning of the narrowed region, this
520     ;; isn't really a "save", but rather a "scan".
521     (goto-char (point-min))
522     (unless (looking-at "\^L")
523       (save-excursion
524         (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
525         (goto-char (point-max))
526         (insert "\^_\n")))
527     (when (search-forward "\n\n" nil t)
528       (forward-char -1)
529       (while group-art
530         (insert (format "X-Gnus-Newsgroup: %s:%d   %s\n"
531                         (caar group-art) (cdar group-art)
532                         (current-time-string)))
533         (setq group-art (cdr group-art))))
534     t))
535
536 (defun nnbabyl-active-number (group)
537   ;; Find the next article number in GROUP.
538   (let ((active (cadr (assoc group nnbabyl-group-alist))))
539     (if active
540         (setcdr active (1+ (cdr active)))
541       ;; This group is new, so we create a new entry for it.
542       ;; This might be a bit naughty... creating groups on the drop of
543       ;; a hat, but I don't know...
544       (push (list group (setq active (cons 1 1)))
545             nnbabyl-group-alist))
546     (cdr active)))
547
548 (defun nnbabyl-create-mbox ()
549   (unless (file-exists-p nnbabyl-mbox-file)
550     ;; Create a new, empty RMAIL mbox file.
551     (save-excursion
552       (set-buffer (setq nnbabyl-mbox-buffer
553                         (create-file-buffer nnbabyl-mbox-file)))
554       (setq buffer-file-name nnbabyl-mbox-file)
555       (insert "BABYL OPTIONS:\n\n\^_")
556       (nnmail-write-region
557        (point-min) (point-max) nnbabyl-mbox-file t 'nomesg))))
558
559 (defun nnbabyl-read-mbox ()
560   (nnmail-activate 'nnbabyl)
561   (nnbabyl-create-mbox)
562
563   (unless (and nnbabyl-mbox-buffer
564                (buffer-name nnbabyl-mbox-buffer)
565                (save-excursion
566                  (set-buffer nnbabyl-mbox-buffer)
567                  (= (buffer-size) (nnheader-file-size nnbabyl-mbox-file))))
568     ;; This buffer has changed since we read it last.  Possibly.
569     (save-excursion
570       (let ((delim (concat "^" nnbabyl-mail-delimiter))
571             (alist nnbabyl-group-alist)
572             start end number)
573         (set-buffer (setq nnbabyl-mbox-buffer
574                           (nnheader-find-file-noselect
575                            nnbabyl-mbox-file nil t)))
576         ;; Save previous buffer mode.
577         (setq nnbabyl-previous-buffer-mode
578               (cons (cons (point-min) (point-max))
579                     major-mode))
580
581         (buffer-disable-undo)
582         (widen)
583         (setq buffer-read-only nil)
584         (fundamental-mode)
585
586         ;; Go through the group alist and compare against
587         ;; the rmail file.
588         (while alist
589           (goto-char (point-max))
590           (when (and (re-search-backward
591                       (format "^X-Gnus-Newsgroup: %s:\\([0-9]+\\) "
592                               (caar alist))
593                       nil t)
594                      (> (setq number
595                               (string-to-number
596                                (buffer-substring
597                                 (match-beginning 1) (match-end 1))))
598                         (cdadar alist)))
599             (setcdr (cadar alist) number))
600           (setq alist (cdr alist)))
601
602         ;; We go through the mbox and make sure that each and
603         ;; every mail belongs to some group or other.
604         (goto-char (point-min))
605         (if (looking-at "\^L")
606             (setq start (point))
607           (re-search-forward delim nil t)
608           (setq start (match-end 0)))
609         (while (re-search-forward delim nil t)
610           (setq end (match-end 0))
611           (unless (search-backward "\nX-Gnus-Newsgroup: " start t)
612             (goto-char end)
613             (save-excursion
614               (save-restriction
615                 (narrow-to-region (goto-char start) end)
616                 (nnbabyl-save-mail
617                  (nnmail-article-group 'nnbabyl-active-number))
618                 (setq end (point-max)))))
619           (goto-char (setq start end)))
620         (when (buffer-modified-p (current-buffer))
621           (save-buffer))
622         (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)))))
623
624 (defun nnbabyl-remove-incoming-delims ()
625   (goto-char (point-min))
626   (while (search-forward "\^_" nil t)
627     (replace-match "?" t t)))
628
629 (defun nnbabyl-check-mbox ()
630   "Go through the nnbabyl mbox and make sure that no article numbers are reused."
631   (interactive)
632   (let ((idents (make-vector 1000 0))
633         id)
634     (save-excursion
635       (when (or (not nnbabyl-mbox-buffer)
636                 (not (buffer-name nnbabyl-mbox-buffer)))
637         (nnbabyl-read-mbox))
638       (set-buffer nnbabyl-mbox-buffer)
639       (goto-char (point-min))
640       (while (re-search-forward "^X-Gnus-Newsgroup: \\([^ ]+\\) "  nil t)
641         (if (intern-soft (setq id (match-string 1)) idents)
642             (progn
643               (delete-region (progn (beginning-of-line) (point))
644                              (progn (forward-line 1) (point)))
645               (nnheader-message 7 "Moving %s..." id)
646               (nnbabyl-save-mail
647                (nnmail-article-group 'nnbabyl-active-number)))
648           (intern id idents)))
649       (when (buffer-modified-p (current-buffer))
650         (save-buffer))
651       (nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
652       (nnheader-message 5 ""))))
653
654 (provide 'nnbabyl)
655
656 ;;; nnbabyl.el ends here