"
echo ""
echo ""
echo "The following are locally rejected hosts that continously"
echo "violate SMTP protocol by using bogus senders and/or recipients."
echo "(These are the connect attempts we've denied for the previous day)"
echo " "
awk -F: '{printf("%15s%58s %3s %3s\n", $1, $1, $2, $3, $4)}' /sys/html/abuse/spammers
if [ -f /sys/html/abuse/ordb ]
then echo " "
echo ""
echo "The following are attempts from publically listed open relays on"
echo "ordb.org, spamhaus.org and spamcop.net. If you're here, don't"
echo "contact us to get off. We do not determine who is in the ORDB."
echo "(These are the connect attempts we've denied for the previous day)"
echo " "
awk '{printf("%15s %58s %3s\n", $1, $2, $3)}' /sys/html/abuse/ordb|sort -nr -k 3
echo " "
echo ""
awk '{sum += $3} END {printf("Total messages blocked from %s open relays: %s (%3.2f on average)\n", NR, sum, sum / NR)}' /sys/html/abuse/ordb
if [ -f /sys/html/abuse/ordb.stats ]
then echo " "
head -1 /sys/html/abuse/ordb.stats
fi
echo ""
fi
echo " "
echo " "
echo " |
"
echo "