On Thu, Jan 19, 2017 at 06:38:39AM -0800,
d.mul...@gmail.com wrote:
> envrcpt counter_relay == null greylist delay 5m deadline 24h visa 192h
> envrcpt counter_relay >= 1 continue
Unless you are running a very old version of mopher you want to use 'is null'
instead of '== null'. The result of '== null' is always null.
Keep in mind counter_relay counts successfully delivered messages by an
individual IP address. Counter_relay usually does not work with server farms.
Is it possible this particular message is from a server farm?
In newer versions of mopher you can use counter_origin, wich uses the RDNS
domain as key and is less strict than counter_relay and thus works with most
server farms.
I guess you want to do something like this:
envrcpt counter_origin >= 1 continue
envrcpt greylist delay 5m deadline 24h visa 192h
Just a thought - counter_origin >= 1 is a very low threshold. I personally would
recommend setting the bar a little higher.
Kind regards
Manuel