Anti-SPAM DMARC, HELO, IP and RBL scripts

This commit is contained in:
mdecimus
2023-10-06 16:53:50 +02:00
parent 7824368cf3
commit 4ae0ede9ee
58 changed files with 1995 additions and 5119 deletions

View File

@@ -46,18 +46,20 @@ pub struct PluginContext<'x> {
pub arguments: Vec<Variable<'static>>,
}
const PLUGINS_EXEC: [ExecPluginFnc; 6] = [
const PLUGINS_EXEC: [ExecPluginFnc; 7] = [
query::exec,
exec::exec,
lookup::exec,
lookup::exec_map,
dns::exec,
dns::exec_exists,
http::exec_header,
];
const PLUGINS_REGISTER: [RegisterPluginFnc; 6] = [
const PLUGINS_REGISTER: [RegisterPluginFnc; 7] = [
query::register,
exec::register,
lookup::register,
lookup::register_map,
dns::register,
dns::register_exists,
http::register_header,