From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/70907 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Archive group broken since very recently Date: Fri, 17 Sep 2010 20:40:47 +0200 Message-ID: <201009172040.47951.tassilo@member.fsf.org> References: <201009151804.11061.tassilo@member.fsf.org> <201009171009.15962.tassilo@member.fsf.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1284748859 3576 80.91.229.12 (17 Sep 2010 18:40:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 17 Sep 2010 18:40:59 +0000 (UTC) Cc: Lars Magne Ingebrigtsen To: ding@gnus.org Original-X-From: ding-owner+M19280@lists.math.uh.edu Fri Sep 17 20:40:57 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Owfrk-0007Jd-Ii for ding-account@gmane.org; Fri, 17 Sep 2010 20:40:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Owfrj-0001Br-Hc; Fri, 17 Sep 2010 13:40:55 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Owfri-0001Bd-6h for ding@lists.math.uh.edu; Fri, 17 Sep 2010 13:40:54 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Owfrg-0006vQ-QJ for ding@lists.math.uh.edu; Fri, 17 Sep 2010 13:40:54 -0500 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1Owfrg-0004KF-00; Fri, 17 Sep 2010 20:40:52 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id AB996782754A; Fri, 17 Sep 2010 20:40:49 +0200 (CEST) Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01398-04; Fri, 17 Sep 2010 20:40:49 +0200 (CEST) X-CHKRCPT: Envelopesender noch tassilo@member.fsf.org Original-Received: from thinkpad.localnet (p54AF01B1.dip0.t-ipconnect.de [84.175.1.177]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTP id EC8417827547; Fri, 17 Sep 2010 20:40:48 +0200 (CEST) User-Agent: KMail/1.13.5 (Linux/2.6.36-rc4+; KDE/4.5.1; x86_64; ; ) In-Reply-To: X-Virus-Scanned: amavisd-new at uni-koblenz.de X-Spam-Score: -4.9 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:70907 Archived-At: On Friday 17 September 2010 17:51:05 Lars Magne Ingebrigtsen wrote: > Tassilo Horn writes: > >> (gnus-server-to-method "archive") > >> > >> say? > > > > (nnml "archive" > > > > (nnml-inhibit-expiry t) > > (nnml-get-new-mail nil) > > (nnml-directory "/home/horn/.gnus.d/News/archive") > > (nnml-active-file "/home/horn/.gnus.d/News/archive/active")) > > Darn. That looks correct, too. > > I have no idea why this is happening. Could you try to edebug your > way through the functions to try to determine what on earth is > messing up the method on group selection? It'll be a slog -- I > can't really suggest any particular function to start with... The problem is that in gnus-find-method-for-group a call like that is made --8<---------------cut here---------------start------------->8--- (gnus-server-extend-method "nnml+archive:sent-postings" '(nnml "archive" (nnml-inhibit-expiry t) (nnml-get-new-mail nil) (nnml-directory "~/.gnus.d/News/archive") (nnml-active-file "~/.gnus.d/News/archive/active"))) --8<---------------cut here---------------end--------------->8--- which returns --8<---------------cut here---------------start------------->8--- (nnml "archive+nnml+archive:sent-postings" (nnml-address "archive") (nnml-inhibit-expiry t) (nnml-get-new-mail nil) (nnml-directory "~/.gnus.d/News/archive") (nnml-active-file "~/.gnus.d/News/archive/active")) --8<---------------cut here---------------end--------------->8--- and is plain wrong... Bye, Tassilo