| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-01-02 | Used 4 space hanging indent for dictionaries. | Tim Graham | |
| Thanks Mariusz Felisiak for auditing. | |||
| 2018-12-26 | Fixed #30058 -- Made SMTP EmailBackend.send_messages() return 0 for ↵ | Denis Stebunov | |
| empty/error cases. | |||
| 2018-10-22 | Fixed #29830 -- Fixed loss of custom utf-8 body encoding in mails. | jannschu | |
| 2018-08-04 | Removed unnecessary str() in mail tests. | Tim Graham | |
| Unnecessary since their introduction in fa75b2cb512409116b6f1b5229d6f99074d8e452. | |||
| 2018-03-16 | Fixed hanging indentation in various code. | Mariusz Felisiak | |
| 2018-02-20 | Fixed #29140 -- Fixed EmailMessage crash when body is None. | Williams Mendez | |
| 2018-02-07 | Refs #27795 -- Removed force_bytes/text() usage in tests. | Tim Graham | |
| 2018-01-15 | Added a few tests for smtp EmailBackend. | Mads Jensen | |
| 2017-12-30 | Fixed #28912 -- Made EmailMessage.message() omit an empty To header. | Jon Dufresne | |
| 2017-12-30 | Fixed #28971 -- Made EmailMessage.message() set Cc from headers dict if it ↵ | Jon Dufresne | |
| exists. | |||
| 2017-12-29 | Tested passing To/Cc/Reply-To in EmailMessage(headers=...) without the ↵ | Jon Dufresne | |
| corresponding argument. | |||
| 2017-09-25 | Fixed #27857 -- Dropped support for Python 3.4. | Tim Graham | |
| 2017-09-07 | Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()." | Tim Graham | |
| This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda because try/except performs better. | |||
| 2017-09-04 | Fixed #26344 -- Made EmailMessage include alternatives when the body is ↵ | Igor Tokarev | |
| empty and it has attachments. | |||
| 2017-06-28 | Fixed #27818 -- Replaced try/except/pass with contextlib.suppress(). | Mads Jensen | |
| 2017-04-07 | Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's ↵ | kalombo | |
| attachments arg. | |||
| 2017-04-07 | Tested EmailMessage(attachments=[MIMEText]) | kalombo | |
| 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-03-04 | Refs #27795 -- Removed unneeded force_text calls | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-02-09 | Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode(). | Tim Graham | |
| 2017-02-07 | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-26 | Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context ↵ | Chillar Anand | |
| manager. | |||
| 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 django.utils._os.upath()/npath()/abspathu() usage. | Tim Graham | |
| These functions do nothing on Python 3. | |||
| 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-11-10 | Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. | za | |
| 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-12 | Removed redundant usage of assertNotIn() in a mail test. | Tim Graham | |
| The Content-Transfer-Encoding header won't be repeated, so checking the header is sufficient. | |||
| 2016-09-30 | Refs #27210 -- Fixed isolation of test_fail_silently_on_connection_error. | Tim Graham | |
| The test wouldn't pass if a mail server is running on the system. | |||
| 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-08-07 | Refs #27007 -- Enhanced mail text attachment test | Michael Schwarz | |
| The test now also checks whether the sent message's attachment has the expected name, content and mime type. | |||
| 2016-07-08 | Fixed #26802 -- Prevented crash when attaching bytes as text message | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-06-16 | Fixed #26747 -- Used more specific assertions in the Django test suite. | Jon Dufresne | |
| 2016-06-06 | Refs #26712 -- Removed workarounds for PostgreSQL queries on TIME_ZONE changes. | Simon Charette | |
| 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-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. | |||
