mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
SMTP errror, no encryption: internal client error: No compatible authentication mechanism was found #1315
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @deraljoscha on GitHub (Jul 8, 2022).
So I have the latest version of vaultwarden running on two servers. On one intance everythiung is running fine with SMTP over port 587 and starttls, on the other one I want to use a SMTP server which works with no encryption over port 25
my config looks like this:
SMTP_HOST=smtp.example.com
SMTP_FROM=mail@example.com
SMTP_FROM_NAME=Vaultwarden
SMTP_PORT=25
SMTP_SECURITY=off
SMTP_USERNAME=myusername
SMTP_PASSWORD=mypassword
I tried every option I could fin in the .env template
https://github.com/dani-garcia/vaultwarden/blob/main/.env.template
But I keep getting this error:
[vaultwarden::mail][ERROR] SMTP Client error: internal client error: No compatible authentication mechanism was found
[response][INFO] (reinvite_user) POST /api/organizations/<org_id>/users/<user_org>/reinvite => 400 Bad Request
I know my smtp genrally config works, I have it set up with the same options in other docker apps like uptime-kuma for example
would be grateful for some help
thanks in advance