summary refs log tree commit diff
path: root/nixos/modules/services/mail/postgrey.nix
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2017-01-02 15:12:39 +0100
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2017-01-02 15:12:39 +0100
commite196ad2c66c13eefa109259e60e91b20b0eb2d55 (patch)
tree197460fc70af507c1cd1f848e1d1d6e4e287266c /nixos/modules/services/mail/postgrey.nix
parent06bcdc177cf4dfe8935a100793d759bab3bc163f (diff)
downloadnixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar.gz
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar.bz2
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar.lz
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar.xz
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.tar.zst
nixpkgs-e196ad2c66c13eefa109259e60e91b20b0eb2d55.zip
postgrey: add descriptions to IPv?CIDR
Diffstat (limited to 'nixos/modules/services/mail/postgrey.nix')
-rw-r--r--nixos/modules/services/mail/postgrey.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/mail/postgrey.nix b/nixos/modules/services/mail/postgrey.nix
index 1c84841f397..c6fec566c0b 100644
--- a/nixos/modules/services/mail/postgrey.nix
+++ b/nixos/modules/services/mail/postgrey.nix
@@ -94,10 +94,12 @@ in {
       IPv4CIDR = mkOption {
         type = natural;
         default = 24;
+        description = "Strip N bits from IPv4 addresses if lookupBySubnet is true";
       };
       IPv6CIDR = mkOption {
         type = natural;
         default = 64;
+        description = "Strip N bits from IPv6 addresses if lookupBySubnet is true";
       };
       privacy = mkOption {
         type = bool;