home *** CD-ROM | disk | FTP | other *** search
Wrap
<HTML> <HEAD> <TITLE>ColdFusion Administrator - Mail </TITLE> <META NAME="Author" CONTENT="Copyright 1996 Allaire Corp. All rights reserved."> <META NAME="Version" CONTENT="$Revision: 28 $ $Modtime: 9/14/98 5:17p $"> </HEAD> <!--- General page formatting is controled by this template ---> <cfinclude template="../formatting/header.cfm"> <!--- Get general Mail Server settings ---> <CFSET MailServer = "" > <CFSET SMTPPort = "25" > <CFSET Timeout = "60" > <CFSET AdminEMail = "" > <!--- Make sure the MAIL and LOGGING registry keys exist ---> <CFNewInternalRegistry ACTION=SET ENTRY="Logging" BRANCH ="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion" TYPE="KEY"> <CFNewInternalRegistry ACTION=SET ENTRY="Mail" BRANCH ="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion" TYPE="KEY"> <CFNewInternalRegistry ACTION=GET BRANCH="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Mail" ENTRY="MailServer" TYPE="STRING" VARIABLE="MailServer"> <CFNewInternalRegistry ACTION=GET BRANCH="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Mail" ENTRY="SMTPPort" TYPE="STRING" VARIABLE="SMTPPort"> <CFNewInternalRegistry ACTION=GET BRANCH="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Mail" ENTRY="Timeout" TYPE="STRING" VARIABLE="Timeout"> <CFNewInternalRegistry ACTION=GET BRANCH="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Logging" ENTRY="AdminEMail" TYPE="STRING" VARIABLE="AdminEMail"> <CFOUTPUT> <FONT SIZE="#Evaluate(2 + FONTSIZE)#" FACE="#FONTFACE#"><B>Mail Server Connection Settings</B></FONT> </CFOUTPUT> <CFOUTPUT> <FORM ACTION="updatemailinfo.cfm" METHOD="POST"> <TABLE> <TR> <TD VALIGN="TOP"> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"><B>Mail Server</B></FONT> </TD> <TD VALIGN="TOP"> <INPUT TYPE="TEXT" NAME="MailServer" VALUE="#MailServer#" SIZE=20><BR> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"> Specify the server for sending dynamic SMTP mail messages. This can be an Internet address (e.g., mail.company.com) or the IP address of the mail server (e.g., 127.0.0.1). </FONT> </TD> </TR> <TR> <TD VALIGN="TOP"> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"><B>Server Port </B></FONT> </TD> <TD VALIGN="TOP"> <INPUT TYPE="TEXT" NAME="SMTPPort" VALUE="#SMTPPort#" SIZE=5 MaxLength=5><BR> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"> Accept the default port number for mail servers or enter a different one. Contact your server administrator if you are not sure which port the mail server is running on. </FONT> </TD> </TR> <TR> <TD VALIGN="TOP"> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"><B>Connection Timeout </B></FONT> </TD> <TD VALIGN="TOP"> <INPUT TYPE="TEXT" NAME="Timeout" VALUE="#Timeout#" SIZE=5 MaxLength=5> <FONT SIZE="#FONTSIZE#" FACE="#FONTFACE#"><B>seconds</B> - the time ColdFusion should wait for a response from the mail server. This value may be important when optimizing performance with a less reliable mail server.</FONT> </CFOUTPUT> <BR> <HR SIZE=1 NOSHADE> <INPUT Name="Apply" Type="SUBMIT" Value=" Apply "> <INPUT NAME="VerifyMailInfo" TYPE="SUBMIT" VALUE=" Verify "> <INPUT Name="Cancel" Type="SUBMIT" Value="Cancel"> </TD> </TR> </TABLE> </FORM> <!--- This closes the page formatting template ---> <CFINCLUDE TEMPLATE="../formatting/footer.cfm"> </BODY> </HTML>