1 ;;; nnmbox.el --- mail mbox access for Gnus
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
8 ;; Keywords: news, mail
10 ;; This file is part of GNU Emacs.
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.
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.
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/>.
27 ;; For an overview of what the interface functions do, please see the
37 (eval-when-compile (require 'cl
))
41 (defvoo nnmbox-mbox-file
(expand-file-name "~/mbox")
42 "The name of the mail box file in the user's home directory.")
44 (defvoo nnmbox-active-file
(expand-file-name "~/.mbox-active")
45 "The name of the active file for the mail box.")
47 (defvoo nnmbox-get-new-mail t
48 "If non-nil, nnmbox will check the incoming mail file and split the mail.")
50 (defvoo nnmbox-prepare-save-mail-hook nil
51 "Hook run narrowed to an article before saving.")
55 (defconst nnmbox-version
"nnmbox 1.0"
58 (defvoo nnmbox-current-group nil
59 "Current nnmbox news group directory.")
61 (defvar nnmbox-mbox-buffer nil
)
63 (defvoo nnmbox-status-string
"")
65 (defvoo nnmbox-group-alist nil
)
66 (defvoo nnmbox-active-timestamp nil
)
68 (defvoo nnmbox-file-coding-system mm-binary-coding-system
)
69 (defvoo nnmbox-file-coding-system-for-write nil
)
70 (defvoo nnmbox-active-file-coding-system mm-binary-coding-system
)
71 (defvoo nnmbox-active-file-coding-system-for-write nil
)
73 (defvar nnmbox-group-building-active-articles nil
)
74 (defvar nnmbox-group-active-articles nil
)
77 ;;; Interface functions
79 (nnoo-define-basics nnmbox
)
81 (deffoo nnmbox-retrieve-headers
(sequence &optional newsgroup server fetch-old
)
83 (set-buffer nntp-server-buffer
)
85 (let ((number (length sequence
))
88 (nnmbox-possibly-change-newsgroup newsgroup server
)
90 (setq article
(car sequence
))
91 (set-buffer nnmbox-mbox-buffer
)
92 (when (nnmbox-find-article article
)
96 (concat "^" message-unix-mail-delimiter
) nil t
)
98 (search-forward "\n\n" nil t
)
99 (setq stop
(1- (point)))
100 (set-buffer nntp-server-buffer
)
101 (insert (format "221 %d Article retrieved.\n" article
))
102 (insert-buffer-substring nnmbox-mbox-buffer start stop
)
103 (goto-char (point-max))
105 (setq sequence
(cdr sequence
))
106 (setq count
(1+ count
))
107 (and (numberp nnmail-large-newsgroup
)
108 (> number nnmail-large-newsgroup
)
110 (nnheader-message 5 "nnmbox: Receiving headers... %d%%"
111 (/ (* count
100) number
))))
113 (and (numberp nnmail-large-newsgroup
)
114 (> number nnmail-large-newsgroup
)
115 (nnheader-message 5 "nnmbox: Receiving headers...done"))
117 (set-buffer nntp-server-buffer
)
118 (nnheader-fold-continuation-lines)
121 (deffoo nnmbox-open-server
(server &optional defs
)
122 (nnoo-change-server 'nnmbox server defs
)
125 ((not (file-exists-p nnmbox-mbox-file
))
126 (nnmbox-close-server)
127 (nnheader-report 'nnmbox
"No such file: %s" nnmbox-mbox-file
))
128 ((file-directory-p nnmbox-mbox-file
)
129 (nnmbox-close-server)
130 (nnheader-report 'nnmbox
"Not a regular file: %s" nnmbox-mbox-file
))
132 (nnheader-report 'nnmbox
"Opened server %s using mbox %s" server
136 (deffoo nnmbox-close-server
(&optional server
)
137 (when (and nnmbox-mbox-buffer
138 (buffer-name nnmbox-mbox-buffer
))
139 (kill-buffer nnmbox-mbox-buffer
))
140 (nnoo-close-server 'nnmbox server
)
143 (deffoo nnmbox-server-opened
(&optional server
)
144 (and (nnoo-current-server-p 'nnmbox server
)
146 (buffer-name nnmbox-mbox-buffer
)
148 (buffer-name nntp-server-buffer
)))
150 (deffoo nnmbox-request-article
(article &optional newsgroup server buffer
)
151 (nnmbox-possibly-change-newsgroup newsgroup server
)
153 (set-buffer nnmbox-mbox-buffer
)
154 (when (nnmbox-find-article article
)
156 (re-search-backward (concat "^" message-unix-mail-delimiter
) nil t
)
159 (setq stop
(if (re-search-forward (concat "^"
160 message-unix-mail-delimiter
)
164 (let ((nntp-server-buffer (or buffer nntp-server-buffer
)))
165 (set-buffer nntp-server-buffer
)
167 (insert-buffer-substring nnmbox-mbox-buffer start stop
)
168 (goto-char (point-min))
169 (while (looking-at "From ")
171 (insert "X-From-Line: ")
173 (if (numberp article
)
174 (cons nnmbox-current-group article
)
175 (nnmbox-article-group-number nil
)))))))
177 (deffoo nnmbox-request-group
(group &optional server dont-check
)
178 (nnmbox-possibly-change-newsgroup nil server
)
179 (let ((active (cadr (assoc group nnmbox-group-alist
))))
182 (null (nnmbox-possibly-change-newsgroup group server
)))
183 (nnheader-report 'nnmbox
"No such group: %s" group
))
185 (nnheader-report 'nnmbox
"Selected group %s" group
)
186 (nnheader-insert ""))
188 (nnheader-report 'nnmbox
"Selected group %s" group
)
189 (nnheader-insert "211 %d %d %d %s\n"
190 (1+ (- (cdr active
) (car active
)))
191 (car active
) (cdr active
) group
)))))
193 (defun nnmbox-save-buffer ()
194 (let ((coding-system-for-write
195 (or nnmbox-file-coding-system-for-write
196 nnmbox-file-coding-system
)))
199 (defun nnmbox-save-active (group-alist active-file
)
200 (let ((nnmail-active-file-coding-system
201 (or nnmbox-active-file-coding-system-for-write
202 nnmbox-active-file-coding-system
)))
203 (nnmail-save-active group-alist active-file
)))
205 (deffoo nnmbox-request-scan
(&optional group server
)
206 (nnmbox-possibly-change-newsgroup group server
)
212 (set-buffer nnmbox-mbox-buffer
)
213 (nnmbox-save-buffer)))
214 (file-name-directory nnmbox-mbox-file
)
218 (let ((in-buf (current-buffer)))
219 (set-buffer nnmbox-mbox-buffer
)
220 (goto-char (point-max))
221 (insert-buffer-substring in-buf
)))
222 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
))))
224 (deffoo nnmbox-close-group
(group &optional server
)
227 (deffoo nnmbox-request-create-group
(group &optional server args
)
228 (nnmail-activate 'nnmbox
)
229 (unless (assoc group nnmbox-group-alist
)
230 (push (list group
(cons 1 0))
232 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
))
235 (deffoo nnmbox-request-list
(&optional server
)
237 (let ((nnmail-file-coding-system
238 nnmbox-active-file-coding-system
))
239 (nnmail-find-file nnmbox-active-file
))
240 (setq nnmbox-group-alist
(nnmail-get-active))
243 (deffoo nnmbox-request-newgroups
(date &optional server
)
244 (nnmbox-request-list server
))
246 (deffoo nnmbox-request-list-newsgroups
(&optional server
)
247 (nnheader-report 'nnmbox
"LIST NEWSGROUPS is not implemented."))
249 (deffoo nnmbox-request-expire-articles
250 (articles newsgroup
&optional server force
)
251 (nnmbox-possibly-change-newsgroup newsgroup server
)
254 (nnmail-activate 'nnmbox
)
257 (set-buffer nnmbox-mbox-buffer
)
258 (while (and articles is-old
)
259 (when (nnmbox-find-article (car articles
))
261 (nnmail-expired-article-p
264 (point) (progn (end-of-line) (point))) force
))
266 (unless (eq nnmail-expiry-target
'delete
)
268 (nnmbox-request-article (car articles
)
271 (let ((nnml-current-directory nil
))
272 (nnmail-expiry-target-group
273 nnmail-expiry-target newsgroup
)))
274 (nnmbox-possibly-change-newsgroup newsgroup server
))
275 (nnheader-message 5 "Deleting article %d in %s..."
276 (car articles
) newsgroup
)
277 (nnmbox-delete-mail))
278 (push (car articles
) rest
)))
279 (setq articles
(cdr articles
)))
281 ;; Find the lowest active article in this group.
282 (let ((active (nth 1 (assoc newsgroup nnmbox-group-alist
))))
283 (while (and (not (nnmbox-find-article (car active
)))
284 (<= (car active
) (cdr active
)))
285 (setcar active
(1+ (car active
)))))
286 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
)
287 (nconc rest articles
))))
289 (deffoo nnmbox-request-move-article
290 (article group server accept-form
&optional last move-is-internal
)
291 (let ((buf (get-buffer-create " *nnmbox move*"))
294 (nnmbox-request-article article group server
)
298 (insert-buffer-substring nntp-server-buffer
)
299 (goto-char (point-min))
300 (while (re-search-forward
302 (save-excursion (search-forward "\n\n" nil t
) (point)) t
)
304 (setq result
(eval accept-form
))
308 (nnmbox-possibly-change-newsgroup group server
)
309 (set-buffer nnmbox-mbox-buffer
)
310 (when (nnmbox-find-article article
)
311 (nnmbox-delete-mail))
312 (and last
(nnmbox-save-buffer))))
315 (deffoo nnmbox-request-accept-article
(group &optional server last
)
316 (nnmbox-possibly-change-newsgroup group server
)
317 (nnmail-check-syntax)
318 (let ((buf (current-buffer))
321 (nnmail-activate 'nnmbox
)
323 (insert-buffer-substring buf
)
324 (goto-char (point-min))
325 (cond (;; The From line may have been quoted by movemail.
326 (looking-at (concat ">" message-unix-mail-delimiter
))
329 ((looking-at "X-From-Line: ")
330 (replace-match "From ")
333 (insert "From nobody " (current-time-string) "\n")))
334 (narrow-to-region (point)
335 (if (search-forward "\n\n" nil
'move
)
338 (while (re-search-backward "^X-Gnus-Newsgroup: " nil t
)
339 (delete-region (point) (progn (forward-line 1) (point))))
340 (when nnmail-cache-accepted-message-ids
341 (nnmail-cache-insert (message-fetch-field "message-id")
343 (message-fetch-field "subject")
344 (message-fetch-field "from")))
346 (setq result
(if (stringp group
)
347 (list (cons group
(nnmbox-active-number group
)))
348 (nnmail-article-group 'nnmbox-active-number
)))
350 (if (and (null result
)
351 (yes-or-no-p "Moved to `junk' group; delete article? "))
353 (setq result
(car (nnmbox-save-mail result
))))
354 (setq cont
(buffer-string))))
355 (with-current-buffer nnmbox-mbox-buffer
356 (goto-char (point-max))
359 (when nnmail-cache-accepted-message-ids
360 (nnmail-cache-close))
361 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
)
362 (nnmbox-save-buffer))))
365 (deffoo nnmbox-request-replace-article
(article group buffer
)
366 (nnmbox-possibly-change-newsgroup group
)
368 (set-buffer nnmbox-mbox-buffer
)
369 (if (not (nnmbox-find-article article
))
371 (nnmbox-delete-mail t t
)
374 (insert-buffer-substring buffer
)
375 (goto-char (point-min))
376 (when (looking-at "X-From-Line:")
377 (delete-region (point) (progn (forward-line 1) (point))))
378 (while (re-search-forward (concat "^" message-unix-mail-delimiter
)
380 (goto-char (match-beginning 0))
382 (goto-char (point-max))
389 (deffoo nnmbox-request-delete-group
(group &optional force server
)
390 (nnmbox-possibly-change-newsgroup group server
)
391 ;; Delete all articles in GROUP.
393 () ; Don't delete the articles.
395 (set-buffer nnmbox-mbox-buffer
)
396 (goto-char (point-min))
397 ;; Delete all articles in this group.
398 (let ((ident (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group
":"))
400 (while (search-forward ident nil t
)
402 (nnmbox-delete-mail))
404 (nnmbox-save-buffer)))))
405 ;; Remove the group from all structures.
406 (setq nnmbox-group-alist
407 (delq (assoc group nnmbox-group-alist
) nnmbox-group-alist
)
408 nnmbox-current-group nil
)
409 ;; Save the active file.
410 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
)
413 (deffoo nnmbox-request-rename-group
(group new-name
&optional server
)
414 (nnmbox-possibly-change-newsgroup group server
)
416 (set-buffer nnmbox-mbox-buffer
)
417 (goto-char (point-min))
418 (let ((ident (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group
":"))
419 (new-ident (concat "\nX-Gnus-Newsgroup: " new-name
":"))
421 (while (search-forward ident nil t
)
422 (replace-match new-ident t t
)
425 (nnmbox-save-buffer))))
426 (let ((entry (assoc group nnmbox-group-active-articles
)))
428 (setcar entry new-name
)))
429 (let ((entry (assoc group nnmbox-group-alist
)))
431 (setcar entry new-name
))
432 (setq nnmbox-current-group nil
)
433 ;; Save the new group alist.
434 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file
)
438 ;;; Internal functions.
440 ;; If FORCE, delete article no matter how many X-Gnus-Newsgroup
441 ;; headers there are. If LEAVE-DELIM, don't delete the Unix mbox
443 (defun nnmbox-delete-mail (&optional force leave-delim
)
444 ;; Delete the current X-Gnus-Newsgroup line.
445 ;; First delete record of active article, unless the article is being
446 ;; replaced, indicated by FORCE being non-nil.
448 (nnmbox-record-deleted-article (nnmbox-article-group-number t
)))
451 ;; Beginning of the article.
456 (re-search-backward (concat "^" message-unix-mail-delimiter
) nil t
)
457 (if leave-delim
(progn (forward-line 1) (point))
460 (or (and (re-search-forward (concat "^" message-unix-mail-delimiter
)
464 (goto-char (point-min))
465 ;; Only delete the article if no other group owns it as well.
467 (not (re-search-forward "^X-Gnus-Newsgroup: " nil t
))
468 (search-backward "\n\n" nil t
))
469 (delete-region (point-min) (point-max))))))
471 (defun nnmbox-possibly-change-newsgroup (newsgroup &optional server
)
473 (not (nnmbox-server-opened server
)))
474 (nnmbox-open-server server
))
475 (when (or (not nnmbox-mbox-buffer
)
476 (not (buffer-name nnmbox-mbox-buffer
)))
478 (when (not nnmbox-group-alist
)
479 (nnmail-activate 'nnmbox
))
481 (when (assoc newsgroup nnmbox-group-alist
)
482 (setq nnmbox-current-group newsgroup
))
485 (defun nnmbox-article-string (article)
486 (if (numberp article
)
487 (concat "\nX-Gnus-Newsgroup: " nnmbox-current-group
":"
488 (int-to-string article
) " ")
489 (concat "\nMessage-ID: " article
)))
491 (defun nnmbox-article-group-number (this-line)
495 (goto-char (point-min)))
496 (when (re-search-forward "^X-Gnus-Newsgroup: +\\([^:]+\\):\\([0-9]+\\) "
498 (cons (buffer-substring (match-beginning 1) (match-end 1))
500 (buffer-substring (match-beginning 2) (match-end 2)))))))
502 (defun nnmbox-in-header-p (pos)
503 "Return non-nil if POS is in the header of an article."
506 (re-search-backward (concat "^" message-unix-mail-delimiter
) nil t
)
507 (search-forward "\n\n" nil t
)
510 (defun nnmbox-find-article (article)
511 "Leaves point on the relevant X-Gnus-Newsgroup line if found."
512 ;; Check that article is in the active range first, to avoid an
513 ;; expensive exhaustive search if it isn't.
514 (if (and (numberp article
)
515 (not (nnmbox-is-article-active-p article
)))
517 (let ((art-string (nnmbox-article-string article
))
519 ;; There is the possibility that the X-Gnus-Newsgroup line appears
520 ;; in the body of an article (for instance, if an article has been
521 ;; forwarded from someone using Gnus as their mailer), so check
522 ;; that the line is actually part of the article header.
523 (or (and (search-forward art-string nil t
)
524 (nnmbox-in-header-p (point)))
526 (goto-char (point-min))
527 (while (and (not found
)
528 (search-forward art-string nil t
))
529 (setq found
(nnmbox-in-header-p (point))))
532 (defun nnmbox-record-active-article (group-art)
533 (let* ((group (car group-art
))
534 (article (cdr group-art
))
536 (or (assoc group nnmbox-group-active-articles
)
539 nnmbox-group-active-articles
)
540 (car nnmbox-group-active-articles
)))))
541 ;; add article to index, either by building complete list
542 ;; in reverse order, or as a list of ranges.
543 (if (not nnmbox-group-building-active-articles
)
544 (setcdr entry
(gnus-add-to-range (cdr entry
) (list article
)))
545 (when (memq article
(cdr entry
))
546 (switch-to-buffer nnmbox-mbox-buffer
)
547 (error "Article %s:%d already exists!" group article
))
548 (when (and (cadr entry
) (< article
(cadr entry
)))
549 (switch-to-buffer nnmbox-mbox-buffer
)
550 (error "Article %s:%d out of order" group article
))
551 (setcdr entry
(cons article
(cdr entry
))))))
553 (defun nnmbox-record-deleted-article (group-art)
554 (let* ((group (car group-art
))
555 (article (cdr group-art
))
557 (or (assoc group nnmbox-group-active-articles
)
560 nnmbox-group-active-articles
)
561 (car nnmbox-group-active-articles
)))))
562 ;; remove article from index
563 (setcdr entry
(gnus-remove-from-range (cdr entry
) (list article
)))))
565 (defun nnmbox-is-article-active-p (article)
566 (gnus-member-of-range
568 (cdr (assoc nnmbox-current-group
569 nnmbox-group-active-articles
))))
571 (defun nnmbox-save-mail (group-art)
572 "Called narrowed to an article."
573 (let ((delim (concat "^" message-unix-mail-delimiter
)))
574 (goto-char (point-min))
575 ;; This might come from somewhere else.
576 (if (looking-at delim
)
578 (insert "From nobody " (current-time-string) "\n"))
579 ;; Quote all "From " lines in the article.
580 (while (re-search-forward delim nil t
)
581 (goto-char (match-beginning 0))
583 (goto-char (point-max))
586 (nnmail-insert-lines)
587 (nnmail-insert-xref group-art
)
588 (nnmbox-insert-newsgroup-line group-art
)
589 (let ((alist group-art
))
591 (nnmbox-record-active-article (car alist
))
592 (setq alist
(cdr alist
))))
593 (run-hooks 'nnmail-prepare-save-mail-hook
)
594 (run-hooks 'nnmbox-prepare-save-mail-hook
)
597 (defun nnmbox-insert-newsgroup-line (group-art)
599 (goto-char (point-min))
600 (when (search-forward "\n\n" nil t
)
603 (insert (format "X-Gnus-Newsgroup: %s:%d %s\n"
604 (caar group-art
) (cdar group-art
)
605 (current-time-string)))
606 (setq group-art
(cdr group-art
))))
609 (defun nnmbox-active-number (group)
610 ;; Find the next article number in GROUP.
611 (let ((active (cadr (assoc group nnmbox-group-alist
))))
613 (setcdr active
(1+ (cdr active
)))
614 ;; This group is new, so we create a new entry for it.
615 ;; This might be a bit naughty... creating groups on the drop of
616 ;; a hat, but I don't know...
617 (push (list group
(setq active
(cons 1 1)))
621 (defun nnmbox-create-mbox ()
622 (when (not (file-exists-p nnmbox-mbox-file
))
623 (let ((nnmail-file-coding-system
624 (or nnmbox-file-coding-system-for-write
625 nnmbox-file-coding-system
))
626 (dir (file-name-directory nnmbox-mbox-file
)))
627 (and dir
(gnus-make-directory dir
))
628 (nnmail-write-region (point-min) (point-min)
629 nnmbox-mbox-file t
'nomesg
))))
631 (defun nnmbox-read-mbox ()
632 (nnmail-activate 'nnmbox
)
634 (if (and nnmbox-mbox-buffer
635 (buffer-name nnmbox-mbox-buffer
)
637 (set-buffer nnmbox-mbox-buffer
)
638 (= (buffer-size) (nnheader-file-size nnmbox-mbox-file
))))
641 (let ((delim (concat "^" message-unix-mail-delimiter
))
642 (alist nnmbox-group-alist
)
643 (nnmbox-group-building-active-articles t
)
644 start end end-header number
)
645 (set-buffer (setq nnmbox-mbox-buffer
646 (let ((nnheader-file-coding-system
647 nnmbox-file-coding-system
))
648 (nnheader-find-file-noselect
649 nnmbox-mbox-file t t
))))
650 (mm-enable-multibyte)
651 (buffer-disable-undo)
653 ;; Go through the group alist and compare against the mbox file.
655 (goto-char (point-max))
656 (when (and (re-search-backward
657 (format "^X-Gnus-Newsgroup: %s:\\([0-9]+\\) "
662 (match-beginning 1) (match-end 1))))
664 (setcdr (cadar alist
) number
))
665 (setq alist
(cdr alist
)))
667 ;; Examine all articles for our private X-Gnus-Newsgroup
668 ;; headers. This is done primarily as a consistency check, but
669 ;; it is convenient for building an index of the articles
670 ;; present, to avoid costly searches for missing articles
671 ;; (eg. when expiring articles).
672 (goto-char (point-min))
673 (setq nnmbox-group-active-articles nil
)
674 (while (re-search-forward delim nil t
)
675 (setq start
(match-beginning 0))
677 (search-forward "\n\n" nil t
)
678 (setq end-header
(point))
680 (re-search-forward delim nil t
)
683 (if (search-forward "\nX-Gnus-Newsgroup: " end-header t
)
684 ;; Build a list of articles in each group, remembering
685 ;; that each article may be in more than one group.
687 (nnmbox-record-active-article (nnmbox-article-group-number t
))
688 (while (search-forward "\nX-Gnus-Newsgroup: " end-header t
)
689 (nnmbox-record-active-article (nnmbox-article-group-number t
))))
690 ;; The article is either new, or for some other reason
691 ;; hasn't got our private headers, so add them now. The
692 ;; only situation I've encountered when the X-Gnus-Newsgroup
693 ;; header is missing is if the article contains a forwarded
694 ;; message which does contain that header line (earlier
695 ;; versions of Gnus didn't restrict their search to the
696 ;; headers). In this case, there is an Xref line which
697 ;; provides the relevant information to construct the
698 ;; missing header(s).
701 (narrow-to-region start end
)
702 (if (re-search-forward "\nXref: [^ ]+" end-header t
)
703 ;; generate headers from Xref:
705 (while (re-search-forward " \\([^:]+\\):\\([0-9]+\\)" end-header t
)
706 (push (cons (match-string 1)
707 (string-to-number (match-string 2))) alist
))
708 (nnmbox-insert-newsgroup-line alist
))
709 ;; this is really a new article
711 (nnmail-article-group 'nnmbox-active-number
))))))
713 ;; put article lists in order
714 (setq alist nnmbox-group-active-articles
)
716 (setcdr (car alist
) (gnus-compress-sequence (nreverse (cdar alist
))))
717 (setq alist
(cdr alist
)))))))
721 ;; arch-tag: 611dd95f-be37-413a-b3ae-8b059ba93659
722 ;;; nnmbox.el ends here