Software /
code /
prosody
Diff
plugins/mod_legacyauth.lua @ 5126:a0673b644f05
mod_legacyauth: Fix for sending error response to unauthed s2s connections
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 13 Sep 2012 18:48:35 +0100 |
parent | 5084:82b9fe0c79c5 |
child | 5776:bd0ff8ae98a8 |
line wrap: on
line diff
--- a/plugins/mod_legacyauth.lua Thu Sep 13 18:31:34 2012 +0100 +++ b/plugins/mod_legacyauth.lua Thu Sep 13 18:48:35 2012 +0100 @@ -35,7 +35,7 @@ local session, stanza = event.origin, event.stanza; if session.type ~= "c2s_unauthed" then - session.send(st.error_reply(stanza, "cancel", "service-unavailable", "Legacy authentication is only allowed for unauthenticated client connections.")); + (session.sends2s or session.send)(st.error_reply(stanza, "cancel", "service-unavailable", "Legacy authentication is only allowed for unauthenticated client connections.")); return true; end