Rapid spam filtering system https://rspamd.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
392 B

local ffi = require "ffi"
local cfg = rspamd_config
ffi.cdef[[
void rspamd_url_init (const char *tld_file);
]]
local exports = {}
function exports.init_url_parser(file)
if not file then
local test_dir = string.gsub(debug.getinfo(1).source, "^@(.+/)[^/]+$", "%1")
file = string.format('%s/unit/%s', test_dir, "test_tld.dat")
end
ffi.C.rspamd_url_init(file)
end
return exports