Skip to content

Commit 88ed767

Browse files
author
Alexander Smishlajev
committed
fix typo in SMTP TLS option name: "MAIL_TLS_CERFILE" [SF#1435452]
1 parent a2bfecc commit 88ed767

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Fixed:
1111
- add permission filter to menu() implementations (sf bug 1431188)
1212
- lithuanian translation updated by Nerijus Baliunas (sf patch 1411175)
1313
- incompatibility with python2.3 in the mailer module (sf bug 1432602)
14+
- typo in SMTP TLS option name: "MAIL_TLS_CERFILE" (sf bug 1435452)
1415

1516

1617
2006-02-10 1.1.0

roundup/mailer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Sending Roundup-specific mail over SMTP.
22
"""
33
__docformat__ = 'restructuredtext'
4-
# $Id: mailer.py,v 1.16 2006-02-16 06:33:05 a1s Exp $
4+
# $Id: mailer.py,v 1.17 2006-02-21 05:48:23 a1s Exp $
55

66
import time, quopri, os, socket, smtplib, re, sys, traceback
77

@@ -189,7 +189,7 @@ def __init__(self, config):
189189
# start the TLS if requested
190190
if config["MAIL_TLS"]:
191191
self.starttls(config["MAIL_TLS_KEYFILE"],
192-
config["MAIL_TLS_CERFILE"])
192+
config["MAIL_TLS_CERTFILE"])
193193

194194
# ok, now do we also need to log in?
195195
mailuser = config["MAIL_USERNAME"]

0 commit comments

Comments
 (0)