| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-04-07 | Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's ↵ | kalombo | |
| attachments arg. | |||
| 2017-04-01 | Fixed #27848 -- Prevented crash when attaching a .eml file to a message | Claude Paroz | |
| Thanks Sébastien Ramage for the report. | |||
| 2017-02-21 | Refs #27656 -- Updated django.core docstring verbs according to PEP 257. | Anton Samarchyan | |
| 2017-02-09 | Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode(). | Tim Graham | |
| 2017-02-01 | Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments. | Vytis Banaitis | |
| 2017-01-29 | Removed unneeded parentheses in class definitions | Claude Paroz | |
| 2017-01-26 | Refs #23919, #27778 -- Removed obsolete mentions of unicode. | Vytis Banaitis | |
| 2017-01-25 | Refs #23919 -- Removed misc Python 2/3 references. | Tim Graham | |
| 2017-01-25 | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | |
| 2017-01-20 | Refs #23919 -- Removed unneeded str() calls | Claude Paroz | |
| 2017-01-20 | Refs #23919 -- Removed unneeded force_str calls | Claude Paroz | |
| 2017-01-19 | Fixed #23905, refs #23919 -- Used make_msgid() from stdlib. | Tim Graham | |
| 2017-01-19 | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | |
| 2017-01-18 | Refs #23919 -- Removed most of remaining six usage | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-18 | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | |
| Thanks Tim Graham and Simon Charette for the reviews. | |||
| 2017-01-18 | Refs #23919 -- Removed six.PY2/PY3 usage | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-18 | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | |
| 2017-01-06 | Fixed #27696 -- Measured email long lines on encoded content | Claude Paroz | |
| Thanks Pavel Pokrovskiy for the report and Tim Graham for the review. | |||
| 2016-12-23 | Refs #26487 -- Removed unneeded ehlo() calls in SMTP backend. | Tim Graham | |
| starttls(), login(), and other connection methods already call the method as needed. | |||
| 2016-11-14 | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | |
| 2016-11-10 | Fixed #27469 -- Prevented sending email to empty addresses | Claude Paroz | |
| Thanks Jarek Glowacki for the report. | |||
| 2016-10-21 | Fixed #27368 -- Modifed BaseEmailBackend.__enter__() to close the connection ↵ | Jon Dufresne | |
| if an exception occurs. Fixes unclosed socket ResourceWarning in mail test. Thanks Claude Paroz for the review. | |||
| 2016-10-12 | Fixed #27333 -- Prevented BASE64 encoding in message.as_string() on Python 3 | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-10-05 | Removed unused variable in django/core/mail/backends/smtp.py. | Tim Graham | |
| 2016-09-27 | Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection ↵ | Vesteinn Snaebjarnarson | |
| error. | |||
| 2016-09-21 | Fixed #26210 -- Prevented SMTP backend from trying to send mail after a ↵ | levental | |
| connection failure. | |||
| 2016-08-31 | Fixed #27131 -- Passed proper string type to SMTP connection login | Claude Paroz | |
| Passing an Unicode string on Python 2 was crashing the connection. Thanks slavugan@gmail.com for the report, and Tim Graham for the review. | |||
| 2016-08-12 | Fixed #27007 -- Handled non-UTF-8 bytes objects for text/* attachments. | Michael Schwarz | |
| The fallback logic which allows non-UTF-8 encoded files to be passed to attach_file() even when a `text/*` mime type has been specified is moved to attach(). Both functions now fall back to a content type of `application/octet-stream`. A side effect is that a file's content is decoded in memory instead of opening it in text mode and reading it into a string. Some mimetype-related logic in _create_attachment() has become obsolete as the code moved from attach_file() to attach() already handles this. | |||
| 2016-08-08 | Fixed #27036 -- Made locmem email backend's send_messages() accept generators. | Antoine Fontaine | |
| 2016-07-08 | Fixed #26802 -- Prevented crash when attaching bytes as text message | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-06-04 | Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting. | Anton I. Sipos | |
| When EMAIL_USE_LOCALTIME=True, send emails with a Date header in the local time zone. | |||
| 2016-05-10 | Fixed #26580 -- Updated references to obsolete RFC 2822. | Vasiliy Faronov | |
| Didn't rename django.utils.feedgenerator.rfc2822_date() as some external code may rely on it. | |||
| 2016-05-06 | Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of ↵ | Sergei Maertens | |
| the address. On Python 3, sending emails failed for addresses containing non-ASCII characters due to the usage of the legacy Python email.utils.formataddr() function. This is fixed by using the proper Address object on Python 3. | |||
| 2016-04-19 | Fixed #22561 -- Prevented too long lines in email messages | Claude Paroz | |
| Thanks NotSqrt for the excellent report and Tim Graham for the review. | |||
| 2016-04-08 | Fixed E128 flake8 warnings in django/. | Tim Graham | |
| 2015-07-25 | Fixed #24623 -- Fixed EmailMessage.attach_file() with text files on Python 3. | Konrad Świat | |
| Thanks tkrapp for the report and Tim Graham for the review. | |||
| 2015-07-20 | Replaced six.BytesIO with io.BytesIO | Tim Graham | |
| 2015-06-27 | Sorted imports in __init__.py files. | Tim Graham | |
| 2015-06-18 | Removed support for Python 3.3. | Tim Graham | |
| 2015-03-13 | Fixed #24416 -- Added support for lazy email addresses. | medmunds | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-17 | Removed compatibility with Python 3.2. | Tim Graham | |
| 2014-11-28 | Fixed #23910 -- Added reply_to parameter to EmailMessage | Martin Blech | |
| Thanks to Berker Peksag and Tim Graham for the review and suggestions. | |||
| 2014-11-27 | Fixed #23924 -- Made EmailMessage raise TypeError for type checks | Martin Blech | |
| 2014-11-24 | Removed workaround for lack of os.getpid() in Jython. | Tim Graham | |
| The Jython bug was fixed in http://bugs.jython.org/issue1518 (tested on Jython 2.7b3); also updated make_msgid() to be more like the version in Python 3.2+; refs #23905. Thanks Simon Charette for testing and review. | |||
| 2014-11-24 | Fixed #13694 -- Made SafeMIMEText's constructor compatible with MIMEText. | Berker Peksag | |
| 2014-10-12 | Fixed #23063 -- Convert \n and \r to \r\n when using the SMTP backend as per ↵ | Florian Apolloner | |
| RFC. | |||
| 2014-09-29 | Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282. | Thomas Chaumeny | |
| Thanks Collin Anderson for the review. | |||
| 2014-09-27 | Updated comment about Python issue | Claude Paroz | |
| 2014-09-13 | Fixed #23461 -- Added EMAIL_TIMEOUT setting | José Padilla | |
