Admins will be upgrading ORNL GitLab Servers on Saturday, 16 May 2026, from 7 AM until 11 AM EST. Repositories will experience intermittent outages during this time.
description="Prepend header to greylisted mails; use %%t for seconds delayed due to greylisting, %%v for the version of postgrey, %%d for the date, and %%h for the host";
};
delay=mkOption{
type=natural;
type=ints.unsigned;
default=300;
description="Greylist for N seconds";
};
maxAge=mkOption{
type=natural;
type=ints.unsigned;
default=35;
description="Delete entries from whitelist if they haven't been seen for N days";
};
retryWindow=mkOption{
type=eitherstrnatural;
type=eitherstrints.unsigned;
default=2;
example="12h";
description="Allow N days for the first retry. Use string with appended 'h' to specify time in hours";
@@ -148,12 +145,12 @@ in
description="Strip the last N bits from IP addresses, determined by IPv4CIDR and IPv6CIDR";
};
IPv4CIDR=mkOption{
type=natural;
type=ints.unsigned;
default=24;
description="Strip N bits from IPv4 addresses if lookupBySubnet is true";
};
IPv6CIDR=mkOption{
type=natural;
type=ints.unsigned;
default=64;
description="Strip N bits from IPv6 addresses if lookupBySubnet is true";
};
@@ -163,7 +160,7 @@ in
description="Store data using one-way hash functions (SHA1)";
};
autoWhitelist=mkOption{
type=nullOrnatural';
type=nullOrints.positive;
default=5;
description="Whitelist clients after successful delivery of N messages";