summaryrefslogtreecommitdiff
path: root/tests/mail/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #30058 -- Made SMTP EmailBackend.send_messages() return 0 for empty/err...Denis Stebunov2018-12-261-1/+6
* Fixed #29830 -- Fixed loss of custom utf-8 body encoding in mails.jannschu2018-10-221-1/+16
* Removed unnecessary str() in mail tests.Tim Graham2018-08-041-2/+2
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-161-3/+6
* Fixed #29140 -- Fixed EmailMessage crash when body is None.Williams Mendez2018-02-201-0/+5
* Refs #27795 -- Removed force_bytes/text() usage in tests.Tim Graham2018-02-071-5/+4
* Added a few tests for smtp EmailBackend.Mads Jensen2018-01-151-2/+24
* Fixed #28912 -- Made EmailMessage.message() omit an empty To header.Jon Dufresne2017-12-301-0/+4
* Fixed #28971 -- Made EmailMessage.message() set Cc from headers dict if it ex...Jon Dufresne2017-12-301-0/+7
* Tested passing To/Cc/Reply-To in EmailMessage(headers=...) without the corres...Jon Dufresne2017-12-291-0/+21
* Fixed #27857 -- Dropped support for Python 3.4.Tim Graham2017-09-251-6/+3
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-4/+5
* Fixed #26344 -- Made EmailMessage include alternatives when the body is empty...Igor Tokarev2017-09-041-0/+11
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-5/+4
* Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's attachme...kalombo2017-04-071-0/+7
* Tested EmailMessage(attachments=[MIMEText])kalombo2017-04-071-0/+6
* Fixed #27848 -- Prevented crash when attaching a .eml file to a messageClaude Paroz2017-04-011-0/+1
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-2/+0
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-2/+2
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-5/+5
* Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context ...Chillar Anand2017-01-261-4/+1
* Refs #23919 -- Removed misc Python 2/3 references.Tim Graham2017-01-251-3/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-11/+11
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-10/+10
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+2
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-34/+9
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Fixed #27696 -- Measured email long lines on encoded contentClaude Paroz2017-01-061-1/+2
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-18/+17
* Fixed #27469 -- Prevented sending email to empty addressesClaude Paroz2016-11-101-0/+16
* Fixed #27368 -- Modifed BaseEmailBackend.__enter__() to close the connection ...Jon Dufresne2016-10-211-16/+11
* Fixed #27333 -- Prevented BASE64 encoding in message.as_string() on Python 3Claude Paroz2016-10-121-0/+4
* Removed redundant usage of assertNotIn() in a mail test.Tim Graham2016-10-121-4/+1
* Refs #27210 -- Fixed isolation of test_fail_silently_on_connection_error.Tim Graham2016-09-301-23/+21
* Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection e...Vesteinn Snaebjarnarson2016-09-271-0/+14
* Fixed #26210 -- Prevented SMTP backend from trying to send mail after a conne...levental2016-09-211-0/+13
* Fixed #27131 -- Passed proper string type to SMTP connection loginClaude Paroz2016-08-311-2/+47
* Fixed #27007 -- Handled non-UTF-8 bytes objects for text/* attachments.Michael Schwarz2016-08-121-0/+25
* Fixed #27036 -- Made locmem email backend's send_messages() accept generators.Antoine Fontaine2016-08-081-6/+10
* Refs #27007 -- Enhanced mail text attachment testMichael Schwarz2016-08-071-3/+27
* Fixed #26802 -- Prevented crash when attaching bytes as text messageClaude Paroz2016-07-081-0/+8
* Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne2016-06-161-3/+3
* Refs #26712 -- Removed workarounds for PostgreSQL queries on TIME_ZONE changes.Simon Charette2016-06-061-3/+2
* Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting.Anton I. Sipos2016-06-041-1/+23
* Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of the...Sergei Maertens2016-05-061-1/+47
* Fixed #22561 -- Prevented too long lines in email messagesClaude Paroz2016-04-191-0/+16
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-7/+9