# HG changeset patch # User Kim Alvefur # Date 1338304802 -7200 # Node ID 9a01c6bc435ebb355d86c962c6bc974382dcb9c7 # Parent e27adbf4e7438ea9e1cf68ff6128b326f3f6f006 mod_proxy65: Fix ACL diff -r e27adbf4e743 -r 9a01c6bc435e plugins/mod_proxy65.lua --- a/plugins/mod_proxy65.lua Mon May 28 15:59:10 2012 +0000 +++ b/plugins/mod_proxy65.lua Tue May 29 17:20:02 2012 +0200 @@ -124,9 +124,11 @@ -- check ACL while proxy_acl and #proxy_acl > 0 do -- using 'while' instead of 'if' so we can break out of it local jid = stanza.attr.from; + local allow; for _, acl in ipairs(proxy_acl) do - if jid_compare(jid, acl) then break; end + if jid_compare(jid, acl) then allow = true; break; end end + if allow then break; end module:log("warn", "Denying use of proxy for %s", tostring(stanza.attr.from)); origin.send(st.error_reply(stanza, "auth", "forbidden")); return true;