Skip to content

Commit 30fe6f9

Browse files
committed
fix(rbl): typo in rbl check selector
Signed-off-by: Felipe Zipitria <[email protected]>
1 parent 625f9a5 commit 30fe6f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/operators/rbl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class Rbl : public Operator {
7171
m_demandsPassword = true;
7272
m_provider = RblProvider::httpbl;
7373
} else if (m_service.find("uribl.com") != std::string::npos) {
74-
m_provider = RblProvider::httpbl;
74+
m_provider = RblProvider::uribl;
7575
} else if (m_service.find("spamhaus.org") != std::string::npos) {
76-
m_provider = RblProvider::httpbl;
76+
m_provider = RblProvider::spamhaus;
7777
}
7878
}
7979
bool evaluate(Transaction *transaction, RuleWithActions *rule,

0 commit comments

Comments
 (0)