diff options
author | LBahtarliev <22945773+lbahtarliev@users.noreply.github.com> | 2023-09-12 23:59:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 23:59:56 +0300 |
commit | 7846b2f3203c1fefce8560fb89ef198e2323d939 (patch) | |
tree | 1c0ef246d8dd5a2f52a7c9cbea99e0ef89199032 /lualib | |
parent | 4824b17181d300954751b84272543ece4b81e9a7 (diff) | |
parent | 7ff64cd1359375974155e560c7d3200f03a4e500 (diff) | |
download | rspamd-7846b2f3203c1fefce8560fb89ef198e2323d939.tar.gz rspamd-7846b2f3203c1fefce8560fb89ef198e2323d939.zip |
Merge branch 'rspamd:master' into master
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/plugins/rbl.lua | 3 | ||||
-rw-r--r-- | lualib/rspamadm/mime.lua | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lualib/plugins/rbl.lua b/lualib/plugins/rbl.lua index bff53f9ba..02d0d3338 100644 --- a/lualib/plugins/rbl.lua +++ b/lualib/plugins/rbl.lua @@ -30,6 +30,7 @@ local check_types = { }, urls = {}, content_urls = {}, + numeric_urls = {}, emails = {}, replyto = {}, dkim = {}, @@ -212,4 +213,4 @@ return { rule_schema = ts.shape(rule_schema_tbl), default_options = default_options, convert_checks = convert_checks, -}
\ No newline at end of file +} diff --git a/lualib/rspamadm/mime.lua b/lualib/rspamadm/mime.lua index 0b0605582..6a589d66a 100644 --- a/lualib/rspamadm/mime.lua +++ b/lualib/rspamadm/mime.lua @@ -179,7 +179,7 @@ sign:option "-k --key" :description "Use specific key of file" :argname "<key>" :count "1" -sign:option "-t type" +sign:option "-t --type" :description "ARC or DKIM signing" :argname("<arc|dkim>") :convert { @@ -1009,4 +1009,4 @@ return { aliases = { 'mime_tool' }, handler = handler, description = parser._description -}
\ No newline at end of file +} |