You are not logged in.
Pages: 1
I am having trouble sending a report through the mail. I am getting quite a few different errors. I have used Yahoo and Gmail.
For Yahoo, i see the following error:
java.lang.RuntimeException: javax.mail.AuthenticationFailedException: 535 5.7.0 (#AUTH005) Too many bad auth attempts.
For Gmail , i see the following error:
java.lang.RuntimeException: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted.
right now i have it set up for gmail in my mail.cf file:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<smtp>
<host>smtp.gmail.com</host>
<port>587</port>
<username>myemail@gmail.com</username>
<password>mypw</password>
<ssl>false</ssl>
<tls>
<enable>true</enable>
<require>true</require>
</tls>
</smtp>
<mail>
<sender>rs@host.net</sender>
<senderName>ReportServer</senderName>
<forceSender>false</forceSender>
<encryptionPolicy>allow_mixed</encryptionPolicy>
</mail>
</configuration>
Can someone guide me to what i am doing wrong, please? I have looked at the documentation, but that is not been very helpful.
Offline
Hi slickpk,
the errors you show come from your email clients. These should be self-explanatory:
(#AUTH005) Too many bad auth attempts.
Username and Password not accepted.
Regards,
Eduardo
Offline
Pages: 1