summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-02-09 12:43:03 +0100
committerGitHub <noreply@github.com>2018-02-09 12:43:03 +0100
commit7ae9699e1c2d86b96540bace851faa6070af9e61 (patch)
treece8f9f309ccbef7ec79edfd692c307acd40043c2
parent0cdc0ac3a1a0423e077c82db5b6d7f54edc03ea6 (diff)
parent6ceece6b591de56507409d6c690dddd9854ba969 (diff)
downloadnixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar.gz
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar.bz2
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar.lz
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar.xz
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.tar.zst
nixlib-7ae9699e1c2d86b96540bace851faa6070af9e61.zip
Merge pull request #34759 from dotlambda/dovecot
nixos/dovecot: no " in mailbox.name
-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.";
       };