Good afternoon and, first of all, thank you for hard and good work on this platform!
I apologize in advance because this might be a quite silly question but I don’t seem to be able to find a solution.
I’ve been trying to use the modules in /usr/share/jitsi-meet/prosody-plugins
but those didn’t seem to be working at all. I’ve added some logs to ensure that those were loaded and they’re but, for some reason I’m unable to figure out, hooks doesn’t seem to be called.
I’ve tried to use existing mod_muc_max_occupants.lua
but, just to verify that the problem was in hooks, I’ve just written this very basic test script:
-- Simple hooks test
module:log('info', 'Loading hooks test plugin');
module:hook("authentication-success", function(event)
module:log("info", "User successfully authenticated");
end);
I have been looking for a similar problem in the topics but seems that nobody had any problem like this.
Thank you very much!