Software /
code /
prosody-modules
Comparison
mod_storage_muc_log/README.markdown @ 1803:4d73a1a6ba68
Convert all wiki pages to Markdown
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 28 Aug 2015 18:03:58 +0200 |
parent | 1782:mod_storage_muc_log/README.wiki@29f3d6b7ad16 |
child | 1820:8de50be756e5 |
comparison
equal
deleted
inserted
replaced
1802:0ab737feada6 | 1803:4d73a1a6ba68 |
---|---|
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](mod_muc_log.md) provided logging of chatrooms running on | |
12 the server to Prosody's data store. This module gives access to this | |
13 data using the 0.10+ stanza archive API, allowing legacy log data to be | |
14 used with [mod\_mam\_muc](mod_mam_muc.md) and | |
15 [mod\_http\_muc\_log](mod_http_muc_log.md). | |
16 | |
17 Details | |
18 ======= | |
19 | |
20 Replace mod\_muc\_log (and mod\_muc\_log\_http) in your config with | |
21 | |
22 Component "conference.example.org" "muc" | |
23 modules_enabled = { | |
24 -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log | |
25 "mam_muc"; -- Does logging to storage backend configured below | |
26 | |
27 -- "muc_log_http"; -- Replaced by the mod_http_muc_log | |
28 "http_muc_log"; | |
29 } | |
30 storage = { | |
31 muc_log = "muc_log"; | |
32 } | |
33 | |
34 Compatibility | |
35 ============= | |
36 | |
37 Requires Prosody 0.10 or above. |