2019-01-29 07:11:12 +08:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import smtplib
|
|
|
|
import os
|
|
|
|
import mysql.connector
|
|
|
|
from email.MIMEMultipart import MIMEMultipart
|
|
|
|
from email.MIMEText import MIMEText
|
|
|
|
from email.Utils import COMMASPACE, formatdate
|
|
|
|
import cgi
|
|
|
|
import jinja2
|
|
|
|
from jinja2 import Template
|
|
|
|
import json
|
|
|
|
import redis
|
|
|
|
import time
|
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
r = redis.StrictRedis(host='redis', decode_responses=True, port=6379, db=0)
|
|
|
|
r.ping()
|
|
|
|
except Exception as ex:
|
|
|
|
print '%s - trying again...' % (ex)
|
|
|
|
time.sleep(3)
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
|
|
|
time_now = int(time.time())
|
|
|
|
|
|
|
|
def query_mysql(query, headers = True, update = False):
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
cnx = mysql.connector.connect(unix_socket = '/var/run/mysqld/mysqld.sock', user='__DBUSER__', passwd='__DBPASS__', database='__DBNAME__', charset="utf8")
|
|
|
|
except Exception as ex:
|
|
|
|
print '%s - trying again...' % (ex)
|
|
|
|
time.sleep(3)
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
cur = cnx.cursor()
|
|
|
|
cur.execute(query)
|
|
|
|
if not update:
|
|
|
|
result = []
|
|
|
|
columns = tuple( [d[0].decode('utf8') for d in cur.description] )
|
|
|
|
for row in cur:
|
2019-02-01 03:53:08 +08:00
|
|
|
if headers:
|
2019-01-29 07:11:12 +08:00
|
|
|
result.append(dict(zip(columns, row)))
|
|
|
|
else:
|
|
|
|
result.append(row)
|
|
|
|
cur.close()
|
|
|
|
cnx.close()
|
|
|
|
return result
|
|
|
|
else:
|
|
|
|
cnx.commit()
|
|
|
|
cur.close()
|
|
|
|
cnx.close()
|
|
|
|
|
|
|
|
def notify_rcpt(rcpt, msg_count):
|
|
|
|
meta_query = query_mysql('SELECT id, subject, sender, created FROM quarantine WHERE notified = 0 AND rcpt = "%s"' % (rcpt))
|
|
|
|
if r.get('Q_HTML'):
|
|
|
|
try:
|
|
|
|
template = Template(r.get('Q_HTML'))
|
|
|
|
except:
|
|
|
|
print "Error: Cannot parse quarantine template, falling back to default template."
|
|
|
|
with open('/templates/quarantine.tpl') as file_:
|
|
|
|
template = Template(file_.read())
|
|
|
|
else:
|
|
|
|
with open('/templates/quarantine.tpl') as file_:
|
|
|
|
template = Template(file_.read())
|
|
|
|
html = template.render(meta=meta_query, counter=msg_count)
|
|
|
|
count = 0
|
|
|
|
while count < 15:
|
|
|
|
try:
|
2019-02-01 04:45:58 +08:00
|
|
|
server = smtplib.SMTP('postfix', 590, 'quarntine')
|
2019-01-29 07:11:12 +08:00
|
|
|
server.ehlo()
|
|
|
|
msg = MIMEMultipart('alternative')
|
|
|
|
msg['From'] = r.get('Q_SENDER') or "quarantine@localhost"
|
|
|
|
msg['Subject'] = r.get('Q_SUBJ') or "Spam Quarantine Notification"
|
|
|
|
msg['Date'] = formatdate(localtime = True)
|
|
|
|
text = "You have %d new items" % (msg_count)
|
2019-02-01 04:45:58 +08:00
|
|
|
text_part = MIMEText(text, 'plain', 'utf-8')
|
|
|
|
html_part = MIMEText(html, 'html', 'utf-8')
|
2019-01-29 07:11:12 +08:00
|
|
|
msg.attach(text_part)
|
|
|
|
msg.attach(html_part)
|
|
|
|
msg['To'] = str(rcpt)
|
|
|
|
text = msg.as_string()
|
|
|
|
server.sendmail(msg['From'], msg['To'], text)
|
|
|
|
server.quit()
|
|
|
|
for res in meta_query:
|
|
|
|
query_mysql('UPDATE quarantine SET notified = 1 WHERE id = "%d"' % (res['id']), update = True)
|
|
|
|
r.hset('Q_LAST_NOTIFIED', record['rcpt'], time_now)
|
|
|
|
break
|
|
|
|
except Exception as ex:
|
|
|
|
print '%s' % (ex)
|
|
|
|
time.sleep(3)
|
|
|
|
|
|
|
|
records = query_mysql('SELECT count(id) AS counter, rcpt FROM quarantine WHERE notified = 0 GROUP BY rcpt')
|
|
|
|
|
|
|
|
for record in records:
|
2019-02-01 03:53:08 +08:00
|
|
|
last_notification = int(r.hget('Q_LAST_NOTIFIED', record['rcpt']) or 0)
|
2019-01-29 07:11:12 +08:00
|
|
|
attrs_json = query_mysql('SELECT attributes FROM mailbox WHERE username = "%s"' % (record['rcpt']))
|
|
|
|
attrs = json.loads(str(attrs_json[0]['attributes']))
|
|
|
|
if attrs['quarantine_notification'] == 'hourly':
|
2019-01-29 19:13:26 +08:00
|
|
|
if last_notification == 0 or (last_notification + 3600) < time_now:
|
|
|
|
print "Notifying %s about %d new items in quarantine" % (record['rcpt'], record['counter'])
|
2019-01-29 07:11:12 +08:00
|
|
|
notify_rcpt(record['rcpt'], record['counter'])
|
|
|
|
elif attrs['quarantine_notification'] == 'daily':
|
2019-01-29 19:13:26 +08:00
|
|
|
if last_notification == 0 or (last_notification + 86400) < time_now:
|
|
|
|
print "Notifying %s about %d new items in quarantine" % (record['rcpt'], record['counter'])
|
2019-01-29 07:11:12 +08:00
|
|
|
notify_rcpt(record['rcpt'], record['counter'])
|
|
|
|
elif attrs['quarantine_notification'] == 'weekly':
|
2019-01-29 19:13:26 +08:00
|
|
|
if last_notification == 0 or (last_notification + 604800) < time_now:
|
|
|
|
print "Notifying %s about %d new items in quarantine" % (record['rcpt'], record['counter'])
|
2019-01-29 07:11:12 +08:00
|
|
|
notify_rcpt(record['rcpt'], record['counter'])
|
|
|
|
else:
|
|
|
|
break
|