From b2be3d486fd1f9bce8d657a21a0537350b20e8ca Mon Sep 17 00:00:00 2001 From: niten Date: Fri, 1 Dec 2023 12:05:12 -0800 Subject: [PATCH] Try using SSL, even though that's wrong --- authentik-container.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authentik-container.nix b/authentik-container.nix index 8a7bfb4..8be2471 100644 --- a/authentik-container.nix +++ b/authentik-container.nix @@ -139,7 +139,8 @@ in { AUTHENTIK_EMAIL__USERNAME = cfg.smtp.user; AUTHENTIK_EMAIL__PASSWORD = removeSuffix "\n" (readFile cfg.smtp.password-file); - AUTHENTIK_EMAIL__USE_TLS = true; + # TODO: THIS IS WRONG BUT MAYBE RIGHT FOR FRANCE? + AUTHENTIK_EMAIL__USE_SSL = true; AUTHENTIK_EMAIL__TIMEOUT = 10; AUTHENTIK_EMAIL__FROM = cfg.smtp.from-address; };