mod_muc_webchat_url: Fix default url
[prosody-modules.git] / mod_muc_notifications / README.markdown
blob4d48cfe75b1f6832ac311a0749c6108795520f2a
1 ---
2 labels:
3 - 'Stage-alpha'
4 summary: 'Notify of MUC messages to not present members'
5 ...
7 Introduction
8 ============
10 This module listens to MUC messages and sends a notification to the
11 MUC members not present in the MUC at that moment.
13 By default, the notification will be a message with a simple text as body.
15 By sending this "out-of-MUC" notification, not-joined members will be able to
16 know that new messages are available.
18 Usage
19 =====
21 First copy the module to the prosody plugins directory.
23 Then add "muc\_notifications" to your modules\_enabled list in your
24 MUC component:
26 ```{.lua}
27 Component "conference.example.org" "muc"
28 modules_enabled = {
29         "muc_notifications",
31 ```
33 You may also want to enable "offline\_hints" module so the notification messages
34 sent by this module are not added to the offline storage for later delivery.
36 Configuration
37 =============
39   Option                      Description
40   --------------------------- ----------------------------------------------------------------------------------------------
41   muc\_notification\_invite   If set to `true`, the notification sent will take the form of a MUC invite. (default: `false`)