[Dovecot] Once again... finally fixed?

This commit is contained in:
andryyy
2019-01-31 22:18:32 +01:00
parent 7e5fc0f763
commit 3bfd2c8885
2 changed files with 4 additions and 4 deletions

View File

@@ -59,8 +59,8 @@ def notify_rcpt(rcpt, msg_count):
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())
with open('/templates/quarantine.tpl') as file_:
template = Template(file_.read())
else:
with open('/templates/quarantine.tpl') as file_:
template = Template(file_.read())
@@ -68,7 +68,7 @@ def notify_rcpt(rcpt, msg_count):
count = 0
while count < 15:
try:
server = smtplib.SMTP('postfix', 590, 'quarntine')
server = smtplib.SMTP('postfix', 590, 'quarantine')
server.ehlo()
msg = MIMEMultipart('alternative')
msg['From'] = r.get('Q_SENDER') or "quarantine@localhost"