# HG changeset patch # User Kim Alvefur # Date 1644524463 -3600 # Node ID ed23bbf3b946da9f8c38f29ce3bb9655348c4fca # Parent b4424f131d5c5f2c9d7e6c3f80b5485f6891f415 mod_invites_register: Load mod_register_ibr in invite only mode This ensures that registration actually works even if allow_registration is not enabled. diff -r b4424f131d5c -r ed23bbf3b946 plugins/mod_invites_register.lua --- a/plugins/mod_invites_register.lua Thu Feb 10 20:44:45 2022 +0100 +++ b/plugins/mod_invites_register.lua Thu Feb 10 21:21:03 2022 +0100 @@ -10,6 +10,10 @@ local invites; if prosody.process_type == "prosody" then invites = module:depends("invites"); + + if invite_only then + module:depends("register_ibr"); + end end local legacy_invite_stream_feature = st.stanza("register", { xmlns = "urn:xmpp:invite" }):up();