view mod_muc_log_http.wiki @ 112:058ede538839

Clarified documentation, config and dependency on something else for viewing the logs.
author MWild1
date Mon, 01 Feb 2010 17:28:54 +0000
parents 291ee152eea9
children 0abc8d412aad
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.

= Installation =

Just copy the folder muc_log_http as it is, into the modules folder of your prosody.

= Configuration Details =

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

   muc_log_http = {
       http_port = 5290; -- default is 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