Software /
code /
prosody-modules
Comparison
mod_csi_simple_compat/README.md @ 6003:fe081789f7b5
All community modules: Unify file extention of Markdown files to .md
author | Menel <menel@snikket.de> |
---|---|
date | Tue, 22 Oct 2024 10:26:01 +0200 |
parent | 4006:mod_csi_simple_compat/README.markdown@fcea7cf91702 |
comparison
equal
deleted
inserted
replaced
6002:5a65a632d5b9 | 6003:fe081789f7b5 |
---|---|
1 # About | |
2 | |
3 This module allows using the [mod_csi_simple][doc:modules:mod_csi_simple] | |
4 setting `csi_important_payloads` (added in trunk/0.12) in Prosody 0.11.x. | |
5 | |
6 # Config | |
7 | |
8 ``` | |
9 modules_enabled = { | |
10 -- other modules etc | |
11 "csi_simple", | |
12 "csi_simple_compat", | |
13 } | |
14 | |
15 csi_important_payloads = { | |
16 -- Anything in this namespace: | |
17 "{urn:example:important-namespace}", | |
18 -- Specific element name and namespace: | |
19 "{urn:example:xmpp:priority}super-important", | |
20 } | |
21 ``` | |
22 | |
23 # Example | |
24 | |
25 ``` lua | |
26 csi_important_payloads = { | |
27 -- XEP-0353: Jingle Message Initiation | |
28 "{urn:xmpp:jingle-message:0}", | |
29 } | |
30 ``` | |
31 |