Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc.

Go Back   Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc. > >> General Public > Chit Chat Public
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Chit Chat Public Talk about any thing you want! This forum is public.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 03-10-2004, 11:21 AM
matthewshull's Avatar
matthewshull matthewshull is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Location: Forest, Ohio
Change password in @Mail

Why can users not change their password in @Mail? Is this a permanent thing.
__________________
____________________
Matt
Reply With Quote
  #2  
Old 03-10-2004, 11:24 AM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
Are you talking about once your logged in to @mail?? If so @mail is also designed to have its own "users" and not just pull user info from the other servers. So that link in there is to change a user password if they were in the @mail DB. We might be able to change that link to go to the page H-Sphere has to change email passwords if thats the link your talking about.. I would have to get matt to look at it and see if its something that can be changed very easy.
__________________
Brad Pugh
http://www.vortechhosting.com
------

Local System/Network Monitor
http://nagios.hsphere.cc/
Login:guest Pass:guest
XML FEED http://nagios.hsphere.cc/feed.xml
------

My Other Life:
Reply With Quote
  #3  
Old 03-10-2004, 11:52 AM
matthewshull's Avatar
matthewshull matthewshull is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Location: Forest, Ohio
Yeah, I mean once they are logged into @Mail. There is a link "Change Password" that is just grayed out. I have a customer who asked me about it. It only makes sense to me that an email user should be able to change their password from within @Mail, especially if there is a link for it.

Then we wouldn't have to direct them to the ugly POP3 password screen.
__________________
____________________
Matt
Reply With Quote
  #4  
Old 03-10-2004, 12:06 PM
jmbeach's Avatar
jmbeach jmbeach is offline
mistra know it all
Vortech Inc. Customer
 
Location: San Diego
I think even if they change it to link to HSphere, you'll probably still have to use the ugly HSphere form to change passwords.
Reply With Quote
  #5  
Old 03-10-2004, 12:09 PM
matthewshull's Avatar
matthewshull matthewshull is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Location: Forest, Ohio
Quote:
Originally Posted by jmbeach
I think even if they change it to link to HSphere, you'll probably still have to use the ugly HSphere form to change passwords.

Ya, I just realized what he was saying. Is there anyway you guys can just change that page?
__________________
____________________
Matt
Reply With Quote
  #6  
Old 03-10-2004, 02:25 PM
CelticRaven's Avatar
CelticRaven CelticRaven is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
other @mail password incident

not sure if anybody knew this either...

on the @mail login, the link for password change goes to 216.157.145.2 and gives the hsphere pass change form

but if you click "enter your mailserver" 1st the link for pass change form changes and goes to 65.57.231.120 which fails
Reply With Quote
  #7  
Old 03-10-2004, 02:38 PM
Bladesnitz
Guest
 
You can't change password in @mail since @mail doesn't store the passwords. I have fixed the link on the "Enter your mailserver" page.
Reply With Quote
  #8  
Old 03-10-2004, 03:59 PM
Silverbug's Avatar
Silverbug Silverbug is offline
Custom Built Solutions
Vortech Inc. Customer
 
Location: AK, New Zealand
Send a message via ICQ to Silverbug Send a message via MSN to Silverbug Send a message via Skype to Silverbug
i have created a page which is fully skinned where users can change there password ill post the code up here in a sec. It may still work, i havent checked it recently

hmm seems that its not working atm, will take a look at it shortly and post back

