help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question Regarding Config For Gnus With Fastmail


From: Eric Abrahamsen
Subject: Re: Question Regarding Config For Gnus With Fastmail
Date: Tue, 08 Feb 2022 09:44:26 -0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

"Samuel Banya" <sbanya@fastmail.com> writes:

> Hey there,
>
> I wanted to do the deep dive to try out GNUS, but am encountering three weird 
> things:
> 1. It prompts me for the 'IMAP' user, which I then put in as 'sbanya' since 
> my email is 'sbanya@fastmail.com'.
>
> Its weird since its defaulting to 'sam'.
>
> 2. When it prompts for the 'IMAP password', it shows me
> 'sbanya@fastmail' before prompting for the password, even though it
> probably should be 'sbanya@fastmail.com'.
>
> 3. Also, after I enter in the correct password and hit enter, I get the 
> following message:
> nnimap (fastmail) open error: 'NO Incorrect username or password.'. Continue? 
> (y or n)
>
> Here's my config for GNUS within my Emacs config:
> ** Add Gnus for personal email
>
> #+begin_src emacs-lisp
>   (when (member (system-name) '("notestation" "fossastation"))
>     (setq
>      user-full-name "Samuel Banya"
>      user-mail-address "sbanya@fastmail.com"
>      send-mail-function 'smtpmail-send-it
>      smtpmail-smtp-server "smtp.fastmail.com"
>      smtpmail-stream-type 'starttls
>      smtpmail-smtp-service 587
>      gnus-select-method
>      '(nnimap "fastmail"
>       (nnimap-address "imap.fastmail.com")
>       (nnimap-server-port 993)

I would definitely add a (nnimap-user "sbanya@fastmail.com") in here. I
don't know if it's supposed to draw the correct address from
`user-mail-address' or not, but obviously something's going wrong there,
and it's safer to specify it explicitly.

>       (nnimap-stream ssl)
>       (nnmail-expiry-wait immediate))))
> #+end_src
>
> Thanks,
>
> Sam




reply via email to

[Prev in Thread] Current Thread [Next in Thread]