# HG changeset patch # User Matthew Wild # Date 1458216672 0 # Node ID 2ae5286f1b9a32ebb71b50631fa77dbb3fa482ff # Parent ce3dd93f30d90bcd45ca59e7a64b5250635806f6# Parent 0890c4860f14541d1c3902c2ab93ab5118908445 Merge diff -r ce3dd93f30d9 -r 2ae5286f1b9a mod_register_dnsbl/mod_register_dnsbl.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_register_dnsbl/mod_register_dnsbl.lua Thu Mar 17 12:11:12 2016 +0000 @@ -0,0 +1,25 @@ +local adns = require "net.adns"; +local rbl = module:get_option_string("registration_rbl"); + +local function reverse(ip, suffix) + local a,b,c,d = ip:match("^(%d+%).(%d+%).(%d+%).(%d+%)$"); + if not a then return end + return ("%d.%d.%d.%d.%s"):format(d,c,b,a, suffix); +end + +-- TODO async +-- module:hook("user-registering", function (event) end); + +module:hook("user-registered", function (event) + local session = event.session; + local ip = session and session.ip; + local rbl_ip = ip and reverse(ip, rbl); + if rbl_ip then + local log = session.log; + adns.lookup(function (reply) + if reply and reply[1] then + log("warn", "Registration from IP %s found in RBL", ip); + end + end, rbl_ip); + end +end);