prosody: Improve support for push notifications

This enables the required `muc_offline_delivery` module, and allows for
non-standard push notification filtering extensions.
This commit is contained in:
Alex Palaistras 2022-03-30 19:55:39 +01:00
parent 9e282965bf
commit 717bd2679c
2 changed files with 3 additions and 1 deletions

View File

@ -56,6 +56,7 @@ modules_enabled = {
-- Push notifications -- Push notifications
"cloud_notify"; -- Support for push notifications. "cloud_notify"; -- Support for push notifications.
"cloud_notify_filters"; -- Non-standard extensions for push notification filtering preferences.
"cloud_notify_extensions"; -- Additional, non-standard extensions for push notification support. "cloud_notify_extensions"; -- Additional, non-standard extensions for push notification support.
-- Spam/abuse management -- Spam/abuse management

View File

@ -24,7 +24,8 @@ Component(host_external) "muc"
max_history_messages = 100 max_history_messages = 100
modules_enabled = { modules_enabled = {
"muc_mam", "muc_mam",
"vcard_muc" "vcard_muc",
"muc_offline_delivery"
} }
-- The component responsible for HTTP file uploads. -- The component responsible for HTTP file uploads.