add aliases option type
This commit is contained in:
parent
64905a506b
commit
a17093b867
|
@ -60,6 +60,14 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
example = ["abuse@example.com" "postmaster@example.com"];
|
||||||
|
description = ''
|
||||||
|
A list of aliases of this login account.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
sieveScript = mkOption {
|
sieveScript = mkOption {
|
||||||
type = with types; nullOr lines;
|
type = with types; nullOr lines;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in New Issue