summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
82efcc0)
The score used to be compared with 20, but that really means spamscore
2.0. So we set it to 200 instead, for rejecting when the score is >20.
# and the message is not denied).
add_header = X-Spam-Score: $spam_score ($spam_bar)
add_header = X-Spam-Report: $spam_report
# and the message is not denied).
add_header = X-Spam-Score: $spam_score ($spam_bar)
add_header = X-Spam-Report: $spam_report
- # Reject any messages with a spam score of more than 20. This is fairly
- # high, but we don't like really rejecting messages.
- condition = ${if >{$spam_score_int}{20}}
+ # Reject any messages with a spam score of more than 20 ($spam_score_int is
+ # $spam_score * 10). This is fairly high, but we don't like really
+ # rejecting messages.
+ condition = ${if >{$spam_score_int}{200}}
# accept otherwise
accept
# accept otherwise
accept