config-sample.php
author Dan
Thu, 04 Dec 2008 19:40:27 -0500
changeset 29 300f673fbbdc
parent 8 0acb8d9a3194
child 51 508400fc5282
permissions -rw-r--r--
Added web interface for IP logger module; set display_errors to on in PHP

<?php

// Rename this to config.php and run php ./enanobot.php to start.

$server = 'irc.freenode.net';
$nick = 'EnanoBot';
$pass = '';
$name = 'Enano CMS logging/message bot';
$user = 'enano';
$privileged_list = array('your', 'nick', 'list', 'here');
$mysql_host = 'localhost';
$mysql_user = '';
$mysql_pass = '';
$mysql_dbname = '';
$channels = array('#mychan', '#yourchan', '#4chan');

?>