Mercurial > prosody-wiki
comparison mod_muc_log.wiki @ 89:df513425de29
muc_log is now a global module!
author | t.ephraim |
---|---|
date | Mon, 09 Nov 2009 22:52:27 +0000 |
parents | 5ba104fb183e |
children | dc4125a5f438 |
comparison
equal
deleted
inserted
replaced
88:5ba104fb183e | 89:df513425de29 |
---|---|
8 | 8 |
9 = Details = | 9 = Details = |
10 | 10 |
11 Here is a example config with just the muclogging parts added to the right sections: | 11 Here is a example config with just the muclogging parts added to the right sections: |
12 {{{ | 12 {{{ |
13 component "rooms.example.com" "muc" | 13 Host "*" |
14 modules_enabled = { | 14 modules_enabled = { |
15 ..... | |
15 "muc_log"; | 16 "muc_log"; |
17 ..... | |
16 } | 18 } |
17 | 19 |
18 muc_log = { | 20 muc_log = { |
19 http_port = 5290; | 21 http_port = 5290; |
20 showJoin = false; -- default is true | 22 showJoin = false; -- default is true |
21 showStatus = false; -- default is true | 23 showStatus = false; -- default is true |
22 } | 24 } |
25 | |
26 component "rooms.example.com" "muc" | |
27 logging = true; | |
28 | |
23 }}} | 29 }}} |
24 | 30 |
25 The http server part would then be reachable at the url: | 31 The http server part would then be reachable at the url: |
26 {{{ | 32 {{{ |
27 http://example.com:5290/muc_log/ | 33 http://example.com:5290/muc_log/ |