Mercurial > emacs
annotate lisp/gnus/nnmh.el @ 80498:8df650d0126a
(BASE_PURESIZE): Increase to 1140000.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 11 Apr 2008 10:23:49 +0000 |
parents | 07ebd0fc42b8 |
children |
rev | line source |
---|---|
17493 | 1 ;;; nnmh.el --- mhspool access for Gnus |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
79708 | 4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
7 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> |
17493 | 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 | |
78224
24202b793a08
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
17493 | 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 | |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
17493 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; Based on nnspool.el by Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>. | |
30 ;; For an overview of what the interface functions do, please see the | |
31 ;; Gnus sources. | |
32 | |
33 ;;; Code: | |
34 | |
35 (require 'nnheader) | |
36 (require 'nnmail) | |
37 (require 'gnus-start) | |
38 (require 'nnoo) | |
19494
4280cff25537
Require cl only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
39 (eval-when-compile (require 'cl)) |
17493 | 40 |
41 (nnoo-declare nnmh) | |
42 | |
43 (defvoo nnmh-directory message-directory | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
44 "Mail spool directory.") |
17493 | 45 |
46 (defvoo nnmh-get-new-mail t | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
47 "If non-nil, nnmh will check the incoming mail file and split the mail.") |
17493 | 48 |
49 (defvoo nnmh-prepare-save-mail-hook nil | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
50 "Hook run narrowed to an article before saving.") |
17493 | 51 |
52 (defvoo nnmh-be-safe nil | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
53 "If non-nil, nnmh will check all articles to make sure whether they are new or not. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
54 Go through the .nnmh-articles file and compare with the actual |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
55 articles in this folder. The articles that are \"new\" will be marked |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
56 as unread by Gnus.") |
17493 | 57 |
58 | |
59 | |
60 (defconst nnmh-version "nnmh 1.0" | |
61 "nnmh version.") | |
62 | |
63 (defvoo nnmh-current-directory nil | |
64 "Current news group directory.") | |
65 | |
66 (defvoo nnmh-status-string "") | |
67 (defvoo nnmh-group-alist nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
68 ;; Don't even think about setting this variable. It does not exist. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
69 ;; Forget about it. Uh-huh. Nope. Nobody here. It's only bound |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
70 ;; dynamically by certain functions in nndraft. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
71 (defvar nnmh-allow-delete-final nil) |
17493 | 72 |
73 | |
74 | |
75 ;;; Interface functions. | |
76 | |
77 (nnoo-define-basics nnmh) | |
78 | |
79 (deffoo nnmh-retrieve-headers (articles &optional newsgroup server fetch-old) | |
80 (save-excursion | |
81 (set-buffer nntp-server-buffer) | |
82 (erase-buffer) | |
83 (let* ((file nil) | |
84 (number (length articles)) | |
85 (large (and (numberp nnmail-large-newsgroup) | |
86 (> number nnmail-large-newsgroup))) | |
87 (count 0) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
88 (file-name-coding-system nnmail-pathname-coding-system) |
17493 | 89 beg article) |
90 (nnmh-possibly-change-directory newsgroup server) | |
91 ;; We don't support fetching by Message-ID. | |
92 (if (stringp (car articles)) | |
93 'headers | |
94 (while articles | |
95 (when (and (file-exists-p | |
96 (setq file (concat (file-name-as-directory | |
97 nnmh-current-directory) | |
98 (int-to-string | |
99 (setq article (pop articles)))))) | |
100 (not (file-directory-p file))) | |
101 (insert (format "221 %d Article retrieved.\n" article)) | |
102 (setq beg (point)) | |
103 (nnheader-insert-head file) | |
104 (goto-char beg) | |
105 (if (search-forward "\n\n" nil t) | |
106 (forward-char -1) | |
107 (goto-char (point-max)) | |
108 (insert "\n\n")) | |
109 (insert ".\n") | |
110 (delete-region (point) (point-max))) | |
111 (setq count (1+ count)) | |
112 | |
113 (and large | |
114 (zerop (% count 20)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
115 (nnheader-message 5 "nnmh: Receiving headers... %d%%" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
116 (/ (* count 100) number)))) |
17493 | 117 |
118 (when large | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
119 (nnheader-message 5 "nnmh: Receiving headers...done")) |
17493 | 120 |
121 (nnheader-fold-continuation-lines) | |
122 'headers)))) | |
123 | |
124 (deffoo nnmh-open-server (server &optional defs) | |
125 (nnoo-change-server 'nnmh server defs) | |
126 (when (not (file-exists-p nnmh-directory)) | |
127 (condition-case () | |
128 (make-directory nnmh-directory t) | |
129 (error t))) | |
130 (cond | |
131 ((not (file-exists-p nnmh-directory)) | |
132 (nnmh-close-server) | |
133 (nnheader-report 'nnmh "Couldn't create directory: %s" nnmh-directory)) | |
134 ((not (file-directory-p (file-truename nnmh-directory))) | |
135 (nnmh-close-server) | |
136 (nnheader-report 'nnmh "Not a directory: %s" nnmh-directory)) | |
137 (t | |
138 (nnheader-report 'nnmh "Opened server %s using directory %s" | |
139 server nnmh-directory) | |
140 t))) | |
141 | |
142 (deffoo nnmh-request-article (id &optional newsgroup server buffer) | |
143 (nnmh-possibly-change-directory newsgroup server) | |
144 (let ((file (if (stringp id) | |
145 nil | |
146 (concat nnmh-current-directory (int-to-string id)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
147 (file-name-coding-system nnmail-pathname-coding-system) |
17493 | 148 (nntp-server-buffer (or buffer nntp-server-buffer))) |
149 (and (stringp file) | |
150 (file-exists-p file) | |
151 (not (file-directory-p file)) | |
152 (save-excursion (nnmail-find-file file)) | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
153 (string-to-number (file-name-nondirectory file))))) |
17493 | 154 |
155 (deffoo nnmh-request-group (group &optional server dont-check) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
156 (nnheader-init-server-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
157 (nnmh-possibly-change-directory group server) |
17493 | 158 (let ((pathname (nnmail-group-pathname group nnmh-directory)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
159 (file-name-coding-system nnmail-pathname-coding-system) |
17493 | 160 dir) |
161 (cond | |
162 ((not (file-directory-p pathname)) | |
163 (nnheader-report | |
164 'nnmh "Can't select group (no such directory): %s" group)) | |
165 (t | |
166 (setq nnmh-current-directory pathname) | |
167 (and nnmh-get-new-mail | |
168 nnmh-be-safe | |
169 (nnmh-update-gnus-unreads group)) | |
170 (cond | |
171 (dont-check | |
172 (nnheader-report 'nnmh "Selected group %s" group) | |
173 t) | |
174 (t | |
175 ;; Re-scan the directory if it's on a foreign system. | |
176 (nnheader-re-read-dir pathname) | |
177 (setq dir | |
178 (sort | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
179 (mapcar (lambda (name) (string-to-number name)) |
17493 | 180 (directory-files pathname nil "^[0-9]+$" t)) |
181 '<)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
182 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
183 (dir |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
184 (setq nnmh-group-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
185 (delq (assoc group nnmh-group-alist) nnmh-group-alist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
186 (push (list group (cons (car dir) (car (last dir)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
187 nnmh-group-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
188 (nnheader-report 'nnmh "Selected group %s" group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
189 (nnheader-insert |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
190 "211 %d %d %d %s\n" (length dir) (car dir) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
191 (car (last dir)) group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
192 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
193 (nnheader-report 'nnmh "Empty group %s" group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
194 (nnheader-insert (format "211 0 1 0 %s\n" group)))))))))) |
17493 | 195 |
196 (deffoo nnmh-request-scan (&optional group server) | |
197 (nnmail-get-new-mail 'nnmh nil nnmh-directory group)) | |
198 | |
199 (deffoo nnmh-request-list (&optional server dir) | |
200 (nnheader-insert "") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
201 (nnmh-possibly-change-directory nil server) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
202 (let ((file-name-coding-system nnmail-pathname-coding-system) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
203 (nnmh-toplev |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
204 (file-truename (or dir (file-name-as-directory nnmh-directory))))) |
17493 | 205 (nnmh-request-list-1 nnmh-toplev)) |
206 (setq nnmh-group-alist (nnmail-get-active)) | |
207 t) | |
208 | |
209 (defvar nnmh-toplev) | |
210 (defun nnmh-request-list-1 (dir) | |
211 (setq dir (expand-file-name dir)) | |
212 ;; Recurse down all directories. | |
213 (let ((dirs (and (file-readable-p dir) | |
214 (> (nth 1 (file-attributes (file-chase-links dir))) 2) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
215 (nnheader-directory-files dir t nil t))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
216 rdir) |
17493 | 217 ;; Recurse down directories. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
218 (while (setq rdir (pop dirs)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
219 (when (and (file-directory-p rdir) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
220 (file-readable-p rdir) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
221 (not (equal (file-truename rdir) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
222 (file-truename dir)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
223 (nnmh-request-list-1 rdir)))) |
17493 | 224 ;; For each directory, generate an active file line. |
225 (unless (string= (expand-file-name nnmh-toplev) dir) | |
226 (let ((files (mapcar | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
227 (lambda (name) (string-to-number name)) |
17493 | 228 (directory-files dir nil "^[0-9]+$" t)))) |
229 (when files | |
230 (save-excursion | |
231 (set-buffer nntp-server-buffer) | |
232 (goto-char (point-max)) | |
233 (insert | |
234 (format | |
46966
47d8bf1dec03
* nnmh.el (nnmh-request-list-1): Use %.0f instead of %d to
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
235 "%s %.0f %.0f y\n" |
17493 | 236 (progn |
237 (string-match | |
238 (regexp-quote | |
239 (file-truename (file-name-as-directory | |
240 (expand-file-name nnmh-toplev)))) | |
241 dir) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
242 (mm-string-as-multibyte |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
243 (mm-encode-coding-string |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
244 (nnheader-replace-chars-in-string |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
245 (substring dir (match-end 0)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
246 ?/ ?.) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
247 nnmail-pathname-coding-system))) |
17493 | 248 (apply 'max files) |
249 (apply 'min files))))))) | |
250 t) | |
251 | |
252 (deffoo nnmh-request-newgroups (date &optional server) | |
253 (nnmh-request-list server)) | |
254 | |
255 (deffoo nnmh-request-expire-articles (articles newsgroup | |
256 &optional server force) | |
257 (nnmh-possibly-change-directory newsgroup server) | |
80349
07ebd0fc42b8
[ Merge from Gnus v5-10 ]
Reiner Steib <Reiner.Steib@gmx.de>
parents:
79708
diff
changeset
|
258 (let ((is-old t) |
07ebd0fc42b8
[ Merge from Gnus v5-10 ]
Reiner Steib <Reiner.Steib@gmx.de>
parents:
79708
diff
changeset
|
259 (nnmail-expiry-target |
07ebd0fc42b8
[ Merge from Gnus v5-10 ]
Reiner Steib <Reiner.Steib@gmx.de>
parents:
79708
diff
changeset
|
260 (or (gnus-group-find-parameter newsgroup 'expiry-target t) |
07ebd0fc42b8
[ Merge from Gnus v5-10 ]
Reiner Steib <Reiner.Steib@gmx.de>
parents:
79708
diff
changeset
|
261 nnmail-expiry-target)) |
07ebd0fc42b8
[ Merge from Gnus v5-10 ]
Reiner Steib <Reiner.Steib@gmx.de>
parents:
79708
diff
changeset
|
262 article rest mod-time) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
263 (nnheader-init-server-buffer) |
17493 | 264 |
265 (while (and articles is-old) | |
266 (setq article (concat nnmh-current-directory | |
267 (int-to-string (car articles)))) | |
268 (when (setq mod-time (nth 5 (file-attributes article))) | |
269 (if (and (nnmh-deletable-article-p newsgroup (car articles)) | |
270 (setq is-old | |
271 (nnmail-expired-article-p newsgroup mod-time force))) | |
272 (progn | |
47002
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
273 ;; Allow a special target group. -- jcn |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
274 (unless (eq nnmail-expiry-target 'delete) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
275 (with-temp-buffer |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
276 (nnmh-request-article (car articles) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
277 newsgroup server (current-buffer)) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
278 (nnmail-expiry-target-group |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
46966
diff
changeset
|
279 nnmail-expiry-target newsgroup))) |
17493 | 280 (nnheader-message 5 "Deleting article %s in %s..." |
281 article newsgroup) | |
282 (condition-case () | |
283 (funcall nnmail-delete-file-function article) | |
284 (file-error | |
285 (nnheader-message 1 "Couldn't delete article %s in %s" | |
286 article newsgroup) | |
287 (push (car articles) rest)))) | |
288 (push (car articles) rest))) | |
289 (setq articles (cdr articles))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
290 (nnheader-message 5 "") |
17493 | 291 (nconc rest articles))) |
292 | |
293 (deffoo nnmh-close-group (group &optional server) | |
294 t) | |
295 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
296 (deffoo nnmh-request-move-article (article group server |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
297 accept-form &optional last) |
17493 | 298 (let ((buf (get-buffer-create " *nnmh move*")) |
299 result) | |
300 (and | |
301 (nnmh-deletable-article-p group article) | |
302 (nnmh-request-article article group server) | |
303 (save-excursion | |
304 (set-buffer buf) | |
305 (erase-buffer) | |
306 (insert-buffer-substring nntp-server-buffer) | |
307 (setq result (eval accept-form)) | |
308 (kill-buffer (current-buffer)) | |
309 result) | |
310 (progn | |
311 (nnmh-possibly-change-directory group server) | |
312 (condition-case () | |
313 (funcall nnmail-delete-file-function | |
314 (concat nnmh-current-directory (int-to-string article))) | |
315 (file-error nil)))) | |
316 result)) | |
317 | |
318 (deffoo nnmh-request-accept-article (group &optional server last noinsert) | |
319 (nnmh-possibly-change-directory group server) | |
320 (nnmail-check-syntax) | |
321 (when nnmail-cache-accepted-message-ids | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
322 (nnmail-cache-insert (nnmail-fetch-field "message-id") |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
323 group |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
324 (nnmail-fetch-field "subject") |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
325 (nnmail-fetch-field "from"))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
326 (nnheader-init-server-buffer) |
17493 | 327 (prog1 |
328 (if (stringp group) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
329 (if noinsert |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
330 (nnmh-active-number group) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
331 (car (nnmh-save-mail |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
332 (list (cons group (nnmh-active-number group))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
333 noinsert))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
334 (let ((res (nnmail-article-group 'nnmh-active-number))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
335 (if (and (null res) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
336 (yes-or-no-p "Moved to `junk' group; delete article? ")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
337 'junk |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
338 (car (nnmh-save-mail res noinsert))))) |
17493 | 339 (when (and last nnmail-cache-accepted-message-ids) |
340 (nnmail-cache-close)))) | |
341 | |
342 (deffoo nnmh-request-replace-article (article group buffer) | |
343 (nnmh-possibly-change-directory group) | |
344 (save-excursion | |
345 (set-buffer buffer) | |
346 (nnmh-possibly-create-directory group) | |
347 (ignore-errors | |
348 (nnmail-write-region | |
349 (point-min) (point-max) | |
350 (concat nnmh-current-directory (int-to-string article)) | |
351 nil (if (nnheader-be-verbose 5) nil 'nomesg)) | |
352 t))) | |
353 | |
354 (deffoo nnmh-request-create-group (group &optional server args) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
355 (nnheader-init-server-buffer) |
17493 | 356 (unless (assoc group nnmh-group-alist) |
357 (let (active) | |
358 (push (list group (setq active (cons 1 0))) | |
359 nnmh-group-alist) | |
360 (nnmh-possibly-create-directory group) | |
361 (nnmh-possibly-change-directory group server) | |
362 (let ((articles (mapcar | |
363 (lambda (file) | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
364 (string-to-number file)) |
17493 | 365 (directory-files |
366 nnmh-current-directory nil "^[0-9]+$")))) | |
367 (when articles | |
368 (setcar active (apply 'min articles)) | |
369 (setcdr active (apply 'max articles)))))) | |
370 t) | |
371 | |
372 (deffoo nnmh-request-delete-group (group &optional force server) | |
373 (nnmh-possibly-change-directory group server) | |
374 ;; Delete all articles in GROUP. | |
375 (if (not force) | |
376 () ; Don't delete the articles. | |
377 (let ((articles (directory-files nnmh-current-directory t "^[0-9]+$"))) | |
378 (while articles | |
379 (when (file-writable-p (car articles)) | |
380 (nnheader-message 5 "Deleting article %s in %s..." | |
381 (car articles) group) | |
382 (funcall nnmail-delete-file-function (car articles))) | |
383 (setq articles (cdr articles)))) | |
384 ;; Try to delete the directory itself. | |
385 (ignore-errors | |
386 (delete-directory nnmh-current-directory))) | |
387 ;; Remove the group from all structures. | |
388 (setq nnmh-group-alist | |
389 (delq (assoc group nnmh-group-alist) nnmh-group-alist) | |
390 nnmh-current-directory nil) | |
391 t) | |
392 | |
393 (deffoo nnmh-request-rename-group (group new-name &optional server) | |
394 (nnmh-possibly-change-directory group server) | |
395 (let ((new-dir (nnmail-group-pathname new-name nnmh-directory)) | |
396 (old-dir (nnmail-group-pathname group nnmh-directory))) | |
397 (when (ignore-errors | |
398 (make-directory new-dir t) | |
399 t) | |
400 ;; We move the articles file by file instead of renaming | |
401 ;; the directory -- there may be subgroups in this group. | |
402 ;; One might be more clever, I guess. | |
403 (let ((files (nnheader-article-to-file-alist old-dir))) | |
404 (while files | |
405 (rename-file | |
406 (concat old-dir (cdar files)) | |
407 (concat new-dir (cdar files))) | |
408 (pop files))) | |
409 (when (<= (length (directory-files old-dir)) 2) | |
410 (ignore-errors | |
411 (delete-directory old-dir))) | |
412 ;; That went ok, so we change the internal structures. | |
413 (let ((entry (assoc group nnmh-group-alist))) | |
414 (when entry | |
415 (setcar entry new-name)) | |
416 (setq nnmh-current-directory nil) | |
417 t)))) | |
418 | |
419 (nnoo-define-skeleton nnmh) | |
420 | |
421 | |
422 ;;; Internal functions. | |
423 | |
424 (defun nnmh-possibly-change-directory (newsgroup &optional server) | |
425 (when (and server | |
426 (not (nnmh-server-opened server))) | |
427 (nnmh-open-server server)) | |
428 (when newsgroup | |
19602
549f21ee4bf0
(nnmh-request-list, nnmh-active-number): Protect from
Kenichi Handa <handa@m17n.org>
parents:
19494
diff
changeset
|
429 (let ((pathname (nnmail-group-pathname newsgroup nnmh-directory)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
430 (file-name-coding-system nnmail-pathname-coding-system)) |
17493 | 431 (if (file-directory-p pathname) |
432 (setq nnmh-current-directory pathname) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
433 (nnheader-report 'nnmh "Not a directory: %s" nnmh-directory))))) |
17493 | 434 |
435 (defun nnmh-possibly-create-directory (group) | |
436 (let (dir dirs) | |
437 (setq dir (nnmail-group-pathname group nnmh-directory)) | |
438 (while (not (file-directory-p dir)) | |
439 (push dir dirs) | |
440 (setq dir (file-name-directory (directory-file-name dir)))) | |
441 (while dirs | |
442 (when (make-directory (directory-file-name (car dirs))) | |
443 (error "Could not create directory %s" (car dirs))) | |
444 (nnheader-message 5 "Creating mail directory %s" (car dirs)) | |
445 (setq dirs (cdr dirs))))) | |
446 | |
447 (defun nnmh-save-mail (group-art &optional noinsert) | |
448 "Called narrowed to an article." | |
449 (unless noinsert | |
450 (nnmail-insert-lines) | |
451 (nnmail-insert-xref group-art)) | |
452 (run-hooks 'nnmail-prepare-save-mail-hook) | |
453 (run-hooks 'nnmh-prepare-save-mail-hook) | |
454 (goto-char (point-min)) | |
455 (while (looking-at "From ") | |
456 (replace-match "X-From-Line: ") | |
457 (forward-line 1)) | |
458 ;; We save the article in all the newsgroups it belongs in. | |
459 (let ((ga group-art) | |
460 first) | |
461 (while ga | |
462 (nnmh-possibly-create-directory (caar ga)) | |
463 (let ((file (concat (nnmail-group-pathname | |
464 (caar ga) nnmh-directory) | |
465 (int-to-string (cdar ga))))) | |
466 (if first | |
467 ;; It was already saved, so we just make a hard link. | |
468 (funcall nnmail-crosspost-link-function first file t) | |
469 ;; Save the article. | |
470 (nnmail-write-region (point-min) (point-max) file nil nil) | |
471 (setq first file))) | |
472 (setq ga (cdr ga)))) | |
473 group-art) | |
474 | |
475 (defun nnmh-active-number (group) | |
476 "Compute the next article number in GROUP." | |
477 (let ((active (cadr (assoc group nnmh-group-alist))) | |
19602
549f21ee4bf0
(nnmh-request-list, nnmh-active-number): Protect from
Kenichi Handa <handa@m17n.org>
parents:
19494
diff
changeset
|
478 (dir (nnmail-group-pathname group nnmh-directory)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
479 (file-name-coding-system nnmail-pathname-coding-system) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
480 file) |
17493 | 481 (unless active |
482 ;; The group wasn't known to nnmh, so we just create an active | |
483 ;; entry for it. | |
484 (setq active (cons 1 0)) | |
485 (push (list group active) nnmh-group-alist) | |
486 (unless (file-exists-p dir) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
487 (gnus-make-directory dir)) |
17493 | 488 ;; Find the highest number in the group. |
489 (let ((files (sort | |
490 (mapcar | |
491 (lambda (f) | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
492 (string-to-number f)) |
17493 | 493 (directory-files dir nil "^[0-9]+$")) |
494 '>))) | |
495 (when files | |
496 (setcdr active (car files))))) | |
497 (setcdr active (1+ (cdr active))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
498 (while (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
499 ;; See whether the file exists... |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
500 (file-exists-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
501 (setq file (concat (nnmail-group-pathname group nnmh-directory) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
502 (int-to-string (cdr active))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
503 ;; ... or there is a buffer that will make that file exist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
504 ;; in the future. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
505 (get-file-buffer file)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
506 ;; Skip past that file. |
17493 | 507 (setcdr active (1+ (cdr active)))) |
508 (cdr active))) | |
509 | |
510 (defun nnmh-update-gnus-unreads (group) | |
511 ;; Go through the .nnmh-articles file and compare with the actual | |
512 ;; articles in this folder. The articles that are "new" will be | |
513 ;; marked as unread by Gnus. | |
514 (let* ((dir nnmh-current-directory) | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
515 (files (sort (mapcar (function (lambda (name) (string-to-number name))) |
17493 | 516 (directory-files nnmh-current-directory |
517 nil "^[0-9]+$" t)) | |
518 '<)) | |
519 (nnmh-file (concat dir ".nnmh-articles")) | |
520 new articles) | |
521 ;; Load the .nnmh-articles file. | |
522 (when (file-exists-p nnmh-file) | |
523 (setq articles | |
524 (let (nnmh-newsgroup-articles) | |
525 (ignore-errors (load nnmh-file nil t t)) | |
526 nnmh-newsgroup-articles))) | |
527 ;; Add all new articles to the `new' list. | |
528 (let ((art files)) | |
529 (while art | |
530 (unless (assq (car art) articles) | |
531 (push (car art) new)) | |
532 (setq art (cdr art)))) | |
533 ;; Remove all deleted articles. | |
534 (let ((art articles)) | |
535 (while art | |
536 (unless (memq (caar art) files) | |
537 (setq articles (delq (car art) articles))) | |
538 (setq art (cdr art)))) | |
539 ;; Check whether the articles really are the ones that Gnus thinks | |
540 ;; they are by looking at the time-stamps. | |
541 (let ((arts articles) | |
542 art) | |
543 (while (setq art (pop arts)) | |
544 (when (not (equal | |
545 (nth 5 (file-attributes | |
546 (concat dir (int-to-string (car art))))) | |
547 (cdr art))) | |
548 (setq articles (delq art articles)) | |
549 (push (car art) new)))) | |
550 ;; Go through all the new articles and add them, and their | |
551 ;; time-stamps, to the list. | |
552 (setq articles | |
553 (nconc articles | |
554 (mapcar | |
555 (lambda (art) | |
556 (cons art | |
557 (nth 5 (file-attributes | |
558 (concat dir (int-to-string art)))))) | |
559 new))) | |
560 ;; Make Gnus mark all new articles as unread. | |
561 (when new | |
562 (gnus-make-articles-unread | |
563 (gnus-group-prefixed-name group (list 'nnmh "")) | |
564 (setq new (sort new '<)))) | |
565 ;; Sort the article list with highest numbers first. | |
566 (setq articles (sort articles (lambda (art1 art2) | |
567 (> (car art1) (car art2))))) | |
568 ;; Finally write this list back to the .nnmh-articles file. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
569 (with-temp-file nnmh-file |
17493 | 570 (insert ";; Gnus article active file for " group "\n\n") |
571 (insert "(setq nnmh-newsgroup-articles '") | |
572 (gnus-prin1 articles) | |
573 (insert ")\n")))) | |
574 | |
575 (defun nnmh-deletable-article-p (group article) | |
576 "Say whether ARTICLE in GROUP can be deleted." | |
577 (let ((path (concat nnmh-current-directory (int-to-string article)))) | |
578 ;; Writable. | |
579 (and (file-writable-p path) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
580 (or |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
581 ;; We can never delete the last article in the group. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
582 (not (eq (cdr (nth 1 (assoc group nnmh-group-alist))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
583 article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
584 ;; Well, we can. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19995
diff
changeset
|
585 nnmh-allow-delete-final)))) |
17493 | 586 |
587 (provide 'nnmh) | |
588 | |
52401 | 589 ;;; arch-tag: 36c12a98-3bad-44b3-9953-628078ef0e04 |
17493 | 590 ;;; nnmh.el ends here |