summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/460.status-mail-rejects
blob: 636d3c48bf9f6bf8775e0c1a1a76aaebd80da982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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
OpenPOWER on IntegriCloud