1 ;;; gnus-agent.el --- unplugged support for Semi-gnus
2 ;; Copyright (C) 1997,98 Free Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
30 (eval-when-compile (require 'cl))
32 (defcustom gnus-agent-directory (nnheader-concat gnus-directory "agent/")
33 "Where the Gnus agent will store its files."
37 (defcustom gnus-agent-plugged-hook nil
38 "Hook run when plugging into the network."
42 (defcustom gnus-agent-unplugged-hook nil
43 "Hook run when unplugging from the network."
47 (defcustom gnus-agent-handle-level gnus-level-subscribed
48 "Groups on levels higher than this variable will be ignored by the Agent."
52 (defcustom gnus-agent-expire-days 7
53 "Read articles older than this will be expired."
57 (defcustom gnus-agent-expire-all nil
58 "If non-nil, also expire unread, ticked and dormant articles.
59 If nil, only read articles will be expired."
63 (defcustom gnus-agent-group-mode-hook nil
64 "Hook run in Agent group minor modes."
68 (defcustom gnus-agent-summary-mode-hook nil
69 "Hook run in Agent summary minor modes."
73 (defcustom gnus-agent-server-mode-hook nil
74 "Hook run in Agent summary minor modes."
78 ;;; Internal variables
80 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information")
82 (defvar gnus-agent-history-buffers nil)
83 (defvar gnus-agent-buffer-alist nil)
84 (defvar gnus-agent-article-alist nil)
85 (defvar gnus-agent-group-alist nil)
86 (defvar gnus-agent-covered-methods nil)
87 (defvar gnus-category-alist nil)
88 (defvar gnus-agent-current-history nil)
89 (defvar gnus-agent-overview-buffer nil)
90 (defvar gnus-category-predicate-cache nil)
91 (defvar gnus-category-group-cache nil)
92 (defvar gnus-agent-spam-hashtb nil)
93 (defvar gnus-agent-file-name nil)
94 (defvar gnus-agent-send-mail-function nil)
95 (defvar gnus-agent-article-file-coding-system 'no-conversion)
105 (defun gnus-open-agent ()
107 (gnus-agent-read-servers)
109 (setq gnus-agent-overview-buffer
110 (gnus-get-buffer-create " *Gnus agent overview*"))
111 (add-hook 'gnus-group-mode-hook 'gnus-agent-mode)
112 (add-hook 'gnus-summary-mode-hook 'gnus-agent-mode)
113 (add-hook 'gnus-server-mode-hook 'gnus-agent-mode))
115 (gnus-add-shutdown 'gnus-close-agent 'gnus)
117 (defun gnus-close-agent ()
118 (setq gnus-agent-covered-methods nil
119 gnus-category-predicate-cache nil
120 gnus-category-group-cache nil
121 gnus-agent-spam-hashtb nil)
122 (gnus-kill-buffer gnus-agent-overview-buffer))
125 ;;; Utility functions
128 (defun gnus-agent-read-file (file)
129 "Load FILE and do a `read' there."
130 (nnheader-temp-write nil
132 (nnheader-insert-file-contents file)
133 (goto-char (point-min))
134 (read (current-buffer)))))
136 (defsubst gnus-agent-method ()
137 (concat (symbol-name (car gnus-command-method)) "/"
138 (if (equal (cadr gnus-command-method) "")
140 (cadr gnus-command-method))))
142 (defsubst gnus-agent-directory ()
143 "Path of the Gnus agent directory."
144 (nnheader-concat gnus-agent-directory
145 (nnheader-translate-file-chars (gnus-agent-method)) "/"))
147 (defun gnus-agent-lib-file (file)
148 "The full path of the Gnus agent library FILE."
149 (concat (gnus-agent-directory) "agent.lib/" file))
151 ;;; Fetching setup functions.
153 (defun gnus-agent-start-fetch ()
154 "Initialize data structures for efficient fetching."
155 (gnus-agent-open-history)
156 (setq gnus-agent-current-history (gnus-agent-history-buffer)))
158 (defun gnus-agent-stop-fetch ()
159 "Save all data structures and clean up."
160 (gnus-agent-save-history)
161 (gnus-agent-close-history)
162 (setq gnus-agent-spam-hashtb nil)
164 (set-buffer nntp-server-buffer)
167 (defmacro gnus-agent-with-fetch (&rest forms)
171 (gnus-agent-start-fetch)
173 (gnus-agent-stop-fetch)))
175 (put 'gnus-agent-with-fetch 'lisp-indent-function 0)
176 (put 'gnus-agent-with-fetch 'edebug-form-spec '(body))
182 (defvar gnus-agent-mode-hook nil
183 "Hook run when installing agent mode.")
185 (defvar gnus-agent-mode nil)
186 (defvar gnus-agent-mode-status '(gnus-agent-mode " Plugged"))
188 (defun gnus-agent-mode ()
189 "Minor mode for providing a agent support in Gnus buffers."
190 (let* ((buffer (progn (string-match "^gnus-\\(.*\\)-mode$"
191 (symbol-name major-mode))
192 (match-string 1 (symbol-name major-mode))))
193 (mode (intern (format "gnus-agent-%s-mode" buffer))))
194 (set (make-local-variable 'gnus-agent-mode) t)
196 (set (make-local-variable mode) t)
198 (when (gnus-visual-p 'agent-menu 'menu)
199 (funcall (intern (format "gnus-agent-%s-make-menu-bar" buffer))))
200 (unless (assq 'gnus-agent-mode minor-mode-alist)
201 (push gnus-agent-mode-status minor-mode-alist))
202 (unless (assq mode minor-mode-map-alist)
203 (push (cons mode (symbol-value (intern (format "gnus-agent-%s-mode-map"
205 minor-mode-map-alist))
206 (gnus-agent-toggle-plugged gnus-plugged)
207 (gnus-run-hooks 'gnus-agent-mode-hook
208 (intern (format "gnus-agent-%s-mode-hook" buffer)))))
210 (defvar gnus-agent-group-mode-map (make-sparse-keymap))
211 (gnus-define-keys gnus-agent-group-mode-map
212 "Ju" gnus-agent-fetch-groups
213 "Jc" gnus-enter-category-buffer
214 "Jj" gnus-agent-toggle-plugged
215 "Js" gnus-agent-fetch-session
216 "JS" gnus-group-send-drafts
217 "Ja" gnus-agent-add-group)
219 (defun gnus-agent-group-make-menu-bar ()
220 (unless (boundp 'gnus-agent-group-menu)
222 gnus-agent-group-menu gnus-agent-group-mode-map ""
224 ["Toggle plugged" gnus-agent-toggle-plugged t]
225 ["List categories" gnus-enter-category-buffer t]
226 ["Send drafts" gnus-group-send-drafts gnus-plugged]
228 ["All" gnus-agent-fetch-session gnus-plugged]
229 ["Group" gnus-agent-fetch-group gnus-plugged])))))
231 (defvar gnus-agent-summary-mode-map (make-sparse-keymap))
232 (gnus-define-keys gnus-agent-summary-mode-map
233 "Jj" gnus-agent-toggle-plugged
234 "J#" gnus-agent-mark-article
235 "J\M-#" gnus-agent-unmark-article
236 "@" gnus-agent-toggle-mark
237 "Jc" gnus-agent-catchup)
239 (defun gnus-agent-summary-make-menu-bar ()
240 (unless (boundp 'gnus-agent-summary-menu)
242 gnus-agent-summary-menu gnus-agent-summary-mode-map ""
244 ["Toggle plugged" gnus-agent-toggle-plugged t]
245 ["Mark as downloadable" gnus-agent-mark-article t]
246 ["Unmark as downloadable" gnus-agent-unmark-article t]
247 ["Toggle mark" gnus-agent-toggle-mark t]
248 ["Catchup undownloaded" gnus-agent-catchup t]))))
250 (defvar gnus-agent-server-mode-map (make-sparse-keymap))
251 (gnus-define-keys gnus-agent-server-mode-map
252 "Jj" gnus-agent-toggle-plugged
253 "Ja" gnus-agent-add-server
254 "Jr" gnus-agent-remove-server)
256 (defun gnus-agent-server-make-menu-bar ()
257 (unless (boundp 'gnus-agent-server-menu)
259 gnus-agent-server-menu gnus-agent-server-mode-map ""
261 ["Toggle plugged" gnus-agent-toggle-plugged t]
262 ["Add" gnus-agent-add-server t]
263 ["Remove" gnus-agent-remove-server t]))))
265 (defun gnus-agent-toggle-plugged (plugged)
266 "Toggle whether Gnus is unplugged or not."
267 (interactive (list (not gnus-plugged)))
270 (setq gnus-plugged plugged)
271 (gnus-run-hooks 'gnus-agent-plugged-hook)
272 (setcar (cdr gnus-agent-mode-status) " Plugged"))
273 (gnus-agent-close-connections)
274 (setq gnus-plugged plugged)
275 (gnus-run-hooks 'gnus-agent-unplugged-hook)
276 (setcar (cdr gnus-agent-mode-status) " Unplugged"))
277 (set-buffer-modified-p t))
279 (defun gnus-agent-close-connections ()
280 "Close all methods covered by the Gnus agent."
281 (let ((methods gnus-agent-covered-methods))
283 (gnus-close-server (pop methods)))))
286 (defun gnus-unplugged ()
287 "Start Gnus unplugged."
289 (setq gnus-plugged nil)
293 (defun gnus-plugged ()
294 "Start Gnus plugged."
296 (setq gnus-plugged t)
300 (defun gnus-agentize ()
301 "Allow Gnus to be an offline newsreader.
302 The normal usage of this command is to put the following as the
303 last form in your `.gnus.el' file:
307 This will modify the `gnus-before-startup-hook', `gnus-post-method',
308 and `message-send-mail-function' variables, and install the Gnus
309 agent minor mode in all Gnus buffers."
312 (add-hook 'gnus-setup-news-hook 'gnus-agent-queue-setup)
313 (unless gnus-agent-send-mail-function
314 (setq gnus-agent-send-mail-function message-send-mail-function
315 message-send-mail-function 'gnus-agent-send-mail))
316 (unless gnus-agent-covered-methods
317 (setq gnus-agent-covered-methods (list gnus-select-method))))
319 (defun gnus-agent-queue-setup ()
320 "Make sure the queue group exists."
321 (unless (gnus-gethash "nndraft:queue" gnus-newsrc-hashtb)
322 (gnus-request-create-group "queue" '(nndraft ""))
323 (let ((gnus-level-default-subscribed 1))
324 (gnus-subscribe-group "nndraft:queue" nil '(nndraft "")))
325 (gnus-group-set-parameter
326 "nndraft:queue" 'gnus-dummy '((gnus-draft-mode)))))
328 (defun gnus-agent-send-mail ()
330 (funcall gnus-agent-send-mail-function)
331 (goto-char (point-min))
333 (concat "^" (regexp-quote mail-header-separator) "\n"))
335 (gnus-agent-insert-meta-information 'mail)
336 (gnus-request-accept-article "nndraft:queue")))
338 (defun gnus-agent-insert-meta-information (type &optional method)
339 "Insert meta-information into the message that says how it's to be posted.
340 TYPE can be either `mail' or `news'. If the latter METHOD can
343 (message-remove-header gnus-agent-meta-information-header)
344 (goto-char (point-min))
345 (insert gnus-agent-meta-information-header ": "
346 (symbol-name type) " " (format "%S" method)
349 (while (search-backward "\n" nil t)
350 (replace-match "\\n" t t))))
353 ;;; Group mode commands
356 (defun gnus-agent-fetch-groups (n)
357 "Put all new articles in the current groups into the Agent."
359 (gnus-group-iterate n 'gnus-agent-fetch-group))
361 (defun gnus-agent-fetch-group (group)
362 "Put all new articles in GROUP into the Agent."
363 (interactive (list (gnus-group-group-name)))
365 (error "No group on the current line"))
366 (let ((gnus-command-method (gnus-find-method-for-group group)))
367 (gnus-agent-with-fetch
368 (gnus-agent-fetch-group-1 group gnus-command-method)
369 (gnus-message 5 "Fetching %s...done" group))))
371 (defun gnus-agent-add-group (category arg)
372 "Add the current group to an agent category."
378 (mapcar (lambda (cat) (list (symbol-name (car cat))))
382 (let ((cat (assq category gnus-category-alist))
384 (gnus-group-iterate arg
386 (when (cadddr (setq c (gnus-group-category group)))
387 (setf (cadddr c) (delete group (cadddr c))))
388 (push group groups)))
389 (setf (cadddr cat) (nconc (cadddr cat) groups))
390 (gnus-category-write)))
393 ;;; Server mode commands
396 (defun gnus-agent-add-server (server)
397 "Enroll SERVER in the agent program."
398 (interactive (list (gnus-server-server-name)))
400 (error "No server on the current line"))
401 (let ((method (gnus-server-get-method nil (gnus-server-server-name))))
402 (when (member method gnus-agent-covered-methods)
403 (error "Server already in the agent program"))
404 (push method gnus-agent-covered-methods)
405 (gnus-agent-write-servers)
406 (message "Entered %s into the Agent" server)))
408 (defun gnus-agent-remove-server (server)
409 "Remove SERVER from the agent program."
410 (interactive (list (gnus-server-server-name)))
412 (error "No server on the current line"))
413 (let ((method (gnus-server-get-method nil (gnus-server-server-name))))
414 (unless (member method gnus-agent-covered-methods)
415 (error "Server not in the agent program"))
416 (setq gnus-agent-covered-methods
417 (delete method gnus-agent-covered-methods))
418 (gnus-agent-write-servers)
419 (message "Removed %s from the agent" server)))
421 (defun gnus-agent-read-servers ()
422 "Read the alist of covered servers."
423 (setq gnus-agent-covered-methods
424 (gnus-agent-read-file
425 (nnheader-concat gnus-agent-directory "lib/servers"))))
427 (defun gnus-agent-write-servers ()
428 "Write the alist of covered servers."
429 (nnheader-temp-write (nnheader-concat gnus-agent-directory "lib/servers")
430 (prin1 gnus-agent-covered-methods (current-buffer))))
436 (defun gnus-agent-mark-article (n &optional unmark)
437 "Mark the next N articles as downloadable.
438 If N is negative, mark backward instead. If UNMARK is non-nil, remove
439 the mark instead. The difference between N and the actual number of
440 articles marked is returned."
442 (let ((backward (< n 0))
447 (gnus-summary-set-agent-mark
448 (gnus-summary-article-number) unmark)
449 (zerop (gnus-summary-next-subject (if backward -1 1) nil t))))
452 (gnus-message 7 "No more articles"))
453 (gnus-summary-recenter)
454 (gnus-summary-position-point)
457 (defun gnus-agent-unmark-article (n)
458 "Remove the downloadable mark from the next N articles.
459 If N is negative, unmark backward instead. The difference between N and
460 the actual number of articles unmarked is returned."
462 (gnus-agent-mark-article n t))
464 (defun gnus-agent-toggle-mark (n)
465 "Toggle the downloadable mark from the next N articles.
466 If N is negative, toggle backward instead. The difference between N and
467 the actual number of articles toggled is returned."
469 (gnus-agent-mark-article n 'toggle))
471 (defun gnus-summary-set-agent-mark (article &optional unmark)
472 "Mark ARTICLE as downloadable."
473 (let ((unmark (if (and (not (null unmark)) (not (eq t unmark)))
474 (memq article gnus-newsgroup-downloadable)
478 (setq gnus-newsgroup-downloadable
479 (delq article gnus-newsgroup-downloadable))
480 (push article gnus-newsgroup-undownloaded))
481 (setq gnus-newsgroup-undownloaded
482 (delq article gnus-newsgroup-undownloaded))
483 (push article gnus-newsgroup-downloadable))
484 (gnus-summary-update-mark
485 (if unmark gnus-undownloaded-mark gnus-downloadable-mark)
488 (defun gnus-agent-get-undownloaded-list ()
489 "Mark all unfetched articles as read."
490 (let ((gnus-command-method (gnus-find-method-for-group gnus-newsgroup-name)))
491 (when (and (not gnus-plugged)
492 (gnus-agent-method-p gnus-command-method))
493 (gnus-agent-load-alist gnus-newsgroup-name)
494 (let ((articles gnus-newsgroup-unreads)
496 (while (setq article (pop articles))
497 (unless (or (cdr (assq article gnus-agent-article-alist))
498 (memq article gnus-newsgroup-downloadable))
499 (push article gnus-newsgroup-undownloaded)))))))
501 (defun gnus-agent-catchup ()
502 "Mark all undownloaded articles as read."
505 (while gnus-newsgroup-undownloaded
506 (gnus-summary-mark-article
507 (pop gnus-newsgroup-undownloaded) gnus-catchup-mark)))
508 (gnus-summary-position-point))
511 ;;; Internal functions
514 (defun gnus-agent-save-active (method)
515 (when (gnus-agent-method-p method)
516 (let* ((gnus-command-method method)
517 (file (gnus-agent-lib-file "active")))
518 (gnus-make-directory (file-name-directory file))
519 (let ((coding-system-for-write gnus-agent-article-file-coding-system))
520 (write-region (point-min) (point-max) file nil 'silent))
521 (when (file-exists-p (gnus-agent-lib-file "groups"))
522 (delete-file (gnus-agent-lib-file "groups"))))))
524 (defun gnus-agent-save-groups (method)
525 (let* ((gnus-command-method method)
526 (file (gnus-agent-lib-file "groups")))
527 (gnus-make-directory (file-name-directory file))
528 (write-region (point-min) (point-max) file nil 'silent))
529 (when (file-exists-p (gnus-agent-lib-file "active"))
530 (delete-file (gnus-agent-lib-file "active"))))
532 (defun gnus-agent-save-group-info (method group active)
533 (when (gnus-agent-method-p method)
534 (let* ((gnus-command-method method)
535 (file (if nntp-server-list-active-group
536 (gnus-agent-lib-file "active")
537 (gnus-agent-lib-file "groups"))))
538 (gnus-make-directory (file-name-directory file))
539 (nnheader-temp-write file
540 (when (file-exists-p file)
541 (nnheader-insert-file-contents file))
542 (goto-char (point-min))
543 (if nntp-server-list-active-group
545 (when (re-search-forward
546 (concat "^" (regexp-quote group) " ") nil t)
548 (insert group " " (number-to-string (cdr active)) " "
549 (number-to-string (car active)) "\n"))
550 (when (re-search-forward (concat (regexp-quote group) " ") nil t)
552 (insert-buffer-substring nntp-server-buffer))))))
554 (defun gnus-agent-group-path (group)
555 "Translate GROUP into a path."
556 (if nnmail-use-long-file-names
557 (gnus-group-real-name group)
558 (nnheader-replace-chars-in-string
559 (nnheader-translate-file-chars (gnus-group-real-name group))
564 (defun gnus-agent-method-p (method)
565 "Say whether METHOD is covered by the agent."
566 (member method gnus-agent-covered-methods))
568 (defun gnus-agent-get-function (method)
569 (if (and (not gnus-plugged)
570 (gnus-agent-method-p method))
576 ;;; History functions
578 (defun gnus-agent-history-buffer ()
579 (cdr (assoc (gnus-agent-method) gnus-agent-history-buffers)))
581 (defun gnus-agent-open-history ()
583 (push (cons (gnus-agent-method)
584 (set-buffer (gnus-get-buffer-create
585 (format " *Gnus agent %s history*"
586 (gnus-agent-method)))))
587 gnus-agent-history-buffers)
590 (let ((file (gnus-agent-lib-file "history")))
591 (when (file-exists-p file)
593 (set (make-local-variable 'gnus-agent-file-name) file))))
595 (defun gnus-agent-save-history ()
597 (set-buffer gnus-agent-current-history)
598 (gnus-make-directory (file-name-directory gnus-agent-file-name))
599 (write-region (1+ (point-min)) (point-max)
600 gnus-agent-file-name nil 'silent)))
602 (defun gnus-agent-close-history ()
603 (when (gnus-buffer-live-p gnus-agent-current-history)
604 (kill-buffer gnus-agent-current-history)
605 (setq gnus-agent-history-buffers
606 (delq (assoc (gnus-agent-method) gnus-agent-history-buffers)
607 gnus-agent-history-buffers))))
609 (defun gnus-agent-enter-history (id group-arts date)
611 (set-buffer gnus-agent-current-history)
612 (goto-char (point-max))
613 (insert id "\t" (number-to-string date) "\t")
615 (insert (caar group-arts) " " (number-to-string (cdr (pop group-arts)))
619 (defun gnus-agent-article-in-history-p (id)
621 (set-buffer (gnus-agent-history-buffer))
622 (goto-char (point-min))
623 (search-forward (concat "\n" id "\t") nil t)))
625 (defun gnus-agent-history-path (id)
627 (set-buffer (gnus-agent-history-buffer))
628 (goto-char (point-min))
629 (when (search-forward (concat "\n" id "\t") nil t)
630 (let ((method (gnus-agent-method)))
632 (while (not (numberp (setq group (read (current-buffer)))))
633 (push (concat method "/" group) paths))
634 (nreverse paths))))))
640 (defun gnus-agent-fetch-articles (group articles)
641 "Fetch ARTICLES from GROUP and put them into the Agent."
643 ;; Prune off articles that we have already fetched.
645 (cdr (assq (car articles) gnus-agent-article-alist)))
647 (let ((arts articles))
649 (if (cdr (assq (cadr arts) gnus-agent-article-alist))
650 (setcdr arts (cddr arts))
651 (setq arts (cdr arts)))))
654 (gnus-agent-directory)
655 (gnus-agent-group-path group) "/"))
656 (date (gnus-time-to-day (current-time)))
658 pos alists crosses id elem)
659 (gnus-make-directory dir)
660 (gnus-message 7 "Fetching articles for %s..." group)
661 ;; Fetch the articles from the backend.
662 (if (gnus-check-backend-function 'retrieve-articles group)
663 (setq pos (gnus-retrieve-articles articles group))
664 (nnheader-temp-write nil
665 (let ((buf (current-buffer))
667 (while (setq article (pop articles))
668 (when (gnus-request-article article group)
669 (goto-char (point-max))
670 (push (cons article (point)) pos)
671 (insert-buffer-substring nntp-server-buffer)))
672 (copy-to-buffer nntp-server-buffer (point-min) (point-max))
673 (setq pos (nreverse pos)))))
674 ;; Then save these articles into the Agent.
676 (set-buffer nntp-server-buffer)
678 (narrow-to-region (cdar pos) (or (cdadr pos) (point-max)))
679 (goto-char (point-min))
680 (when (search-forward "\n\n" nil t)
681 (when (search-backward "\nXrefs: " nil t)
682 ;; Handle crossposting.
683 (skip-chars-forward "^ ")
684 (skip-chars-forward " ")
686 (while (looking-at "\\([^: \n]+\\):\\([0-9]+\\) +")
687 (push (cons (buffer-substring (match-beginning 1)
689 (buffer-substring (match-beginning 2)
692 (goto-char (match-end 0)))
693 (gnus-agent-crosspost crosses (caar pos))))
694 (goto-char (point-min))
695 (if (not (re-search-forward "^Message-ID: *<\\([^>\n]+\\)>" nil t))
696 (setq id "No-Message-ID-in-article")
697 (setq id (buffer-substring (match-beginning 1) (match-end 1))))
698 (let ((coding-system-for-write
699 gnus-agent-article-file-coding-system))
700 (write-region (point-min) (point-max)
701 (concat dir (number-to-string (caar pos)))
703 (when (setq elem (assq (caar pos) gnus-agent-article-alist))
705 (gnus-agent-enter-history
706 id (or crosses (list (cons group (caar pos)))) date)
709 (gnus-agent-save-alist group)))))
711 (defun gnus-agent-crosspost (crosses article)
712 (let (gnus-agent-article-alist group alist beg end)
714 (set-buffer gnus-agent-overview-buffer)
715 (when (nnheader-find-nov-line article)
718 (setq end (progn (forward-line 1) (point)))))
720 (setq group (caar crosses))
721 (unless (setq alist (assoc group gnus-agent-group-alist))
722 (push (setq alist (list group (gnus-agent-load-alist (caar crosses))))
723 gnus-agent-group-alist))
724 (setcdr alist (cons (cons (cdar crosses) t) (cdr alist)))
726 (set-buffer (gnus-get-buffer-create (format " *Gnus agent overview %s*"
728 (when (= (point-max) (point-min))
729 (push (cons group (current-buffer)) gnus-agent-buffer-alist)
731 (nnheader-insert-file-contents
732 (gnus-agent-article-name ".overview" group))))
733 (nnheader-find-nov-line (string-to-number (cdar crosses)))
734 (insert (string-to-number (cdar crosses)))
735 (insert-buffer-substring gnus-agent-overview-buffer beg end))
738 (defun gnus-agent-flush-cache ()
740 (while gnus-agent-buffer-alist
741 (set-buffer (cdar gnus-agent-buffer-alist))
742 (write-region (point-min) (point-max)
743 (gnus-agent-article-name ".overview"
744 (caar gnus-agent-buffer-alist))
746 (pop gnus-agent-buffer-alist))
747 (while gnus-agent-group-alist
748 (nnheader-temp-write (caar gnus-agent-group-alist)
749 (princ (cdar gnus-agent-group-alist))
751 (pop gnus-agent-group-alist))))
753 (defun gnus-agent-fetch-headers (group articles &optional force)
754 (gnus-agent-load-alist group)
755 ;; Find out what headers we need to retrieve.
758 (assq (car articles) gnus-agent-article-alist))
760 (let ((arts articles))
762 (if (assq (cadr arts) gnus-agent-article-alist)
763 (setcdr arts (cddr arts))
764 (setq arts (cdr arts)))))
767 (gnus-message 7 "Fetching headers for %s..." group)
769 (set-buffer nntp-server-buffer)
770 (unless (eq 'nov (gnus-retrieve-headers articles group))
771 (nnvirtual-convert-headers))
773 ;; To gnus-agent-expire work fine with no Xref field in .overview
774 ;; Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
775 (goto-char (point-min))
777 (goto-char (point-at-eol))
780 ;; Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
781 ;; To gnus-agent-expire work fine with no Xref field in .overview
783 ;; Save these headers for later processing.
784 (copy-to-buffer gnus-agent-overview-buffer (point-min) (point-max))
787 (setq file (gnus-agent-article-name ".overview" group)))
788 (gnus-agent-braid-nov group articles file))
789 (gnus-make-directory (nnheader-translate-file-chars
790 (file-name-directory file)))
791 (write-region (point-min) (point-max) file nil 'silent)
792 (gnus-agent-save-alist group articles nil)
793 (gnus-agent-enter-history "last-header-fetched-for-session"
794 (list (cons group (nth (- (length articles) 1) articles)))
795 (gnus-time-to-day (current-time)))
798 (defsubst gnus-agent-copy-nov-line (article)
800 (set-buffer gnus-agent-overview-buffer)
802 (if (eq article (read (current-buffer)))
803 (setq e (progn (forward-line 1) (point)))
805 (set-buffer nntp-server-buffer)
806 (insert-buffer-substring gnus-agent-overview-buffer b e)))
808 (defun gnus-agent-braid-nov (group articles file)
810 (set-buffer gnus-agent-overview-buffer)
811 (goto-char (point-min))
812 (set-buffer nntp-server-buffer)
814 (nnheader-insert-file-contents file)
815 (goto-char (point-max))
816 (if (or (= (point-min) (point-max))
819 (< (read (current-buffer)) (car articles))))
820 ;; We have only headers that are after the older headers,
821 ;; so we just append them.
823 (goto-char (point-max))
824 (insert-buffer-substring gnus-agent-overview-buffer))
825 ;; We do it the hard way.
826 (nnheader-find-nov-line (car articles))
827 (gnus-agent-copy-nov-line (car articles))
831 (while (and (not (eobp))
832 (< (read (current-buffer)) (car articles)))
836 (gnus-agent-copy-nov-line (car articles))
837 (setq articles (cdr articles))))
840 (set-buffer gnus-agent-overview-buffer)
843 (set-buffer nntp-server-buffer)
844 (insert-buffer-substring gnus-agent-overview-buffer b e))))))
846 (defun gnus-agent-load-alist (group &optional dir)
847 "Load the article-state alist for GROUP."
848 (setq gnus-agent-article-alist
849 (gnus-agent-read-file
851 (concat dir ".agentview")
852 (gnus-agent-article-name ".agentview" group)))))
854 (defun gnus-agent-save-alist (group &optional articles state dir)
855 "Load the article-state alist for GROUP."
856 (nnheader-temp-write (if dir
857 (concat dir ".agentview")
858 (gnus-agent-article-name ".agentview" group))
859 (princ (setq gnus-agent-article-alist
860 (nconc gnus-agent-article-alist
861 (mapcar (lambda (article) (cons article state))
866 (defun gnus-agent-article-name (article group)
867 (concat (gnus-agent-directory) (gnus-agent-group-path group) "/"
868 (if (stringp article) article (string-to-number article))))
871 (defun gnus-agent-batch-fetch ()
872 "Start Gnus and fetch session."
875 (gnus-agent-fetch-session)
878 (defun gnus-agent-fetch-session ()
879 "Fetch all articles and headers that are eligible for fetching."
881 (unless gnus-agent-covered-methods
882 (error "No servers are covered by the Gnus agent"))
884 (error "Can't fetch articles while Gnus is unplugged"))
885 (let ((methods gnus-agent-covered-methods)
886 groups group gnus-command-method)
889 (setq gnus-command-method (car methods))
890 (when (or (gnus-server-opened gnus-command-method)
891 (gnus-open-server gnus-command-method))
892 (setq groups (gnus-groups-from-server (car methods)))
893 (gnus-agent-with-fetch
894 (while (setq group (pop groups))
895 (when (<= (gnus-group-level group) gnus-agent-handle-level)
896 (gnus-agent-fetch-group-1 group gnus-command-method)))))
898 (gnus-message 6 "Finished fetching articles into the Gnus agent"))))
900 (defun gnus-agent-fetch-group-1 (group method)
902 (let ((gnus-command-method method)
903 gnus-newsgroup-dependencies gnus-newsgroup-headers
904 gnus-newsgroup-scored gnus-headers gnus-score
905 gnus-use-cache articles score arts
906 category predicate info marks score-param)
908 (when (and (or (gnus-active group) (gnus-activate-group group))
909 (setq articles (gnus-list-of-unread-articles group))
910 (gnus-agent-fetch-headers group articles))
911 ;; Parse them and see which articles we want to fetch.
912 (setq gnus-newsgroup-dependencies
913 (make-vector (length articles) 0))
914 (setq gnus-newsgroup-headers
915 (gnus-get-newsgroup-headers-xover articles nil nil group))
916 (setq category (gnus-group-category group))
919 (or (gnus-group-get-parameter group 'agent-predicate)
922 (or (gnus-group-get-parameter group 'agent-score)
925 (gnus-score-headers (list (list score-param))))
927 (while (setq gnus-headers (pop gnus-newsgroup-headers))
929 (or (cdr (assq (mail-header-number gnus-headers)
930 gnus-newsgroup-scored))
931 gnus-summary-default-score))
932 (when (funcall predicate)
933 (push (mail-header-number gnus-headers)
935 ;; Fetch the articles.
937 (gnus-agent-fetch-articles group arts)))
938 ;; Perhaps we have some additional articles to fetch.
939 (setq arts (assq 'download (gnus-info-marks
940 (setq info (gnus-get-info group)))))
942 (gnus-agent-fetch-articles
943 group (gnus-uncompress-range (cdr arts)))
944 (setq marks (delq arts (gnus-info-marks info)))
945 (gnus-info-set-marks info marks))))
948 ;;; Agent Category Mode
951 (defvar gnus-category-mode-hook nil
952 "Hook run in `gnus-category-mode' buffers.")
954 (defvar gnus-category-line-format " %(%20c%): %g\n"
955 "Format of category lines.")
957 (defvar gnus-category-mode-line-format "Gnus: %%b"
958 "The format specification for the category mode line.")
960 (defvar gnus-agent-short-article 100
961 "Articles that have fewer lines than this are short.")
963 (defvar gnus-agent-long-article 200
964 "Articles that have more lines than this are long.")
966 (defvar gnus-agent-low-score 0
967 "Articles that have a score lower than this have a low score.")
969 (defvar gnus-agent-high-score 0
970 "Articles that have a score higher than this have a high score.")
973 ;;; Internal variables.
975 (defvar gnus-category-buffer "*Agent Category*")
977 (defvar gnus-category-line-format-alist
981 (defvar gnus-category-mode-line-format-alist
982 `((?u user-defined ?s)))
984 (defvar gnus-category-line-format-spec nil)
985 (defvar gnus-category-mode-line-format-spec nil)
987 (defvar gnus-category-mode-map nil)
988 (put 'gnus-category-mode 'mode-class 'special)
990 (unless gnus-category-mode-map
991 (setq gnus-category-mode-map (make-sparse-keymap))
992 (suppress-keymap gnus-category-mode-map)
994 (gnus-define-keys gnus-category-mode-map
995 "q" gnus-category-exit
996 "k" gnus-category-kill
997 "c" gnus-category-copy
998 "a" gnus-category-add
999 "p" gnus-category-edit-predicate
1000 "g" gnus-category-edit-groups
1001 "s" gnus-category-edit-score
1002 "l" gnus-category-list
1004 "\C-c\C-i" gnus-info-find-node
1005 "\C-c\C-b" gnus-bug))
1007 (defvar gnus-category-menu-hook nil
1008 "*Hook run after the creation of the menu.")
1010 (defun gnus-category-make-menu-bar ()
1011 (gnus-turn-off-edit-menu 'category)
1012 (unless (boundp 'gnus-category-menu)
1014 gnus-category-menu gnus-category-mode-map ""
1016 ["Add" gnus-category-add t]
1017 ["Kill" gnus-category-kill t]
1018 ["Copy" gnus-category-copy t]
1019 ["Edit predicate" gnus-category-edit-predicate t]
1020 ["Edit score" gnus-category-edit-score t]
1021 ["Edit groups" gnus-category-edit-groups t]
1022 ["Exit" gnus-category-exit t]))
1024 (gnus-run-hooks 'gnus-category-menu-hook)))
1026 (defun gnus-category-mode ()
1027 "Major mode for listing and editing agent categories.
1029 All normal editing commands are switched off.
1030 \\<gnus-category-mode-map>
1031 For more in-depth information on this mode, read the manual
1032 (`\\[gnus-info-find-node]').
1034 The following commands are available:
1036 \\{gnus-category-mode-map}"
1038 (when (gnus-visual-p 'category-menu 'menu)
1039 (gnus-category-make-menu-bar))
1040 (kill-all-local-variables)
1041 (gnus-simplify-mode-line)
1042 (setq major-mode 'gnus-category-mode)
1043 (setq mode-name "Category")
1044 (gnus-set-default-directory)
1045 (setq mode-line-process nil)
1046 (use-local-map gnus-category-mode-map)
1047 (buffer-disable-undo (current-buffer))
1048 (setq truncate-lines t)
1049 (setq buffer-read-only t)
1050 (gnus-run-hooks 'gnus-category-mode-hook))
1052 (defalias 'gnus-category-position-point 'gnus-goto-colon)
1054 (defun gnus-category-insert-line (category)
1055 (let* ((name (car category))
1056 (groups (length (cadddr category))))
1058 (gnus-add-text-properties
1062 (eval gnus-category-line-format-spec))
1063 (list 'gnus-category name))))
1065 (defun gnus-enter-category-buffer ()
1066 "Go to the Category buffer."
1068 (gnus-category-setup-buffer)
1069 (gnus-configure-windows 'category)
1070 (gnus-category-prepare))
1072 (defun gnus-category-setup-buffer ()
1073 (unless (get-buffer gnus-category-buffer)
1075 (set-buffer (gnus-get-buffer-create gnus-category-buffer))
1076 (gnus-category-mode))))
1078 (defun gnus-category-prepare ()
1079 (gnus-set-format 'category-mode)
1080 (gnus-set-format 'category t)
1081 (let ((alist gnus-category-alist)
1082 (buffer-read-only nil))
1085 (gnus-category-insert-line (pop alist)))
1086 (goto-char (point-min))
1087 (gnus-category-position-point)))
1089 (defun gnus-category-name ()
1090 (or (get-text-property (gnus-point-at-bol) 'gnus-category)
1091 (error "No category on the current line")))
1093 (defun gnus-category-read ()
1094 "Read the category alist."
1095 (setq gnus-category-alist
1096 (or (gnus-agent-read-file
1097 (nnheader-concat gnus-agent-directory "lib/categories"))
1098 (list (list 'default 'short nil nil)))))
1100 (defun gnus-category-write ()
1101 "Write the category alist."
1102 (setq gnus-category-predicate-cache nil
1103 gnus-category-group-cache nil)
1104 (nnheader-temp-write (nnheader-concat gnus-agent-directory "lib/categories")
1105 (prin1 gnus-category-alist (current-buffer))))
1107 (defun gnus-category-edit-predicate (category)
1108 "Edit the predicate for CATEGORY."
1109 (interactive (list (gnus-category-name)))
1110 (let ((info (assq category gnus-category-alist)))
1112 (cadr info) (format "Editing the predicate for category %s" category)
1113 `(lambda (predicate)
1114 (setf (cadr (assq ',category gnus-category-alist)) predicate)
1115 (gnus-category-write)
1116 (gnus-category-list)))))
1118 (defun gnus-category-edit-score (category)
1119 "Edit the score expression for CATEGORY."
1120 (interactive (list (gnus-category-name)))
1121 (let ((info (assq category gnus-category-alist)))
1124 (format "Editing the score expression for category %s" category)
1126 (setf (caddr (assq ',category gnus-category-alist)) groups)
1127 (gnus-category-write)
1128 (gnus-category-list)))))
1130 (defun gnus-category-edit-groups (category)
1131 "Edit the group list for CATEGORY."
1132 (interactive (list (gnus-category-name)))
1133 (let ((info (assq category gnus-category-alist)))
1135 (cadddr info) (format "Editing the group list for category %s" category)
1137 (setf (cadddr (assq ',category gnus-category-alist)) groups)
1138 (gnus-category-write)
1139 (gnus-category-list)))))
1141 (defun gnus-category-kill (category)
1142 "Kill the current category."
1143 (interactive (list (gnus-category-name)))
1144 (let ((info (assq category gnus-category-alist))
1145 (buffer-read-only nil))
1147 (gnus-category-write)
1148 (setq gnus-category-alist (delq info gnus-category-alist))))
1150 (defun gnus-category-copy (category to)
1151 "Copy the current category."
1152 (interactive (list (gnus-category-name) (intern (read-string "New name: "))))
1153 (let ((info (assq category gnus-category-alist)))
1154 (push (list to (gnus-copy-sequence (cadr info))
1155 (gnus-copy-sequence (caddr info)) nil)
1156 gnus-category-alist)
1157 (gnus-category-write)
1158 (gnus-category-list)))
1160 (defun gnus-category-add (category)
1161 "Create a new category."
1162 (interactive "SCategory name: ")
1163 (when (assq category gnus-category-alist)
1164 (error "Category %s already exists" category))
1165 (push (list category 'true nil nil)
1166 gnus-category-alist)
1167 (gnus-category-write)
1168 (gnus-category-list))
1170 (defun gnus-category-list ()
1171 "List all categories."
1173 (gnus-category-prepare))
1175 (defun gnus-category-exit ()
1176 "Return to the group buffer."
1178 (kill-buffer (current-buffer))
1179 (gnus-configure-windows 'group t))
1181 ;; To avoid having 8-bit characters in the source file.
1182 (defvar gnus-category-not (list '! 'not (intern (format "%c" 172))))
1184 (defvar gnus-category-predicate-alist
1185 '((spam . gnus-agent-spam-p)
1186 (short . gnus-agent-short-p)
1187 (long . gnus-agent-long-p)
1188 (low . gnus-agent-low-scored-p)
1189 (high . gnus-agent-high-scored-p)
1190 (true . gnus-agent-true)
1191 (false . gnus-agent-false))
1192 "Mapping from short score predicate symbols to predicate functions.")
1194 (defun gnus-agent-spam-p ()
1195 "Say whether an article is spam or not."
1196 (unless gnus-agent-spam-hashtb
1197 (setq gnus-agent-spam-hashtb (gnus-make-hashtable 1000)))
1198 (if (not (equal (mail-header-references gnus-headers) ""))
1200 (let ((string (gnus-simplify-subject (mail-header-subject gnus-headers))))
1202 (gnus-gethash string gnus-agent-spam-hashtb)
1203 (gnus-sethash string t gnus-agent-spam-hashtb)))))
1205 (defun gnus-agent-short-p ()
1206 "Say whether an article is short or not."
1207 (< (mail-header-lines gnus-headers) gnus-agent-short-article))
1209 (defun gnus-agent-long-p ()
1210 "Say whether an article is long or not."
1211 (> (mail-header-lines gnus-headers) gnus-agent-long-article))
1213 (defun gnus-agent-low-scored-p ()
1214 "Say whether an article has a low score or not."
1215 (< gnus-score gnus-agent-low-score))
1217 (defun gnus-agent-high-scored-p ()
1218 "Say whether an article has a high score or not."
1219 (> gnus-score gnus-agent-high-score))
1221 (defun gnus-category-make-function (cat)
1222 "Make a function from category CAT."
1223 `(lambda () ,(gnus-category-make-function-1 cat)))
1225 (defun gnus-agent-true ()
1229 (defun gnus-agent-false ()
1233 (defun gnus-category-make-function-1 (cat)
1234 "Make a function from category CAT."
1236 ;; Functions are just returned as is.
1238 (gnus-functionp cat))
1239 `(,(or (cdr (assq cat gnus-category-predicate-alist))
1241 ;; More complex category.
1244 ((memq (car cat) '(& and))
1246 ((memq (car cat) '(| or))
1248 ((memq (car cat) gnus-category-not)
1250 ,@(mapcar 'gnus-category-make-function-1 (cdr cat))))
1252 (error "Unknown category type: %s" cat))))
1254 (defun gnus-get-predicate (predicate)
1255 "Return the predicate for CATEGORY."
1256 (or (cdr (assoc predicate gnus-category-predicate-cache))
1257 (cdar (push (cons predicate
1258 (gnus-category-make-function predicate))
1259 gnus-category-predicate-cache))))
1261 (defun gnus-group-category (group)
1262 "Return the category GROUP belongs to."
1263 (unless gnus-category-group-cache
1264 (setq gnus-category-group-cache (gnus-make-hashtable 1000))
1265 (let ((cs gnus-category-alist)
1267 (while (setq cat (pop cs))
1268 (setq groups (cadddr cat))
1270 (gnus-sethash (pop groups) cat gnus-category-group-cache)))))
1271 (or (gnus-gethash group gnus-category-group-cache)
1272 (assq 'default gnus-category-alist)))
1274 (defun gnus-agent-expire ()
1275 "Expire all old articles."
1277 (let ((methods gnus-agent-covered-methods)
1278 (day (- (gnus-time-to-day (current-time)) gnus-agent-expire-days))
1279 gnus-command-method sym group articles
1280 history overview file histories elem art nov-file low info
1281 unreads marked article)
1283 (setq overview (gnus-get-buffer-create " *expire overview*"))
1284 (while (setq gnus-command-method (pop methods))
1285 (let ((expiry-hashtb (gnus-make-hashtable 1023)))
1286 (gnus-agent-open-history)
1288 (setq gnus-agent-current-history
1289 (setq history (gnus-agent-history-buffer))))
1290 (goto-char (point-min))
1291 (when (> (buffer-size) 1)
1292 (goto-char (point-min))
1294 (skip-chars-forward "^\t")
1295 (if (> (read (current-buffer)) day)
1296 ;; New article; we don't expire it.
1298 ;; Old article. Schedule it for possible nuking.
1300 (setq sym (let ((obarray expiry-hashtb))
1301 (read (current-buffer))))
1303 (set sym (cons (cons (read (current-buffer)) (point))
1304 (symbol-value sym)))
1305 (set sym (list (cons (read (current-buffer)) (point)))))
1306 (skip-chars-forward " "))
1308 ;; We now have all articles that can possibly be expired.
1311 (setq group (symbol-name sym)
1312 articles (sort (symbol-value sym) 'car-less-than-car)
1313 low (car (gnus-active group))
1314 info (gnus-get-info group)
1315 unreads (ignore-errors (gnus-list-of-unread-articles group))
1316 marked (nconc (gnus-uncompress-range
1317 (cdr (assq 'tick (gnus-info-marks info))))
1318 (gnus-uncompress-range
1320 (gnus-info-marks info)))))
1321 nov-file (gnus-agent-article-name ".overview" group))
1322 (gnus-agent-load-alist group)
1323 (gnus-message 5 "Expiring articles in %s" group)
1324 (set-buffer overview)
1326 (when (file-exists-p nov-file)
1327 (nnheader-insert-file-contents nov-file))
1328 (goto-char (point-min))
1330 (while (setq elem (pop articles))
1331 (setq article (car elem))
1332 (when (or (null low)
1334 gnus-agent-expire-all
1335 (and (not (memq article unreads))
1336 (not (memq article marked))))
1337 ;; Find and nuke the NOV line.
1338 (while (and (not (eobp))
1340 (setq art (read (current-buffer)))))
1343 (gnus-agent-article-name
1344 (number-to-string art) group))
1346 ;; Remove old NOV lines that have no articles.
1347 (gnus-delete-line)))
1352 ;; Nuke the article.
1353 (when (file-exists-p (setq file (gnus-agent-article-name
1354 (number-to-string article)
1357 ;; Schedule the history line for nuking.
1358 (push (cdr elem) histories)))
1359 (gnus-make-directory (file-name-directory nov-file))
1360 (write-region (point-min) (point-max) nov-file nil 'silent)
1361 ;; Delete the unwanted entries in the alist.
1362 (setq gnus-agent-article-alist
1363 (sort gnus-agent-article-alist 'car-less-than-car))
1364 (let* ((alist gnus-agent-article-alist)
1365 (prev (cons nil alist))
1368 (<= (caar alist) article))
1369 (if (or (not (cdar alist))
1371 (gnus-agent-article-name
1375 (setcdr prev (setq alist (cdr alist)))
1377 alist (cdr alist))))
1378 (setq gnus-agent-article-alist (cdr first))
1379 ;;; Mark all articles up to the first article
1380 ;;; in `gnus-article-alist' as read.
1381 (when (caar gnus-agent-article-alist)
1382 (setcar (nthcdr 2 info)
1385 (cons 1 (- (caar gnus-agent-article-alist) 1)))))
1387 (concat "(gnus-group-set-info '"
1388 (gnus-prin1-to-string info)
1390 (gnus-agent-save-alist group)))
1392 (set-buffer history)
1393 (setq histories (nreverse (sort histories '<)))
1395 (goto-char (pop histories))
1397 (gnus-agent-save-history)
1398 (gnus-agent-close-history))
1399 (gnus-message 4 "Expiry...done"))))))
1402 (defun gnus-agent-batch ()
1404 (let ((init-file-user "")
1405 (gnus-always-read-dribble-file t))
1407 (gnus-group-send-drafts)
1408 (gnus-agent-fetch-session))
1410 (provide 'gnus-agent)
1412 ;;; gnus-agent.el ends here