From ecb8b74506f2e2c5a45a76adaa781d38b717ce55 Mon Sep 17 00:00:00 2001 From: jonathanmmm <32403139+jonathanmmm@users.noreply.github.com> Date: Thu, 29 Apr 2021 21:59:08 +0200 Subject: [PATCH] making SMTP force TLS description in admin panel clearer fixes https://github.com/dani-garcia/vaultwarden/discussions/1639 --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index fa7db32c..4e6de42c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -482,7 +482,7 @@ make_config! { smtp_host: String, true, option; /// Enable Secure SMTP |> (Explicit) - Enabling this by default would use STARTTLS (Standard ports 587 or 25) smtp_ssl: bool, true, def, true; - /// Force TLS |> (Implicit) - Enabling this would force the use of an SSL/TLS connection, instead of upgrading an insecure one with STARTTLS (Standard port 465) + /// Force TLS |> (Implicit) - Enabling this would force the use of an SSL/TLS connection, instead of upgrading an insecure one with STARTTLS (Standard port 465). If you enable this, you have to enable "Enable Secure SMTP", too. smtp_explicit_tls: bool, true, def, false; /// Port smtp_port: u16, true, auto, |c| if c.smtp_explicit_tls {465} else if c.smtp_ssl {587} else {25};