view plugins/mod_register.lua @ 13972:67b8f2ee41ed 13.0

mod_http_file_share: Improve debug logging around unexpected file sizes These didn't have any debug logging and it can be confusing that the "file too large" is also used for a cut-off chunked upload. Not sure if it is worth it to double those checks into > and < just for this.
author Kim Alvefur <zash@zash.se>
date Thu, 02 Oct 2025 21:04:20 +0200
parents bb010c3c8c93
children
line wrap: on
line source

-- Prosody IM
-- Copyright (C) 2008-2010 Matthew Wild
-- Copyright (C) 2008-2010 Waqas Hussain
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--


local allow_registration = module:get_option_boolean("allow_registration", false);

if allow_registration then
	module:depends("register_ibr");
	module:depends("watchregistrations");
end

module:depends("user_account_management");