summary refs log tree commit diff
path: root/nixos/modules/services/mail
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-09 12:20:55 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-09 12:20:55 +0100
commit6ceece6b591de56507409d6c690dddd9854ba969 (patch)
tree523d952ca024dff85cd0f7fb743cf19b2073a6db /nixos/modules/services/mail
parent78a17f5765f24ae24ee87224dad16862451295d2 (diff)
downloadnixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar.gz
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar.bz2
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar.lz
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar.xz
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.tar.zst
nixlib-6ceece6b591de56507409d6c690dddd9854ba969.zip
nixos/dovecot: no " in mailbox.name
Diffstat (limited to 'nixos/modules/services/mail')
-rw-r--r--nixos/modules/services/mail/dovecot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index c5cb06cf54e2..b42c73b86668 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -113,7 +113,7 @@ let
   mailboxes = { lib, pkgs, ... }: {
     options = {
       name = mkOption {
-        type = types.str;
+        type = types.strMatching ''[^"]+'';
         example = "Spam";
         description = "The name of the mailbox.";
       };