diff options
author | Andrew Lewis <nerf@judo.za.org> | 2015-02-17 13:12:05 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2015-02-17 13:14:10 +0200 |
commit | 9e1b3fd96d6313535e02cb9ece8a90c0cb0062b2 (patch) | |
tree | a38df5c1b360fcacbe4f8c029fe2365d6da8d833 /src/plugins/lua | |
parent | 28f55f0cbed039eba244c2c829136f8d09f75c08 (diff) | |
download | rspamd-9e1b3fd96d6313535e02cb9ece8a90c0cb0062b2.tar.gz rspamd-9e1b3fd96d6313535e02cb9ece8a90c0cb0062b2.zip |
Since exclude_private_ips requires config to change behaviour now we can make it default true
Diffstat (limited to 'src/plugins/lua')
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 852fe1f04..792c92569 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -327,7 +327,7 @@ if(opts['default_exclude_users'] == nil) then opts['default_exclude_users'] = false end if(opts['default_exclude_private_ips'] == nil) then - opts['default_exclude_private_ips'] = false + opts['default_exclude_private_ips'] = true end if(opts['default_exclude_local'] == nil) then opts['default_exclude_local'] = true |