From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H2 autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 16970 invoked from network); 22 Nov 2022 19:36:43 -0000 Received: from lists.gnu.org (209.51.188.17) by inbox.vuxu.org with ESMTPUTF8; 22 Nov 2022 19:36:43 -0000 Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oxZ4K-0001WI-TX; Tue, 22 Nov 2022 14:36:32 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxZ4A-0001UZ-14 for info-gnus-english@gnu.org; Tue, 22 Nov 2022 14:36:22 -0500 Received: from ciao.gmane.io ([116.202.254.214]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxZ46-0001Gj-DB for info-gnus-english@gnu.org; Tue, 22 Nov 2022 14:36:21 -0500 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1oxZ42-0006pV-WE for info-gnus-english@gnu.org; Tue, 22 Nov 2022 20:36:15 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: info-gnus-english@gnu.org From: =?utf-8?Q?Adam_Sj=C3=B8gren?= Subject: Re: gnus-read-init-file: Error in ~/.gnus: disroot.org Date: Tue, 22 Nov 2022 20:36:09 +0100 Organization: koldfront - analysis & revolution, Copenhagen, Denmark Message-ID: <871qpupys6.fsf@tullinup.koldfront.dk> References: <3da89e22a6234df5c1f0774d35ed4ff601b31608@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:Ihv5WB2q3jNj/tkFMMaBg4l62f8= OpenPGP: id=476630590A231909B0A0961A49D0746121BDE416; url=https://asjo.koldfront.dk/gpg.asc X-Now-Playing: Wonders Of Life, Trummor & Orgel (Trummor & Orgel) X-Face: )qY&CseJ?.:=8F#^~GcSA?F=9eu'{KAFfL1C3/A&:nE?PW\i65"ba0NS)97, Q(^@xk}n4Ou rPuR#V8I(J_@~H($[ym:`K_+]*kjvW>xH5jbgLBVFGXY:(#4P>zVBklLbdL&XxL\M)%T}3S/IS9lMJ ^St'=VZBR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+ml=inbox.vuxu.org@gnu.org Sender: info-gnus-english-bounces+ml=inbox.vuxu.org@gnu.org vani writes: > (setq gnus-select-method > '(nnimap "disroot.org")) [...] > (nnimap "disroot.org" > (nnimap-inbox "INBOX") > (nnimap-split-methods default) > (nnimap-expunge t) > (nnimap-stream ssl)) > (nnimap-authinfo-file "~/.authinfo"))) This part is misplaced - I think what you are looking for is something like this: (setq gnus-select-method '(nnimap "disroot.org" (nnimap-inbox "INBOX") (nnimap-split-methods default) (nnimap-expunge t) (nnimap-stream ssl) (nnimap-authinfo-file "~/.authinfo"))) > (setq mail-sources > ’((file :path "/var/spool/mail/jindam.vani@disroot.org") > (imap :server "disroot.org" > :user "jindam.vani@disroot.org" > :port "993" > :password "password"))) You should _either_ use nnimap _or_ mail-sources, not both. If you use nnimap, you are using IMAP "as intended", that is: email lives and is manipulated on the mail-server. If you, on the other hand, add "imap" to mail-sources, you will basically be downloading emails to your local machine and removing them from the mail-server. If you are doing any of the above, you do not need to set up getmail. If you set up getmail, you should ONLY set up the file-part of mail-sources. · · · If I were you, I would start with setting up nnimap only. That way you can still access your email using a different mail-client. If nnimap gets annoying, then figure out another setup. Start simple, get an idea of what you like and don't, then modify. (I don't use nnimap, but I also have many weird old habits when it comes to email :-)) I hope this helps a little! Best regards, Adam -- "I never followed my dream, I always avoided my Adam Sjøgren nightmares." asjo@koldfront.dk