[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnus-read-init-file: Error in ~/.gnus: disroot.org
From: |
Eric Abrahamsen |
Subject: |
Re: gnus-read-init-file: Error in ~/.gnus: disroot.org |
Date: |
Wed, 23 Nov 2022 09:47:16 -0800 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
"jindam, vani" <jindam.vani@disroot.org> writes:
> November 22, 2022 at 6:56 PM, "Adam Sjøgren" <asjo@koldfront.dk> wrote:
>
>
>>
>> vani writes:
>>
>> >
>> > running M-x gnus has thrown another error:
>> > Debugger entered--Lisp error: (void-function nnimap)
>
> i intentionally did not provided full log:
>
> Debugger entered--Lisp error: (void-function nnimap)
> (nnimap "disroot.org" (nnimap-inbox "INBOX") (nnimap-split-methods
> default) (nnimap-expunge t) (nnimap-stream ssl))
> eval-buffer(#<buffer *load*> nil "/home/jindam/.gnus" nil t) ;
> Reading at buffer position 440
You're missing a quote before this definition. However you've got it in
your init file, say if you're defining this as a part of
`gnus-secondary-select-methods', the value of that variable needs to be
quoted:
(setq gnus-secondary-select-methods '((nnimap "disroot.org" (nnimpa...
Note the quote before the value.