mail-server/dovecot.nix: fix path to dovecot_maildir

This commit is contained in:
Ruben Maher 2017-11-14 08:18:55 +10:30
parent b7c8c4ec3c
commit 43bd883cf6
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ with (import ./common.nix { inherit config; });
let let
cfg = config.mailserver; cfg = config.mailserver;
# maildir in format "/${domain}/${user}/" # maildir in format "/${domain}/${user}"
dovecot_maildir = "maildir:${cfg.mailDirectory}/%d/%n/"; dovecot_maildir = "maildir:${cfg.mailDirectory}/%d/%n";
in in
{ {