Spamming on server exim -bpc If this is change very fast then it seems spamming is on server also you can check using tail -f /var/log/exim_mainlog some times client can spam using scripting that time above using above you can’t find error log so you can use tail -f /var/log/message or ps -aux | grep […]
See MoreTag: Scripting
Manage multiple IP addresses with CSF
Manage multiple IP addresses with CSF The command to deny an IP: # csf -d ip.address Click here for more CSF commands Here is the script to block number of IPs: 1, Save the IPs in a text file: vi block.txt ….. 1.1.1.5 1.1.1.1 1.1.1.4 1.1.1.6 ….. 2, Blocking them using for loop: # for […]
See MoreHow to enable SPF and DKIM for already created cPanel accounts?
Enable SPF and DKIM for already created cPanel accounts cPanel script to enable SPF via commandline: Syntax # /usr/local/cpanel/bin/spf_installer $username Where, $username is the cPanel user name. cPanel script to enable DKIM via commandline: Syntax # /usr/local/cpanel/bin/dkim_keys_install $username Replace $username with the actual cPanel username. The above commands will help you to enable email authentications […]
See More