diff options
author | Alexey <AlexeySa@users.noreply.github.com> | 2014-05-21 10:51:03 -0700 |
---|---|---|
committer | Alexey <AlexeySa@users.noreply.github.com> | 2014-05-21 10:51:03 -0700 |
commit | 7942c887e2c93e3501891dd0d6970b8413da6d77 (patch) | |
tree | 66da48d40ae89c24f38ec7e6b49f8bad205d5870 /conf | |
parent | f9570c457bfb39b2324ed91f9996645e8271472e (diff) | |
download | rspamd-7942c887e2c93e3501891dd0d6970b8413da6d77.tar.gz rspamd-7942c887e2c93e3501891dd0d6970b8413da6d77.zip |
Very small fix for DNSWL rule
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/modules.conf b/conf/modules.conf index e01575803..6cc0c7d15 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -153,9 +153,9 @@ rbl { received = false; unknown = true; returncodes { - RCVD_IN_DNSWL_LOW = "127.0.*.1"; - RCVD_IN_DNSWL_MED = "127.0.*.2"; - RCVD_IN_DNSWL_HI = "127.0.*.3"; + RCVD_IN_DNSWL_LOW = "127.0.%d+.1"; + RCVD_IN_DNSWL_MED = "127.0.%d+.2"; + RCVD_IN_DNSWL_HI = "127.0.%d+.3"; } } |