aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_saslauth.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-03-16 18:49:14 +0100
committerKim Alvefur <zash@zash.se>2013-03-16 18:49:14 +0100
commit1e5040dab723c166096811422eaf3ae8e338b00e (patch)
treea097c4f3a59bd0cc87d76bf637dff458fb5ff330 /plugins/mod_saslauth.lua
parent61db12f927ed7e3532862616919623e8bac306f8 (diff)
parent04b647a6e847fa6ace495f3c8c7a2e9a5425fb1a (diff)
downloadprosody-1e5040dab723c166096811422eaf3ae8e338b00e.tar.gz
prosody-1e5040dab723c166096811422eaf3ae8e338b00e.zip
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r--plugins/mod_saslauth.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index f6abd3b8..264ee967 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -88,11 +88,7 @@ module:hook_stanza(xmlns_sasl, "success", function (session, stanza)
module:log("debug", "SASL EXTERNAL with %s succeeded", session.to_host);
session.external_auth = "succeeded"
session:reset_stream();
-
- local default_stream_attr = {xmlns = "jabber:server", ["xmlns:stream"] = "http://etherx.jabber.org/streams",
- ["xmlns:db"] = 'jabber:server:dialback', version = "1.0", to = session.to_host, from = session.from_host};
- session.sends2s("<?xml version='1.0'?>");
- session.sends2s(st.stanza("stream:stream", default_stream_attr):top_tag());
+ session:open_stream();
s2s_make_authenticated(session, session.to_host);
return true;