aboutsummaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorAlexander Moisseev <moiseev@mezonplus.ru>2018-12-25 18:45:55 +0300
committerAlexander Moisseev <moiseev@mezonplus.ru>2018-12-25 18:58:16 +0300
commit42bef43e11c8e3df800660a69916f4d920bd1567 (patch)
treeaad7c1031941930fb0d15a2ef40e1983dd7ca310 /rules
parente59e7c632a6a71c9b4cc0b9cea0e14fad079bb2f (diff)
downloadrspamd-42bef43e11c8e3df800660a69916f4d920bd1567.tar.gz
rspamd-42bef43e11c8e3df800660a69916f4d920bd1567.zip
[Minor] Check for Kaspersky Security for Mail Server spam flag
Diffstat (limited to 'rules')
-rw-r--r--rules/regexp/upstream_spam_filters.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/rules/regexp/upstream_spam_filters.lua b/rules/regexp/upstream_spam_filters.lua
index e8f5682a6..4c457428a 100644
--- a/rules/regexp/upstream_spam_filters.lua
+++ b/rules/regexp/upstream_spam_filters.lua
@@ -40,6 +40,13 @@ reconf['AOL_SPAM'] = {
group = 'upstream_spam_filters'
}
+reconf['KLMS_SPAM'] = {
+ re = 'X-KLMS-AntiSpam-Status=/^spam/H',
+ score = 5,
+ description = "Kaspersky Security for Mail Server says this message is spam",
+ group = 'upstream_spam_filters'
+}
+
reconf['SPAM_FLAG'] = {
re = string.format('%s || %s || %s',
'X-Spam-Flag=/^(?:yes|true)/Hi',