IP BLOCKING

Description:
Block IPS enables you to create a list of IP address's of individuals who you wish to block from submiting the form, whether it be because of abuse, or just preventitive measures.

You can also decided to block all requests of individuals who do not have an IP address at all.

bizmail.cgi script config

$set_bannedips = "1";

This variable defines whether to block all IP listed in @bannedips

Set to 1 to turn on, and 2 to turn off.

Example:
$set_bannedips = "1";   ## ON ##
$set_bannedips = "2";   ## OFF ##

If above variable is set to $set_bannedips = "1"; then you must specify an error page if the IP address is blocked. This is done by the variable $banned_error_page.

Example:
$banned_error_page = "banned.html";

In this example if the IP was banned, the html page banned.html would be displayed.

@bannedips is a list of all IP address's that should be blocked. If the IP address is blocked, the form poster will be sent to the page specified by the variable $banned_error_page.

Simply list all IP address's encapsulated by double quotes, and seperate each entry with a coma as shown below.

@bannedips = ("10.10.10.001", "10.10.10.002");