diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-11-22 10:49:09 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-11-22 10:49:09 +0300 |
commit | ff667448ba63cb94968ec43b3cfc2c52bd3d13c3 (patch) | |
tree | cc3d85157680f2d261ef6516451d7b5120d649b4 /rules | |
parent | 07be62423bd57708f597bc9624fed0140f3b0d53 (diff) | |
download | rspamd-ff667448ba63cb94968ec43b3cfc2c52bd3d13c3.tar.gz rspamd-ff667448ba63cb94968ec43b3cfc2c52bd3d13c3.zip |
[Minor] Add new Message-ID regexp for Seamonkey
Resolves #2634
Diffstat (limited to 'rules')
-rw-r--r-- | rules/regexp/headers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index bd286b764..a8c6d5a85 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -490,7 +490,7 @@ reconf['FORGED_MUA_SEAMONKEY_MSGID'] = { group = 'mua' } reconf['FORGED_MUA_SEAMONKEY_MSGID_UNKNOWN'] = { - re = string.format('(%s) & !(%s) & !(%s) & !(%s)', user_agent_seamonkey, mozilla_msgid_common, mozilla_msgid, unusable_msgid), + re = string.format('(%s) & !((%s) | (%s)) & !(%s) & !(%s)', user_agent_seamonkey, mozilla_msgid_common, mozilla_msgid_common_sec, mozilla_msgid, unusable_msgid), score = 2.5, description = 'Forged mail pretending to be from Mozilla Seamonkey but has forged Message-ID', group = 'mua' |