summaryrefslogtreecommitdiff
path: root/django/core/mail/backends
AgeCommit message (Expand)Author
2017-11-06[2.0.x] Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-06-01Sorted imports per isort 4.2.9.Tim Graham
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2016-12-23Refs #26487 -- Removed unneeded ehlo() calls in SMTP backend.Tim Graham
2016-10-21Fixed #27368 -- Modifed BaseEmailBackend.__enter__() to close the connection ...Jon Dufresne
2016-10-05Removed unused variable in django/core/mail/backends/smtp.py.Tim Graham
2016-09-27Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection e...Vesteinn Snaebjarnarson
2016-09-21Fixed #26210 -- Prevented SMTP backend from trying to send mail after a conne...levental
2016-08-31Fixed #27131 -- Passed proper string type to SMTP connection loginClaude Paroz
2016-08-08Fixed #27036 -- Made locmem email backend's send_messages() accept generators.Antoine Fontaine
2016-05-06Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of the...Sergei Maertens
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-10-12Fixed #23063 -- Convert \n and \r to \r\n when using the SMTP backend as per ...Florian Apolloner
2014-09-13Fixed #23461 -- Added EMAIL_TIMEOUT settingJosé Padilla
2014-09-10Fixed #20743 -- Added support for keyfile/certfile in SMTP connections.Andi Albrecht
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-03-31Fixed #22327 -- Turned BaseEmailBackend into a context managerDaniel Neuhäuser
2014-01-12Undelete the `return True` removed in 4e0a2fe.Marc Tamlyn
2013-12-30Decode mails using the message encoding.Florian Apolloner
2013-12-30Changed console and filebackend to use msg.as_bytes to output the data as it ...Florian Apolloner
2013-12-28Introduced as_bytes for SafeMIMEText (and other SafeMIME-classes).Florian Apolloner
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-25Undelete the login() call inadvertantly removed in 4e0a2fe59cClaude Paroz
2013-10-24Fixed #21271 -- Added timeout parameter to SMTP EmailBackend.SusanTan
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-10Whitespace cleanup.Tim Graham
2013-10-05Fixed #21189: Cleaned up usage of bare except clauses.Baptiste Mispelon
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-07-11Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backendClaude Paroz
2013-04-03Adds generators support for email backends that do not support it.Brendon Crawford
2013-01-03Replaced deprecated sslerror by ssl.SSLErrorClaude Paroz
2013-01-03Fixed #19382 -- Stopped smtp backend raising exception when already closedClaude Paroz
2013-01-03Fixed #19134 -- Allowed closing smtp backend when the server is stoppedClaude Paroz
2012-11-14Fixed #19186 -- Fixed sending mail with unicode content on Python 3Claude Paroz
2012-09-22Fixed #18861 -- Triggered message validation with locmem email backendClaude Paroz
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-23Switch to using context managers for acquiring and releasing locks.Alex Gaynor
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2011-07-03Fixed #15750 -- Handle empty mail server credentials gracefully. Thanks, Lean...Jannis Leidel
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-15Fixed #15042 -- Ensured that email addresses without a domain can still be ma...Russell Keith-Magee
2010-12-21Fixed #14301 -- Further refine changes made in r14216 to support non-ASCII ch...Jannis Leidel
2009-11-04Fixed #12147 -- Replaced use of try-except-finally to allow for Python 2.4 su...Russell Keith-Magee