Software /
code /
prosody-modules
Changeset
2203:2dcc3079572c
mod_register_dnsbl: Include more information in log message
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 09 Jun 2016 11:32:52 +0200 |
parents | 2202:217456783219 |
children | 2204:affccf479f89 |
files | mod_register_dnsbl/mod_register_dnsbl.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_register_dnsbl/mod_register_dnsbl.lua Thu Jun 09 11:32:23 2016 +0200 +++ b/mod_register_dnsbl/mod_register_dnsbl.lua Thu Jun 09 11:32:52 2016 +0200 @@ -18,7 +18,7 @@ local log = session.log; adns.lookup(function (reply) if reply and reply[1] then - log("warn", "Registration from IP %s found in RBL", ip); + log("warn", "Account %s@%s registered from IP %s found in RBL (%s)", event.username, event.host or module.host, ip, reply[1].a); end end, rbl_ip); end