freebsd-dev/etc/periodic/daily/460.status-mail-rejects
Wolfram Schneider b2ba580390 Count _all_ rejects, not made by check_mail and check_relay only.
There can be private rules which produce rejects.
Pointed out by: áÎÄÒÅÊ þÅÒÎÏ×
1998-02-09 11:28:59 +00:00

16 lines
432 B
Bash
Executable File

#!/bin/sh
#
# $Id: 460.status-mail-rejects,v 1.6 1998/02/05 15:38:17 wosch Exp $
#
if [ -d /etc/mail -a -f /var/log/maillog ]; then
echo
echo Checking for rejected mail hosts:
start=`date -v-1d '+%b %d' | sed 's/0\(.\)$/ \1/'`
zcat -fc /var/log/maillog.0* /var/log/maillog | grep reject= |
perl -ne "print \"\$2\n\"
if /^$start.*ruleset=check_\S+,\s+arg1=(<[^@]+@)?([^>,]+).*reject=/o;" |
sort | uniq -c | sort -nr
fi