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/uidata/messages_sent.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

114 lines
3.4 KiB
Python

from .Timeseries import Timeseries
from .exceptions import InvalidArgsError
with open(__file__.replace('.py','.1.sql')) as fp:
select_1 = fp.read()
with open(__file__.replace('.py','.2.sql')) as fp:
select_2 = fp.read()
with open(__file__.replace('.py','.3.sql')) as fp:
select_3 = fp.read()
with open(__file__.replace('.py','.4.sql')) as fp:
select_4 = fp.read()
def messages_sent(conn, args):
'''
messages sent by local users
- delivered locally & remotely
'''
try:
ts = Timeseries(
"Messages sent by users",
args['start'],
args['end'],
args['binsize']
)
except KeyError:
raise InvalidArgsError()
s_sent = ts.add_series('sent', 'messages sent')
s_local = ts.add_series('local', 'local recipients')
s_remote = ts.add_series('remote', 'remote recipients')
c = conn.cursor()
try:
for row in c.execute(select_1.format(timefmt=ts.timefmt), {
'start_date':ts.start,
'end_date':ts.end
}):
ts.dates.append(row['bin'])
s_sent['values'].append(row['sent_count'])
date_idx = -1
# the returned bins are the same as select_1 because the
# querie's WHERE and JOINs are the same
for row in c.execute(select_2.format(timefmt=ts.timefmt), {
'start_date':ts.start,
'end_date':ts.end
}):
if date_idx>=0 and ts.dates[date_idx] == row['bin']:
if row['delivery_service']=='smtp':
s_remote['values'][-1] = row['delivery_count']
elif row['delivery_service']=='lmtp':
s_local['values'][-1] = row['delivery_count']
else:
date_idx += 1
if date_idx >= len(ts.dates):
break
if row['delivery_service']=='smtp':
s_remote['values'].append(row['delivery_count'])
s_local['values'].append(0)
elif row['delivery_service']=='lmtp':
s_remote['values'].append(0)
s_local['values'].append(row['delivery_count'])
top_senders1 = {
'start': ts.start,
'end': ts.end,
'y': 'Top 10 users by count',
'fields': ['user','count'],
'field_types': ['text/email','number/plain'],
'items': []
}
for row in c.execute(select_3, {
'start_date':ts.start,
'end_date':ts.end
}):
top_senders1['items'].append({
'user': row['username'],
'count': row['count']
})
top_senders2 = {
'start': ts.start,
'end': ts.end,
'y': 'Top 10 users by size',
'fields': ['user','size'],
'field_types': ['text/email','number/size'],
'items': []
}
for row in c.execute(select_4, {
'start_date':ts.start,
'end_date':ts.end
}):
top_senders2['items'].append({
'user': row['username'],
'size': row['message_size_total']
})
finally:
c.close()
return {
'top_senders_by_count': top_senders1,
'top_senders_by_size': top_senders2,
'ts_sent': ts.asDict(),
}