cPanel Config

Welcome to cPanelConfig the fastest growing cPanel configuration and troubleshooting guide on the internet. Please take the time and register. We would love to have your contribution to this completely free cPanel resource. We are updating this daily so be sure to visit us on a regular basis.

Adding a new RBL to cPanel Exim

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 1.00 out of 5)
Loading ... Loading ...

Posted by yolau


More then a year ago, cPanel added a future to the Exim Configuration Editor for everyone to easily select from two RBLs (spamhaus.org and spamcop.net) that can be used to filter most of the SPAM that a server receives. While this has been great for most of us (enabling a RBL is a simple as selecting a check box in WHM and pressing the Save button), there are a few admins that would have liked to add additional RBLs to the list that Exim uses to filter SPAM emails. RBLs like dnsbl.njabl.org, list.dsbl.org, dul.dnsbl.sorbs.net, etc. are all considered useful by many, but not included by default.

The question is how can such a RBL be added to Exim ?
Well it’s not that hard !
First you will have to login to your server using ssh.
After a successful login:

  1. Change directory to /usr/local/cpanel/etc/exim/acls/ACL_RBL_BLOCK
  2. cd /usr/local/cpanel/etc/exim/acls/ACL_RBL_BLOCK

  3. Make a copy of of spamcop_rbl and name it with the new rbl name that will be used. For exemple
  4. cp spamcop_rbl njabl_rbl

  5. Open the newly created file
  6. nano njabl_rbl

  7. Change the two “dnslists” entries to the address of the new RBL. For example the new file should look something like this for dnsbl.njabl.org
  8. root@server [/usr/local/cpanel/etc/exim/acls/ACL_RBL_BLOCK]# cat njabl_rbl

    deny message = JunkMail rejected – $sender_fullhost is in an RBL, see $dnslist_text
    dnslists = dnsbl.njabl.org
    hosts = +backupmx_hosts

    warn
    dnslists = dnsbl.njabl.org
    set acl_m8 = 1
    set acl_m9 = “JunkMail rejected – $sender_fullhost is in an RBL, see $dnslist_text”
    [% ACL_RBL_WHITELIST %]

    warn
    condition = ${if eq {${acl_m8}}{1}{1}{0}}
    ratelimit = 0 / 1h / strict / per_conn
    log_message = “Increment Connection Ratelimit – $sender_fullhost because of RBL match”

    drop
    condition = ${if eq {${acl_m8}}{1}{1}{0}}
    message = ${acl_m9}

  9. Save the file
  10. Run
  11. /scripts/buildeximconf

That’s it you should now have the RBL added to your Exim mail server. You can off curse add as many RBLs as you like but please keep in mind that too many of them will increase the chances of false positives and can increase the general load on the server.

If you have any questions don’t hesitate to leave a comment!

Share this:
  • Digg
  • del.icio.us
  • Slashdot
  • StumbleUpon
  • Netvouz
  • DZone
  • ThisNext
  • MisterWong
  • Wists
  • De.lirio.us
  • Furl
  • MyShare
  • Smarking
  • Technorati
  • YahooMyWeb

If you enjoyed this post, make sure you subscribe to my RSS feed!

2 Responses to “Adding a new RBL to cPanel Exim”

  1. Why not ASSP deluxe , where you can set countless rbls without messing exim ?

  2. thankss goddd. verry

Leave a Reply