Skip to content

Commit d84f18e

Browse files
committedFeb 18, 2018
nixos/postfix: document that *Alias options support comma separated values
For the longest time I thought there could be only one rootAlias.
1 parent 7ab1809 commit d84f18e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎nixos/modules/services/mail/postfix.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -414,14 +414,18 @@ in
414414
postmasterAlias = mkOption {
415415
type = types.str;
416416
default = "root";
417-
description = "Who should receive postmaster e-mail.";
417+
description = "
418+
Who should receive postmaster e-mail. Multiple values can be added by
419+
separating values with comma.
420+
";
418421
};
419422

420423
rootAlias = mkOption {
421424
type = types.str;
422425
default = "";
423426
description = "
424427
Who should receive root e-mail. Blank for no redirection.
428+
Multiple values can be added by separating values with comma.
425429
";
426430
};
427431

0 commit comments

Comments
 (0)
Please sign in to comment.