aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-03-22 12:41:38 +0100
committerKim Alvefur <zash@zash.se>2014-03-22 12:41:38 +0100
commit41e0c46e264dbb51f4229912e20356c8fd4e9af2 (patch)
tree0a148294b25b4046a5802a735f586975c85c747a
parentf3aa32f2f5a7accbca168905225fbd83ca04b46e (diff)
downloadprosody-41e0c46e264dbb51f4229912e20356c8fd4e9af2.tar.gz
prosody-41e0c46e264dbb51f4229912e20356c8fd4e9af2.zip
mod_saslauth: Only do c2s SASL on normal VirtualHosts
-rw-r--r--plugins/mod_saslauth.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index 201cc477..c5d3dc91 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -197,7 +197,7 @@ module:hook("stanza/urn:ietf:params:xml:ns:xmpp-sasl:auth", function(event)
return s2s_external_auth(session, stanza)
end
- if session.type ~= "c2s_unauthed" then return; end
+ if session.type ~= "c2s_unauthed" or module:get_host_type() ~= "local" then return; end
if session.sasl_handler and session.sasl_handler.selected then
session.sasl_handler = nil; -- allow starting a new SASL negotiation before completing an old one