nixos/postfix: document that *Alias options support comma separated values

For the longest time I thought there could be only one rootAlias.
This commit is contained in:
Bjørn Forsman 2018-02-11 14:39:19 +01:00
parent 7ab180999b
commit d84f18e288

View File

@ -414,7 +414,10 @@ in
postmasterAlias = mkOption { postmasterAlias = mkOption {
type = types.str; type = types.str;
default = "root"; default = "root";
description = "Who should receive postmaster e-mail."; description = "
Who should receive postmaster e-mail. Multiple values can be added by
separating values with comma.
";
}; };
rootAlias = mkOption { rootAlias = mkOption {
@ -422,6 +425,7 @@ in
default = ""; default = "";
description = " description = "
Who should receive root e-mail. Blank for no redirection. Who should receive root e-mail. Blank for no redirection.
Multiple values can be added by separating values with comma.
"; ";
}; };