Diff

plugins/mod_tls.lua @ 1912:126401a7159f

require_encryption deprecated, use c2s_require_encryption instead
author Matthew Wild <mwild1@gmail.com>
date Mon, 05 Oct 2009 14:59:30 +0100
parent 1911:bfe120db1ec4
child 1913:da49a59dff7c
line wrap: on
line diff
--- a/plugins/mod_tls.lua	Mon Oct 05 14:52:30 2009 +0100
+++ b/plugins/mod_tls.lua	Mon Oct 05 14:59:30 2009 +0100
@@ -11,7 +11,7 @@
 local xmlns_stream = 'http://etherx.jabber.org/streams';
 local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls';
 
-local secure_auth_only = module:get_option("require_encryption");
+local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption");
 local secure_s2s_only = module:get_option("require_s2s_encryption");
 
 module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,