mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_limits: Allow configuring a list of unrestricted JIDs (fixes #1323)
This commit is contained in:
parent
a6571e3ef3
commit
1b534392de
1 changed files with 17 additions and 0 deletions
|
@ -96,3 +96,20 @@ end
|
|||
function module.unload()
|
||||
filters.remove_filter_hook(filter_hook);
|
||||
end
|
||||
|
||||
function module.add_host(module)
|
||||
local unlimited_jids = module:get_option_inherited_set("unlimited_jids", {});
|
||||
|
||||
if not unlimited_jids:empy() then
|
||||
module:hook("authentication-success", function (event)
|
||||
local session = event.session;
|
||||
local session_type = session.type:match("^[^_]+");
|
||||
local jid = session.username .. "@" .. session.host;
|
||||
if unlimited_jids:contains(jid) then
|
||||
local filter_set = type_filters[session_type];
|
||||
filters.remove_filter(session, "bytes/in", filter_set.bytes_in);
|
||||
session.throttle = nil;
|
||||
end
|
||||
end);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue