nixos/dovecot: no " in mailbox.name

(cherry picked from commit 6ceece6b59)
This commit is contained in:
Robert Schütz
2018-02-09 12:20:55 +01:00
committed by Andreas Rammhold
parent 5ce2352f8b
commit 5b32006a01

View File

@@ -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.";
};