mod_storage_muc_log/README.wiki
changeset 1807 4d73a1a6ba68
parent 1806 0ab737feada6
child 1808 3228fb928a93
--- a/mod_storage_muc_log/README.wiki	Fri Aug 28 16:05:00 2015 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-#summary Storage module using mod_muc_log data with new stanza archive API
-#labels Stage-Alpha,ArchiveStorage
-
-= 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.