1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/management/reporting/capture/logs/DateParser.py
downtownallday 2a0e50c8d4 Initial commit of a log capture and reporting feature
This adds a new section to the admin panel called "Activity", that
supplies charts, graphs and details about messages entering and leaving
the host.

A new daemon captures details of system mail activity by monitoring
the /var/log/mail.log file, summarizing it into a sqllite database
that's kept in user-data.
2021-01-11 18:02:07 -05:00

34 lines
815 B
Python

import datetime
import pytz
rsyslog_traditional_regexp = '^(.{15})'
with open('/etc/timezone') as fp:
timezone_id = fp.read().strip()
def rsyslog_traditional(str):
# Handles the default timestamp in rsyslog
# (RSYSLOG_TraditionalFileFormat)
#
# eg: "Dec 6 06:25:04" (always 15 characters)
#
# the date string is in local time
#
d = datetime.datetime.strptime(str, '%b %d %H:%M:%S')
# since the log date has no year, use the current year
today = datetime.date.today()
year = today.year
if d.month == 12 and today.month == 1:
year -= 1
d = d.replace(year=year)
# convert to UTC
if timezone_id == 'Etc/UTC':
return d
local_tz = pytz.timezone(timezone_id)
return local_tz.localize(d, is_dst=None).astimezone(pytz.utc)