David Schraeder:
> How are you guys getting those stats on the blocks?
awk '
/blocked using [^;]+;/ { stats[$20]++ }
END { for (name in stats) print name, " ", stats[name] }
' /var/log/maillog
Wietse
David Schraeder:
> How are you guys getting those stats on the blocks?
awk '
/blocked using [^;]+;/ { stats[$20]++ }
END { for (name in stats) print name, " ", stats[name] }
' /var/log/maillog
Wietse