473,396 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

forgot password not working

Below are my setting in the web.config file for forgotten passwords. I
receive a completion that the password
has been sent but upon looking in outlook there is no email sent to me. I
have also tried 127.0.0.1 for the network host

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>

thanks
Jul 15 '06 #1
5 2330
Posting the specific code which isn't working would help others to help you.
Also, is there any error returned ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:uY*************@TK2MSFTNGP04.phx.gbl...
Below are my setting in the web.config file for forgotten passwords. I receive a completion that
the password
has been sent but upon looking in outlook there is no email sent to me. I have also tried
127.0.0.1 for the network host

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>

thanks

Jul 15 '06 #2
Juan,
1. This is the PasswordRecovery control from the toolbox
2. I did not write any code.
3. What I am doing is testing it out to see if it works by send me a
email with a new password
4. There are no error messages - I put in my password - it then ask
me for my identity confirmation - it then tells me "Your password has been
sent to you"

I do know it is reading the web.config because if I put in say a bogus port
number or network host it gives me an error messages.

thanks

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:ei****************@TK2MSFTNGP03.phx.gbl...
Posting the specific code which isn't working would help others to help
you.
Also, is there any error returned ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message
news:uY*************@TK2MSFTNGP04.phx.gbl...
>Below are my setting in the web.config file for forgotten passwords. I
receive a completion that the password
has been sent but upon looking in outlook there is no email sent to me. I
have also tried 127.0.0.1 for the network host

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>

thanks


Jul 15 '06 #3
re:
3. What I am doing is testing it out to see if it works by send me a email with a new password
That's fine...but the web.config doesn't set the "to" address.
It only sets the "from" address.

What does your smtp log say ?

The SMTP Logfiles are usually at :
Drive:\%WINDIR%\system32\LogFiles\SMTPSVC1

Could you check to see what the smtp log says when you try to send the email ?

re:
I do know it is reading the web.config because if I put in say a bogus port number or network host
it gives me an error messages.
Is your port 25 open ?

Please visit this page to find out:
http://upseros.com/portscan.php

Wait a few seconds for the page to process...and don't worry about the page being in spanish.
Port 25 is listed about 5 positions from the top.

If there's a green dot on its row, it's open.
If there's a red dot, that's your problem.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:O1**************@TK2MSFTNGP03.phx.gbl...
Juan,
1. This is the PasswordRecovery control from the toolbox
2. I did not write any code.
3. What I am doing is testing it out to see if it works by send me a email with a new
password
4. There are no error messages - I put in my password - it then ask me for my identity
confirmation - it then tells me "Your password has been sent to you"

I do know it is reading the web.config because if I put in say a bogus port number or network host
it gives me an error messages.

thanks

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:ei****************@TK2MSFTNGP03.phx.gbl...
>Posting the specific code which isn't working would help others to help you.
Also, is there any error returned ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:uY*************@TK2MSFTNGP04.phx.gbl...
>>Below are my setting in the web.config file for forgotten passwords. I receive a completion that
the password
has been sent but upon looking in outlook there is no email sent to me. I have also tried
127.0.0.1 for the network host

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>

thanks



Jul 15 '06 #4
Juan, thanks for your reply it lead me to the answer.

I have sbc dsl which is with yahoo. I went into a folder they have for bulk
mail (that they filter for you) and found all the missing emails.
I then read the instructions for moving this bulk folder to outlook and that
did the trick.
In this case it was not necessary to open port 25 (which was closed). I
certainly can use this handy utility though.

thank for all your help

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:uO**************@TK2MSFTNGP03.phx.gbl...
re:
>3. What I am doing is testing it out to see if it works by send me a
email with a new password

That's fine...but the web.config doesn't set the "to" address.
It only sets the "from" address.

What does your smtp log say ?

The SMTP Logfiles are usually at :
Drive:\%WINDIR%\system32\LogFiles\SMTPSVC1

Could you check to see what the smtp log says when you try to send the
email ?

re:
>I do know it is reading the web.config because if I put in say a bogus
port number or network host it gives me an error messages.

Is your port 25 open ?

Please visit this page to find out:
http://upseros.com/portscan.php

Wait a few seconds for the page to process...and don't worry about the
page being in spanish.
Port 25 is listed about 5 positions from the top.

If there's a green dot on its row, it's open.
If there's a red dot, that's your problem.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message
news:O1**************@TK2MSFTNGP03.phx.gbl...
>Juan,
1. This is the PasswordRecovery control from the toolbox
2. I did not write any code.
3. What I am doing is testing it out to see if it works by send me
a email with a new password
4. There are no error messages - I put in my password - it then ask
me for my identity confirmation - it then tells me "Your password has
been sent to you"

