Software /
code /
prosody-modules
Comparison
mod_csi_muc_priorities/README.markdown @ 3639:562d3b219876
mod_csi_muc_priorities: Add an example
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 02 Aug 2019 08:04:16 +0200 |
parent | 3638:6f3e878537f4 |
comparison
equal
deleted
inserted
replaced
3638:6f3e878537f4 | 3639:562d3b219876 |
---|---|
20 A message of type groupchat from an address in this list will not be | 20 A message of type groupchat from an address in this list will not be |
21 considered important enough to send it to an inactive client, unless it | 21 considered important enough to send it to an inactive client, unless it |
22 is from the current user or mentions of their nickname. **Note** that | 22 is from the current user or mentions of their nickname. **Note** that |
23 mention support require the separate module [mod_track_muc_joins] | 23 mention support require the separate module [mod_track_muc_joins] |
24 to also be loaded. | 24 to also be loaded. |
25 | |
26 ``` {.lua} | |
27 modules_enabled = { | |
28 -- other modules etc | |
29 | |
30 "csi_simple", | |
31 "csi_muc_priorities", | |
32 "track_muc_joins", -- optional | |
33 } | |
34 ``` |