From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84353 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: nnimap splitting weirdness Date: Mon, 10 Mar 2014 14:18:28 +0800 Message-ID: <8761nmk24r.fsf@ericabrahamsen.net> References: <877g88m2b3.fsf@ericabrahamsen.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1394434448 26285 80.91.229.3 (10 Mar 2014 06:54:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Mar 2014 06:54:08 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M32599@lists.math.uh.edu Mon Mar 10 07:54:16 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 1WMu6I-0004O3-9X for ding-account@gmane.org; Mon, 10 Mar 2014 07:54:14 +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 1WMu5U-0006Tm-8X; Mon, 10 Mar 2014 01:53:24 -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 1WMu5K-0006TR-Vh for ding@lists.math.uh.edu; Mon, 10 Mar 2014 01:53:15 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1WMu5J-0002ZY-Fm for ding@lists.math.uh.edu; Mon, 10 Mar 2014 01:53:14 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1WMu5H-0004kr-GJ for ding@gnus.org; Mon, 10 Mar 2014 07:53:11 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WMu5G-0003a8-TK for ding@gnus.org; Mon, 10 Mar 2014 07:53:10 +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 07:53:10 +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 07:53:10 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 44 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:zG28Iih4eG1ZuYb6ugaMNTDCreA= X-Spam-Score: -0.7 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84353 Archived-At: Eric Abrahamsen writes: > A month or so ago, all my nnimap splitting stopped working: everything > suddenly was getting sent to the default "mail.misc" group. I only just > got around to looking into what happened. Gah, I still can't figure this out. Whatever changed changed in late January, and I went through the git logs, reverting a couple of commits and testing, and I can't find anything that seems to be responsible. I wasn't able to advise setq to see what was re-setting nnimap-split-fancy, because defadvice itself uses setqs, and that created loops. I tried using Malcolm's back-quote suggestion, but that doesn't seem to work either. In my gnus.el I changed things to look like: (require 'bbdb-gnus) (setq my-nnimap-split-fancy `(| ,@(bbdb/gnus-nnimap-folder-list-from-bbdb) ; other splits (: gnus-group-split-fancy nil t nil) "INBOX")) (setq gnus-secondary-select-methods `( (nnimap "one" (nnimap-inbox "INBOX") (nnimap-split-methods nnmail-split-fancy) (nnimap-split-methods ,my-nnimap-split-fancy)) (nnimap "two" (nnimap-inbox "INBOX") (nnimap-split-methods nnmail-split-fancy) (nnimap-split-methods ,my-nnimap-split-fancy)) ; more similar accounts )) When I start gnus, first of all it hangs. I hit C-g to get out of the hang and it starts up as normal. But still, nothing splits correctly, everything still goes to the nnmail-split-fancy default of "mail.misc". I don't know what to do! E