comparison mod_http_muc_log/README.wiki @ 1782:29f3d6b7ad16

Import wiki pages
author Kim Alvefur <zash@zash.se>
date Mon, 24 Aug 2015 16:43:56 +0200
parents
children
comparison
equal deleted inserted replaced
1781:12ac88940fe3 1782:29f3d6b7ad16
1 #summary Provides a web interface to stored chatroom logs
2 #labels Stage-Beta
3
4 = Introduction =
5
6 This module provides a built-in web interface to view chatroom logs stored by [mod_mam_muc].
7
8 = Installation =
9
10 Just copy the folder muc_log_http as it is, into the modules folder of your Prosody installation.
11
12 = Configuration Details =
13
14 You need to add muc_log_http to your global modules_enabled, and the configuration options similarly must be put into your global (server-wide) options section:
15
16 {{{
17 Component "conference.example.com" "muc"
18 modules_enabled = {
19 .....
20 "mam_muc";
21 "http_muc_log";
22 .....
23 }
24 storage = {
25 muc_log = "sql2"; -- for example
26 }
27 }}}
28
29 The web interface would then be reachable at the address:
30 {{{
31 http://conference.example.com:5280/muc_log/
32 }}}
33
34 See [http://prosody.im/doc/http the page about Prosodys HTTP server] for info about the address.
35
36 = Compatibility =
37
38 Requires Prosody 0.10 or above and a storage backend with support for stanza archives.