Browse Source

[Minor] Allow base32 encoding for emails request

tags/1.6.2
Vsevolod Stakhov 7 years ago
parent
commit
752043f91c
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      src/plugins/lua/emails.lua

+ 7
- 1
src/plugins/lua/emails.lua 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

Loading…
Cancel
Save