diff options
-rw-r--r-- | rules/regexp/upstream_spam_filters.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rules/regexp/upstream_spam_filters.lua b/rules/regexp/upstream_spam_filters.lua index 8c737e7c6..03929326c 100644 --- a/rules/regexp/upstream_spam_filters.lua +++ b/rules/regexp/upstream_spam_filters.lua @@ -51,7 +51,9 @@ reconf['SPAM_FLAG'] = { } reconf['UNITEDINTERNET_SPAM'] = { - re = 'X-UI-Out-Filterresults=/^junk:/H', + re = string.format('%s || %s', + 'X-UI-Filterresults=/^junk:/H', + 'X-UI-Out-Filterresults=/^junk:/H'), score = 5.0, description = "United Internet says this message is spam", group = 'upstream_spam_filters' |