"jindam, vani" <jindam.v...@disroot.org> writes: > November 22, 2022 at 6:56 PM, "Adam Sjøgren" <a...@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.