diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-06-27 10:44:19 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-06-27 10:44:19 +0300 |
commit | bb5a9f8e451bc206e78c9d4d03eb4cbdbef260b3 (patch) | |
tree | ec38b50c99765caed67aaf23db308b17cc407d5f /rules | |
parent | 146886df6d250a376b92d1bb615cb93679a7d6e8 (diff) | |
download | rspamd-bb5a9f8e451bc206e78c9d4d03eb4cbdbef260b3.tar.gz rspamd-bb5a9f8e451bc206e78c9d4d03eb4cbdbef260b3.zip |
[Minor] Massive spelling correction
by a bot https://github.com/ka7/misspell_fixer
Diffstat (limited to 'rules')
-rw-r--r-- | rules/mid.lua | 2 | ||||
-rw-r--r-- | rules/regexp/upstream_spam_filters.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rules/mid.lua b/rules/mid.lua index 337fbde86..9fd4df555 100644 --- a/rules/mid.lua +++ b/rules/mid.lua @@ -34,7 +34,7 @@ local function mid_check_func(task) if mid:find("@%[%d+%.%d+%.%d+%.%d+%]") then task:insert_result('MID_RHS_IP_LITERAL', 1.0) end - -- Check From address atrributes against MID + -- Check From address attributes against MID local from = task:get_from(2) if (from and from[1] and from[1].domain and from[1].domain ~= '') then local fd = from[1].domain:lower() diff --git a/rules/regexp/upstream_spam_filters.lua b/rules/regexp/upstream_spam_filters.lua index f778ae3a8..be792a318 100644 --- a/rules/regexp/upstream_spam_filters.lua +++ b/rules/regexp/upstream_spam_filters.lua @@ -29,7 +29,7 @@ reconf['MICROSOFT_SPAM'] = { -- https://technet.microsoft.com/en-us/library/dn205071(v=exchg.150).aspx re = 'X-Forefront-Antispam-Report=/SFV:SPM/H', score = 10, - description = "Microsoft says the messge is spam", + description = "Microsoft says the message is spam", group = 'upstream_spam_filters' } |