If you notice one of the domains in your WHM installed server is doing some email spamming activities and you need to block his emails without suspending the account, you can follow these steps in your default Exim configuration.
- Login to the server as root.
- Create a new file:
# vi /etc/eximblacklist
You can add the problematic domain inside this file without quotes. Save the file after adding the domain(s). - Then we need to make some edits with the main Exim configuration file.
# vi /etc/exim.conf
- Add the following line in the first session just below the line 'cPanel Exim 4 Config'
domainlist exim_blacklist = lsearch;/etc/eximblacklist
- After that, add the following under 'Routers Configuration' section:
reject_domains: driver = redirect # RBL Blacklist incoming hosts domains = +exim_blacklist allow_fail data = :fail: Connection rejected: SPAM source $domain is manually blacklisted.
- Save the file and then restart the Exim service:
# service exim restart
If you are finding more domains doing the spamming activities, you can simply add the domain name to '/etc/eximblacklist' and no further changes needed.