YAFLogo

sonujangid7
  • sonujangid7
  • 51.8% (Neutral)
  • YAF Forumling Topic Starter
13 years ago
i install yaf on my site its working properly but when any body ask question reply email notification is not work i change my smtp setting and app.confgi file my smtp setting is

please check it tell me about this correct smtp setting when i try to send email any user give a error message the smtp host is not specified this and password recovery mail is not receive ?????

Sponsor
Thantis
  • Thantis
  • 81.8% (Honored)
  • YAF Commander
13 years ago
Looks fine to me, verifiy your settings with your mail host. Make sure your using the correct port, alot of mail servers are moving away from port 25.
squirrel
13 years ago

i install yaf on my site its working properly but when any body ask question reply email notification is not work i change my smtp setting and app.confgi file my smtp setting is

please check it tell me about this correct smtp setting when i try to send email any user give a error message the smtp host is not specified this and password recovery mail is not receive ?????

Originally Posted by: sonujangid7 

You have the wrong lines 'commented' out. If you are using a remote server you need to change it to this (copied from your post, just properly commented)

<!--
	SMTP setup for sending of e-mails from your forum.
	If the SMTP is SSL, you must edit the appSettings and set
	"YAF.UseSMTPSSL" to "true".
-->
<smtp deliveryMethod="Network" from="noreply@mydomain.com">
	<!-- Uncomment to specify SMTP settings -->
	<network host="mail.collegecutoff.com" port="25" password="my password" userName="noreply@mydomain.com" />
</smtp>

<!-- Use this setting for development: pickup directory must be exact path -->
<!--smtp deliveryMethod="SpecifiedPickupDirectory">
	<!-- specifiedPickupDirectory pickupDirectoryLocation="C:\Inetpub\wwwroot\email" / -->
<!-- /smtp--> 

Then you also need to set a proper "from=" entry and proper "password=" and "username=" settings as well.


If you can't find it using the forum search, try my signature link -- searches this site using Google: Google is my Friend 
Thantis
  • Thantis
  • 81.8% (Honored)
  • YAF Commander
13 years ago
Good catch, I missed that totally Squirrel.
jigglypuff2
13 years ago
nice -- this got me too.