From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/15568 Path: news.gmane.org!not-for-mail From: harven Newsgroups: gmane.emacs.gnus.user Subject: Re: imap splitting with emacs24 Date: Mon, 02 Jul 2012 21:08:24 +0200 Organization: http://groups.google.com Message-ID: <87r4surnfb.fsf@ergodik.univ-brest.fr> References: <87hatqc9zg.fsf@ergodik.univ-brest.fr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1341256210 15663 80.91.229.3 (2 Jul 2012 19:10:10 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 2 Jul 2012 19:10:10 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon Jul 02 21:10:10 2012 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Slm0f-0007fR-E4 for gegu-info-gnus-english@m.gmane.org; Mon, 02 Jul 2012 21:10:09 +0200 Original-Received: from localhost ([::1]:36118 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Slm0e-0003Zz-98 for gegu-info-gnus-english@m.gmane.org; Mon, 02 Jul 2012 15:10:08 -0400 Original-Path: usenet.stanford.edu!news.glorb.com!feeder.erje.net!news2.arglkargh.de!news.musoftware.de!wum.musoftware.de!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!usenet-fr.net!proxad.net!feeder1-2.proxad.net!cleanfeed4-a.proxad.net!nnrp6-1.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.gnus User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) Cancel-Lock: sha1:EztDDh1CF8QJ7+4EsQzymTH5dCQ= Original-Lines: 22 Original-NNTP-Posting-Date: 02 Jul 2012 21:08:24 CEST Original-NNTP-Posting-Host: 78.233.232.132 Original-X-Trace: 1341256104 news-2.free.fr 1738 78.233.232.132:41644 Original-X-Complaints-To: abuse@proxad.net Original-Xref: usenet.stanford.edu gnu.emacs.gnus:86637 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:15568 Archived-At: harven writes: > Hi, > > I just upgraded to emacs24, and I have a problem with the imap splitting. > I put the following in my gnus init file, in order to take into account the > changes reported in the news file. > > (setq nnimap-split-inbox "INBOX") I finally found the error. Under emacs24, this has been renamed nnimap-inbox. The following code solved my problem. (set (if (< emacs-major-version 24) 'nnimap-split-inbox 'nnimap-inbox) "INBOX") Cheers, -- Harven