1 ;;; gnus-dup.el --- suppression of duplicate articles in Gnus
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This package tries to mark articles as read the second time the
27 ;; user reads a copy. This is useful if the server doesn't support
28 ;; Xref properly, or if the user reads the same group from several
33 (eval-when-compile (require 'cl
))
38 (defgroup gnus-duplicate nil
39 "Suppression of duplicate articles."
42 (defcustom gnus-save-duplicate-list nil
43 "*If non-nil, save the duplicate list when shutting down Gnus.
44 If nil, duplicate suppression will only work on duplicates
45 seen in the same session."
46 :group
'gnus-duplicate
49 (defcustom gnus-duplicate-list-length
10000
50 "*The number of Message-IDs to keep in the duplicate suppression list."
51 :group
'gnus-duplicate
54 (defcustom gnus-duplicate-file
(nnheader-concat gnus-directory
"suppression")
55 "*The name of the file to store the duplicate suppression list."
56 :group
'gnus-duplicate
59 ;;; Internal variables
61 (defvar gnus-dup-list nil
)
62 (defvar gnus-dup-hashtb nil
)
64 (defvar gnus-dup-list-dirty nil
)
67 ;;; Starting and stopping
70 (gnus-add-shutdown 'gnus-dup-close
'gnus
)
72 (defun gnus-dup-close ()
73 "Possibly save the duplicate suppression list and shut down the subsystem."
75 (setq gnus-dup-list nil
77 gnus-dup-list-dirty nil
))
79 (defun gnus-dup-open ()
80 "Possibly read the duplicate suppression list and start the subsystem."
81 (if gnus-save-duplicate-list
83 (setq gnus-dup-list nil
))
84 (setq gnus-dup-hashtb
(gnus-make-hashtable gnus-duplicate-list-length
))
85 ;; Enter all Message-IDs into the hash table.
86 (let ((obarray gnus-dup-hashtb
))
87 (mapc 'intern gnus-dup-list
)))
89 (defun gnus-dup-read ()
90 "Read the duplicate suppression list."
91 (setq gnus-dup-list nil
)
92 (when (file-exists-p gnus-duplicate-file
)
93 (load gnus-duplicate-file t t t
)))
95 (defun gnus-dup-save ()
96 "Save the duplicate suppression list."
97 (when (and gnus-save-duplicate-list
99 (with-temp-file gnus-duplicate-file
100 (gnus-prin1 `(setq gnus-dup-list
',gnus-dup-list
))))
101 (setq gnus-dup-list-dirty nil
))
104 ;;; Interface functions
107 (defun gnus-dup-enter-articles ()
108 "Enter articles from the current group for future duplicate suppression."
109 (unless gnus-dup-list
111 (setq gnus-dup-list-dirty t
) ; mark list for saving
113 ;; Enter the Message-IDs of all read articles into the list
115 (dolist (datum gnus-newsgroup-data
)
116 (when (and (not (gnus-data-pseudo-p datum
))
117 (> (gnus-data-number datum
) 0)
118 (not (memq (gnus-data-number datum
) gnus-newsgroup-unreads
))
119 (not (= (gnus-data-mark datum
) gnus-canceled-mark
))
120 (setq msgid
(mail-header-id (gnus-data-header datum
)))
121 (not (nnheader-fake-message-id-p msgid
))
122 (not (intern-soft msgid gnus-dup-hashtb
)))
123 (push msgid gnus-dup-list
)
124 (intern msgid gnus-dup-hashtb
))))
125 ;; Chop off excess Message-IDs from the list.
126 (let ((end (nthcdr gnus-duplicate-list-length gnus-dup-list
)))
128 (mapc (lambda (id) (unintern id gnus-dup-hashtb
)) (cdr end
))
131 (defun gnus-dup-suppress-articles ()
132 "Mark duplicate articles as read."
133 (unless gnus-dup-list
135 (gnus-message 6 "Suppressing duplicates...")
136 (let ((auto (and gnus-newsgroup-auto-expire
137 (memq gnus-duplicate-mark gnus-auto-expirable-marks
)))
139 (dolist (header gnus-newsgroup-headers
)
140 (when (and (intern-soft (mail-header-id header
) gnus-dup-hashtb
)
141 (gnus-summary-article-unread-p (mail-header-number header
)))
142 (setq gnus-newsgroup-unreads
143 (delq (setq number
(mail-header-number header
))
144 gnus-newsgroup-unreads
))
146 (push (cons number gnus-duplicate-mark
) gnus-newsgroup-reads
)
147 (push number gnus-newsgroup-expirable
)
148 (push (cons number gnus-expirable-mark
) gnus-newsgroup-reads
)))))
149 (gnus-message 6 "Suppressing duplicates...done"))
151 (defun gnus-dup-unsuppress-article (article)
152 "Stop suppression of ARTICLE."
153 (let* ((header (gnus-data-header (gnus-data-find article
)))
154 (id (when header
(mail-header-id header
))))
156 (setq gnus-dup-list-dirty t
)
157 (setq gnus-dup-list
(delete id gnus-dup-list
))
158 (unintern id gnus-dup-hashtb
))))
162 ;; arch-tag: 903e94db-7b00-4d19-83ee-cf34a81fa5fb
163 ;;; gnus-dup.el ends here