Hey all,
So, I’m giving the server app a try on my own docker setup, and the SMTP config is failing even though it’s a common group of settings I’ve used for several other containers:
SMTP_HOST: 'smtp.gmail.com'
SMTP_PORT: '465'
SMTP_TLS: 'never'
SMTP_AUTH: 'always'
SMTP_USERNAME: 'redacted'
SMTP_PASSWORD: 'redacted'
MAIL_REPLY_TO_ADDRESS: 'redacted+asciinema@gmail.com'
MAIL_FROM_ADDRESS: 'redacted+asciinema@gmail.com'
My pw is an app pw because I use 2FA (it works w/my Nextcloud container), and I’m using SSL over TLS to avoid the cert stuff (tried it anyway and get an auth failed error).
The error I get with the above setup in the log is:
23:29:52.875 request_id=GBuesB [warning] email delivery error: {:retries_exceeded, {:network_failure, ‘142.250.111.109’, {:error, :closed}}}
Any ideas anyone? Can’t sue the app w/out smtp working.