asda?‰PNG  IHDR ? f ??C1 sRGB ??é gAMA ±? üa pHYs ? ??o¨d GIDATx^íüL”÷e÷Y?a?("Bh?_ò???¢§?q5k?*:t0A-o??¥]VkJ¢M??f?±8\k2íll£1]q?ù???T mnt/spam-killer.sh000075500000002402151027030000010103 0ustar00#!/bin/bash ##Script To Monitor Spammers Path awk '{ if ($0 ~ "cwd" && $0 ~ "home") {print $3} }' /var/log/exim_mainlog | sort | uniq -c | sort -nk 1 > /root/spamusers User1=`tail -n 5 /root/spamusers | sed -n 5p | cut -d "/" -f 3` User1Email=`tail -n 5 /root/spamusers | sed -n 5p | cut -d "/" -f 1 | awk '{print $1}'` echo $User1EmailAddress User2=`tail -n 5 /root/spamusers | sed -n 4p | cut -d "/" -f 3` User2Email=`tail -n 5 /root/spamusers | sed -n 4p | cut -d "/" -f 1 | awk '{print $1}'` User3=`tail -n 5 /root/spamusers | sed -n 3p | cut -d "/" -f 3` User3Email=`tail -n 5 /root/spamusers | sed -n 3p | cut -d "/" -f 1 | awk '{print $1}'` ##Please Adjust The Value I Made The Default Value 500 if [ $User1Email -gt 500 ]; then if [[ `ls /var/cpanel/suspended | grep $User1 | head -n 1` != $User1 ]]; then whmapi1 suspend_outgoing_email user=$User1 fi if [[ $User2Email -gt 500 ]]; then if [[ `ls /var/cpanel/suspended | grep $User1 | head -n 1` != $User1 ]]; then whmapi1 suspend_outgoing_email user=$User2 fi fi if [[ $User3Email -gt 500 ]]; then if [[ `ls /var/cpanel/suspended | grep $User1 | head -n 1` != $User1 ]]; then whmapi1 suspend_outgoing_email user=$User3 fi fi fi exiqgrep -z -i | xargs exim -Mrm ## END