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 |
|
7 |
|
8 = Configuration Details = |
|
9 |
|
10 {{{ |
|
11 Host "*" |
|
12 modules_enabled = { |
|
13 ..... |
|
14 "muc_log_http"; |
|
15 ..... |
|
16 } |
|
17 |
|
18 muc_log_http = { |
|
19 http_port = 5290; |
|
20 showJoin = false; -- default is true |
|
21 showStatus = false; -- default is true |
|
22 } |
|
23 }}} |
|
24 showJoin sets the default for showing joins or leaves. |
|
25 showStatus sets the default for showing status changes. |
|
26 |
|
27 The http server part would then be reachable at the url: |
|
28 {{{ |
|
29 http://example.com:5290/muc_log/ |
|
30 }}} |
|
31 |
|
32 |
|
33 = TODO = |
|
34 * log/output bans correctly |
|
35 * show a nice errormessage when lfs is not installed |
|
36 * let the admin choose to enable logging via room config |
|
37 * show the available days in a kind of calender way |
|
38 * testing testing |