Ashish Panigrahi <
ashish.pan...@gmail.com> writes:
> Here's my config:
> (use-package smtpmail
> :ensure nil
> :after message
> :config
> (setq message-send-mail-function 'smtpmail-send-it)
> (setq smtpmail-smtp-server "
smtp.migadu.com")
> (setq smtpmail-smtp-service 465)
> (setq smtpmail-debug-info t)
> (setq smtpmail-stream-type 'plain))
Just a blind guess, not an expert.
Migadu requires TLS terminated connections:
https://migadu.com/guides/index.html
Do you have the variable `smtpmail-stream-type` set to `ssl`? The
documentation says that the default is `nil`.
Hope it helps,