Mercurial > p > roundup > code
diff roundup/mailer.py @ 3572:a052781093d7
fix typo in SMTP TLS option name: "MAIL_TLS_CERFILE" [SF#1435452]
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Tue, 21 Feb 2006 05:50:10 +0000 |
| parents | 3954fbcefae5 |
| children | 35811df7c783 |
line wrap: on
line diff
--- a/roundup/mailer.py Sat Feb 18 06:34:12 2006 +0000 +++ b/roundup/mailer.py Tue Feb 21 05:50:10 2006 +0000 @@ -1,7 +1,7 @@ """Sending Roundup-specific mail over SMTP. """ __docformat__ = 'restructuredtext' -# $Id: mailer.py,v 1.16 2006-02-16 06:33:05 a1s Exp $ +# $Id: mailer.py,v 1.17 2006-02-21 05:48:23 a1s Exp $ import time, quopri, os, socket, smtplib, re, sys, traceback @@ -189,7 +189,7 @@ # start the TLS if requested if config["MAIL_TLS"]: self.starttls(config["MAIL_TLS_KEYFILE"], - config["MAIL_TLS_CERFILE"]) + config["MAIL_TLS_CERTFILE"]) # ok, now do we also need to log in? mailuser = config["MAIL_USERNAME"]
