From dc34a728536651794984b99ba3c2462b718ddba6 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 10 Apr 2025 12:00:57 +0200 Subject: [PATCH] email: explicit tls --- devices/ellaca/options.nix | 4 ++-- modules/email/default.nix | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/devices/ellaca/options.nix b/devices/ellaca/options.nix index 9ab6f7f..2ce5b77 100644 --- a/devices/ellaca/options.nix +++ b/devices/ellaca/options.nix @@ -19,8 +19,8 @@ in { domain = email-domain; ports = { smtp = 25; - imaps = 143; - smtps = 587; + imaps = 993; + smtps = 465; local = 9000; }; }; diff --git a/modules/email/default.nix b/modules/email/default.nix index f50c96a..c8f3c57 100644 --- a/modules/email/default.nix +++ b/modules/email/default.nix @@ -44,6 +44,7 @@ in hostname = cfg.domain; tls = { enable = true; + implicit = true; }; listener = { smtp = {