Wietse Venema wrote:
I don't think so.
Instead of YOU filtering by hand a long file, let the COMPUTER do
the work for you:

egrep '(warning|error|fatal|panic):' /the/log/file | grep qmgr

I read the links provided and that's what I did. I filtered by hand first and then grepped the logs to verify what I found. The only mention I got was:

Aug 15 02:55:06 prod101 postfix/master[9402]: warning: process /usr/lib/postfix/qmgr pid 9582 exit status 1

If you have one of those Linux boxes that stores data in multiple
logfiles, repeat the above on all those files.

Yes I did:
egrep '(warning|error|fatal|panic):' /var/log/mail.* | grep qmgr
gunzip -c /var/log/mail.*.*.gz | egrep '(warning|error|fatal|panic):' | grep qmgr

Best regards,
Jeroen

Reply via email to