diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-05-03 18:22:46 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2016-05-10 18:17:43 +0200 |
| commit | c3e108694966f045adcc0ba11133a2b3bf238770 (patch) | |
| tree | 94d3dfa8c80dc34592ee7c16df470eeb1fc2f034 /docs | |
| parent | 31e0314979f6aa1c66828b55dd222c32aad94e9e (diff) | |
Stopped truncating AdminEmailHandler message subjects
Refs #26572, #17281. The RFC doesn't limit total length, just the line length
which is already taken care of by Python itself.
Thanks Tim Graham for the review.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.10.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt index 0d808a9454..a0b0a873cc 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -836,6 +836,10 @@ Miscellaneous <django.core.files.storage.Storage.generate_filename>` instead. It might be possible to use :attr:`~django.db.models.FileField.upload_to` also. +* The subject of mail sent by ``AdminEmailHandler`` is no longer truncated at + 989 characters. If you were counting on a limited length, truncate the subject + yourself. + .. _deprecated-features-1.10: Features deprecated in 1.10 |
