Jim Smith a écrit :
> Can it be done natively when writing to the maillog or do I need to copy
> the file elsewhere and then run a conversion tool across all the Subject
> fields to get the correct characters?
>
> My maillogs are very large and I don't want to use resources
> converting them on the mail server, hence I'd copy them somewhere else
> before converting the Subject: string
>
- logs are ASCII. This has always been the case.
- postfix logs text as it comes. This is what logging is for (write
"real" infos)
if you want to ease reading logs, then convert logs to whichever form
you prefer. a
tail -F $logfile |perl showmelogs.pl
will do...