# HG changeset patch # User Kim Alvefur # Date 1416315821 -3600 # Node ID fb9e558dd1df084248c92854a4f6a5cb362f81d9 # Parent 278feae4f92e0ed78225f6d41465b719e6def77c add page diff -r 278feae4f92e -r fb9e558dd1df mod_storage_muc_log.wiki --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_storage_muc_log.wiki Tue Nov 18 14:03:41 2014 +0100 @@ -0,0 +1,28 @@ +#summary Storage module using mod_muc_log data with new stanza archive API +#labels Stage-Alpha + += Introduction = + +[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]. + += Details = + +Replace mod_muc_log (and mod_muc_log_http) in your config with + +{{{ +Component "conference.example.org" "muc" + modules_enabled = { + -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log + "mam_muc"; -- Does logging to storage backend configured below + + -- "muc_log_http"; -- Replaced by the mod_http_muc_log + "http_muc_log"; + } + storage = { + muc_log = "muc_log"; + } +}}} + += Compatibility = + +Requires Prosody 0.10 or above.