changeset 4116:391fa482f995

fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
author Richard Jones <richard@users.sourceforge.net>
date Tue, 17 Mar 2009 23:14:50 +0000
parents d61066deae67
children 4d1fa6e1fe8c
files CHANGES.txt roundup/mailer.py
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES.txt	Tue Mar 17 22:59:40 2009 +0000
+++ b/CHANGES.txt	Tue Mar 17 23:14:50 2009 +0000
@@ -7,6 +7,7 @@
 - bug introduced into CVS export and view
 - bugs introduced in the migration to the email package (issue 2550531)
 - handle bogus pagination values (issue 2550530)
+- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
 
 
 2009-03-13 1.4.7 (r4202)
--- a/roundup/mailer.py	Tue Mar 17 22:59:40 2009 +0000
+++ b/roundup/mailer.py	Tue Mar 17 23:14:50 2009 +0000
@@ -214,6 +214,7 @@
 
         # start the TLS if requested
         if config["MAIL_TLS"]:
+            self.ehlo()
             self.starttls(config["MAIL_TLS_KEYFILE"],
                 config["MAIL_TLS_CERTFILE"])
 

Roundup Issue Tracker: http://roundup-tracker.org/