Software / code / prosody-modules
Comparison
mod_mam_adhoc/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 |
| parent | 1803:4d73a1a6ba68 |
comparison
equal
deleted
inserted
replaced
| 1819:1b08597b5e6f | 1820:8de50be756e5 |
|---|---|
| 22 | 22 |
| 23 First copy the module to the prosody plugins directory. | 23 First copy the module to the prosody plugins directory. |
| 24 | 24 |
| 25 Then add "mam\_adhoc" to your modules\_enabled list: | 25 Then add "mam\_adhoc" to your modules\_enabled list: |
| 26 | 26 |
| 27 modules_enabled = { | 27 ``` {.lua} |
| 28 -- ... | 28 modules_enabled = { |
| 29 "mam", | 29 -- ... |
| 30 "mam_adhoc", | 30 "mam", |
| 31 -- ... | 31 "mam_adhoc", |
| 32 } | 32 -- ... |
| 33 } | |
| 34 ``` |