From 28f00240bb1a5230536b17605938f2e59ca0046a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 14 Jul 2020 23:51:07 +0200 Subject: [PATCH] fix(mail): use STARTTLS for cock.li and hu-berlin.de --- configs/mail.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/configs/mail.nix b/configs/mail.nix index bda7ec7..983caef 100644 --- a/configs/mail.nix +++ b/configs/mail.nix @@ -30,7 +30,10 @@ in { smtp = { host = "mail.cock.li"; port = 587; - tls.enable = true; + tls = { + enable = true; + useStartTls = true; + }; }; imap = { host = "mail.cock.li"; @@ -65,7 +68,10 @@ in { smtp = { host = "mailhost.cms.hu-berlin.de"; port = 25; - tls.enable = true; + tls = { + enable = true; + useStartTls = true; + }; }; imap = { host = "mailbox.cms.hu-berlin.de";