diff options
author | ene <ene@sils.li> | 2023-03-18 17:34:44 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-18 17:34:44 +0100 |
commit | a24dc7da41c18ef68ea32b27995c60c9494f579c (patch) | |
tree | ea559b639cddebec9c58e9c4d3241b58777d1e04 /system/mail | |
parent | Fix(system/mail): Declare the password directly (diff) | |
download | nixos-server-a24dc7da41c18ef68ea32b27995c60c9494f579c.tar.gz nixos-server-a24dc7da41c18ef68ea32b27995c60c9494f579c.zip |
Feat(system/mail): Use '/' to separate mailboxes
This is something that just makes the file system easier to traverse, but isn't really necessary.
Diffstat (limited to '')
-rw-r--r-- | system/mail/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/mail/default.nix b/system/mail/default.nix index 2f58c03..98af119 100644 --- a/system/mail/default.nix +++ b/system/mail/default.nix @@ -17,6 +17,7 @@ in { # SMTP enableSubmission = false; enableSubmissionSsl = true; + useFsLayout = true; mailDirectory = "/srv/mail/vmail"; dkimKeyDirectory = "/srv/mail/dkim"; |