comparison mod_muc_log_http.wiki @ 95:f18d4607c52d

Created wiki page through web user interface.
author t.ephraim
date Tue, 17 Nov 2009 20:33:19 +0000
parents
children 6eb99327f14a
comparison
equal deleted inserted replaced
94:82e7feef398c 95:f18d4607c52d
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