plugins/mod_tls.lua

changeset 2602
dff84fdebac0
parent 2601
e64c6a4aa50b
child 2604
ed32f7bad620
--- a/plugins/mod_tls.lua	Fri Feb 12 02:39:50 2010 +0500
+++ b/plugins/mod_tls.lua	Fri Feb 12 02:43:02 2010 +0500
@@ -18,7 +18,7 @@
 
 module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event)
 	local origin = event.origin;
-	if origin.conn.starttls and origin.type == "c2s_unauthed" or origin.type == "s2sin_unauthed" then
+	if origin.conn.starttls then
 		(origin.sends2s or origin.send)(st.stanza("proceed", { xmlns = xmlns_starttls }));
 		origin:reset_stream();
 		local host = origin.to_host or origin.host;

mercurial