]> source.dussan.org Git - rspamd.git/commitdiff
More concise ip_to_rbl function
authorAndrew Lewis <nerf@judo.za.org>
Wed, 20 Nov 2013 19:13:34 +0000 (21:13 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Wed, 20 Nov 2013 19:13:34 +0000 (21:13 +0200)
src/plugins/lua/rbl.lua

index 2a395256f37059e257486bd04faab8323fde6073..9c577e814852bfbbd914e20c0a2a535e98ab836a 100644 (file)
 local rbls = {}
 
 local function ip_to_rbl(ip, rbl)
-       octets = ip:inversed_str_octets()
-       local str = ''
-       for _,o in ipairs(octets) do
-               str = str .. o .. '.'
-       end
-       str = str .. rbl
-
-       return str
+       return table.concat(ip:inversed_str_octets(), ".") .. '.' .. rbl
 end
 
 local function rbl_cb (task)