diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-16 18:49:14 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-16 18:49:14 +0100 |
commit | 478a2d42e6f1be1c45732d3851a65a99ea09565c (patch) | |
tree | a097c4f3a59bd0cc87d76bf637dff458fb5ff330 /plugins/mod_saslauth.lua | |
parent | 58049837e7a14744f37d0250c3a854bc312d9106 (diff) | |
parent | ee9ef878c4f1702f3bacfd8d3c0c98844c3b481f (diff) | |
download | prosody-478a2d42e6f1be1c45732d3851a65a99ea09565c.tar.gz prosody-478a2d42e6f1be1c45732d3851a65a99ea09565c.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r-- | plugins/mod_saslauth.lua | 6 |
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; |