Configuration file for ncrkiller.php worm killer.

iTimeLimit defines the amount of time an IP address should be blocked for in seconds, the default is 24 Hours (60s * 60m * 24h = 86400).
define ("iTimeLimit", 86400);

$dbHost host which the postgres database is on..
$dbHost = "localhost";

$dbName name of the database to connect to.
$dbName = "mydatabase";

$szDomain, the name of your domain / server.
$szDomain = "www.yourdomain.com";

$szPostmaster, e-mail address of sender (usually postmaster).
$szPostmaster = "postmaster@ispcg.com";

$szBlindCopy, e-mail address. Use this option if you want to have a copy of your warning message sent to another person. By default this is set to $szPostmaster, defined ealier in this file. You will probably want to turn this off as it can generate a lot of mail!. To disable this option comment out the following line:
$szBlindCopy = $szPostmaster;

$Reply_To, e-mail address that recipients should reply to.
$Reply_To = $szPostmaster;

$debug, if set to 1 will display the email that would have been sent in your browser. In debug mode the offending IP address will not be blocked, added to the database or any emails sent.
$debug = 0;

$debugip, This allows you to set a specific IP address to be used in debug mode. This can be useful if you want to see the e-mail address the notification message would have been sent to.
$debugip = "xxx.xxx.xxx.xxx";