From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/3544 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.user Subject: Re: Avoiding splitting of imap folders Date: Mon, 23 Feb 2004 13:40:07 -0500 Organization: =?koi8-r?q?=F4=C5=CF=C4=CF=D2=20=FA=CC=C1=D4=C1=CE=CF=D7?= @ Cienfuegos Message-ID: <4nd685k5bs.fsf@collins.bwh.harvard.edu> References: <4nbrntzgr1.fsf@collins.bwh.harvard.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138669622 19357 80.91.229.2 (31 Jan 2006 01:07:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:07:02 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:32:22 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!collins.bwh.harvard.EDU!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: collins.bwh.harvard.edu (134.174.9.80) Original-X-Trace: news.uni-berlin.de 1077561710 50499230 I 134.174.9.80 ([177066]) X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (usg-unix-v) Cancel-Lock: sha1:TDZl2ZpwsmF9+YiH5uM5QxJ0h8U= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:3685 Original-Lines: 36 X-Gnus-Article-Number: 3685 Tue Jan 17 17:32:22 2006 Xref: news.gmane.org gmane.emacs.gnus.user:3544 Archived-At: On Sat, 21 Feb 2004, skalberg@in.tum.de wrote: > Hi Ted, > >>> (setq nnimap-split-inbox 'nil) >> >> I think you need (setq nnimap-split-inbox nil) there. >> >> I'm not sure if that's the only thing you need to do to eliminate >> splitting, but that part above is definitely wrong; you're saying >> "my nnimap split inbox is a symbol called 'nil', not nil itself". > > As far as I remember, nil just evaluates to itself, so 'nil and nil > should be equivalent. I see. I would stil use "nil" because it's less confusing, but sorry for misleading you. > In any case, my imap folder is still splitted when I follow your > suggestion. I looked at nnimap-split-articles in nnimap.el, and splitting is done in nnimap-split-find-inbox using the value of nnimap-split-inbox, whether that's a list or a single item (if a single item, it's converted to a list). So just setting that to nil should do it! It looks like setting the split rules to nil may also inhibit mail splitting, but I don't understand why nnimap-split-inbox is not respected. Try setting it to '() (an empty list): (setq nnimap-split-inbox '()) and see if that helps. If not, try tracing through nnimap-split-articles and see where it's getting "INBOX" from. Ted