comparison mod_storage_muc_log/README.markdown @ 1820:8de50be756e5

Various README files: Correct indentation levels, fix syntax and other small fixes
author Kim Alvefur <zash@zash.se>
date Wed, 02 Sep 2015 17:30:33 +0200
parents 4d73a1a6ba68
children 79b9bd84b91c
comparison
equal deleted inserted replaced
1819:1b08597b5e6f 1820:8de50be756e5
17 Details 17 Details
18 ======= 18 =======
19 19
20 Replace mod\_muc\_log (and mod\_muc\_log\_http) in your config with 20 Replace mod\_muc\_log (and mod\_muc\_log\_http) in your config with
21 21
22 Component "conference.example.org" "muc" 22 ``` {.lua}
23 modules_enabled = { 23 Component "conference.example.org" "muc"
24 -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log 24 modules_enabled = {
25 "mam_muc"; -- Does logging to storage backend configured below 25 -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log
26 "mam_muc"; -- Does logging to storage backend configured below
26 27
27 -- "muc_log_http"; -- Replaced by the mod_http_muc_log 28 -- "muc_log_http"; -- Replaced by the mod_http_muc_log
28 "http_muc_log"; 29 "http_muc_log";
29 } 30 }
30 storage = { 31 storage = {
31 muc_log = "muc_log"; 32 muc_log = "muc_log";
32 } 33 }
34 ```
33 35
34 Compatibility 36 Compatibility
35 ============= 37 =============
36 38
37 Requires Prosody 0.10 or above. 39 Requires Prosody 0.10 or above.