From ab1dfc9541f1b87bdfff77da06713f713c7f8db3 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Mon, 29 Dec 2008 22:31:10 +0000 Subject: Don't use TLS connection handler when SSL/TLS not available or configured (thanks to Ricardo for finding) --- prosody | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosody b/prosody index 2cff8ca4..b4a18c67 100755 --- a/prosody +++ b/prosody @@ -140,7 +140,7 @@ local function do_ports(option, listener, default, conntype) end end -do_ports("c2s_ports", "xmppclient", {5222}, "tls"); +do_ports("c2s_ports", "xmppclient", {5222}, (global_ssl_ctx and "tls") or "tcp"); do_ports("s2s_ports", "xmppserver", {5269}, "tcp"); do_ports("legacy_ssl_ports", "xmppclient", {}, "ssl"); -- cgit v1.2.3