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