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
commit f26dcb4850
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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))}
}
''
)