From ccac7d295d65e4eb211f7e790c3a76b7039b0371 Mon Sep 17 00:00:00 2001 From: janabhumi Date: Thu, 13 Oct 2022 23:42:58 +0300 Subject: [PATCH] machines/magenta: add more mail options --- machines/magenta/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machines/magenta/default.nix b/machines/magenta/default.nix index fe61b95..0a34ed4 100644 --- a/machines/magenta/default.nix +++ b/machines/magenta/default.nix @@ -24,6 +24,8 @@ in defaults.email = "dmitriy@pleshevski.ru"; }; + + # See: https://nixos-mailserver.readthedocs.io/en/latest/options.html mailserver = { enable = true; fqdn = "mail.pleshevski.ru"; @@ -32,5 +34,7 @@ in # Use Let's Encrypt certificates. Note that this needs to set up a stripped # down nginx and opens port 80. certificateScheme = 3; + + hierarchySeparator = "/"; }; }