Uninstall MailWatch

Log in to SSH as root and do the following: cd /usr/mailscanner/lib/MailScanner/ rm -fv MailWatch.pm Edit the file /usr/mailscanner/lib/MailScanner/CustomConfig.pm, and remove the line: require ‘MailScanner/MailWatch.pm’; Edit /usr/mailscanner/etc/MailScanner.conf and remove the line: Always Looked Up Last = &MailWatchLogging Then run the following commands: rm -Rfv /usr/local/cPanel/whostmgr/docroot/3rdparty/mailwatch mysql -e “drop database mailscanner” Kill any MailWatch processes with […]

See More

Script To Migrate Reseller

#Migrate Reseller echo “Server IP :- “; read remote_host; echo “Checking for the Authentication Keys ” hostname=$(hostname) Key=$(grep -s $hostname /root/.ssh/id_rsa.pub | wc -l) if [ “$Key” -le 0 ]; then echo ” No Keys Found. Adding new KEY” ssh-keygen -t rsa -b 1024 -f /root/.ssh/id_rsa -N “” else echo “Authentication Does exist” fi echo […]

See More

Inbound spam to domain/email users

Inbound spam is the scourge of the modern internet and, the inconvenience to users aside, can cause serious performance and resource issues on the server. These can affect both the server overall and the timely deliver of clean email in particular. The best way to tackle inbound spam is at the entry point into the […]

See More