Skip to content

Commit

Permalink
nixos/postfix: document that *Alias options support comma separated v…
Browse files Browse the repository at this point in the history
…alues

For the longest time I thought there could be only one rootAlias.
  • Loading branch information
bjornfor committed Feb 18, 2018
1 parent 7ab1809 commit d84f18e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion nixos/modules/services/mail/postfix.nix
Expand Up @@ -414,14 +414,18 @@ 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 {
type = types.str;
default = "";
description = "
Who should receive root e-mail. Blank for no redirection.
Multiple values can be added by separating values with comma.
";
};

Expand Down

0 comments on commit d84f18e

Please sign in to comment.