Software /
code /
prosody-modules
Comparison
mod_storage_muc_log/README.md @ 6003:fe081789f7b5
All community modules: Unify file extention of Markdown files to .md
author | Menel <menel@snikket.de> |
---|---|
date | Tue, 22 Oct 2024 10:26:01 +0200 |
parent | 3457:mod_storage_muc_log/README.markdown@058844edcaaf |
comparison
equal
deleted
inserted
replaced
6002:5a65a632d5b9 | 6003:fe081789f7b5 |
---|---|
1 --- | |
2 labels: | |
3 - 'Stage-Alpha' | |
4 - ArchiveStorage | |
5 summary: 'Storage module using mod\_muc\_log data with new stanza archive API' | |
6 --- | |
7 | |
8 Introduction | |
9 ============ | |
10 | |
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]. | |
15 | |
16 Details | |
17 ======= | |
18 | |
19 Replace [mod\_muc\_log] and [mod\_muc\_log\_http] in your config | |
20 with | |
21 | |
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 | |
27 | |
28 -- "muc_log_http"; -- Replaced by the mod_http_muc_log | |
29 "http_muc_log"; | |
30 } | |
31 storage = { | |
32 muc_log = "muc_log"; | |
33 } | |
34 ``` | |
35 | |
36 Compatibility | |
37 ============= | |
38 | |
39 version status | |
40 --------- --------------- | |
41 0.9 unknown | |
42 0.10 works | |
43 0.11 does not work |