set Users=server.CreateObject("MailServerX.Users") 'creating the mail object
i=Users.IndexOf(name) 'telling which user to change the password on
set User=Users.Items(i) 'set users.items(i) i being the user name
if (session("opass") = user.Password) then 'of #2
User.Password=session("npass") 'sets the new users password
Users.Items(i)=User
This is ASP Code to change a password on my mail server.
My mail server supports mlsrvx.DLL which is my object on NT.
I have no idea how to do this in PHP
Can anybody please help me out
Thank you very much
Chris Calzaretta