mod_storage_muc_log/README.wiki
changeset 1786 29f3d6b7ad16
equal deleted inserted replaced
1785:12ac88940fe3 1786:29f3d6b7ad16
       
     1 #summary Storage module using mod_muc_log data with new stanza archive API
       
     2 #labels Stage-Alpha,ArchiveStorage
       
     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.