Moved "greylist" and "soft reject" to same case block.

In Rspamd "greylist" and "soft reject" actions are synonymous.
Which one is emitted depends on the greylisting module configuration.
This commit is contained in:
Lauri Anteploon 2020-11-11 10:43:21 +00:00
parent 4713ceebe2
commit 203bbf6cfd

View file

@ -304,10 +304,10 @@ class FilterHandler {
case 'rewrite subject':
case 'soft reject':
case 'greylist':
spamScore = 50;
break;
case 'greylist':
case 'add header':
spamScore = 25;
break;