From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.help Subject: Re: nnimap splitting Date: Thu, 10 Dec 2020 09:41:58 -0800 Message-ID: <87360dimmx.fsf@ericabrahamsen.net> References: <878sa6ehbn.fsf@russet.org.uk> <87v9dawogx.fsf@ericabrahamsen.net> <877dpq6jp2.fsf@russet.org.uk> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="38580"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) To: help-gnu-emacs@gnu.org Cancel-Lock: sha1:kR8N2pBhrQs7EJsbGwmuVtM/MNc= Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Dec 10 18:51:20 2020 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1knQ64-0009wU-Ae for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 10 Dec 2020 18:51:20 +0100 Original-Received: from localhost ([::1]:38880 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1knQ63-0005ym-Bz for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 10 Dec 2020 12:51:19 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:55396) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1knPxC-00017I-8M for help-gnu-emacs@gnu.org; Thu, 10 Dec 2020 12:42:10 -0500 Original-Received: from static.214.254.202.116.clients.your-server.de ([116.202.254.214]:46506 helo=ciao.gmane.io) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1knPxA-0006NB-Lc for help-gnu-emacs@gnu.org; Thu, 10 Dec 2020 12:42:10 -0500 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1knPx6-00099D-CU for help-gnu-emacs@gnu.org; Thu, 10 Dec 2020 18:42:04 +0100 X-Injected-Via-Gmane: http://gmane.org/ Received-SPF: pass client-ip=116.202.254.214; envelope-from=geh-help-gnu-emacs@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.25, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:126225 Archived-At: Phillip Lord writes: > Eric Abrahamsen writes: > >> Phillip Lord writes: >> >>> I am trying to set up imap splitting (for about the third time!) >> >> I feel your pain! >> >>> , as I move toward an fully imap setup. I find that I cannot get it to >>> work in even a basic way. I suspect that I have done something daft, >>> but I can't find it. >>> >>> My set up is long unfortunately, so hard to reproduce it all here, but >>> I'd welcome anyone giving me ideas. The select methods look like this: >>> >>> (setq gnus-select-method '(nnnil "")) >>> (setq gnus-secondary-select-methods >>> '( >>> (nnimap "localhost" >>> (nnimap-address "localhost") >>> (nnimap-server-port 143) >>> ;; [...] >>> (nnimap-inbox "INBOX") >>> (nnimap-split-methods 'nnimap-split-fancy) >> >> Don't quote 'nnimap-split-fancy in this line. In fact, it's possible >> that you can do without this dance altogether -- the manual makes it >> look like that's okay. Maybe take this clause out and see if it works, >> and if it doesn't, put it back in but don't quote nnimap-split-fancy. > > > > Alas no. I am still confused as to whether the server are being set at > all. You mean the server variables? If they're specified correctly, and it looks like they are apart from the quoting issue, they should all be honored. Can you get non-fancy splitting working? Try the simplest case. FWIW, my local imap settings look like: (nnimap "EA" (nnimap-address "localhost") (nnimap-stream network) (nnimap-authenticator login) (nnimap-user "eric@ericabrahamsen.net")) With passwords kept in the pass utility via ~/.authinfo.gpg. I don't do client-side splitting, though.