Code:
<%@ LANGUAGE=VBScript %> <% strDomain = Right(Request.ServerVariables("SERVER_NAME"), len(Request.ServerVariables("SERVER_NAME"))-8) If Request.Form("Action") = "Change" Then strMessage = ChangePassword(Request.Form("mbox") & "@" & strDomain, Request.Form("old_password"), Request.Form("password"), Request.Form("password2")) End If Function ChangePassword(emailaddresss, oldpassword, newpassword, confirmpassword) Dim objXMLHTTP Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP") strURL = "http://65.57.231.120:8080/psoft/servlet/psoft.hsphere.CP?action=change_mbox_password&ftemplate=design/mail_passw.html&mbox=" & emailaddresss & "&old_password=" & oldpassword & "&password=" & newpassword & "&password2=" & confirmpassword objXMLHTTP.Open "POST", strURL, False objXMLHTTP.Send ChangePassword = "Unspecified Error" strReturn = objXMLHTTP.responseText Set objXMLHTTP = Nothing If Instr(strReturn, "Password successfully changed") Then ChangePassword = "Password successfully changed" ElseIf Instr(strReturn, "Bad old password") Then ChangePassword = "Bad old password" ElseIf Instr(strReturn, "MailBox not found") Then ChangePassword = "MailBox not found" Else ChangePassword = strreturn End If End Function %> <HTML> <HEAD> <TITLE>Webmail Login</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080" onload="f_login.mbox.focus();"> <script language="javascript" src="scripts/changepassword.js"></script> <center> <TABLE border="0" width="500" bgcolor="#A5A6A5" cellspacing="0"> <TR> <TD width="100%"> <TABLE border="0" width="100%" bgcolor="#ECECEC" cellpadding="0"> <TR> <TD width="100%"> <form action="changepassword.asp?1" name="f_login" method="POST" onSubmit="return checkForm(this,true);"> <table align="center" border="0" width="100%"> <tr> <td align="center" colspan="2" class="header"><img src="images/webmail.gif" width="260" height="141" border="0"></td> </tr> <% If strMessage <> "" Then %> <tr> <td align="center" colspan="2"><b><font face="Verdana" size="1" color="#FF0000"><%=strMessage%></font></b></td> </tr> <% End If %> <tr> <td colspan="2"><font face="Verdana" size="1" color="#FF0000">&nbsp;</font></td> </tr> <tr> <td align="right" class="light"><b><font face="Verdana" size="1" color="#000000">Mail box</font></b></td> <td align="left"><input style="font-size: 8pt; font-family: Verdana" name="mbox" type="text" value="<%=Request.Form("mbox")%>"><font face="verdana" size="1">@<%=strDomain%></font></td> </tr> <tr> <td align="right" class="light"><b><font face="Verdana" size="1" color="#000000">Old password</font></b></td> <td align="left"><input style="font-size: 8pt; font-family: Verdana" type="password" name="old_password" onFocus="showOnFocus(this)" onKeyUp="showOnKeyUp(this)" onBlur="showOnBlur(this)">&nbsp;<img src="images/attention.gif" name="old_password_1" align="absmiddle"></td> </tr> <tr> <td align="right" class="light"><b><font face="Verdana" size="1" color="#000000">New Password</font></b></td> <td align="left"><input style="font-size: 8pt; font-family: Verdana" name="password" type="password" onFocus="showOnFocus(this)" onKeyUp="showOnKeyUp(this)" onBlur="showOnBlur(this)">&nbsp;<img src="images/attention.gif" name="password_1" align="absmiddle"></td> </tr> <tr> <td align="right" class="light"><b><font face="Verdana" size="1" color="#000000">Confirm Password</font></b></td> <td align="left"><input style="font-size: 8pt; font-family: Verdana" name="password2" type="password" onFocus="showOnFocus(this)" onKeyUp="showOnKeyUp(this)" onBlur="showOnBlur(this)">&nbsp;<img src="images/attention.gif" name="password2_1" align="absmiddle"></td> </tr> <tr> <td align="right" class="light"></td> <td align="left" class="light"><input style="font-size: 8pt; font-family: Verdana" tabindex="4" type="submit" name="action" value="Change"> <input style="font-size: 8pt; font-family: Verdana" tabindex="5" type="button" name="action" value="Cancel" onclick="javascript: window.location.href='http://webmail.<%=strDomain%>/default.asp';"></td> </tr> </table> </form> </td> </tr> </table> </td> </tr> </table> <font face="verdana" size="1" color="Silver">© <a href="http://www.sniper.co.nz"><font face="verdana" size="1" color="Silver">Sniper Systems</font></a> Ltd 2002 - <%=year(now)%></font> </center> <script language="javascript" src="scripts/changepassword2.js"></script> </BODY> </HTML>
__________________
Paul Foley
Sniper Systems Ltd


Last edited by Silverbug : 03-10-2004 at 04:03 PM.
Reply With Quote
  #9  
Old 03-10-2004, 05:22 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
Silverbug, do you have that on a page anywhere so everyone can see what it looks like? You know someone is going to ask..
__________________
Brad Pugh
http://www.vortechhosting.com
------

Local System/Network Monitor
http://nagios.hsphere.cc/
Login:guest Pass:guest
XML FEED http://nagios.hsphere.cc/feed.xml
------

My Other Life:
Reply With Quote
  #10  
Old 03-10-2004, 05:54 PM
DigitalSkyline's Avatar
DigitalSkyline DigitalSkyline is offline
some kind of digital pimp
Vortech Inc. Customer
 
Location: Greater Detroit Area
Send a message via ICQ to DigitalSkyline Send a message via AIM to DigitalSkyline Send a message via Yahoo to DigitalSkyline
the good old scrape method (works until someone changes the real page.)
Reply With Quote
  #11  
Old 03-10-2004, 07:58 PM
Silverbug's Avatar
Silverbug Silverbug is offline
Custom Built Solutions
Vortech Inc. Customer
 
Location: AK, New Zealand
Send a message via ICQ to Silverbug Send a message via MSN to Silverbug Send a message via Skype to Silverbug
Quote:
the good old scrape method
haha yeah

Quote:
Silverbug, do you have that on a page anywhere so everyone can see what it looks like?
http://webmail.sniper.co.nz but like it said it doesnt look like its working atm
__________________
Paul Foley
Sniper Systems Ltd

Reply With Quote
  #12  
Old 03-10-2004, 10:01 PM
CelticRaven's Avatar
CelticRaven CelticRaven is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Possible fix

Is it because
strURL = "http://65.57.231.120:8080...

and might need to be 216.157.145.2....?
Reply With Quote
  #13  
Old 03-11-2004, 03:55 AM
Silverbug's Avatar
Silverbug Silverbug is offline
Custom Built Solutions
Vortech Inc. Customer
 
Location: AK, New Zealand
Send a message via ICQ to Silverbug Send a message via MSN to Silverbug Send a message via Skype to Silverbug
yeah i guess that could be why hehe i should really update that
__________________
Paul Foley
Sniper Systems Ltd

Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
@mail change password resell01 Chit Chat Public 3 06-24-2003 02:15 PM


All times are GMT -5. The time now is 05:02 AM.


Powered by vBulletin Version 3.5.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Vortech Inc. ©2005
Page generated in 0.74011 seconds with 20 queries
[Output: 108.33 Kb. compressed to 99.59 Kb. by saving 8.74 Kb. (8.07%)]