From b2ba5803909c32e2a019c53d8695f0f70fffd6d5 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 9 Feb 1998 11:28:59 +0000 Subject: [PATCH] =?UTF-8?q?Count=20=5Fall=5F=20rejects,=20not=20made=20by?= =?UTF-8?q?=20check=5Fmail=20and=20check=5Frelay=20only.=20There=20can=20b?= =?UTF-8?q?e=20private=20rules=20which=20produce=20rejects.=20Pointed=20ou?= =?UTF-8?q?t=20by:=20=C3=A1=C3=8E=C3=84=C3=92=C3=85=C3=8A=20=C3=BE=C3=85?= =?UTF-8?q?=C3=92=C3=8E=C3=8F=C3=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- etc/periodic/daily/460.status-mail-rejects | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/etc/periodic/daily/460.status-mail-rejects b/etc/periodic/daily/460.status-mail-rejects index 07fd47161e8..636d3c48bf9 100755 --- a/etc/periodic/daily/460.status-mail-rejects +++ b/etc/periodic/daily/460.status-mail-rejects @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: 460.status-mail-rejects,v 1.5 1998/02/05 15:33:54 wosch Exp $ +# $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 @@ -9,8 +9,7 @@ if [ -d /etc/mail -a -f /var/log/maillog ]; then start=`date -v-1d '+%b %d' | sed 's/0\(.\)$/ \1/'` zcat -fc /var/log/maillog.0* /var/log/maillog | grep reject= | - perl -ne "print \"\$1\n\" - if (/^$start.*ruleset=check_mail, arg1=<.*@([^>]*)>.*reject=/o || - /^$start.*ruleset=check_relay, arg1=([^, ]*), .*reject=/o)" | + perl -ne "print \"\$2\n\" + if /^$start.*ruleset=check_\S+,\s+arg1=(<[^@]+@)?([^>,]+).*reject=/o;" | sort | uniq -c | sort -nr fi