You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/isso/notify.py

80 lines
2.1 KiB

# -*- encoding: utf-8 -*-
import time
import logging
from smtplib import SMTP, SMTP_SSL, SMTPException
from email.mime.text import MIMEText
def create(comment, subject, permalink, remote_addr):
rv = []
rv.append("%s schrieb:" % (comment["author"] or "Jemand"))
rv.append("")
rv.append(comment["text"])
rv.append("")
if comment["website"]:
rv.append("Webseite des Kommentators: %s" % comment["website"])
rv.append("IP Adresse: %s" % remote_addr)
rv.append("Link zum Kommentar: %s" % permalink)
return subject, u'\n'.join(rv)
class Connection(object):
def __init__(self, conf):
self.conf = conf
def __enter__(self):
self.server = (SMTP_SSL if self.conf.getboolean('SMTP', 'ssl') else SMTP)(
host=self.conf.get('SMTP', 'host'), port=self.conf.getint('SMTP', 'port'))
if self.conf.get('SMTP', 'username') and self.conf.get('SMTP', 'password'):
self.server.login(self.conf.get('SMTP', 'username'),
self.conf.get('SMTP', 'password'))
return self.server
def __exit__(self, exc_type, exc_value, traceback):
self.server.quit()
class SMTPMailer(object):
def __init__(self, conf):
self.conf = conf
self.from_addr = conf.get('SMTP', 'from')
self.to_addr = conf.get('SMTP', 'to')
with Connection(self.conf):
pass
def sendmail(self, subject, body, retries=5):
msg = MIMEText(body, 'plain', 'utf-8')
msg['From'] = "Ich schrei sonst! <%s>" % self.from_addr
msg['To'] = self.to_addr
msg['Subject'] = subject.encode('utf-8')
for i in range(retries):
try:
with Connection(self.conf) as con:
con.sendmail(self.from_addr, self.to_addr, msg.as_string())
except SMTPException:
logging.exception("uncaught exception, %i of %i:", i + 1, retries)
else:
return
time.sleep(60)
class NullMailer(object):
def sendmail(self, subject, body, retries=5):
pass