Software / code / prosody-modules
File
mod_register_dnsbl/mod_register_dnsbl.lua @ 2159:5e8dec076afc
mod_auth_http_async: Fall back to non-async calling of http_auth_url
if util.async is not available
| author | JC Brand <jcbrand@minddistrict.com> |
|---|---|
| date | Fri, 15 Apr 2016 13:45:01 +0000 |
| parent | 2135:42b095dab626 |
| child | 2203:2dcc3079572c |
line wrap: on
line source
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);