Skip to content

Commit 5e35f55

Browse files
phdoerflerFRidh
authored andcommittedFeb 5, 2018
Wrapped ${mailbox.name} in "s to allow for space in mailbox names.
(cherry picked from commit 35441b5)
1 parent 220b35b commit 5e35f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nixos/modules/services/mail/dovecot.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ let
104104
};
105105

106106
mailboxConfig = mailbox: ''
107-
mailbox ${mailbox.name} {
107+
mailbox "${mailbox.name}" {
108108
auto = ${toString mailbox.auto}
109109
'' + optionalString (mailbox.specialUse != null) ''
110110
special_use = \${toString mailbox.specialUse}

0 commit comments

Comments
 (0)
Please sign in to comment.