Merge pull request #93201 from symphorien/dovecot-namespace-mailbox

nixos/dovecot: configure mailboxes for all processes
This commit is contained in:
Gabriel Ebner
2020-10-03 14:46:40 +02:00
committed by GitHub

View File

@@ -84,11 +84,9 @@ let
(
optionalString (cfg.mailboxes != {}) ''
protocol imap {
namespace inbox {
inbox=yes
${concatStringsSep "\n" (map mailboxConfig (attrValues cfg.mailboxes))}
}
namespace inbox {
inbox=yes
${concatStringsSep "\n" (map mailboxConfig (attrValues cfg.mailboxes))}
}
''
)