Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Coldfusion Server Admin access and Mail server

Status
Not open for further replies.

Lesio

MIS
Jan 7, 2003
48
US
Is it possible to change the mail server used by Coldfusion to send e-mails other than through Administration web page ?

Also, how can I reset password for Coldfusion administration web page ?

Thanks a lot,
 
You can specify what mail server to use in your cfmail tags if you don't want to use the one listed in the CF Administrator. I believe you need access to the Administrator (or the actual server) to change settings like mail server and password.



Hope This Helps!

Ecobb

"My work is a game, a very serious game." - M.C. Escher
 
also to change the CF admin password, there is a link at the bottom of the left side in the admin 'CF Admin Password'


=========================================
I have not failed. I've just found 10,000 ways that won't work.
Thomas A. Edison
 
but, if I don't know the password at all, how can I get in or reset the password ?
 
Code:
<CFSET CFKey = "4p0L@r1$">

<CFREGISTRY
    ACTION=GET
    Branch="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server"
    Entry="AdminPassword"
    Variable="AdminPassword">

<CFOUTPUT>
      Registry Password: #CFusion_Decrypt(AdminPassword, CFKey)#
</CFOUTPUT>

credit to RAM123


=========================================
I have not failed. I've just found 10,000 ways that won't work.
Thomas A. Edison
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top