comparison mod_mam.wiki @ 387:6f559c056dc8

Update for sql2 change.
author Kim Alvefur <zash@zash.se>
date Sat, 13 Jul 2013 17:41:05 +0200
parents fc11f3985d9b
children 56912134d96b
comparison
equal deleted inserted replaced
386:46342407997c 387:6f559c056dc8
13 13
14 First copy the module to the prosody plugins directory. 14 First copy the module to the prosody plugins directory.
15 15
16 Then add "mam" to your modules_enabled list: 16 Then add "mam" to your modules_enabled list:
17 {{{ 17 {{{
18 modules_enabled = { 18 modules_enabled = {
19 -- ... 19 -- ...
20 "mam", 20 "mam",
21 -- ... 21 -- ...
22 } 22 }
23 storage = {
24 archive2 = "sql2";
25 }
23 }}} 26 }}}
24 27
25 = Configuration = 28 = Configuration =
26 29
27 {{{ 30 {{{
38 max_archive_query_results = 50; 41 max_archive_query_results = 50;
39 }}} 42 }}}
40 43
41 This is the largest number of messages that are allowed to be retrieved in one request. 44 This is the largest number of messages that are allowed to be retrieved in one request.
42 45
43
44 = Compatibility = 46 = Compatibility =
45 || 0.8 || Works ||
46 || 0.9 || Works ||
47 || trunk || Works || 47 || trunk || Works ||
48 48 || 0.9 || Does not work ||
49 = TODO = 49 || 0.8 || Does not work ||
50
51 * Optimize
52 * Use new stanza archive API once it appears
53 * Policy enforcing.