Mercurial > prosody-modules
view mod_nooffline_noerror/mod_nooffline_noerror.lua @ 3957:7e96b95924bd
mod_muc_archive: Add fork of mod_muc_log that uses newer storage API
author | JC Brand <jc@opkode.com> |
---|---|
date | Fri, 27 Mar 2020 15:51:57 +0100 |
parents | 7e7ac4af6e0c |
children | a411a8e028ed |
line wrap: on
line source
-- Ignore disabled offline storage -- -- Copyright (C) 2019-2020 Thilo Molitor -- -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- -- depend on mod_mam to make sure mam is at least loaded and active module:depends "mam"; -- ignore offline messages and don't return any error (the message will be already in MAM at this point) -- this is *only* triggered if mod_offline is *not* loaded and completely ignored otherwise module:hook("message/offline/handle", function(event) event.origin.log("info", "Ignoring offline message (mod_offline seems to be *not* loaded)..."); return true; end, -100);