Merge pull request #34759 from dotlambda/dovecot
nixos/dovecot: no " in mailbox.name
Andreas Rammhold 7 years ago 7ae9699e 0cdc0ac3
··· 113 113 mailboxes = { lib, pkgs, ... }: { 114 114 options = { 115 115 name = mkOption { 116 116 - type = types.str; 116 116 + type = types.strMatching ''[^"]+''; 117 117 example = "Spam"; 118 118 description = "The name of the mailbox."; 119 119 };