mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
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:
parent
7ab180999b
commit
d84f18e288
@ -414,7 +414,10 @@ in
|
||||
postmasterAlias = mkOption {
|
||||
type = types.str;
|
||||
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 {
|
||||
@ -422,6 +425,7 @@ in
|
||||
default = "";
|
||||
description = "
|
||||
Who should receive root e-mail. Blank for no redirection.
|
||||
Multiple values can be added by separating values with comma.
|
||||
";
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user