Merge pull request #34759 from dotlambda/dovecot

nixos/dovecot: no " in mailbox.name
This commit is contained in:
Andreas Rammhold 2018-02-09 12:43:03 +01:00 committed by GitHub
commit 7ae9699e1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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