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