249
|
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 |
250
|
8 *Note that this is an implementation of a ProtoXEP, which may be subject to major i changes.* |
249
|
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 |
251
|
35 * Preferences |
|
36 * Optimize |
|
37 * Use new stanza archive API once it appears |