From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/70914 Path: news.gmane.org!not-for-mail From: Knut Anders Hatlen Newsgroups: gmane.emacs.gnus.general Subject: Re: Releasing the new nnimap on y'all soon Date: Fri, 17 Sep 2010 21:12:32 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: dough.gmane.org 1284750785 12236 80.91.229.12 (17 Sep 2010 19:13:05 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 17 Sep 2010 19:13:05 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M19287@lists.math.uh.edu Fri Sep 17 21:13:04 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 1OwgMp-0008Nv-CV for ding-account@gmane.org; Fri, 17 Sep 2010 21:13:03 +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 1OwgMY-0001hM-DY; Fri, 17 Sep 2010 14:12:46 -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 1OwgMX-0001hC-4L for ding@lists.math.uh.edu; Fri, 17 Sep 2010 14:12:45 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1OwgMS-00077c-VJ for ding@lists.math.uh.edu; Fri, 17 Sep 2010 14:12:45 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1OwgMS-0004mz-00 for ; Fri, 17 Sep 2010 21:12:40 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OwgMS-00087O-6R for ding@gnus.org; Fri, 17 Sep 2010 21:12:40 +0200 Original-Received: from gw2.mysql.com ([213.136.52.1]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Sep 2010 21:12:40 +0200 Original-Received: from kahatlen by gw2.mysql.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Sep 2010 21:12:40 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 40 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: gw2.mysql.com User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (usg-unix-v) Cancel-Lock: sha1:kfWlhQZJviRc6Rp9bvmGFX1D9Qo= X-Spam-Score: -1.0 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:70914 Archived-At: --=-=-= Content-Type: text/plain Lars Magne Ingebrigtsen writes: > Lars Magne Ingebrigtsen writes: > >> Oh, darn. I actually totally forgot to test on the Zimbra server. I >> put it into my conf, and it failed just like yours. I'll get fixin'. > > Ok; pushed. I now can start up with all five servers and select > messages from them. Hmm... I still need the patch in one of my earlier posts to fix the (string-match "noselect" ...) problem. Attaching it again. With that patch and your latest changes, things seem to work. Thanks! -- Knut Anders --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=nil.diff diff --git a/lisp/nnimap.el b/lisp/nnimap.el index 548b6ec..3caa58e 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -416,7 +416,8 @@ not done by default on servers that doesn't support that command.") (when (car result) (dolist (line (cdr result)) (when (and (equal (car line) "LIST") - (not (string-match "noselect" (caadr line)))) + (not (and (caadr line) + (string-match "noselect" (caadr line))))) (push (car (last line)) groups))) (nreverse groups)))) --=-=-=--