Skip to content

Commit c54cef4

Browse files
author
Richard Jones
committed
fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
1 parent f28241c commit c54cef4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Fixes:
77
- bug introduced into CVS export and view
88
- bugs introduced in the migration to the email package (issue 2550531)
99
- handle bogus pagination values (issue 2550530)
10+
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
1011

1112

1213
2009-03-13 1.4.7 (r4202)

roundup/mailer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ def __init__(self, config):
214214

215215
# start the TLS if requested
216216
if config["MAIL_TLS"]:
217+
self.ehlo()
217218
self.starttls(config["MAIL_TLS_KEYFILE"],
218219
config["MAIL_TLS_CERTFILE"])
219220

0 commit comments

Comments
 (0)