comparison mod_muc_log/README.markdown @ 1803:4d73a1a6ba68

Convert all wiki pages to Markdown
author Kim Alvefur <zash@zash.se>
date Fri, 28 Aug 2015 18:03:58 +0200
parents mod_muc_log/README.wiki@29f3d6b7ad16
children 79b9bd84b91c
comparison
equal deleted inserted replaced
1802:0ab737feada6 1803:4d73a1a6ba68
1 ---
2 labels:
3 - 'Stage-Beta'
4 summary: Log chatroom messages to disk
5 ...
6
7 Introduction
8 ============
9
10 This module logs the conversation of chatrooms running on the server to
11 Prosody's data store. To view them you will need a module such as
12 [mod\_muc\_log\_http](mod_muc_log_http.md).
13
14 Details
15 =======
16
17 mod\_muc\_log must be loaded individually for the components that need
18 it. Assuming you have a MUC component already running on
19 conference.example.org then you can add muc\_log to it like so:
20
21 Component "conference.example.org" "muc"
22 modules_enabled = {
23 "muc_log";
24 }
25
26 Logging is not enabled by default. In 0.9+ logging can be enabled per
27 room in the room config form.
28
29 To enable logging in older versions, or to enable logging by default for
30 all rooms, set
31
32 muc_log_by_default = true -- Log all rooms by default
33
34 Compatibility
35 =============
36
37 ----- -------
38 0.6 Works
39 0.7 Works
40 0.8 Works
41 0.9 Works
42 0.6 Works
43 ----- -------
44
45 **Note** that per-room configuration only works in 0.9+.