diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-02-12 21:33:22 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-02-12 21:33:22 +0000 |
commit | 4bfd2f37a984ea4f40b5fb94e1333b4fe250e3fd (patch) | |
tree | 20b9967f24ff4b3909ba90a5459fba00a847ed04 /plugins | |
parent | 807c489de48ebe04d8c958ce50cb0444c9cf7311 (diff) | |
download | prosody-4bfd2f37a984ea4f40b5fb94e1333b4fe250e3fd.tar.gz prosody-4bfd2f37a984ea4f40b5fb94e1333b4fe250e3fd.zip |
mod_tls: Don't offer TLS on hosts that don't have any certs
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_tls.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 49ee18c9..54b48161 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -14,9 +14,11 @@ local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls'; local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption"); local secure_s2s_only = module:get_option("s2s_require_encryption"); +local host = hosts[module.host]; + module:add_handler("c2s_unauthed", "starttls", xmlns_starttls, function (session, stanza) - if session.conn.starttls then + if session.conn.starttls and host.ssl_ctx_in then session.send(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); if session.host and hosts[session.host].ssl_ctx_in then @@ -34,7 +36,7 @@ module:add_handler("c2s_unauthed", "starttls", xmlns_starttls, module:add_handler("s2sin_unauthed", "starttls", xmlns_starttls, function (session, stanza) - if session.conn.starttls then + if session.conn.starttls and host.ssl_ctx_in then session.sends2s(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); if session.to_host and hosts[session.to_host].ssl_ctx_in then |