SMTP Settings

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
11/10/2011 11:47:29 PM
Gravatar
Total Posts 27

SMTP Settings

 

hi,

newsletter is not working. i'm getting the following error.

SendEmail 
2011-11-10 23:39:14,113 INFO (null) - (null) - (null) - mojoPortal.Web.WebTaskManager - deserialized WebTaskManager task
2011-11-10 23:39:14,160 INFO 122.166.163.138 - en-US - /eletter/LetterEdit.aspx?l=69862f5d-9356-4028-9f0d-4ed810b2a7fd&letter=b536206f-83c4-45a2-aed5-1f9baded1b2f - mojoPortal.Web.WebTaskManager - Queued WebTaskManager on a new thread
2011-11-10 23:39:14,253 INFO (null) - (null) - (null) - mojoPortal.Web.LetterSendTask - deserialized LetterSendTask task
2011-11-10 23:39:14,256 INFO (null) - (null) - (null) - mojoPortal.Web.LetterSendTask - Queued LetterSendTask on a new thread
2011-11-10 23:39:24,693 ERROR (null) - (null) - (null) - mojoPortal.Net.Email - Invalid smtp settings detected in SendEmail 
2011-11-10 23:39:24,881 ERROR (null) - (null) - (null) - mojoPortal.Net.Email - Invalid smtp settings detected in SendEmail 
2011-11-10 23:39:24,908 ERROR (null) - (null) - (null) - mojoPortal.Net.Email - Invalid smtp settings detected in SendEmail 
2011-11-10 23:39:24,938 ERROR (null) - (null) - (null) - mojoPortal.Net.Email - Invalid smtp settings detected in SendEmail 
2011-11-10 23:39:25,469 INFO (null) - (null) - (null) - mojoPortal.Web.LetterSendTask - started LetterSendTask task

can anyone guide me what mistake i have done..

this is my setting in web config.

<add key="SMTPServer" value="maill.servername"/>
    <add key="SMTPRequiresAuthentication" value="true"/>
    <add key="SMTPUseSsl" value="true"/>
    <add key="SMTPPort" value="25"/>
    <add key="SMTPUser" value="admin@richierichholidays.in"/>
    <add key="SMTPPassword" value="password"/>
    <add key="SMTPTimeoutInMilliseconds" value="30000"/>

11/11/2011 8:03:43 AM
Gravatar
Total Posts 18439

Re: SMTP Settings

Make sure you don't have this:

<add key="EnableSiteSettingsSmtpSettings" value="true"/>

because if that is set to true it is ignoring the rest of the settings in user.config/web.config and will use smtp settings configure din Administration > Site Settings.

Get the contact form working first since it is easiest to test and then other things that send email should work.

Hope that helps,

Joe

ps: this is not the correct forum for this question, this is the developer forum for questions about custom development in Visual Studio. Please read the forum descriptions before posting to help us keep the forums organized.

You must sign in to post in the forums. This thread is closed to new posts.