diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-08-30 22:02:42 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-08-30 22:02:42 +0200 |
commit | 4cda052e317aecc95842c5c650591cdb9d1965a8 (patch) | |
tree | 083b66ea18a1b2a186241cc072e6893b49834b89 /rules/regexp/headers.lua | |
parent | 1e54f98c97df00f2171b518844f6662aad695b06 (diff) | |
download | rspamd-4cda052e317aecc95842c5c650591cdb9d1965a8.tar.gz rspamd-4cda052e317aecc95842c5c650591cdb9d1965a8.zip |
[Minor] Fix rules post-update
Diffstat (limited to 'rules/regexp/headers.lua')
-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 e645ff007..b13274055 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -415,7 +415,7 @@ reconf['SUSPICIOUS_OPERA_10W_MSGID'] = { } -- Summary rule for forged Opera Mail Message-ID header reconf['FORGED_MUA_OPERA_MSGID'] = { - re = string.format('(%s) & !(%s) & !(%s) & !(%s)', opera1x_mua, opera1x_msgid, reconf['SUSPICIOUS_OPERA_10W_MSGID'], unusable_msgid), + re = string.format('(%s) & !(%s) & !(%s) & !(%s)', opera1x_mua, opera1x_msgid, reconf['SUSPICIOUS_OPERA_10W_MSGID']['re'], unusable_msgid), score = 4.0, description = 'Message pretends to be send from Opera Mail but has forged Message-ID', group = 'mua' |