diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2019-10-10 14:01:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 14:01:30 +0300 |
commit | 099d952c660b2c520e25afaf992d1338a44eca30 (patch) | |
tree | 5a1779030f8098e184e68ddac96febacce35fc59 /rules/regexp/headers.lua | |
parent | 4a1e131fe8f1949250fb63a64ce3f15e5e825b03 (diff) | |
download | rspamd-099d952c660b2c520e25afaf992d1338a44eca30.tar.gz rspamd-099d952c660b2c520e25afaf992d1338a44eca30.zip |
[Minor] Fix grammar
Diffstat (limited to 'rules/regexp/headers.lua')
-rw-r--r-- | rules/regexp/headers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index 5ee848018..dfd18f7df 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -677,11 +677,11 @@ local no_inr_yes_ref = string.format('(%s) | (%s) | (%s) | (%s) | (%s) | (%s) | local subj_re = 'Subject=/^R[eE]:/H' local has_ref = '(header_exists(References) | header_exists(In-Reply-To))' local missing_ref = string.format('!(%s)', has_ref) --- Fake reply (has RE in subject, but has not References header) +-- Fake reply (has RE in subject, but has no References header) reconf['FAKE_REPLY_C'] = { re = string.format('(%s) & (%s) & (%s) & !(%s)', subj_re, missing_ref, no_inr_yes_ref, xm_msoe6), score = 6.0, - description = 'Fake reply (has RE in subject, but has not References header)', + description = 'Fake reply (has RE in subject, but has no References header)', group = 'subject' } |