diff options
Diffstat (limited to 'rules/regexp/headers.lua')
-rw-r--r-- | rules/regexp/headers.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index 5118a5b9b..fdc2fb043 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -828,7 +828,7 @@ reconf['HAS_INTERSPIRE_SIG'] = { 'header_exists(X-Mailer-Sent-By)', 'List-Unsubscribe=/\\/unsubscribe\\.php\\?M=[^&]+&C=[^&]+&L=[^&]+&N=[^>]+>$/Xi'), description = "Has Interspire fingerprint", - score = 3.0, + score = 1.0, group = 'header' } @@ -887,3 +887,11 @@ reconf['HAS_ORG_HEADER'] = { score = 0.0, group = 'headers' } + +reconf['X_PHPOS_FAKE'] = { + re = 'X-PHP-Originating-Script=/^\\d{7}:/Hi', + description = 'Fake X-PHP-Originating-Script header', + score = 3.0, + group = 'headers' +} + |