- Update eximstats-html-update.py to run under Python 3. OBS-URL: https://build.opensuse.org/request/show/904696 OBS-URL: https://build.opensuse.org/package/show/server:mail/exim?expand=0&rev=254
40 lines
761 B
Python
40 lines
761 B
Python
#!/usr/bin/python3
|
|
|
|
import os, os.path, glob
|
|
|
|
outdir_base = '/srv/www/eximstats'
|
|
|
|
def main():
|
|
os.chdir('/var/log/exim')
|
|
reports = glob.glob('main.log-*.gz') + glob.glob('main.log-*.bz2')
|
|
|
|
for report in reports:
|
|
(base, ext) = os.path.splitext(report)
|
|
daystr = base[-8:]
|
|
|
|
outdir = os.path.join(outdir_base, daystr)
|
|
|
|
if os.path.exists(outdir):
|
|
continue
|
|
print('processing', daystr)
|
|
os.mkdir(outdir)
|
|
|
|
if ext == '.gz':
|
|
catprg = 'zcat'
|
|
elif ext == '.bz2':
|
|
catprg = 'bzcat'
|
|
|
|
|
|
|
|
os.system('%s %s | eximstats -html -charts -chartdir %s > %s/index.html' \
|
|
% (catprg, report, outdir, outdir))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|