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