Len Conrad:
> 
> I'm testing a new filter, so I HOLD matching messages, then inspect them to 
> either release or delete them.  
> 
> egrep -ic "hold: " /var/log/maillog
> 298

You have multiple logfile records per queue file?

grep ' hold:' /var/log/maillog | awk '{print $6}' | sort -u | wc -l

(this would count all the NOQUEUE: records as one, BTW).

        Wietse

Reply via email to