diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-05-10 15:43:39 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-05-10 15:43:39 +0100 |
commit | 0845a5858da6f0c56763c350379221c9b23be2da (patch) | |
tree | 44aa27d1ea3ceebdf84225a5b09759292aa93801 /rules | |
parent | c631b135940a31b08ef6f7b1e4746321c99b112d (diff) | |
download | rspamd-0845a5858da6f0c56763c350379221c9b23be2da.tar.gz rspamd-0845a5858da6f0c56763c350379221c9b23be2da.zip |
[Minor] Fix indentation when I'm here
Diffstat (limited to 'rules')
-rw-r--r-- | rules/regexp/upstream_spam_filters.lua | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/rules/regexp/upstream_spam_filters.lua b/rules/regexp/upstream_spam_filters.lua index c45f5c9a9..e8f5682a6 100644 --- a/rules/regexp/upstream_spam_filters.lua +++ b/rules/regexp/upstream_spam_filters.lua @@ -19,40 +19,40 @@ limitations under the License. local reconf = config['regexp'] reconf['PRECEDENCE_BULK'] = { - re = 'Precedence=/bulk/Hi', - score = 0.0, - description = "Message marked as bulk", - group = 'upstream_spam_filters' + re = 'Precedence=/bulk/Hi', + score = 0.0, + description = "Message marked as bulk", + group = 'upstream_spam_filters' } reconf['MICROSOFT_SPAM'] = { - -- https://technet.microsoft.com/en-us/library/dn205071(v=exchg.150).aspx - re = 'X-Forefront-Antispam-Report=/SFV:SPM/H', - score = 4, - description = "Microsoft says the message is spam", - group = 'upstream_spam_filters' + -- https://technet.microsoft.com/en-us/library/dn205071(v=exchg.150).aspx + re = 'X-Forefront-Antispam-Report=/SFV:SPM/H', + score = 4, + description = "Microsoft says the message is spam", + group = 'upstream_spam_filters' } reconf['AOL_SPAM'] = { - re = 'X-AOL-Global-Disposition=/^S/H', - score = 5, - description = "AOL says this message is spam", - group = 'upstream_spam_filters' + re = 'X-AOL-Global-Disposition=/^S/H', + score = 5, + description = "AOL says this message is spam", + group = 'upstream_spam_filters' } reconf['SPAM_FLAG'] = { - re = string.format('%s || %s || %s', - 'X-Spam-Flag=/^(?:yes|true)/Hi', - 'X-Spam=/^(?:yes|true)/Hi', - 'X-Spam-Status=/^(?:yes|true)/Hi'), - score = 5, - description = "Message was already marked as spam", - group = 'upstream_spam_filters' + re = string.format('%s || %s || %s', + 'X-Spam-Flag=/^(?:yes|true)/Hi', + 'X-Spam=/^(?:yes|true)/Hi', + 'X-Spam-Status=/^(?:yes|true)/Hi'), + score = 5, + description = "Message was already marked as spam", + group = 'upstream_spam_filters' } reconf['UNITEDINTERNET_SPAM'] = { - re = 'X-UI-Out-Filterresults=/^junk:/H', - score = 5, - description = "United Internet says this message is spam", - group = 'upstream_spam_filters' + re = 'X-UI-Out-Filterresults=/^junk:/H', + score = 5, + description = "United Internet says this message is spam", + group = 'upstream_spam_filters' } |