Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • martin 259 posts 31 karma points
    Jul 17, 2009 @ 18:47
    martin
    0

    mailsettings

    I recently upgraded to 4.0.2.1 and so far everything seems to work.

    however I cannot get notifications to work, email does not get sent or show up in the queue

    smtp service are running, I can send a message using an old asp (cdonts.dll) form from a standard html page

    but umbraco will not send. I have tried a few combinations in web.config  such as :

    <system.net> 
            <mailSettings> 
                <smtp from="[email protected]"> 
                    <network host="127.0.0.1" port="25" /> 
                </smtp> 
            </mailSettings> 
        </system.net> <system.net> 

     

    nothing seems to work.

    can I use the older umbracoSmtpServer? 

    This is the only thing that is holding me up from upgrading.

    otherwise I suppose I will stay with 3.0.6
           

  • martin 259 posts 31 karma points
    Jul 17, 2009 @ 18:49
    martin
    0

    sorry seems I cannot edit my own post on this forum to get rid of wierd formatting

  • Peter Dijksterhuis 1442 posts 1722 karma points
    Jul 17, 2009 @ 19:16
    Peter Dijksterhuis
    0

    Its possible that your mailserver needs verification.

    You could try to provide username password:

      <system.net>
        <mailSettings>
          <smtp>
            <network host="mailserver" userName="username" password="password" />
          </smtp>
        </mailSettings>
      </system.net>

  • martin 259 posts 31 karma points
    Jul 17, 2009 @ 20:03
    martin
    0

    I tried username/password as well but no go (smtp virtual server is set for anonymous anyway)

    Finally found that the below works ("Network" also appears case sensitive)

      <system.net>
       <mailSettings>
                <smtp deliveryMethod="Network" from="[email protected]">
                    <network host="web2" port="25"/>
                </smtp>
            </mailSettings>
       
        </system.net>

Please Sign in or register to post replies

Write your reply to:

Draft