Mercurial > emacs
annotate lisp/gnus/nnmbox.el @ 111102:9fbc584102c2
Support R2L rows. Continued lines still don't work correctly.
xdisp.c (mouse_face_from_buffer_pos): Fix code using bug#1220 as
test case. Implement highlight for R2L rows.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 28 Aug 2010 14:09:02 +0300 |
parents | 1d1d5d9bd884 |
children | 8d09094063d0 376148b31b5e |
rev | line source |
---|---|
17493 | 1 ;;; nnmbox.el --- mail mbox 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, |
106815 | 4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
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 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17493 | 13 ;; it under the terms of the GNU General Public License as published by |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
16 |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
20 ;; GNU General Public License for more details. |
17493 | 21 |
22 ;; You should have received a copy of the GNU General Public License | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17493 | 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 (require 'message) | |
34 (require 'nnmail) | |
35 (require 'nnoo) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
36 (require 'gnus-range) |
17493 | 37 (eval-when-compile (require 'cl)) |
38 | |
39 (nnoo-declare nnmbox) | |
40 | |
41 (defvoo nnmbox-mbox-file (expand-file-name "~/mbox") | |
42 "The name of the mail box file in the user's home directory.") | |
43 | |
44 (defvoo nnmbox-active-file (expand-file-name "~/.mbox-active") | |
45 "The name of the active file for the mail box.") | |
46 | |
47 (defvoo nnmbox-get-new-mail t | |
48 "If non-nil, nnmbox will check the incoming mail file and split the mail.") | |
49 | |
50 (defvoo nnmbox-prepare-save-mail-hook nil | |
51 "Hook run narrowed to an article before saving.") | |
52 | |
53 | |
54 | |
55 (defconst nnmbox-version "nnmbox 1.0" | |
56 "nnmbox version.") | |
57 | |
58 (defvoo nnmbox-current-group nil | |
59 "Current nnmbox news group directory.") | |
60 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
61 (defvar nnmbox-mbox-buffer nil) |
17493 | 62 |
63 (defvoo nnmbox-status-string "") | |
64 | |
65 (defvoo nnmbox-group-alist nil) | |
66 (defvoo nnmbox-active-timestamp nil) | |
67 | |
34752
f04f551e94ce
* message.el (message-narrow-to-head-1): New function.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
68 (defvoo nnmbox-file-coding-system mm-binary-coding-system) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
69 (defvoo nnmbox-file-coding-system-for-write nil) |
34752
f04f551e94ce
* message.el (message-narrow-to-head-1): New function.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
70 (defvoo nnmbox-active-file-coding-system mm-binary-coding-system) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
71 (defvoo nnmbox-active-file-coding-system-for-write nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
72 |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
73 (defvar nnmbox-group-building-active-articles nil) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
74 (defvar nnmbox-group-active-articles nil) |
17493 | 75 |
76 | |
77 ;;; Interface functions | |
78 | |
79 (nnoo-define-basics nnmbox) | |
80 | |
81 (deffoo nnmbox-retrieve-headers (sequence &optional newsgroup server fetch-old) | |
82 (save-excursion | |
83 (set-buffer nntp-server-buffer) | |
84 (erase-buffer) | |
85 (let ((number (length sequence)) | |
86 (count 0) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
87 article start stop) |
17493 | 88 (nnmbox-possibly-change-newsgroup newsgroup server) |
89 (while sequence | |
90 (setq article (car sequence)) | |
91 (set-buffer nnmbox-mbox-buffer) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
92 (when (nnmbox-find-article article) |
17493 | 93 (setq start |
94 (save-excursion | |
95 (re-search-backward | |
96 (concat "^" message-unix-mail-delimiter) nil t) | |
97 (point))) | |
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)) | |
104 (insert ".\n")) | |
105 (setq sequence (cdr sequence)) | |
106 (setq count (1+ count)) | |
107 (and (numberp nnmail-large-newsgroup) | |
108 (> number nnmail-large-newsgroup) | |
109 (zerop (% count 20)) | |
110 (nnheader-message 5 "nnmbox: Receiving headers... %d%%" | |
111 (/ (* count 100) number)))) | |
112 | |
113 (and (numberp nnmail-large-newsgroup) | |
114 (> number nnmail-large-newsgroup) | |
115 (nnheader-message 5 "nnmbox: Receiving headers...done")) | |
116 | |
117 (set-buffer nntp-server-buffer) | |
118 (nnheader-fold-continuation-lines) | |
119 'headers))) | |
120 | |
121 (deffoo nnmbox-open-server (server &optional defs) | |
122 (nnoo-change-server 'nnmbox server defs) | |
123 (nnmbox-create-mbox) | |
124 (cond | |
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)) | |
131 (t | |
132 (nnheader-report 'nnmbox "Opened server %s using mbox %s" server | |
133 nnmbox-mbox-file) | |
134 t))) | |
135 | |
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) | |
141 t) | |
142 | |
143 (deffoo nnmbox-server-opened (&optional server) | |
144 (and (nnoo-current-server-p 'nnmbox server) | |
145 nnmbox-mbox-buffer | |
146 (buffer-name nnmbox-mbox-buffer) | |
147 nntp-server-buffer | |
148 (buffer-name nntp-server-buffer))) | |
149 | |
150 (deffoo nnmbox-request-article (article &optional newsgroup server buffer) | |
151 (nnmbox-possibly-change-newsgroup newsgroup server) | |
152 (save-excursion | |
153 (set-buffer nnmbox-mbox-buffer) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
154 (when (nnmbox-find-article article) |
17493 | 155 (let (start stop) |
156 (re-search-backward (concat "^" message-unix-mail-delimiter) nil t) | |
157 (setq start (point)) | |
158 (forward-line 1) | |
79022 | 159 (setq stop (if (re-search-forward (concat "^" |
160 message-unix-mail-delimiter) | |
161 nil 'move) | |
162 (match-beginning 0) | |
163 (point))) | |
17493 | 164 (let ((nntp-server-buffer (or buffer nntp-server-buffer))) |
165 (set-buffer nntp-server-buffer) | |
166 (erase-buffer) | |
167 (insert-buffer-substring nnmbox-mbox-buffer start stop) | |
168 (goto-char (point-min)) | |
169 (while (looking-at "From ") | |
170 (delete-char 5) | |
171 (insert "X-From-Line: ") | |
172 (forward-line 1)) | |
173 (if (numberp article) | |
174 (cons nnmbox-current-group article) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
175 (nnmbox-article-group-number nil))))))) |
17493 | 176 |
177 (deffoo nnmbox-request-group (group &optional server dont-check) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
178 (nnmbox-possibly-change-newsgroup nil server) |
17493 | 179 (let ((active (cadr (assoc group nnmbox-group-alist)))) |
180 (cond | |
181 ((or (null active) | |
182 (null (nnmbox-possibly-change-newsgroup group server))) | |
183 (nnheader-report 'nnmbox "No such group: %s" group)) | |
184 (dont-check | |
185 (nnheader-report 'nnmbox "Selected group %s" group) | |
186 (nnheader-insert "")) | |
187 (t | |
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))))) | |
192 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
193 (defun nnmbox-save-buffer () |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47002
diff
changeset
|
194 (let ((coding-system-for-write |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
195 (or nnmbox-file-coding-system-for-write |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
196 nnmbox-file-coding-system))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
197 (save-buffer))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
198 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
199 (defun nnmbox-save-active (group-alist active-file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
200 (let ((nnmail-active-file-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
201 (or nnmbox-active-file-coding-system-for-write |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
202 nnmbox-active-file-coding-system))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
203 (nnmail-save-active group-alist active-file))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
204 |
17493 | 205 (deffoo nnmbox-request-scan (&optional group server) |
206 (nnmbox-possibly-change-newsgroup group server) | |
207 (nnmbox-read-mbox) | |
208 (nnmail-get-new-mail | |
209 'nnmbox | |
210 (lambda () | |
211 (save-excursion | |
212 (set-buffer nnmbox-mbox-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
213 (nnmbox-save-buffer))) |
17493 | 214 (file-name-directory nnmbox-mbox-file) |
215 group | |
216 (lambda () | |
217 (save-excursion | |
218 (let ((in-buf (current-buffer))) | |
219 (set-buffer nnmbox-mbox-buffer) | |
220 (goto-char (point-max)) | |
221 (insert-buffer-substring in-buf))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
222 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file)))) |
17493 | 223 |
224 (deffoo nnmbox-close-group (group &optional server) | |
225 t) | |
226 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
227 (deffoo nnmbox-request-create-group (group &optional server args) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
228 (nnmail-activate 'nnmbox) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
229 (unless (assoc group nnmbox-group-alist) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
230 (push (list group (cons 1 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
231 nnmbox-group-alist) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
232 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
233 t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
234 |
17493 | 235 (deffoo nnmbox-request-list (&optional server) |
236 (save-excursion | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
237 (let ((nnmail-file-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
238 nnmbox-active-file-coding-system)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
239 (nnmail-find-file nnmbox-active-file)) |
17493 | 240 (setq nnmbox-group-alist (nnmail-get-active)) |
241 t)) | |
242 | |
243 (deffoo nnmbox-request-newgroups (date &optional server) | |
244 (nnmbox-request-list server)) | |
245 | |
246 (deffoo nnmbox-request-list-newsgroups (&optional server) | |
247 (nnheader-report 'nnmbox "LIST NEWSGROUPS is not implemented.")) | |
248 | |
249 (deffoo nnmbox-request-expire-articles | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
250 (articles newsgroup &optional server force) |
17493 | 251 (nnmbox-possibly-change-newsgroup newsgroup server) |
252 (let* ((is-old t) | |
253 rest) | |
254 (nnmail-activate 'nnmbox) | |
255 | |
256 (save-excursion | |
257 (set-buffer nnmbox-mbox-buffer) | |
258 (while (and articles is-old) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
259 (when (nnmbox-find-article (car articles)) |
17493 | 260 (if (setq is-old |
261 (nnmail-expired-article-p | |
262 newsgroup | |
263 (buffer-substring | |
264 (point) (progn (end-of-line) (point))) force)) | |
265 (progn | |
47002
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44511
diff
changeset
|
266 (unless (eq nnmail-expiry-target 'delete) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44511
diff
changeset
|
267 (with-temp-buffer |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47002
diff
changeset
|
268 (nnmbox-request-article (car articles) |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47002
diff
changeset
|
269 newsgroup server |
47002
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44511
diff
changeset
|
270 (current-buffer)) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44511
diff
changeset
|
271 (let ((nnml-current-directory nil)) |
b87254142b98
* nnfolder.el (nnfolder-request-expire-articles): expiry-target.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44511
diff
changeset
|
272 (nnmail-expiry-target-group |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
273 nnmail-expiry-target newsgroup))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
274 (nnmbox-possibly-change-newsgroup newsgroup server)) |
17493 | 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))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
280 (nnmbox-save-buffer) |
17493 | 281 ;; Find the lowest active article in this group. |
282 (let ((active (nth 1 (assoc newsgroup nnmbox-group-alist)))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
283 (while (and (not (nnmbox-find-article (car active))) |
17493 | 284 (<= (car active) (cdr active))) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
285 (setcar active (1+ (car active))))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
286 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file) |
17493 | 287 (nconc rest articles)))) |
288 | |
289 (deffoo nnmbox-request-move-article | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
79022
diff
changeset
|
290 (article group server accept-form &optional last move-is-internal) |
17493 | 291 (let ((buf (get-buffer-create " *nnmbox move*")) |
292 result) | |
293 (and | |
294 (nnmbox-request-article article group server) | |
295 (save-excursion | |
296 (set-buffer buf) | |
297 (erase-buffer) | |
298 (insert-buffer-substring nntp-server-buffer) | |
299 (goto-char (point-min)) | |
300 (while (re-search-forward | |
301 "^X-Gnus-Newsgroup:" | |
302 (save-excursion (search-forward "\n\n" nil t) (point)) t) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
303 (gnus-delete-line)) |
17493 | 304 (setq result (eval accept-form)) |
305 (kill-buffer buf) | |
306 result) | |
307 (save-excursion | |
308 (nnmbox-possibly-change-newsgroup group server) | |
309 (set-buffer nnmbox-mbox-buffer) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
310 (when (nnmbox-find-article article) |
17493 | 311 (nnmbox-delete-mail)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
312 (and last (nnmbox-save-buffer)))) |
17493 | 313 result)) |
314 | |
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)) | |
79022 | 319 result cont) |
17493 | 320 (and |
321 (nnmail-activate 'nnmbox) | |
79022 | 322 (with-temp-buffer |
323 (insert-buffer-substring buf) | |
17493 | 324 (goto-char (point-min)) |
79022 | 325 (cond (;; The From line may have been quoted by movemail. |
326 (looking-at (concat ">" message-unix-mail-delimiter)) | |
327 (delete-char 1) | |
328 (forward-line 1)) | |
329 ((looking-at "X-From-Line: ") | |
330 (replace-match "From ") | |
331 (forward-line 1)) | |
332 (t | |
333 (insert "From nobody " (current-time-string) "\n"))) | |
334 (narrow-to-region (point) | |
335 (if (search-forward "\n\n" nil 'move) | |
336 (1- (point)) | |
337 (point))) | |
17493 | 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 | |
79022 | 341 (nnmail-cache-insert (message-fetch-field "message-id") |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
342 group |
79022 | 343 (message-fetch-field "subject") |
344 (message-fetch-field "from"))) | |
345 (widen) | |
17493 | 346 (setq result (if (stringp group) |
347 (list (cons group (nnmbox-active-number group))) | |
348 (nnmail-article-group 'nnmbox-active-number))) | |
79022 | 349 (prog1 |
350 (if (and (null result) | |
351 (yes-or-no-p "Moved to `junk' group; delete article? ")) | |
352 (setq result 'junk) | |
353 (setq result (car (nnmbox-save-mail result)))) | |
354 (setq cont (buffer-string)))) | |
355 (with-current-buffer nnmbox-mbox-buffer | |
17493 | 356 (goto-char (point-max)) |
79022 | 357 (insert cont) |
17493 | 358 (when last |
359 (when nnmail-cache-accepted-message-ids | |
360 (nnmail-cache-close)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
361 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
362 (nnmbox-save-buffer)))) |
17493 | 363 result)) |
364 | |
365 (deffoo nnmbox-request-replace-article (article group buffer) | |
366 (nnmbox-possibly-change-newsgroup group) | |
367 (save-excursion | |
368 (set-buffer nnmbox-mbox-buffer) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
369 (if (not (nnmbox-find-article article)) |
17493 | 370 nil |
371 (nnmbox-delete-mail t t) | |
79022 | 372 (insert |
373 (with-temp-buffer | |
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) | |
379 nil t) | |
380 (goto-char (match-beginning 0)) | |
381 (insert ">")) | |
382 (goto-char (point-max)) | |
383 (unless (bolp) | |
384 (insert "\n")) | |
385 (buffer-string))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
386 (nnmbox-save-buffer) |
17493 | 387 t))) |
388 | |
389 (deffoo nnmbox-request-delete-group (group &optional force server) | |
390 (nnmbox-possibly-change-newsgroup group server) | |
391 ;; Delete all articles in GROUP. | |
392 (if (not force) | |
393 () ; Don't delete the articles. | |
394 (save-excursion | |
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 ":")) | |
399 found) | |
400 (while (search-forward ident nil t) | |
401 (setq found t) | |
402 (nnmbox-delete-mail)) | |
403 (when found | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
404 (nnmbox-save-buffer))))) |
17493 | 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. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
410 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file) |
17493 | 411 t) |
412 | |
413 (deffoo nnmbox-request-rename-group (group new-name &optional server) | |
414 (nnmbox-possibly-change-newsgroup group server) | |
415 (save-excursion | |
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 ":")) | |
420 found) | |
421 (while (search-forward ident nil t) | |
422 (replace-match new-ident t t) | |
423 (setq found t)) | |
424 (when found | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
425 (nnmbox-save-buffer)))) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
426 (let ((entry (assoc group nnmbox-group-active-articles))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
427 (when entry |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
428 (setcar entry new-name))) |
17493 | 429 (let ((entry (assoc group nnmbox-group-alist))) |
430 (when entry | |
431 (setcar entry new-name)) | |
432 (setq nnmbox-current-group nil) | |
433 ;; Save the new group alist. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
434 (nnmbox-save-active nnmbox-group-alist nnmbox-active-file) |
17493 | 435 t)) |
436 | |
437 | |
438 ;;; Internal functions. | |
439 | |
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 | |
442 ;; delimiter line. | |
443 (defun nnmbox-delete-mail (&optional force leave-delim) | |
444 ;; Delete the current X-Gnus-Newsgroup line. | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
445 ;; First delete record of active article, unless the article is being |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
446 ;; replaced, indicated by FORCE being non-nil. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
447 (if (not force) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
448 (nnmbox-record-deleted-article (nnmbox-article-group-number t))) |
17493 | 449 (or force |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
450 (gnus-delete-line)) |
17493 | 451 ;; Beginning of the article. |
452 (save-excursion | |
453 (save-restriction | |
454 (narrow-to-region | |
79022 | 455 (prog2 |
456 (re-search-backward (concat "^" message-unix-mail-delimiter) nil t) | |
457 (if leave-delim (progn (forward-line 1) (point)) | |
458 (match-beginning 0)) | |
459 (forward-line 1)) | |
460 (or (and (re-search-forward (concat "^" message-unix-mail-delimiter) | |
461 nil t) | |
462 (match-beginning 0)) | |
463 (point-max))) | |
17493 | 464 (goto-char (point-min)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
465 ;; Only delete the article if no other group owns it as well. |
79022 | 466 (when (or force |
467 (not (re-search-forward "^X-Gnus-Newsgroup: " nil t)) | |
468 (search-backward "\n\n" nil t)) | |
17493 | 469 (delete-region (point-min) (point-max)))))) |
470 | |
471 (defun nnmbox-possibly-change-newsgroup (newsgroup &optional server) | |
472 (when (and 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))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
477 (nnmbox-read-mbox)) |
17493 | 478 (when (not nnmbox-group-alist) |
479 (nnmail-activate 'nnmbox)) | |
480 (if newsgroup | |
481 (when (assoc newsgroup nnmbox-group-alist) | |
482 (setq nnmbox-current-group newsgroup)) | |
483 t)) | |
484 | |
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))) | |
490 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
491 (defun nnmbox-article-group-number (this-line) |
17493 | 492 (save-excursion |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
493 (if this-line |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
494 (beginning-of-line) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
495 (goto-char (point-min))) |
17493 | 496 (when (re-search-forward "^X-Gnus-Newsgroup: +\\([^:]+\\):\\([0-9]+\\) " |
497 nil t) | |
498 (cons (buffer-substring (match-beginning 1) (match-end 1)) | |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
499 (string-to-number |
17493 | 500 (buffer-substring (match-beginning 2) (match-end 2))))))) |
501 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
502 (defun nnmbox-in-header-p (pos) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
503 "Return non-nil if POS is in the header of an article." |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
504 (save-excursion |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
505 (goto-char pos) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
506 (re-search-backward (concat "^" message-unix-mail-delimiter) nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
507 (search-forward "\n\n" nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
508 (< pos (point)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
509 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
510 (defun nnmbox-find-article (article) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
511 "Leaves point on the relevant X-Gnus-Newsgroup line if found." |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
512 ;; Check that article is in the active range first, to avoid an |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
513 ;; expensive exhaustive search if it isn't. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
514 (if (and (numberp article) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
515 (not (nnmbox-is-article-active-p article))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
516 nil |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
517 (let ((art-string (nnmbox-article-string article)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
518 (found nil)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
519 ;; There is the possibility that the X-Gnus-Newsgroup line appears |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
520 ;; in the body of an article (for instance, if an article has been |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
521 ;; forwarded from someone using Gnus as their mailer), so check |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
522 ;; that the line is actually part of the article header. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
523 (or (and (search-forward art-string nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
524 (nnmbox-in-header-p (point))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
525 (progn |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
526 (goto-char (point-min)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
527 (while (and (not found) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
528 (search-forward art-string nil t)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
529 (setq found (nnmbox-in-header-p (point)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
530 found))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
531 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
532 (defun nnmbox-record-active-article (group-art) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
533 (let* ((group (car group-art)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
534 (article (cdr group-art)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
535 (entry |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
536 (or (assoc group nnmbox-group-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
537 (progn |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
538 (push (list group) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
539 nnmbox-group-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
540 (car nnmbox-group-active-articles))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
541 ;; add article to index, either by building complete list |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
542 ;; in reverse order, or as a list of ranges. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
543 (if (not nnmbox-group-building-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
544 (setcdr entry (gnus-add-to-range (cdr entry) (list article))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
545 (when (memq article (cdr entry)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
546 (switch-to-buffer nnmbox-mbox-buffer) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
547 (error "Article %s:%d already exists!" group article)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
548 (when (and (cadr entry) (< article (cadr entry))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
549 (switch-to-buffer nnmbox-mbox-buffer) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
550 (error "Article %s:%d out of order" group article)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
551 (setcdr entry (cons article (cdr entry)))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
552 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
553 (defun nnmbox-record-deleted-article (group-art) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
554 (let* ((group (car group-art)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
555 (article (cdr group-art)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
556 (entry |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
557 (or (assoc group nnmbox-group-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
558 (progn |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
559 (push (list group) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
560 nnmbox-group-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
561 (car nnmbox-group-active-articles))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
562 ;; remove article from index |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
563 (setcdr entry (gnus-remove-from-range (cdr entry) (list article))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
564 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
565 (defun nnmbox-is-article-active-p (article) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
566 (gnus-member-of-range |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
567 article |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
568 (cdr (assoc nnmbox-current-group |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
569 nnmbox-group-active-articles)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
570 |
17493 | 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. | |
79022 | 576 (if (looking-at delim) |
577 (forward-line 1) | |
578 (insert "From nobody " (current-time-string) "\n")) | |
17493 | 579 ;; Quote all "From " lines in the article. |
580 (while (re-search-forward delim nil t) | |
79022 | 581 (goto-char (match-beginning 0)) |
582 (insert ">"))) | |
583 (goto-char (point-max)) | |
584 (unless (bolp) | |
585 (insert "\n")) | |
586 (nnmail-insert-lines) | |
587 (nnmail-insert-xref group-art) | |
588 (nnmbox-insert-newsgroup-line group-art) | |
589 (let ((alist group-art)) | |
590 (while alist | |
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) | |
595 group-art) | |
17493 | 596 |
597 (defun nnmbox-insert-newsgroup-line (group-art) | |
598 (save-excursion | |
599 (goto-char (point-min)) | |
600 (when (search-forward "\n\n" nil t) | |
601 (forward-char -1) | |
602 (while group-art | |
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)))) | |
607 t)) | |
608 | |
609 (defun nnmbox-active-number (group) | |
610 ;; Find the next article number in GROUP. | |
611 (let ((active (cadr (assoc group nnmbox-group-alist)))) | |
612 (if active | |
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))) | |
618 nnmbox-group-alist)) | |
619 (cdr active))) | |
620 | |
621 (defun nnmbox-create-mbox () | |
622 (when (not (file-exists-p nnmbox-mbox-file)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
623 (let ((nnmail-file-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
624 (or nnmbox-file-coding-system-for-write |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
625 nnmbox-file-coding-system)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
626 (dir (file-name-directory nnmbox-mbox-file))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
627 (and dir (gnus-make-directory dir)) |
44511
5c5bc6fd4eb8
(nnmbox-create-mbox): Don't assume point-min == 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34752
diff
changeset
|
628 (nnmail-write-region (point-min) (point-min) |
5c5bc6fd4eb8
(nnmbox-create-mbox): Don't assume point-min == 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34752
diff
changeset
|
629 nnmbox-mbox-file t 'nomesg)))) |
17493 | 630 |
631 (defun nnmbox-read-mbox () | |
632 (nnmail-activate 'nnmbox) | |
633 (nnmbox-create-mbox) | |
634 (if (and nnmbox-mbox-buffer | |
635 (buffer-name nnmbox-mbox-buffer) | |
636 (save-excursion | |
637 (set-buffer nnmbox-mbox-buffer) | |
638 (= (buffer-size) (nnheader-file-size nnmbox-mbox-file)))) | |
639 () | |
640 (save-excursion | |
641 (let ((delim (concat "^" message-unix-mail-delimiter)) | |
642 (alist nnmbox-group-alist) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
643 (nnmbox-group-building-active-articles t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
644 start end end-header number) |
17493 | 645 (set-buffer (setq nnmbox-mbox-buffer |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
646 (let ((nnheader-file-coding-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
647 nnmbox-file-coding-system)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
648 (nnheader-find-file-noselect |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
649 nnmbox-mbox-file t t)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
650 (mm-enable-multibyte) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
651 (buffer-disable-undo) |
17493 | 652 |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
653 ;; Go through the group alist and compare against the mbox file. |
17493 | 654 (while alist |
655 (goto-char (point-max)) | |
656 (when (and (re-search-backward | |
657 (format "^X-Gnus-Newsgroup: %s:\\([0-9]+\\) " | |
658 (caar alist)) nil t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
659 (> (setq number |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
660 (string-to-number |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
661 (buffer-substring |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
662 (match-beginning 1) (match-end 1)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
663 (cdadar alist))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
664 (setcdr (cadar alist) number)) |
17493 | 665 (setq alist (cdr alist))) |
666 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
667 ;; Examine all articles for our private X-Gnus-Newsgroup |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
668 ;; headers. This is done primarily as a consistency check, but |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
669 ;; it is convenient for building an index of the articles |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
670 ;; present, to avoid costly searches for missing articles |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
671 ;; (eg. when expiring articles). |
17493 | 672 (goto-char (point-min)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
673 (setq nnmbox-group-active-articles nil) |
17493 | 674 (while (re-search-forward delim nil t) |
675 (setq start (match-beginning 0)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
676 (save-excursion |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
677 (search-forward "\n\n" nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
678 (setq end-header (point)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
679 (setq end (or (and |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
680 (re-search-forward delim nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
681 (match-beginning 0)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
682 (point-max)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
683 (if (search-forward "\nX-Gnus-Newsgroup: " end-header t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
684 ;; Build a list of articles in each group, remembering |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
685 ;; that each article may be in more than one group. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
686 (progn |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
687 (nnmbox-record-active-article (nnmbox-article-group-number t)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
688 (while (search-forward "\nX-Gnus-Newsgroup: " end-header t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
689 (nnmbox-record-active-article (nnmbox-article-group-number t)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
690 ;; The article is either new, or for some other reason |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
691 ;; hasn't got our private headers, so add them now. The |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
692 ;; only situation I've encountered when the X-Gnus-Newsgroup |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
693 ;; header is missing is if the article contains a forwarded |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
694 ;; message which does contain that header line (earlier |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
695 ;; versions of Gnus didn't restrict their search to the |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
696 ;; headers). In this case, there is an Xref line which |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
697 ;; provides the relevant information to construct the |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
698 ;; missing header(s). |
17493 | 699 (save-excursion |
700 (save-restriction | |
701 (narrow-to-region start end) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
702 (if (re-search-forward "\nXref: [^ ]+" end-header t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
703 ;; generate headers from Xref: |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
704 (let (alist) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
705 (while (re-search-forward " \\([^:]+\\):\\([0-9]+\\)" end-header t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
706 (push (cons (match-string 1) |
62907
88db2adda4b7
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
707 (string-to-number (match-string 2))) alist)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
708 (nnmbox-insert-newsgroup-line alist)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
709 ;; this is really a new article |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
710 (nnmbox-save-mail |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
711 (nnmail-article-group 'nnmbox-active-number)))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
712 (goto-char end)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
713 ;; put article lists in order |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
714 (setq alist nnmbox-group-active-articles) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
715 (while alist |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
716 (setcdr (car alist) (gnus-compress-sequence (nreverse (cdar alist)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
717 (setq alist (cdr alist))))))) |
17493 | 718 |
719 (provide 'nnmbox) | |
720 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
721 ;; arch-tag: 611dd95f-be37-413a-b3ae-8b059ba93659 |
17493 | 722 ;;; nnmbox.el ends here |