view mod_muc_log.wiki @ 93:70c5740549a5

Edited wiki page through web user interface.
author florob@babelmonkeys.de
date Tue, 17 Nov 2009 17:48:45 +0000
parents dc62fc777239
children 82e7feef398c
line wrap: on
line source

#summary Module which logs muc conversations to a file
#labels Stage-Beta

= Introduction =

This module logs the conversation of muc running on this server to a daily changing file.
There is a file per room.

= Details =

Here is a example config with just the muclogging parts added to the right sections:
{{{
Host "*"
   modules_enabled = {
       .....
       "muc_log";
       .....
   }

   muc_log = {
       http_port = 5290;
       showJoin = false; -- default is true
       showStatus = false; -- default is true
   }

component "rooms.example.com" "muc"
   logging = true;

}}}

The http server part would then be reachable at the url:
{{{
http://example.com:5290/muc_log/
}}}

showJoin sets the default for showing joins or leaves.
showStatus sets the default for showing status changes.

= TODO =
  * log/output bans correctly
  * show a nice errormessage when lfs is not installed
  * let the admin choose to enable logging via room config
  * show the scrollbars only when needed
  * resize the messages div when size of window changes
  * make /me message displayed correctly
  * support speeqe.com to directly join the room
  * when viewing a specific day, add previous/next buttons
  * show the available days in a kind of calender way
  * testing testing