view mod_muc_log_http.wiki @ 99:e5e4b59aad33

mod_support_contact: Dropped 0.5 and added 0.7 to compatibility list. Updated TODO.
author Waqas Hussain <waqas20@gmail.com>
date Mon, 30 Nov 2009 17:46:59 +0500
parents f18d4607c52d
children 6eb99327f14a
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
   }
}}}
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
  * show a nice errormessage when lfs is not installed
  * let the admin choose to enable logging via room config
  * show the available days in a kind of calender way
  * testing testing