comparison mod_muc_ping/README.markdown @ 3356:31e113823463

mod_muc_ping: Add more details to README
author Kim Alvefur <zash@zash.se>
date Tue, 09 Oct 2018 16:47:27 +0200
parents 35dc7c38e362
children 861ddc74edd9
comparison
equal deleted inserted replaced
3355:3bc68057f232 3356:31e113823463
1 This module implements the [Server 1 This module implements the [Server
2 Optimization](https://xmpp.org/extensions/xep-0410.html#serveroptimization) 2 Optimization](https://xmpp.org/extensions/xep-0410.html#serveroptimization)
3 part of [XEP-0410: MUC Self-Ping] 3 part of [XEP-0410: MUC Self-Ping]
4 4
5 # Usage
6
7 The module is loaded on MUC components:
8
9 ```lua
10 Component "muc.example.com" "muc"
11 modules_enabled = {
12 "muc_ping";
13 }
14 ```
15
16 # Configuration
17
18 No options.
19
20 # Compatibility
21
5 It should work with Prosody up until 0.10.x. 22 It should work with Prosody up until 0.10.x.
23
24 Prosody trunk natively supports XEP-0410 so this module is not needed.