[Minor] Allow base32 encoding for emails request

This commit is contained in:
Vsevolod Stakhov 2017-06-29 18:59:50 +01:00
parent 3cdc26b154
commit 752043f91c

View File

@ -63,7 +63,13 @@ local function check_email_rule(task, rule, addr)
logger.debugm(N, task, "check %s on %s", email, rule['dnsbl'])
if rule['hash'] then
to_resolve = hash.create_specific(rule['hash'], email):hex()
local hkey = hash.create_specific(rule['hash'], email)
if rule['encoding'] == 'base32' then
to_resolve = hkey:base32()
else
to_resolve = hkey:hex()
end
if rule['hashlen'] and type(rule['hashlen']) == 'number' then
if #to_resolve > rule['hashlen'] then