mod_limits_exception/mod_limits_exception.lua
author Matthew Wild <mwild1@gmail.com>
Sun, 28 Aug 2022 11:25:21 +0100
changeset 5025 f62b091b1c81
parent 4566 28c16c93d79a
permissions -rw-r--r--
mod_sasl2: Eventually return true from success handler ...while allowing other handlers to run in the priority range -1000 to -2000.

local unlimited_jids = module:get_option_inherited_set("unlimited_jids", {});

if unlimited_jids:empty() then
	return;
end

module:hook("authentication-success", function (event)
	local session = event.session;
	local jid = session.username .. "@" .. session.host;
	if unlimited_jids:contains(jid) then
		if session.conn and session.conn.setlimit then
			session.conn:setlimit(0);
		elseif session.throttle then
			session.throttle = nil;
		end
	end
end);