aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_tls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r--plugins/mod_tls.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua
index 67d8d5d7..1a00c36e 100644
--- a/plugins/mod_tls.lua
+++ b/plugins/mod_tls.lua
@@ -26,9 +26,9 @@ local host = hosts[module.host];
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