1
0
mirror of https://github.com/django/django.git synced 2025-10-31 01:25:32 +00:00

Undelete the login() call inadvertantly removed in 4e0a2fe59c

Refs #21271.
This commit is contained in:
Claude Paroz
2013-10-25 11:19:41 +02:00
parent 43cfc652d2
commit 3afde36d03
2 changed files with 12 additions and 0 deletions

View File

@@ -56,6 +56,8 @@ class EmailBackend(BaseEmailBackend):
self.connection.ehlo()
self.connection.starttls()
self.connection.ehlo()
if self.username and self.password:
self.connection.login(self.username, self.password)
except smtplib.SMTPException:
if not self.fail_silently:
raise