From d5eb37dd4a5a433c40c3c1e7ead424add62663f8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 02:47:27 +0200 Subject: Adding debian version 4.92-8+deb10u6. Signed-off-by: Daniel Baumann --- debian/syslog2eximlog | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 debian/syslog2eximlog (limited to 'debian/syslog2eximlog') diff --git a/debian/syslog2eximlog b/debian/syslog2eximlog new file mode 100755 index 0000000..edf974b --- /dev/null +++ b/debian/syslog2eximlog @@ -0,0 +1,60 @@ +#!/usr/bin/perl -w +# +# Copyright (c) 2003 Martin A. Godisch for Debian GNU/Linux, GPL + +=head1 NAME + +syslog2eximlog - make syslog output suitable for eximstats + +=head1 SYNOPSIS + +B B<<> I B<|> B + +=head1 DESCRIPTION + +syslog2eximlog converts logfiles produced by syslog when using +B in your I back to exim +logfile format, suitable for B. B +may be B or B. + +The program always succeeds, invalid lines will be ignored. + +=head1 BUGS + +Please report any bugs directly to the author. + +=head1 AUTHOR + +Martin A. Godisch for Debian GNU/Linux. + +=head1 SEE ALSO + +B(8) + +=cut + +my @date = localtime(time); +$date[4] += 1; +$date[5] += 1900; +my %names = ( + "Jan", "01", "Feb", "02", "Mar", "03", "Apr", "04", + "May", "05", "Jun", "06", "Jul", "07", "Aug", "08", + "Sep", "09", "Oct", "10", "Nov", "11", "Dec", "12" +); + +while (<>) { + next unless (s/^(\w{3})\s([\s\d]\d)\s(\d\d):(\d\d):(\d\d)\s\S+\sexim\[\d+\]:\s//); + + my ($month, $day, $hour, $min, $sec) = ($names{$1}, $2, $3, $4, $5); + + if (/^\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d\s/) { + print $_; + } else { + printf "%04d-%02d-%02d %02d:%02d:%02d %s", + # assume current year if month/day <= today, otherwise assume last year + $month > $date[4] || $month == $date[4] && $day > $date[3] ? $date[5] - 1 : $date[5], + $month, $day, $hour, $min, $sec, $_; + } +} + +exit 0; -- cgit v1.2.3