1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add further minimal config for the mailserver

This commit is contained in:
Stefan Ellmauthaler 2022-08-02 12:58:22 +02:00
parent 81a77df2c0
commit 9b19f4d28f
Failed to extract signature

View File

@ -8,12 +8,13 @@ with lib;{
mailserver = { mailserver = {
enable = true; enable = true;
fqdn = "mail.ellmauthaler.net"; fqdn = "mail.ellmauthaler.net";
sendingFqdn = "ellmauthaler.net";
domains = [ "ellmauthaler.net" ]; domains = [ "ellmauthaler.net" ];
loginAccounts = { loginAccounts = {
"ellmau@ellmauthaler.net" = { "ellmau@ellmauthaler.net" = {
aliases = [ "stefan@ellmauthaler.net" "postmaster@ellmauthaler.net" "abuse@ellmauthaler.net" ]; aliases = [ "stefan@ellmauthaler.net" "postmaster@ellmauthaler.net" "abuse@ellmauthaler.net" ];
hashedPasswordFile = sops.secrets.ellmauMail.path; hashedPasswordFile = config.sops.secrets.ellmauMail.path;
}; };
}; };