From 30fe6f935bdbaf0b5f6b632c7c874a9dbe8c737e Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Mon, 22 Apr 2024 10:23:28 -0300 Subject: [PATCH] fix(rbl): typo in rbl check selector Signed-off-by: Felipe Zipitria --- src/operators/rbl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operators/rbl.h b/src/operators/rbl.h index f002d532c5..a35a6a7b58 100644 --- a/src/operators/rbl.h +++ b/src/operators/rbl.h @@ -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,