Mercurial > prosody-wiki
comparison mod_mam.wiki @ 249:963ae0ff05b0
Add page for mod_mam
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 06 Jan 2012 16:52:20 +0100 |
parents | |
children | a711a9d4134d |
comparison
equal
deleted
inserted
replaced
248:7a0d1a7355f4 | 249:963ae0ff05b0 |
---|---|
1 #summary XEP-xxxx: Message Archive Management (Really) | |
2 #labels Stage-Alpha | |
3 | |
4 = Introduction = | |
5 | |
6 Implementation of [http://matthewwild.co.uk/uploads/message-archive-management.html XEP-xxxx: Message Archive Management]. Like [mod_archive] but much simpler. | |
7 | |
8 *Note* that this is an implementation of a ProtoXEP, which may be subject to major i changes. | |
9 | |
10 = Details = | |
11 | |
12 The server will archive messages passing through, and clients can query their archive. | |
13 | |
14 = Usage = | |
15 | |
16 First copy the module to the prosody plugins directory. | |
17 | |
18 Then add "mam" to your modules_enabled list: | |
19 {{{ | |
20 modules_enabled = { | |
21 -- ... | |
22 "mam", | |
23 -- ... | |
24 } | |
25 }}} | |
26 | |
27 = Configuration = | |
28 | |
29 = Compatibility = | |
30 || 0.8.0 || Works || | |
31 || trunk || Should work || | |
32 | |
33 = TODO = | |
34 | |
35 * Preferences | |
36 * Optimize | |
37 * Use new stanza archive API once it appears |