Is qmailanalog compatible with multilog? The first part of the 
MATCHUP doc file says:

   Before using qmailanalog, make sure that your qmail log contains
   microsecond timestamps: e.g.,

      901967408.113926 new msg 19287
      901967408.116537 info msg 19287: bytes ...

Um, nope. I have lines like this:

   @4000000038e3b11b21dd6d0c info msg 24695: bytes 70110 from <snip>
   @4000000038e3b11b223b82fc starting delivery 26852: msg 24695 to local <snip>

Any good one liners to make this work?

Thanks,
jon


At 2:41 PM -0500 3/30/00, Dave Sill wrote:
>"S.P. Hoeke" <[EMAIL PROTECTED]> wrote:
>
>>Keep in mind i'm a newbie to qmail and OpenBSD... a lot of this stuff
>>maybe self-explanatory to the more 'advanced' users.
>
>No problem.
>
>>Specifically I don't know how to "feed your log through" the awk line.
>
>If your log is in a file called "foo", do:
>
>   awk '{$1="";$2="";$3="";$4="";$5="";print}' foo
>
>That will, of course, output to standard output, so you want to feed
>it to matchup:
>
>   awk '{$1="";$2="";$3="";$4="";$5="";print}' foo | ./matchup
>
>And matchup outputs to standard output, so you'll want to redirect it
>to a file, say matchup.out:
>
>   awk '{$1="";$2="";$3="";$4="";$5="";print}' foo | ./matchup >matchup.out
>
>>Same goes for "feed the matchup output through any of the" scripts
>
>E.g.:
>
>   ./zoverall <matchup.out
>
>-Dave

Reply via email to