plugins/mod_tls.lua
changeset 2636 d2805ad5b736
parent 2635 e79057cf2538
child 2654 07a6f5f9d4be
--- a/plugins/mod_tls.lua	Sun Feb 14 09:59:57 2010 +0500
+++ b/plugins/mod_tls.lua	Sun Feb 14 10:00:39 2010 +0500
@@ -26,9 +26,9 @@
 
 local function can_do_tls(session)
 	if session.type == "c2s_unauthed" then
-		return session.username and session.conn.starttls and host.ssl_ctx_in;
+		return session.conn.starttls and host.ssl_ctx_in;
 	elseif session.type == "s2sin_unauthed" then
-		return session.to_host and session.conn.starttls and host.ssl_ctx_in;
+		return session.conn.starttls and host.ssl_ctx_in;
 	end
 	return false;
 end