From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/46733 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: nnmaildir now has persistent article numbers Date: Wed, 25 Sep 2002 12:04:49 -0400 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: owner-ding@hpc.uh.edu Message-ID: References: <873cs0v7b1.fsf@mail.paradoxical.net> <871y7jb80d.fsf@mail.paradoxical.net> <87wupb9m9h.fsf@mail.paradoxical.net> <87znu7m8du.fsf@mail.paradoxical.net> <87n0q7m32v.fsf@mail.paradoxical.net> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1032970003 10267 127.0.0.1 (25 Sep 2002 16:06:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 25 Sep 2002 16:06:43 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17uEgS-0002f2-00 for ; Wed, 25 Sep 2002 18:06:40 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17uEfF-0005tS-00; Wed, 25 Sep 2002 11:05:25 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 25 Sep 2002 11:06:05 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id LAA14169 for ; Wed, 25 Sep 2002 11:05:49 -0500 (CDT) Original-Received: (qmail 6513 invoked by alias); 25 Sep 2002 16:04:54 -0000 Original-Received: (qmail 6508 invoked from network); 25 Sep 2002 16:04:54 -0000 Original-Received: from multivac.student.cwru.edu (HELO multivac.cwru.edu) (@129.22.96.25) by gnus.org with SMTP; 25 Sep 2002 16:04:54 -0000 Original-Received: (qmail 28466 invoked by uid 500); 25 Sep 2002 16:05:12 -0000 Original-To: ding@gnus.org In-Reply-To: <87n0q7m32v.fsf@mail.paradoxical.net> (Josh Huber's message of "Tue, 24 Sep 2002 18:32:08 -0400") Mail-Copies-To: nobody Mail-Followup-To: ding@gnus.org Original-Lines: 40 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:46733 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:46733 Josh Huber wrote: > nnmaildir:mail.lists.debian.private: ((41 . 340) (342 . 358)) I would expect this one to have its new article count too high by 1. The others ought to be ok. For all my groups with no holes, I get correct counts in the *Group* buffer. > Is there anything else I can do to further debug this problem? You could debug-on-entry nnmaildir-{request-group,request-list,retrieve-groups} to see whether the data it's putting in the " *nntpd*" buffer is accurate. > Oh, and here's an odd one, the unread message count is greater than > the total: > > 23/ 18[0]: nnmaildir:mail.lists.vr6 Weird. (defun report-nnmaildir-group (pgname) (let* ((gname (gnus-group-real-name pgname)) (server-name (gnus-group-real-prefix pgname)) (method (gnus-server-to-method server-name)) (server-address (nth 1 method)) (group (nnmaildir--prepare server-address gname)) (server nnmaildir--cur-server) (max (nnmaildir--group-maxnum server group)) (min (nnmaildir--grp-min group)) (count (nnmaildir--grp-count group))) (insert pgname "\n" "\tmax: " (number-to-string max) "\n" "\tmin: " (number-to-string min) "\n" "\tcount: " (number-to-string count) "\n"))) (report-nnmaildir-group "nnmaildir:mail.lists.vr6") You might also debug-on-entry nnmaildir-update-info and make sure the marks it passes back look reasonable. paul