Wrong variable logged in email notification

This commit is contained in:
Ruud
2013-10-30 23:09:45 +01:00
parent d6fa5c97db
commit d023eb8f1f

View File

@@ -33,7 +33,7 @@ class Email(Notification):
try:
# Open the SMTP connection, via SSL if requested
log.debug("Connecting to host %s on port %s" % (smtp_host, smtp_port))
log.debug("Connecting to host %s on port %s" % (smtp_server, smtp_port))
log.debug("SMTP over SSL %s", ("enabled" if ssl == 1 else "disabled"))
mailserver = smtplib.SMTP_SSL(smtp_server) if ssl == 1 else smtplib.SMTP(smtp_server)