view mod_muc_log_http.wiki @ 109:10542170a145

Edited wiki page through web user interface.
author florob@babelmonkeys.de
date Fri, 22 Jan 2010 15:12:37 +0000
parents dfbbf18655db
children 291ee152eea9
line wrap: on
line source

#summary module which acts as a website to show mod_muc_log saved loggings.

= Introduction =

This module will give you the option to show the logged muc conversations in a simple website.


= Configuration Details =

{{{
Host "*"
   modules_enabled = {
       .....
       "muc_log_http";
       .....
   }

   muc_log_http = {
       http_port = 5290;
       showJoin = false; -- default is true
       showStatus = false; -- default is true
       theme = "default"; -- default is theme "default"
   }
}}}
showJoin sets the default for showing joins or leaves.
showStatus sets the default for showing status changes.

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


= TODO =
  * log/output bans correctly
  * let the admin choose to enable logging via room config
  * quota ~ per day ?!
  * testing testing