diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-02-17 21:55:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 21:55:35 +0000 |
commit | a48d6fc4dfed4a91211ef8f976ec9e833da12a0d (patch) | |
tree | 0760c626813ce57e994671daa765934b557a7dc4 /rules | |
parent | 172fb63b8111b0073bebf138b861d473ece3b8a7 (diff) | |
parent | ded1b937d069db6534685cc13e1558752feb27ad (diff) | |
download | rspamd-a48d6fc4dfed4a91211ef8f976ec9e833da12a0d.tar.gz rspamd-a48d6fc4dfed4a91211ef8f976ec9e833da12a0d.zip |
Merge pull request #4397 from twesterhever/temp-misc-cleanups-and-housekeeping
[Minor] Assorted cleanup and housekeeping of configuration files
Diffstat (limited to 'rules')
-rw-r--r-- | rules/content.lua | 2 | ||||
-rw-r--r-- | rules/forwarding.lua | 1 | ||||
-rw-r--r-- | rules/mid.lua | 1 | ||||
-rw-r--r-- | rules/regexp/compromised_hosts.lua | 1 | ||||
-rw-r--r-- | rules/regexp/misc.lua | 2 | ||||
-rw-r--r-- | rules/subject_checks.lua | 2 |
6 files changed, 3 insertions, 6 deletions
diff --git a/rules/content.lua b/rules/content.lua index 038d4f63a..0936f5898 100644 --- a/rules/content.lua +++ b/rules/content.lua @@ -113,4 +113,4 @@ rspamd_config:register_symbol{ name = 'PDF_TIMEOUT', parent = id, groups = {"content", "pdf"}, -}
\ No newline at end of file +} diff --git a/rules/forwarding.lua b/rules/forwarding.lua index f88c767ab..7d79a0c31 100644 --- a/rules/forwarding.lua +++ b/rules/forwarding.lua @@ -153,4 +153,3 @@ rspamd_config.FORWARDED = { description = "Message was forwarded", group = "forwarding" } - diff --git a/rules/mid.lua b/rules/mid.lua index 2076debb0..14c701cf6 100644 --- a/rules/mid.lua +++ b/rules/mid.lua @@ -125,4 +125,3 @@ rspamd_config:register_symbol { end end } - diff --git a/rules/regexp/compromised_hosts.lua b/rules/regexp/compromised_hosts.lua index 0a9a9f0aa..cfd560bc2 100644 --- a/rules/regexp/compromised_hosts.lua +++ b/rules/regexp/compromised_hosts.lua @@ -211,4 +211,3 @@ reconf['WWW_DOT_DOMAIN'] = { score = 0.5, group = "compromised_hosts" } - diff --git a/rules/regexp/misc.lua b/rules/regexp/misc.lua index a5e5cfc44..0e660e358 100644 --- a/rules/regexp/misc.lua +++ b/rules/regexp/misc.lua @@ -99,4 +99,4 @@ reconf['LEAKED_PASSWORD_SCAM_RE'] = { group = 'scams' } -rspamd_config:register_dependency('LEAKED_PASSWORD_SCAM', 'BITCOIN_ADDR')
\ No newline at end of file +rspamd_config:register_dependency('LEAKED_PASSWORD_SCAM', 'BITCOIN_ADDR') diff --git a/rules/subject_checks.lua b/rules/subject_checks.lua index d0a41d920..27f435729 100644 --- a/rules/subject_checks.lua +++ b/rules/subject_checks.lua @@ -67,4 +67,4 @@ rspamd_config.LONG_SUBJ = { group = 'subject', type = 'mime', description = 'Subject is too long' -}
\ No newline at end of file +} |