Skip to content

Commit

Permalink
Wrapped ${mailbox.name} in "s to allow for space in mailbox names.
Browse files Browse the repository at this point in the history
(cherry picked from commit 35441b5)
  • Loading branch information
phdoerfler authored and FRidh committed Feb 5, 2018
1 parent 220b35b commit 5e35f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/mail/dovecot.nix
Expand Up @@ -104,7 +104,7 @@ let
};

mailboxConfig = mailbox: ''
mailbox ${mailbox.name} {
mailbox "${mailbox.name}" {
auto = ${toString mailbox.auto}
'' + optionalString (mailbox.specialUse != null) ''
special_use = \${toString mailbox.specialUse}
Expand Down

0 comments on commit 5e35f55

Please sign in to comment.