diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-29 22:31:10 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-29 22:31:10 +0000 |
commit | ab1dfc9541f1b87bdfff77da06713f713c7f8db3 (patch) | |
tree | da1df8887aac2254a1a67f3ec6c8fea93d3ad4fb | |
parent | a3737f12adae1ad6ae1b2aebb663de4e58daecec (diff) | |
download | prosody-ab1dfc9541f1b87bdfff77da06713f713c7f8db3.tar.gz prosody-ab1dfc9541f1b87bdfff77da06713f713c7f8db3.zip |
Don't use TLS connection handler when SSL/TLS not available or configured (thanks to Ricardo for finding)
-rwxr-xr-x | prosody | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |