Arvixe email configuration

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
3/26/2011 3:59:45 PM
Gravatar
Total Posts 18

Arvixe email configuration

Hi, I'm trying to set up a mojoportal installation in an Arvixe hosted account. When I set up the email for the site using my gmail account it works ok, but when I try to use my Arvixe email account it doesn't work. Could someone with a Mojoportal site up and running on Arvixe kindly post the proper keys to set to get it working properly with Arvixe's SMTP servers? Thanks.

3/26/2011 6:48:03 PM
Gravatar
Total Posts 245
mojoPortal Community Expert

Re: Arvixe email configuration

I'm on Arvixe and their email works well in my mojoPortal Contact form.

This is from my web.config file.

<smtp from="rick@hubka.com">
   <network host="localhost" port="25" password="this is not my passwordhahaha" userName="rick@hubka.com" />

Hope this helps

Ricki

3/27/2011 1:57:39 PM
Gravatar
Total Posts 18

Re: Arvixe email configuration

Thanks, I got it working!

I just wanted to post the keys I used in case anyone else needs them.

 

    <add key="SMTPServer" value="localhost"/>
    <add key="SMTPRequiresAuthentication" value="true"/>
    <add key="SMTPUseSsl" value="false"/>
    <add key="SMTPPort" value="26"/>
    <add key="SMTPUser" value="your_email_address@yoursite.com"/>
    <add key="SMTPPassword" value="your_email_password"/>

then later in the file,

<system.net>
    <mailSettings>
      <smtp from="your_email_address@yoursite.com">
        <network host="localhost" port="26" password="your_email_password" userName="your_email_address@yoursite.com" />
      </smtp>
    </mailSettings>
  </system.net>

7/11/2011 11:32:54 AM
Gravatar
Total Posts 31

Re: Arvixe email configuration

Yes, this information was very, very, very useful.

Using this information I have saved up my time...

Thanks you

8/1/2011 2:14:47 PM
Gravatar
Total Posts 20
ScalSan

Re: Arvixe email configuration

Very thankful indeed we are... smiley

8/1/2011 3:34:06 PM
Gravatar
Total Posts 68

Re: Arvixe email configuration

Regarding email configuration .... this content states: Note: If you are running version 2.3.6.5 or later, this entire system.net section can be removed or commented out of web.config.

<system.net>
   <mailSettings>
     <smtp from="noreply@yourdomain.com">
      <network host="localhost" port="25" password="" userName="" />
    </smtp>
  </mailSettings>
</system.net>

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