Mercurial > prosody-wiki
annotate mod_muc_log_http.wiki @ 111:291ee152eea9
added a short install description and a note about the default port.
author | t.ephraim |
---|---|
date | Mon, 01 Feb 2010 16:22:39 +0000 |
parents | dfbbf18655db |
children | 0abc8d412aad |
rev | line source |
---|---|
95 | 1 #summary module which acts as a website to show mod_muc_log saved loggings. |
2 | |
3 = Introduction = | |
4 | |
5 This module will give you the option to show the logged muc conversations in a simple website. | |
6 | |
111
291ee152eea9
added a short install description and a note about the default port.
t.ephraim
parents:
101
diff
changeset
|
7 = Installation = |
291ee152eea9
added a short install description and a note about the default port.
t.ephraim
parents:
101
diff
changeset
|
8 |
291ee152eea9
added a short install description and a note about the default port.
t.ephraim
parents:
101
diff
changeset
|
9 Just copy the folder muc_log_http as it is, into the modules folder of your prosody. |
95 | 10 |
11 = Configuration Details = | |
12 | |
13 {{{ | |
14 Host "*" | |
15 modules_enabled = { | |
16 ..... | |
17 "muc_log_http"; | |
18 ..... | |
19 } | |
20 | |
21 muc_log_http = { | |
111
291ee152eea9
added a short install description and a note about the default port.
t.ephraim
parents:
101
diff
changeset
|
22 http_port = 5290; -- default is 5290 |
95 | 23 showJoin = false; -- default is true |
24 showStatus = false; -- default is true | |
101 | 25 theme = "default"; -- default is theme "default" |
95 | 26 } |
27 }}} | |
28 showJoin sets the default for showing joins or leaves. | |
29 showStatus sets the default for showing status changes. | |
30 | |
31 The http server part would then be reachable at the url: | |
32 {{{ | |
33 http://example.com:5290/muc_log/ | |
34 }}} | |
35 | |
36 | |
37 = TODO = | |
38 * log/output bans correctly | |
39 * let the admin choose to enable logging via room config | |
100 | 40 * quota ~ per day ?! |
95 | 41 * testing testing |