Comparison

mod_muc_activity/README.md @ 6133:a0429c322454

mod_muc_activity: create module
author Jonas Schäfer <jonas@wielicki.name>
date Sat, 04 Jan 2025 19:04:26 +0100
comparison
equal deleted inserted replaced
6132:ffec70ddbffc 6133:a0429c322454
1 ---
2 summary: 'XEP-0502 (MUC Activity Indicator) implementation'
3 ...
4
5 This module provides an implementation of [XEP-0502 (MUC Activity Indicator)](https://xmpp.org/extensions/xep-0502.html) for Prosody.
6
7 To enable it, load it on a MUC host, for example:
8
9 ```lua
10 Component "chat.domain.example" "muc"
11 modules_enabled = { "muc_activity" }
12 ```
13
14 When this module is loaded, it will expose the average number of messages per hour for all public MUCs.
15 The number is calculated over a 24 hour window.
16
17 Note that this module may impact server performance on servers with many MUCs.