mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-26 09:50:47 +08:00
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:
parent
4713ceebe2
commit
203bbf6cfd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue