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