mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_c2s: Disconnect accounts when they are disabled
We decided that at the first stage, accounts that are disabled should simply be prevented from authenticating, thus they should also be prevented from having connected sessions. Since this is aimed to be a moderation action for cases of abuse, they shouldn't be allowed to continue being connected.
This commit is contained in:
parent
bb65a83696
commit
893dce647b
1 changed files with 1 additions and 0 deletions
|
@ -266,6 +266,7 @@ end
|
|||
module:hook_global("user-password-changed", disconnect_user_sessions({ condition = "reset", text = "Password changed" }, true), 200);
|
||||
module:hook_global("user-role-changed", disconnect_user_sessions({ condition = "reset", text = "Role changed" }), 200);
|
||||
module:hook_global("user-deleted", disconnect_user_sessions({ condition = "not-authorized", text = "Account deleted" }), 200);
|
||||
module:hook_global("user-disabled", disconnect_user_sessions({ condition = "not-authorized", text = "Account disabled" }), 200);
|
||||
|
||||
module:hook_global("c2s-session-updated", function (event)
|
||||
sessions[event.session.conn] = event.session;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue