implement qutoas

This commit is contained in:
Robin Raymond 2017-12-22 16:58:35 +01:00
parent 2d0648e0f4
commit eeb7fd64af
4 changed files with 24 additions and 1 deletions

View file

@ -78,6 +78,16 @@ in
'';
};
quota = mkOption {
type = with types; nullOr types.str;
default = null;
example = "2G";
description = ''
Per user quota rules. Accepted sizes are `xx k/M/G/T` with the
obvious meaning. Leave blank for the standard quota `100G`.
'';
};
sieveScript = mkOption {
type = with types; nullOr lines;
default = null;