From 099d952c660b2c520e25afaf992d1338a44eca30 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 10 Oct 2019 14:01:30 +0300 Subject: [PATCH] [Minor] Fix grammar --- rules/regexp/headers.lua | 4 ++-- 1 file 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' } -- 2.39.5