# HG changeset patch # User Matthew Wild # Date 1633893029 -3600 # Node ID ace4f251a64b15d6e8f601e1e6ee19e69cbc4ce8 # Parent f5245291118743d6fa0597682c672ecbd055795d mod_cloud_notify_extensions: Convenience meta-module for Tigase push extensions diff -r f52452911187 -r ace4f251a64b mod_cloud_notify_extensions/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_cloud_notify_extensions/README.markdown Sun Oct 10 20:10:29 2021 +0100 @@ -0,0 +1,38 @@ +--- +summary: "Tigase custom push extensions for iOS" +labels: +- 'Stage-Beta' +... + +Introduction +============ + +This is a meta-module that simply enables all the modules required to support +Siskin or Snikket iOS on a Prosody server. + +These are currently: + +- mod_cloud_notify_encrypted +- mod_cloud_notify_priority_tag +- mod_cloud_notify_filters + +See the individual module pages for more details. + +Note: On MUC services you should also load mod_muc_offline_delivery directly +under the MUC component in your config file, that is not handled by this +module. + +Configuration +============= + +There is no configuration for this module, just add it to +modules\_enabled as normal. + +Compatibility +============= + + ----- ------- + 0.11 Should work + ----- ------- + trunk Works + ----- ------- diff -r f52452911187 -r ace4f251a64b mod_cloud_notify_extensions/mod_cloud_notify_extensions.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_cloud_notify_extensions/mod_cloud_notify_extensions.lua Sun Oct 10 20:10:29 2021 +0100 @@ -0,0 +1,3 @@ +module:depends("cloud_notify_encrypted"); +module:depends("cloud_notify_priority_tag"); +module:depends("cloud_notify_filters");