Skip to content

Commit

Permalink
Disable reputation tracking by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Jan 12, 2025
1 parent a6c744b commit de4584c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/common/src/config/spamfilter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@ impl PyzorConfig {
impl ReputationConfig {
pub fn parse(config: &mut Config) -> Option<Self> {
if !config
.property_or_default("spam-filter.reputation.enable", "true")
.unwrap_or(true)
.property_or_default("spam-filter.reputation.enable", "false")
.unwrap_or(false)
{
return None;
}
Expand Down

0 comments on commit de4584c

Please sign in to comment.