Skip to content

Commit

Permalink
fix(rbl): typo in rbl check selector
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Zipitria <[email protected]>
  • Loading branch information
fzipi committed Apr 22, 2024
1 parent 625f9a5 commit 30fe6f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/operators/rbl.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class Rbl : public Operator {
m_demandsPassword = true;
m_provider = RblProvider::httpbl;
} else if (m_service.find("uribl.com") != std::string::npos) {
m_provider = RblProvider::httpbl;
m_provider = RblProvider::uribl;
} else if (m_service.find("spamhaus.org") != std::string::npos) {
m_provider = RblProvider::httpbl;
m_provider = RblProvider::spamhaus;
}
}
bool evaluate(Transaction *transaction, RuleWithActions *rule,
Expand Down

0 comments on commit 30fe6f9

Please sign in to comment.