comparison mod_storage_muc_log.wiki @ 494:fb9e558dd1df

add page
author Kim Alvefur <zash@zash.se>
date Tue, 18 Nov 2014 14:03:41 +0100
parents
children
comparison
equal deleted inserted replaced
493:278feae4f92e 494:fb9e558dd1df
1 #summary Storage module using mod_muc_log data with new stanza archive API
2 #labels Stage-Alpha
3
4 = Introduction =
5
6 [mod_muc_log] provided logging of chatrooms running on the server to Prosody's data store. This module gives access to this data using the 0.10+ stanza archive API, allowing legacy log data to be used with [mod_mam_muc] and [mod_http_muc_log].
7
8 = Details =
9
10 Replace mod_muc_log (and mod_muc_log_http) in your config with
11
12 {{{
13 Component "conference.example.org" "muc"
14 modules_enabled = {
15 -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log
16 "mam_muc"; -- Does logging to storage backend configured below
17
18 -- "muc_log_http"; -- Replaced by the mod_http_muc_log
19 "http_muc_log";
20 }
21 storage = {
22 muc_log = "muc_log";
23 }
24 }}}
25
26 = Compatibility =
27
28 Requires Prosody 0.10 or above.