summary refs log tree commit diff
path: root/nixos/modules/services/mail
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2018-02-11 14:39:19 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2018-02-18 13:04:08 +0100
commitd84f18e288bf5d507ecd0cc6b8f8639968b3bc0a (patch)
treed24a51f27d0330ff3515a88e05f710b8a56cdb8d /nixos/modules/services/mail
parent7ab180999b22b2294a00d7ad2432cfd199c3d8b3 (diff)
downloadnixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar.gz
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar.bz2
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar.lz
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar.xz
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.tar.zst
nixlib-d84f18e288bf5d507ecd0cc6b8f8639968b3bc0a.zip
nixos/postfix: document that *Alias options support comma separated values
For the longest time I thought there could be only one rootAlias.
Diffstat (limited to 'nixos/modules/services/mail')
-rw-r--r--nixos/modules/services/mail/postfix.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix
index 22af7e876af2..5ab331ac067f 100644
--- a/nixos/modules/services/mail/postfix.nix
+++ b/nixos/modules/services/mail/postfix.nix
@@ -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.
         ";
       };