I do know it is reading the web.config because if I put in say a bogus
port number or network host it gives me an error messages.

thanks

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:ei****************@TK2MSFTNGP03.phx.gbl...
>>Posting the specific code which isn't working would help others to help
you.
Also, is there any error returned ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message
news:uY*************@TK2MSFTNGP04.phx.gbl...
Below are my setting in the web.config file for forgotten passwords. I
receive a completion that the password
has been sent but upon looking in outlook there is no email sent to me.
I have also tried 127.0.0.1 for the network host

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>

thanks



Jul 15 '06 #5
Glad to know that you're up and running, Barry.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:%2****************@TK2MSFTNGP04.phx.gbl...
Juan, thanks for your reply it lead me to the answer.

I have sbc dsl which is with yahoo. I went into a folder they have for bulk mail (that they filter
for you) and found all the missing emails.
I then read the instructions for moving this bulk folder to outlook and that did the trick.
In this case it was not necessary to open port 25 (which was closed). I certainly can use this
handy utility though.

thank for all your help

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:uO**************@TK2MSFTNGP03.phx.gbl...
>re:
>>3. What I am doing is testing it out to see if it works by send me a email with a new password

That's fine...but the web.config doesn't set the "to" address.
It only sets the "from" address.

What does your smtp log say ?

The SMTP Logfiles are usually at :
Drive:\%WINDIR%\system32\LogFiles\SMTPSVC1

Could you check to see what the smtp log says when you try to send the email ?

re:
>>I do know it is reading the web.config because if I put in say a bogus port number or network
host it gives me an error messages.

Is your port 25 open ?

Please visit this page to find out:
http://upseros.com/portscan.php

Wait a few seconds for the page to process...and don't worry about the page being in spanish.
Port 25 is listed about 5 positions from the top.

If there's a green dot on its row, it's open.
If there's a red dot, that's your problem.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:O1**************@TK2MSFTNGP03.phx.gbl...
>>Juan,
1. This is the PasswordRecovery control from the toolbox
2. I did not write any code.
3. What I am doing is testing it out to see if it works by send me a email with a new
password
4. There are no error messages - I put in my password - it then ask me for my identity
confirmation - it then tells me "Your password has been sent to you"

I do know it is reading the web.config because if I put in say a bogus port number or network
host it gives me an error messages.

thanks

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:ei****************@TK2MSFTNGP03.phx.gbl.. .
Posting the specific code which isn't working would help others to help you.
Also, is there any error returned ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"barry" <fl******@ix.netcom.comwrote in message news:uY*************@TK2MSFTNGP04.phx.gbl...
Below are my setting in the web.config file for forgotten passwords. I receive a completion
that the password
has been sent but upon looking in outlook there is no email sent to me. I have also tried
127.0.0.1 for the network host
>
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="mo******@sbcglobal.net">
<network host="localhost" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>
>
thanks
>




Jul 15 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: DDK | last post by:
I really wish there were some examples explaining how to create a forgot password email link system when you encrypt a password in a database and use ASP.NET/C# preferably. Since the password is...
0
by: paulmac106 | last post by:
Hi, I was able to get the login control to work with my custom membership provider (a sql db table), but the "remember me" function and the function that will send a user their forgotten...
2
by: kuldeep singh sethi | last post by:
Hey Friends, I have searched in google to get information about "forgot password ?". but didn't satisfy.i need help for this code. i want code for forgot password. I have no idea how to send...
2
by: chaos | last post by:
Hi all, i need help in this forgot password page, as the error message is show in another page cause the arrangement of the design in a mess. As i want to show the error message on the forgot...
1
by: Peterwkc | last post by:
Hello all respective fellows, i have a assignment where i need to create website that allow customer to order online with theusername and password. My situation is when user forgot the password,...
1
by: groupie | last post by:
Hi, I'd like to know how to implement the "Forgot Password" feature on many websites which require a login, exactly like this ebay example:...
3
by: jerrydigital | last post by:
Hi, I am working on a forgotpassword.asp page. I would like the user to enter their email address, and click submit. Upon submit, an email will be sent to the user's email address provided with...
10
matheussousuke
by: matheussousuke | last post by:
Hi, guys, I'm developing a script and it's almost done, just left two little things: Forgot password option Change password option About forgot password: The user can use as many user names...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.