Software /
code /
prosody-modules
Comparison
mod_mam_muc/README.markdown @ 1980:5e0ee0e4d5b1
mod_mam_muc/README: Fix markdown syntax
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 17 Dec 2015 16:53:24 +0100 |
parent | 1979:3a66cff4354f |
child | 2327:a348c105e05d |
comparison
equal
deleted
inserted
replaced
1979:3a66cff4354f | 1980:5e0ee0e4d5b1 |
---|---|
22 ``` {.lua} | 22 ``` {.lua} |
23 Component "conference.example.org" "muc" | 23 Component "conference.example.org" "muc" |
24 modules_enabled = { | 24 modules_enabled = { |
25 "mam_muc", | 25 "mam_muc", |
26 } | 26 } |
27 ``` {.lua} | 27 ``` |
28 | 28 |
29 And configure it to use an archive-capable storage module: | 29 And configure it to use an archive-capable storage module: |
30 | 30 |
31 ``` | 31 ``` {.lua} |
32 storage = { | 32 storage = { |
33 muc_log = "sql"; -- Requires 0.10 or later | 33 muc_log = "sql"; -- Requires 0.10 or later |
34 } | 34 } |
35 ``` | 35 ``` |
36 | 36 |