MonoX support board

Start the conversation, ask questions and share tips and solutions with fellow developers.

Non-registered users can only browse through our support boards. Please register now if you want to post your questions. It takes a second and it is completely free. Alternatively, you can log in without registration using your credentials at major sites such as Google, Microsoft Live, OpenId, Facebook, LinkedIn or Yahoo.

User registration, OAuth and install from zip (Closed) (Mono Support )

Viewed 116557 time(s), 27 post(s) 28.05.2014 08:14:01by PsMaster

Related topics

mzilic

mzilic

22.06.2014 16:12:57
Hello,

The errors are still indicating that the mailserver is not accepting the credentials. Are you using IIS SMTP to send e-mails or something different? Have you checked the firewall settings? If you're using IIS SMTP have you checked its settings to see if MonoX based site has access rights to the mailserver?

Regards,
Mario
Dieser Inhalt wurde noch nicht bewertet. 
2218 Reputation 300 Total posts
PsMaster

PsMaster

22.06.2014 20:18:32
I can't manage the IIS since I'm purchasing hosting services and not hosting this myself. All I got was 2 ports for secure and not secure connections and SMTP mail service address.
Dieser Inhalt wurde noch nicht bewertet. 
95 Reputation 13 Total posts
imarusic

imarusic

24.06.2014 08:07:56
Hi,

did you try with some other mail server? If it works then there is a definitely an issue with your current mail server.

Regards.
Dieser Inhalt wurde noch nicht bewertet. 
3016 Reputation 428 Total posts
mzilic

mzilic

24.06.2014 10:46:44
Hello,

Can you also contact your host and check if its a mailserver permission related issue?

Regards,
Mario
Dieser Inhalt wurde noch nicht bewertet. 
2218 Reputation 300 Total posts
PsMaster

PsMaster

25.06.2014 17:33:33
I contacted Arvixe support, they're telling me to use port 25 and localhost as host. Tried both settings (secure true and false on both key="EnableSmtpSSL" and enableSsl="true"), but still get the same error. Now I tried the same stuff with gmail services, both secure and not, on ports 587 (throws the error instantly) and 465(times out)...

Quote from Arvixe support reply: "Have you enabled smtp authentication in your script? Please contact a developer and make sure SMTP authentication is enabled in your script." :)
Dieser Inhalt wurde noch nicht bewertet. 
95 Reputation 13 Total posts
PsMaster

PsMaster

26.06.2014 20:11:50
OK, finally fixed the mail problem!!! The final SMTP config:
<add key="EnableSmtpSSL" value="false" />

<mailSettings>
      <smtp deliveryMethod="Network">
        <network host="mail.somedomain.com" userName="mail@somedomain.com" password="somepass" port="25" />
      </smtp>
    </mailSettings>

Seems removing the "from", "enableSsl" and "defaultCredentials" values fixed the problem.
Dieser Inhalt wurde noch nicht bewertet. 
95 Reputation 13 Total posts
imarusic

imarusic

27.06.2014 08:09:53
Hi,

we are glad that you managed to resolve the issue,

Regards
Dieser Inhalt wurde noch nicht bewertet. 
3016 Reputation 428 Total posts
1 2 3