From: Alexander Moisseev Date: Thu, 10 Oct 2019 11:01:30 +0000 (+0300) Subject: [Minor] Fix grammar X-Git-Tag: 2.0~25^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=099d952c660b2c520e25afaf992d1338a44eca30;p=rspamd.git [Minor] Fix grammar --- 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' }