<% @ Language=VBScript %> <% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Forums(TM) '** http://www.webwizforums.com '** '** Copyright (C)2001-2008 Web Wiz(TM). All Rights Reserved. '** '** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS UNDER LICENSE FROM 'WEB WIZ'. '** '** IF YOU DO NOT AGREE TO THE LICENSE AGREEMENT THEN 'WEB WIZ' IS UNWILLING TO LICENSE '** THE SOFTWARE TO YOU, AND YOU SHOULD DESTROY ALL COPIES YOU HOLD OF 'WEB WIZ' SOFTWARE '** AND DERIVATIVE WORKS IMMEDIATELY. '** '** If you have not received a copy of the license with this work then a copy of the latest '** license contract can be found at:- '** '** http://www.webwizguide.com/license '** '** For more information about this software and for licensing information please contact '** 'Web Wiz' at the address and website below:- '** '** Web Wiz, Unit 10E, Dawkins Road Industrial Estate, Poole, Dorset, BH15 4JD, England '** http://www.webwizguide.com '** '** Removal or modification of this copyright notice will violate the license contract. '** '**************************************************************************************** '*************************** SOFTWARE AND CODE MODIFICATIONS **************************** '** '** MODIFICATION OF THE FREE EDITIONS OF THIS SOFTWARE IS A VIOLATION OF THE LICENSE '** AGREEMENT AND IS STRICTLY PROHIBITED '** '** If you wish to modify any part of this software a license must be purchased '** '**************************************************************************************** 'Set the response buffer to true as we maybe redirecting Response.Buffer = True 'Dimension variables Dim rsSelectForum 'Holds the db recordset Dim strBlockEmail 'Holds the Email address to block Dim strBlockedEmailList 'Holds the Email addresses in the blocked list Dim lngBlockedEmailID 'Holds the ID number of the blcoked db record Dim laryCheckedEmailAddrID 'Holds the array of Email addresses to be ditched 'Run through till all checked IP addresses are deleted For each laryCheckedEmailAddrID in Request.Form("chkDelete") 'Here we use the less effiecient ADO to delete from the database this way we can throw in a requery while we wait for slow old MS Access to catch up 'Delete the IP address from the database strSQL = "SELECT * FROM " & strDbTable & "BanList WHERE " & strDbTable & "BanList.Ban_ID=" & laryCheckedEmailAddrID & ";" With rsCommon 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set .CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated .LockType = 3 'Query the database .Open strSQL, adoCon 'Delete from the db If NOT .EOF Then .Delete 'Requery .Requery 'Close the recordset .Close End With Next 'Run through till all checked Email addresses are deleted For each laryCheckedEmailAddrID in Request.Form("chkDelete") 'Here we use the less effiecient ADO to delete from the database this way we can throw in a requery while we wait for slow old MS Access to catch up 'Delete the Email address from the database strSQL = "SELECT * FROM " & strDbTable & "BanList WHERE " & strDbTable & "BanList.Ban_ID=" & laryCheckedEmailAddrID & ";" With rsCommon 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set .CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated .LockType = 3 'Query the database .Open strSQL, adoCon 'Delete from the db If NOT .EOF Then .Delete 'Requery .Requery 'Close the recordset .Close End With Next 'Read in all the blocked Email address from the database 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT " & strDbTable & "BanList.Ban_ID, " & strDbTable & "BanList.Email " & _ "FROM " & strDbTable & "BanList " & _ "WHERE " & strDbTable & "BanList.Email Is Not Null;" 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set rsCommon.CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated rsCommon.LockType = 3 'Query the database rsCommon.Open strSQL, adoCon 'If this is a post back then update the database If Request.Form("Email") <> "" AND blnDemoMode = False Then 'Read in the Email address to block strBlockEmail = Trim(Mid(Request.Form("Email"), 1, 30)) 'Update the recordset With rsCommon .AddNew 'Update the recorset .Fields("Email") = strBlockEmail 'Update db .Update 'Re-run the query as access needs time to catch up .ReQuery End With End If %> Email Address Blocking <% '***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** Response.Write("" & vbCrLf & vbCrLf) '***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** %>

Email Address Blocking


Control Panel Menu

From here you can Block email addresses or email domains.

This function is only really useful if you have email activation enabled as it will prevent anyone with a blocked email address registering on the forum with that email address.



<% 'Display the email blcok list If rsCommon.EOF Then 'Disply no entires forun Response.Write("") 'Else disply the IP block list Else 'Loop through the recordset Do While NOT rsCommon.EOF 'Read in the details lngBlockedEmailID = CLng(rsCommon("Ban_ID")) strBlockedEmailList = rsCommon("Email") %> <% 'Move to the next record in the recordset rsCommon.MoveNext Loop End If 'Reset Server Objects rsCommon.Close Call closeDatabase() %>
Blocked Email Address/Domain List
You have no blocked Email address
/> <% = strBlockedEmailList %>

Block Email Address or Domain
The * wildcard character can be used to block email domains.
eg. To block users with a yahoo.com email address you would use. eg. *@yahoo.com
Email Address or domain: />