comparison mod_muc_log.wiki @ 112:058ede538839

Clarified documentation, config and dependency on something else for viewing the logs.
author MWild1
date Mon, 01 Feb 2010 17:28:54 +0000
parents 82e7feef398c
children 49ec592e43f6
comparison
equal deleted inserted replaced
111:291ee152eea9 112:058ede538839
1 #summary Module which logs muc conversations to a file 1 #summary Log chatroom messages to disk
2 #labels Stage-Beta 2 #labels Stage-Beta
3 3
4 = Introduction = 4 = Introduction =
5 5
6 This module logs the conversation of muc running on this server to a daily changing file. 6 This module logs the conversation of chatrooms running on the server to Prosody's data store. To view them you will need a module such as [[mod_muc_log_http]].
7 There are files per room and day.
8 7
9 = Details = 8 = Details =
10 9
11 Here is a example config with just the muclogging parts added to the right sections: 10 mod_muc_log must be loaded individually for the components that need it. Assuming you have a MUC component already running on conference.example.org then you can add muc_log to it like so:
11
12 {{{ 12 {{{
13 component "rooms.example.com" "muc" 13 Component "conference.example.org" "muc"
14 modules_enabled = { 14 modules_enabled = {
15 "muc_log"; 15 "muc_log";
16 }; 16 }
17 }}} 17 }}}
18 18
19 The logs are stored via datamanager. 19 = Compatibility =
20 || 0.6 || Works ||
21 || 0.7 || Works ||