mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
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.
34 lines
791 B
Python
34 lines
791 B
Python
import datetime
|
|
import threading
|
|
|
|
#
|
|
# thread-safe dict cache
|
|
#
|
|
|
|
class DictCache(object):
|
|
def __init__(self, valid_for):
|
|
'''`valid_for` must be a datetime.timedelta object indicating how long
|
|
a cache item is valid
|
|
|
|
'''
|
|
self.obj = None
|
|
self.time = None
|
|
self.valid_for = valid_for
|
|
self.guard = threading.Lock()
|
|
|
|
def get(self):
|
|
now = datetime.datetime.now()
|
|
with self.guard:
|
|
if self.obj and (now - self.time) <= self.valid_for:
|
|
return self.obj.copy()
|
|
|
|
def set(self, obj):
|
|
with self.guard:
|
|
self.obj = obj.copy()
|
|
self.time = datetime.datetime.now()
|
|
|
|
def reset(self):
|
|
with self.guard:
|
|
self.obj = None
|
|
self.time = None
|