59
|
1 #summary Module which logs muc conversations to a file |
|
2 |
|
3 = Introduction = |
|
4 |
|
5 This module logs the conversation of muc running on this server to a daily changing file. |
|
6 There is a file per room. |
|
7 |
|
8 = Details = |
|
9 |
|
10 Here is a example config with just the muclogging parts added to the right sections: |
|
11 {{{ |
|
12 host "*" |
|
13 muc_log = { |
|
14 folder = "/var/log/prosody/rooms"; |
|
15 http_port = 5290; |
|
16 } |
|
17 |
|
18 component "rooms.example.com" "muc" |
|
19 logging = true; |
|
20 }}} |
|
21 |
|
22 The http server part would then be reachable at the url: |
|
23 {{{ |
|
24 http://example.com:5290/muc_log/ |
|
25 }}} |
|
26 |
|
27 = TODO = |
|
28 * testing testing |