%
'#################################################################################
'## Snitz Forums 2000 v3.4.06
'#################################################################################
'## Copyright (C) 2000-06 Michael Anderson, Pierre Gorissen,
'## Huw Reddick and Richard Kinser
'##
'## This program is free software; you can redistribute it and/or
'## modify it under the terms of the GNU General Public License
'## as published by the Free Software Foundation; either version 2
'## of the License, or (at your option) any later version.
'##
'## All copyright notices regarding Snitz Forums 2000
'## must remain intact in the scripts and in the outputted HTML
'## The "powered by" text/logo with a link back to
'## http://forum.snitz.com in the footer of the pages MUST
'## remain visible when the pages are viewed on the internet or intranet.
'##
'## This program is distributed in the hope that it will be useful,
'## but WITHOUT ANY WARRANTY; without even the implied warranty of
'## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
'## GNU General Public License for more details.
'##
'## You should have received a copy of the GNU General Public License
'## along with this program; if not, write to the Free Software
'## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'##
'## Support can be obtained from our support forums at:
'## http://forum.snitz.com
'##
'## Correspondence and Marketing Questions can be sent to:
'## manderson@snitz.com
'##
'#################################################################################
%>
<%
if Session(strCookieURL & "Approval") <> "15916941253" then
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
Response.Redirect "admin_login.asp?target=" & scriptname(ubound(scriptname))
end if
Response.Write "
" & vbNewLine & _
" " & vbNewLine & _
" " & vbNewLine & _
" " & getCurrentIcon(strIconFolderOpen,"","") & " All Forums " & vbNewLine & _
" " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpen,"","") & " Admin Section " & vbNewLine & _
" " & getCurrentIcon(strIconBlank,"","") & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " E-mail Server Configuration
| " & vbNewLine & _
"
" & vbNewLine & _
"
" & vbNewLine
if Request.Form("Method_Type") = "Write_Configuration" then
Err_Msg = ""
if Request.Form("strMailServer") = "" and Request.Form("strMailMode") <> "cdonts" and Request.Form("strEmail") = "1" then
Err_Msg = Err_Msg & "You Must Enter the Address of your Mail Server"
end if
if ((lcase(left(Request.Form("strMailServer"), 7)) = "http://") or (lcase(left(Request.Form("strMailServer"), 8)) = "https://")) and Request.Form("strEmail") = "1" then
Err_Msg = Err_Msg & "Do not prefix the Mail Server Address with http://, https:// or file://"
end if
if Request.Form("strSender") = "" then
Err_Msg = Err_Msg & "You Must Enter the E-mail Address of the Forum Administrator"
else
if EmailField(Request.Form("strSender")) = 0 and Request.Form("strSender") <> "" then
Err_Msg = Err_Msg & "You Must enter a valid E-mail Address for the Forum Administrator"
end if
end if
if Request.Form("strRestrictReg") = 1 and Request.Form("strEmailVal") = 0 then
Err_Msg = Err_Msg & "Email Validation must be enabled in order to enable the Restrict Registration Option"
end if
if Err_Msg = "" then
'## Forum_SQL
for each key in Request.Form
if left(key,3) = "str" or left(key,3) = "int" then
strDummy = SetConfigValue(1, key, ChkString(Request.Form(key),"SQLString"))
end if
next
Application(strCookieURL & "ConfigLoaded") = ""
Response.Write " Configuration Posted!
" & vbNewLine & _
" " & vbNewLine & _
" Congratulations!
" & vbNewLine & _
" Back To Admin Home
" & vbNewLine
else
Response.Write " There Was A Problem With Your Details
" & vbNewLine & _
" " & vbNewLine & _
" " & vbNewLine & _
" | " & vbNewLine & _
"
" & vbNewLine & _
"
" & vbNewLine & _
" Go Back To Enter Data
" & vbNewLine
end if
else
Dim theComponent(20)
Dim theComponentName(20)
Dim theComponentValue(20)
'## the components
theComponent(0) = "ABMailer.Mailman"
theComponent(1) = "Persits.MailSender"
theComponent(2) = "SMTPsvg.Mailer"
theComponent(3) = "SMTPsvg.Mailer"
theComponent(4) = "CDONTS.NewMail"
theComponent(5) = "CDONTS.NewMail"
theComponent(6) = "CDO.Message"
theComponent(7) = "dkQmail.Qmail"
theComponent(8) = "Dundas.Mailer"
theComponent(9) = "Dundas.Mailer"
theComponent(10) = "Innoveda.MailSender"
theComponent(11) = "Geocel.Mailer"
theComponent(12) = "iismail.iismail.1"
theComponent(13) = "Jmail.smtpmail"
theComponent(14) = "Jmail.Message"
theComponent(15) = "MDUserCom.MDUser"
theComponent(16) = "ASPMail.ASPMailCtrl.1"
theComponent(17) = "ocxQmail.ocxQmailCtrl.1"
theComponent(18) = "SoftArtisans.SMTPMail"
theComponent(19) = "SmtpMail.SmtpMail.1"
theComponent(20) = "VSEmail.SMTPSendMail"
'## the name of the components
theComponentName(0) = "ABMailer v2.2+"
theComponentName(1) = "ASPEMail"
theComponentName(2) = "ASPMail"
theComponentName(3) = "ASPQMail"
theComponentName(4) = "CDONTS (IIS 3/4/5)"
theComponentName(5) = "Chili!Mail (Chili!Soft ASP)"
theComponentName(6) = "CDOSYS (IIS 5/5.1/6)"
theComponentName(7) = "dkQMail"
theComponentName(8) = "Dundas Mail (QuickSend)"
theComponentName(9) = "Dundas Mail (SendMail)"
theComponentName(10) = "FreeMailSender"
theComponentName(11) = "GeoCel"
theComponentName(12) = "IISMail"
theComponentName(13) = "JMail 3.x"
theComponentName(14) = "JMail 4.x"
theComponentName(15) = "MDaemon"
theComponentName(16) = "OCXMail"
theComponentName(17) = "OCXQMail"
theComponentName(18) = "SA-Smtp Mail"
theComponentName(19) = "SMTP"
theComponentName(20) = "VSEmail"
'## the value of the components
theComponentValue(0) = "abmailer"
theComponentValue(1) = "aspemail"
theComponentValue(2) = "aspmail"
theComponentValue(3) = "aspqmail"
theComponentValue(4) = "cdonts"
theComponentValue(5) = "chilicdonts"
theComponentValue(6) = "cdosys"
theComponentValue(7) = "dkqmail"
theComponentValue(8) = "dundasmailq"
theComponentValue(9) = "dundasmails"
theComponentValue(10) = "freemailsender"
theComponentValue(11) = "geocel"
theComponentValue(12) = "iismail"
theComponentValue(13) = "jmail"
theComponentValue(14) = "jmail4"
theComponentValue(15) = "mdaemon"
theComponentValue(16) = "ocxmail"
theComponentValue(17) = "ocxqmail"
theComponentValue(18) = "sasmtpmail"
theComponentValue(19) = "smtp"
theComponentValue(20) = "vsemail"
Response.Write " " & vbNewLine
end if
WriteFooter
Response.End
function IsObjInstalled(strClassString)
on error resume next
'## initialize default values
IsObjInstalled = false
Err.Clear
'## testing code
dim xTestObj
set xTestObj = Server.CreateObject(strClassString)
if Err.Number = 0 then
IsObjInstalled = true
end if
'## cleanup
set xTestObj = nothing
Err.Clear
on error goto 0
end function
%>