From d041e6fa52cc0771a43e73a919eca99d05afc442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Fri, 11 Dec 2020 18:43:54 +0100 Subject: [PATCH] feat(mail): meinhaki --- configs/mail.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/configs/mail.nix b/configs/mail.nix index e34d333..bbfce5c 100644 --- a/configs/mail.nix +++ b/configs/mail.nix @@ -240,6 +240,26 @@ in { tls.enable = true; }; }; + hu-berlin-work = enableDefaults { + primary = false; + address = "meinhaki@hu-berlin.de"; + realName = kieran.name; + userName = "meinhaki"; + passwordCommand = pass_ ; + smtp = { + host = "mailhost.cms.hu-berlin.de"; + port = 25; + tls = { + enable = true; + useStartTls = true; + }; + }; + imap = { + host = "mailbox.cms.hu-berlin.de"; + port = 993; + tls.enable = true; + }; + }; }; }; }