mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +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
1 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue