From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/87222 Path: news.gmane.org!.POSTED!not-for-mail From: Jarmo Hurri Newsgroups: gmane.emacs.gnus.general Subject: Re: Mail splitting stopped working with Emacs 25 Date: Tue, 09 Aug 2016 19:20:47 +0300 Message-ID: <87pophx6ao.fsf@iki.fi> References: <87popiq8iv.fsf@iki.fi> <87oa5254wx.fsf@tullinup.koldfront.dk> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1470759712 5005 195.159.176.226 (9 Aug 2016 16:21:52 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 9 Aug 2016 16:21:52 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) To: ding@gnus.org Original-X-From: ding-owner+M35442@lists.math.uh.edu Tue Aug 09 18:21:47 2016 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bX9mg-00010l-Ly for ding-account@gmane.org; Tue, 09 Aug 2016 18:21:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.86_2) (envelope-from ) id 1bX9m2-0002pH-KP; Tue, 09 Aug 2016 11:21:02 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.86_2) (envelope-from ) id 1bX9ly-0002ob-RQ for ding@lists.math.uh.edu; Tue, 09 Aug 2016 11:20:58 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.86_2) (envelope-from ) id 1bX9lx-00062h-MU for ding@lists.math.uh.edu; Tue, 09 Aug 2016 11:20:58 -0500 Original-Received: from [195.159.176.226] (helo=blaine.gmane.org) by quimby.gnus.org with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1bX9lu-0003Nq-Sc for ding@gnus.org; Tue, 09 Aug 2016 18:20:54 +0200 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1bX9ls-0008Cg-Kh for ding@gnus.org; Tue, 09 Aug 2016 18:20:52 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 40 Original-X-Complaints-To: usenet@blaine.gmane.org Cancel-Lock: sha1:AY8Ajo+etKbO6soBJOJL6JUpauU= List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:87222 Archived-At: Problem solved, thanks to Jorge and Adam. First, I got the following response: (Jorge) writes: > Try: #+BEGIN_SRC emacs-lisp > (add-to-list 'gnus-secondary-select-methods > '(nnimap "mail" > (nnimap-address "mail.server.com") > (nnimap-stream ssl) > (nnimap-server-port 993) > (nnimap-inbox "INBOX") > (nnimap-split-methods default))) > #+END_SRC > > And then set the variable nnmail-split-methods to > my-nnimap-split-methods. and that does the trick. A combination of 'default' and setting 'nnmail-split-methods' carries over to the server. Excellent. Also, I was able to simplify my imap subscription by thinking about what Adam wrote: asjo@koldfront.dk (Adam Sjøgren) writes: > Just our of curiosity: why do you insist on using > gnus-group-browse-foreign-server instead of the usual > gnus-secondary-select-methods? I started to think about _why_ I had browsed foreign groups. I had actually disabled my primary server, which also automatically meant that secondary select methods weren't called. So I also got rid of foreign groups in the same process. Thank you guys very much! Jarmo