I don't believe so, here's an example line from /var/log/zimbra.log and the corresponding database entry -
Feb 16 08:44:13 epia postfix/cleanup[20593]: 6F9614528: message-id=<200602160844.k1G8i8xi008879@localhost.localdom ain>
| 3222 | 2006-02-16 08:44:13 | epia | postfix/cleanup | 20593 | 6F9614528: message-id=<200602160844.k1G8i8xi008879@localhost.localdom ain> | NULL |
I don't really know perl, but am I correct in thinking that zmlogger should be parsing the qid (6F9614528) out in the section below? If so, I'll take a closer look at the processing here.. if ($app =~ /^postfix/ && $msg =~ /^(\S{10,12}): /) {
$qid = $1;
}
Regards,
Jon. |