From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/10435 Path: news.gmane.org!not-for-mail From: David Newsgroups: gmane.emacs.gnus.user Subject: Registry not registering duplicate articles (was: Automatically authenticating at local imap server) Date: Sat, 23 Feb 2008 18:55:44 +0100 Message-ID: References: <87fxw9lr6x.fsf@gaura-nitai.dyndns.org> <87odax2jzi.fsf@member.fsf.org> <874pco7bot.fsf@member.fsf.org> <861w7ruyme.fsf@lifelogs.com> <86ve52nm4d.fsf@lifelogs.com> <86zlu13l1k.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1203789266 8923 80.91.229.12 (23 Feb 2008 17:54:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 23 Feb 2008 17:54:26 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sat Feb 23 18:54:51 2008 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JSyaI-0007GO-Qm for gegu-info-gnus-english@m.gmane.org; Sat, 23 Feb 2008 18:54:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSyZm-0008Mu-P7 for gegu-info-gnus-english@m.gmane.org; Sat, 23 Feb 2008 12:54:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JSyZl-0008LL-8a for info-gnus-english@gnu.org; Sat, 23 Feb 2008 12:54:17 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JSyZj-0008Ks-PQ for info-gnus-english@gnu.org; Sat, 23 Feb 2008 12:54:16 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSyZj-0008Kp-Kq for info-gnus-english@gnu.org; Sat, 23 Feb 2008 12:54:15 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JSyZj-0000fB-2L for info-gnus-english@gnu.org; Sat, 23 Feb 2008 12:54:15 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JSyZe-0002Jw-UM for info-gnus-english@gnu.org; Sat, 23 Feb 2008 17:54:10 +0000 Original-Received: from kafka.physik3.gwdg.de ([134.76.92.48]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 23 Feb 2008 17:54:10 +0000 Original-Received: from de_bb by kafka.physik3.gwdg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 23 Feb 2008 17:54:10 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 25 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: kafka.physik3.gwdg.de User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:5NMiBaJZ1N58lp55lhK46ofXLhg= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:10435 Archived-At: Ted Zlatanov writes: > On Wed, 06 Feb 2008 21:07:31 +0100 David wrote: > > D> I also noticed that when the same message is in two different groups the > D> registry will only return the group where it first saw it, right? I > D> guess it would be quite difficult to extend the registry in a way so > D> that it can return all groups where a message exists? > > Fortunately, gnus-registry-fetch-groups already does it :) Oh. I guess I could have found that one. :-) I was confused since I had some problems with the registry not registering articles from my sent mail folders. I noticed this is due to (unless (gnus-registry-fetch-group id) in gnus-registry-register-message-ids, so the message is not registered if it was already seen in any other group. Is there some deeper reason for this? Maybe this could be changed to something like (untested): (unless (member gnus-newsgroup-name (gnus-registry-fetch-group id)) Regards, David