mod_muc_webchat_url: Fix default url
[prosody-modules.git] / mod_storage_muc_log / README.markdown
blob8c84dc0bb8b98901f2c52b20f543b9aa0528217e
1 ---
2 labels:
3 - 'Stage-Alpha'
4 - ArchiveStorage
5 summary: 'Storage module using mod\_muc\_log data with new stanza archive API'
6 ---
8 Introduction
9 ============
11 [mod\_muc\_log] provided logging of chatrooms running on the server to
12 Prosody's data store. This module gives access to this data using the
13 0.10+ stanza archive API, allowing legacy log data to be used with
14 [mod\_mam\_muc] and [mod\_http\_muc\_log].
16 Details
17 =======
19 Replace [mod\_muc\_log] and [mod\_muc\_log\_http] in your config
20 with
22 ``` {.lua}
23 Component "conference.example.org" "muc"
24 modules_enabled = {
25   -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log
26     "mam_muc"; -- Does logging to storage backend configured below
28     -- "muc_log_http"; -- Replaced by the mod_http_muc_log
29     "http_muc_log";
31 storage = {
32   muc_log = "muc_log";
34 ```
36 Compatibility
37 =============
39   version   status
40   --------- ---------------
41   0.9       unknown
42   0.10      works
43   0.11      does not work