Control Web Panel
WebPanel => E-Mail => Topic started by: lhpsobral on May 01, 2025, 02:06:26 PM
-
Hello, there is SpamHause and SpamAssassin, there is a difference between the two, cwp accepts both installations... If anyone has information, I would like to understand. Is there SpamHause and is it spamhaus?
;D ;D
-
SpamAssassin is a locally-run spam filter that processes, scores, and can act (tag, move to another mailbox, delete) on incoming mail.
Spamhaus is a remote, cloud run RBL (real-time blacklist) that you can integrate in your mail delivery chain (SMTP server). Spamhaus requires a free API key to use it, so you must sign up for an account from them.
I use both in my servers since each serves an important part of the anti-UCE battle. (On another dedicated mail server, I employ ASSP -- Anti-Spam SMTP Proxy and it blocks 75% of incoming non-local mail; highly effective!)
-
SpamAssassin is a locally-run spam filter that processes, scores, and can act (tag, move to another mailbox, delete) on incoming mail.
Spamhaus is a remote, cloud run RBL (real-time blacklist) that you can integrate in your mail delivery chain (SMTP server). Spamhaus requires a free API key to use it, so you must sign up for an account from them.
I use both in my servers since each serves an important part of the anti-UCE battle. (On another dedicated mail server, I employ ASSP -- Anti-Spam SMTP Proxy and it blocks 75% of incoming non-local mail; highly effective!)
Can you share the exact steps wrt cwp for implementing Spamhaus. I have signed up.
-
Not really any steps apart from integrated it in your / etc / postfix / main.cf:
smtpd_recipient_restrictions =
#check_policy_service inet:127.0.0.1:10031,
permit_sasl_authenticated,
permit_mynetworks,
check_client_access hash:/etc/postfix/sender_whitelist,
check_client_access hash:/etc/postfix/sender_blacklist,
check_client_access hash:/etc/postfix/rbl_override,
reject_unauth_destination,
reject_non_fqdn_sender,
reject_non_fqdn_recipient,
reject_unknown_recipient_domain,
reject_rbl_client YOURDQAPIKEYHERE.zen.dq.spamhaus.net=127.0.0.[2..11],
reject_rbl_client cn.country.spameatingmonkey.net,
reject_rbl_client kp.country.spameatingmonkey.net,
reject_rbl_client ng.country.spameatingmonkey.net,
reject_rbl_client ru.country.spameatingmonkey.net,
reject_rbl_client tr.country.spameatingmonkey.net
-
Not really any steps apart from integrated it in your / etc / postfix / main.cf:
smtpd_recipient_restrictions =
#check_policy_service inet:127.0.0.1:10031,
permit_sasl_authenticated,
permit_mynetworks,
check_client_access hash:/etc/postfix/sender_whitelist,
check_client_access hash:/etc/postfix/sender_blacklist,
check_client_access hash:/etc/postfix/rbl_override,
reject_unauth_destination,
reject_non_fqdn_sender,
reject_non_fqdn_recipient,
reject_unknown_recipient_domain,
reject_rbl_client YOURDQAPIKEYHERE.zen.dq.spamhaus.net=127.0.0.[2..11],
reject_rbl_client cn.country.spameatingmonkey.net,
reject_rbl_client kp.country.spameatingmonkey.net,
reject_rbl_client ng.country.spameatingmonkey.net,
reject_rbl_client ru.country.spameatingmonkey.net,
reject_rbl_client tr.country.spameatingmonkey.net
Thank you. Done