We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28241c commit c54cef4Copy full SHA for c54cef4
CHANGES.txt
@@ -7,6 +7,7 @@ Fixes:
7
- bug introduced into CVS export and view
8
- bugs introduced in the migration to the email package (issue 2550531)
9
- handle bogus pagination values (issue 2550530)
10
+- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
11
12
13
2009-03-13 1.4.7 (r4202)
roundup/mailer.py
@@ -214,6 +214,7 @@ def __init__(self, config):
214
215
# start the TLS if requested
216
if config["MAIL_TLS"]:
217
+ self.ehlo()
218
self.starttls(config["MAIL_TLS_KEYFILE"],
219
config["MAIL_TLS_CERTFILE"])
220
0 commit comments