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
-2
View File
@@ -84,12 +84,10 @@ let
( (
optionalString (cfg.mailboxes != {}) '' optionalString (cfg.mailboxes != {}) ''
protocol imap {
namespace inbox { namespace inbox {
inbox=yes inbox=yes
${concatStringsSep "\n" (map mailboxConfig (attrValues cfg.mailboxes))} ${concatStringsSep "\n" (map mailboxConfig (attrValues cfg.mailboxes))}
} }
}
'' ''
) )