Comparison

mod_muc_log_http/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 1821:mod_muc_log_http/README.markdown@79b9bd84b91c
child 6198:7205e0348bbe
comparison
equal deleted inserted replaced
6002:5a65a632d5b9 6003:fe081789f7b5
1 ---
2 labels:
3 - 'Stage-Beta'
4 summary: Provides a web interface to stored chatroom logs
5 ...
6
7 Introduction
8 ============
9
10 This module provides a built-in web interface to view chatroom logs
11 stored by [mod\_muc\_log](mod_muc_log.html).
12
13 Installation
14 ============
15
16 Just copy the folder muc\_log\_http as it is, into the modules folder of
17 your Prosody installation.
18
19 Configuration Details
20 =====================
21
22 Example configuration:
23
24 Component "conference.example.com" "muc"
25 modules_enabled = {
26 .....
27 "muc_log";
28 "muc_log_http";
29 .....
30 }
31
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 }
39
40 **show\_join** sets the default for showing joins or leaves.
41 **show\_status** sets the default for showing status changes.
42
43 The web interface would then be reachable at the address:
44
45 http://conference.example.com:5280/muc_log/
46
47 TODO
48 ====
49
50 - Log bans correctly
51 - Quota \~ per day ?!
52 - Testing testing :)