Mercurial > prosody-modules
view mod_limits_exception/mod_limits_exception.lua @ 6144:983549664bd4
mod_storage_metronome_readonly: Fix wrongly done refactoring
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Tue, 28 Jan 2025 21:22:05 +0100 |
| parents | 28c16c93d79a |
| children |
line wrap: on
line source
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);
