This commit is contained in:
2026-04-14 15:07:25 +02:00
parent 4390a02e46
commit b3ff52d668
5 changed files with 91 additions and 14 deletions
+5 -7
View File
@@ -1,10 +1,5 @@
{ ... }:
{
security.acme = {
acceptTerms = true;
defaults.email = "postmaster@billenius.com";
};
mailserver = {
enable = true;
fqdn = "mail.billenius.com";
@@ -12,7 +7,7 @@
certificateScheme = "acme";
# A list of all login accounts. To create the password hashes, use
# nix-shell -p mkpasswd --run 'mkpasswd -s'
# nix-shell -p mkpasswd --run 'mkpasswd -sm bcrypt'
loginAccounts = {
"love@billenius.com" = {
hashedPasswordFile = "${../../../resources/mail-server}/love@billenius.com";
@@ -23,7 +18,10 @@
enable = true;
autoIndex = true;
enforced = "body";
autoIndexExclude = [ "Trash" "\\Junk" ];
autoIndexExclude = [
"Trash"
"\\Junk"
];
};
};
}