]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Skip ASN checks for local IPs
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 30 Jun 2018 18:56:17 +0000 (19:56 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 30 Jun 2018 18:56:17 +0000 (19:56 +0100)
src/plugins/lua/asn.lua

index 61572a6009b2a260a516fc754e2b9bde03b1072b..d8771b677b7d512a495fc9d5507b1d72d4891ba1 100644 (file)
@@ -78,7 +78,7 @@ local function asn_check(task)
   end
 
   local ip = task:get_from_ip()
-  if not (ip and ip:is_valid()) then return end
+  if not (ip and ip:is_valid()) or ip:is_local() then return end
   asn_check_func[options['provider_type']](ip)
 end