simple nixos mail server

This commit is contained in:
Henri Dohmen 2026-01-29 23:40:11 +01:00
parent 6bee6cb48c
commit b4298d5f3e
Signed by: hd
GPG key ID: AB79213B044674AE
7 changed files with 169 additions and 10 deletions

View file

@ -63,6 +63,25 @@ in
thunderbird.enable = true;
gpg.key = "AB79213B044674AE";
};
"SimpleMailserver" = rec {
address = "hd@hdohmen.de";
realName = "Henri Dohmen";
smtp = {
tls.enable = true;
host = "roam.hdohmen.de";
port = 465;
};
imap = {
tls.enable = true;
host = "roam.hdohmen.de";
port = 993;
};
userName = address;
thunderbird.enable = true;
gpg.key = "AB79213B044674AE";
};
};
accounts.calendar.accounts = {
"Privat" = {