mod_muc_webchat_url: Fix default url
[prosody-modules.git] / mod_muc_log_http / README.markdown
bloba670a2c765a342aa38ddb958197999f4069d7374
1 ---
2 labels:
3 - 'Stage-Beta'
4 summary: Provides a web interface to stored chatroom logs
5 ...
7 Introduction
8 ============
10 This module provides a built-in web interface to view chatroom logs
11 stored by [mod\_muc\_log](mod_muc_log.html).
13 Installation
14 ============
16 Just copy the folder muc\_log\_http as it is, into the modules folder of
17 your Prosody installation.
19 Configuration Details
20 =====================
22 Example configuration:
24         Component "conference.example.com" "muc"
25         modules_enabled = {
26             .....
27             "muc_log";
28             "muc_log_http";
29             .....
30         }
32         muc_log_http = { -- These are the defaults
33             show_join = true;
34             show_presences = true;
35             show_status = true;
36             theme = "prosody";
37             url_base = "muc_log";
38         }
40 **show\_join** sets the default for showing joins or leaves.
41 **show\_status** sets the default for showing status changes.
43 The web interface would then be reachable at the address:
45     http://conference.example.com:5280/muc_log/
47 TODO
48 ====
50 -   Log bans correctly
51 -   Quota \~ per day ?!
52 -   Testing testing :)