Mercurial > prosody-wiki
comparison mod_archive_muc.wiki @ 149:4616d70c974a
Edited wiki page through web user interface.
author | shinysky1986@gmail.com |
---|---|
date | Fri, 13 Aug 2010 13:24:32 +0000 |
parents | de13306634bb |
children | c929df198f10 |
comparison
equal
deleted
inserted
replaced
148:5d350ab051f8 | 149:4616d70c974a |
---|---|
3 | 3 |
4 = Introduction = | 4 = Introduction = |
5 | 5 |
6 Implementation of [http://matthewwild.co.uk/uploads/message-archive-management.html XEP-xxxx: Message Archive Management]. Like [mod_archive] but much simpler. | 6 Implementation of [http://matthewwild.co.uk/uploads/message-archive-management.html XEP-xxxx: Message Archive Management]. Like [mod_archive] but much simpler. |
7 | 7 |
8 = Details = | |
9 | |
10 The server will have the ability to archive muc messages passing through. | |
11 | |
8 = Usage = | 12 = Usage = |
9 Load mod_archive_muc. | 13 |
14 First copy the module to the prosody plugins directory. | |
15 | |
16 Then add "archive_muc" to your modules_enabled list: | |
17 {{{ | |
18 modules_enabled = { | |
19 -- ... | |
20 "privacy", | |
21 "archive_muc", | |
22 -- ... | |
23 }}} | |
24 | |
25 = Configuration = | |
26 | |
27 || *Name* || *Description* || *Type* || *Default value* || | |
28 || auto_muc_archiving_enabled || applied when no any preferences available || boolean || true || | |
29 | |
30 = Compatibility = | |
31 || 0.7.0 || Works || | |
10 | 32 |
11 = TODO = | 33 = TODO = |
12 Test | 34 Test |
13 | 35 |
14 = Compatibility = | 36 |
15 0.7.0 | 37 |
38 |