From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84351 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: furthermore! (nnimap splitting con't) Date: Mon, 10 Mar 2014 12:55:45 +0800 Message-ID: <877g82vei6.fsf@ericabrahamsen.net> References: <87vbvrly5i.fsf@ericabrahamsen.net> <87d2hyx7h1.fsf@building.gnus.org> <8738itylcg.fsf@building.gnus.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1394427238 26616 80.91.229.3 (10 Mar 2014 04:53:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Mar 2014 04:53:58 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M32597@lists.math.uh.edu Mon Mar 10 05:54:06 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WMsE2-00008d-6E for ding-account@gmane.org; Mon, 10 Mar 2014 05:54:06 +0100 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 1WMsDh-0005wl-If; Sun, 09 Mar 2014 23:53:45 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1WMsDe-0005wS-N4 for ding@lists.math.uh.edu; Sun, 09 Mar 2014 23:53:42 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1WMsDZ-0004j5-Sa for ding@lists.math.uh.edu; Sun, 09 Mar 2014 23:53:42 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1WMsDL-0002Cr-TO for ding@gnus.org; Mon, 10 Mar 2014 05:53:27 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WMsDK-00083u-1F for ding@gnus.org; Mon, 10 Mar 2014 05:53:22 +0100 Original-Received: from 114.248.1.149 ([114.248.1.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 10 Mar 2014 05:53:22 +0100 Original-Received: from eric by 114.248.1.149 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 10 Mar 2014 05:53:22 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 37 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 114.248.1.149 User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:P/f1P0hQ/mRzD7UiQRdZLjy5PGQ= X-Spam-Score: -0.7 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84351 Archived-At: Lars Ingebrigtsen writes: > Lars Ingebrigtsen writes: > >> Uhm, yeah. I'm getting the same when I try to respool. I'll get >> fixin'... > > Fixed now in bzr Emacs and soon in Ma Gnus. Okay, I've tried this out, and it's not quite there, but nearly! The problem is in nnimap-request-accept-article. First of all, apparently nothing in my setup is loading nnml.el, so nnml-active-number is undefined. Either a require or an autoload, or something... Second, when nnmail-article-group is called, it is accessing a value of nnmail-split-methods that hasn't been let to the nnimap equivalents. So in a bunch of places there's this: (let ((nnmail-split-methods (cond ((eq nnimap-split-methods 'default) nnmail-split-methods) (nnimap-split-methods nnimap-split-methods) (nnimap-split-fancy 'nnmail-split-fancy))) (nnmail-split-fancy (or nnimap-split-fancy nnmail-split-fancy))) (do-thing) And that's needed here as well. With those changes in place, all seems well. Thanks, Eric