diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2022-02-22 17:01:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 22:01:28 +0000 |
commit | 2b8e6958f40ef36c1508118ac36a43694283a83c (patch) | |
tree | fa9a9b6843546bdb297b00bc78b83ab4c318f724 /rules/regexp | |
parent | 85faeb34719e2b0898d319b02416f669d70f4562 (diff) | |
download | rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.tar.gz rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.zip |
Spelling (#4086)
[Rework] Massive spelling fix from @jsoref
Diffstat (limited to 'rules/regexp')
-rw-r--r-- | rules/regexp/headers.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index 15670b4b5..9a01426fc 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -630,7 +630,7 @@ reconf['FAKE_REPLY'] = { group = 'headers' } --- Mime-OLE is needed but absent (e.g. fake Outlook or fake Ecxchange) +-- Mime-OLE is needed but absent (e.g. fake Outlook or fake Exchange) local has_msmail_pri = 'header_exists(X-MSMail-Priority)' local has_mimeole = 'header_exists(X-MimeOLE)' local has_squirrelmail_in_mailer = 'X-Mailer=/SquirrelMail\\b/H' @@ -838,14 +838,14 @@ reconf['CT_EXTRA_SEMI'] = { reconf['SUBJECT_ENDS_EXCLAIM'] = { re = 'Subject=/!\\s*$/H', - description = 'Subject ends with an exclaimation', + description = 'Subject ends with an exclamation', score = 0.0, group = 'headers' } reconf['SUBJECT_HAS_EXCLAIM'] = { re = string.format('%s & !%s', 'Subject=/!/H', 'Subject=/!\\s*$/H'), - description = 'Subject contains an exclaimation', + description = 'Subject contains an exclamation', score = 0.0, group = 'headers' } @@ -969,7 +969,7 @@ local bad_x_mailers = { [[(?:Mozilla )?Thunderbird \d]], -- Was used by Yahoo Groups in 2000s, no one expected to use this in 2020s [[eGroups Message Poster]], - -- Regexp for genuene iOS X-Mailer is below, anything which doesn't match it, + -- Regexp for genuine iOS X-Mailer is below, anything which doesn't match it, -- but starts with 'iPhone Mail' or 'iPad Mail' is likely fake [[i(?:Phone|Pad) Mail]], } |