Mercurial > prosody-modules
view mod_block_registrations/mod_block_registrations.lua @ 1594:620cc035ae1e
mod_admin_message: New IM-based administration console
This module provides a console over XMPP.
All the commands of the mod_admin_telnet module are available to Prosody admins
from an XMPP client.
author | Mikael Berthe <mikael@lilotux.net> |
---|---|
date | Sun, 25 Jan 2015 19:52:39 +0100 |
parents | dbaa67babeb4 |
children | 27aa58ed3e2e |
line wrap: on
line source
local st = require "util.stanza"; local nodeprep = require "util.encodings".stringprep.nodeprep; local block_users = module:get_option_set("block_registrations_users", { "admin" }); local block_patterns = module:get_option_set("block_registrations_matching", {}); local require_pattern = module:get_option_string("block_registrations_require"); function is_blocked(username) -- Check if the username is simply blocked if block_users:contains(username) then return true; end for pattern in block_patterns do if username:match(pattern) then return true; end end -- Not blocked, but check that username matches allowed pattern if require_pattern and not username:match(require_pattern) then return true; end end module:hook("user-registering", function(event) local username = event.username; if is_blocked(username) then event.allowed = false; return true; end end, 10);