Fixed compilation of smtp module.

This commit is contained in:
Dominik Picheta
2012-07-25 22:02:39 +01:00
parent 840e5f34ef
commit 05551c40cf

View File

@@ -81,7 +81,8 @@ proc connect*(address: string, port = 25,
result.sock = socket()
if ssl:
when defined(ssl):
result.sock.wrapSocket(verifyMode = CVerifyNone)
let ctx = newContext(verifyMode = CVerifyNone)
ctx.wrapSocket(result.sock)
else:
raise newException(ESystem,
"SMTP module compiled without SSL support")