Changes between Initial Version and Version 1 of Ticket #31885
- Timestamp:
- Aug 18, 2020, 2:07:02 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31885
- Property Has patch set
- Property Patch needs improvement set
- Property Needs documentation set
- Property Needs tests set
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
- Property Summary add EmalBackend CA parameters #13305 → Update SMTP Email Backend to use an SSLContext.
-
Ticket #31885 – Description
initial v1 1 set ssl cert and key outside a SSLContext object are deprecated and we need add CA parameters to make the server authentication 1 Setting SSL cert and key in [https://docs.python.org/3.8/library/smtplib.html#smtplib.SMTP.starttls `SMTP.starttls()`] is deprecated (since Python 3.6) in favour of passing an SSLContext. Update the SMTP backend to use the newer API. 2 2 3 3 https://github.com/django/django/pull/13305