Mercurial > prosody-modules
annotate 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 |
rev | line source |
---|---|
3928
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
1 -- Ignore disabled offline storage |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
2 -- |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
3 -- Copyright (C) 2019-2020 Thilo Molitor |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
4 -- |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
5 -- This project is MIT/X11 licensed. Please see the |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
6 -- COPYING file in the source package for more information. |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
7 -- |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
8 |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
9 -- depend on mod_mam to make sure mam is at least loaded and active |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
10 module:depends "mam"; |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
11 |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
12 -- ignore offline messages and don't return any error (the message will be already in MAM at this point) |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
13 -- this is *only* triggered if mod_offline is *not* loaded and completely ignored otherwise |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
14 module:hook("message/offline/handle", function(event) |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
15 event.origin.log("info", "Ignoring offline message (mod_offline seems to be *not* loaded)..."); |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
16 return true; |
7e7ac4af6e0c
mod_nooffline_noerror: New module that disables errors for disabled offline storage
tmolitor <thilo@eightysoft.de>
parents:
diff
changeset
|
17 end, -100); |