* gnus-art.el (gnus-button-handle-custom): Do not just use
[gnus] / lisp / 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 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., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, 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 (defvoo nnbabyl-active-file (expand-file-name "~/.rmail-active")
49   "The name of the active file for the rmail box.")
50
51 (defvoo nnbabyl-get-new-mail t
52   "If non-nil, nnbabyl will check the incoming mail file and split the mail.")
53
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 \f
74
75 ;;; Interface functions
76
77 (nnoo-define-basics nnbabyl)
78
79 (deffoo nnbabyl-retrieve-headers (articles &optional group server fetch-old)
80   (save-excursion
81     (set-buffer nntp-server-buffer)
82     (erase-buffer)
83     (let ((number (length articles))
84           (count 0)
85           (delim (concat "^" nnbabyl-mail-delimiter))
86           article art-string start stop)
87       (nnbabyl-possibly-change-newsgroup group server)
88       (while (setq article (pop articles))
89         (setq art-string (nnbabyl-article-string article))
90         (set-buffer nnbabyl-mbox-buffer)
91         (end-of-line)
92         (when (or (search-forward art-string nil t)
93                   (search-backward art-string nil t))
94  &nb