Hello
I am trying to enable e-mail support on my recent RapidServer installation, however I am getting timeout exception and I hope some one can help me..
I have followed the steps from this article and my standalone.xml looks like
<subsystem xmlns="urn:jboss:domain:mail:1.2">
<mail-session name="java:/Mail" jndi-name="java:/Mail" from="username@intelexus.com.br">
<smtp-server outbound-socket-binding-ref="mail-smtp">
<login name="username@intelexus.com.br" password="pa$$word"/>
</smtp-server>
</mail-session>
</subsystem>
<outbound-socket-binding name="mail-smtp">
<remote-destination host="mail.intelexus.com.br" port="25"/>
</outbound-socket-binding>
And this is the log:
21:30:56,150 WARNING [de.rapidanalytics.tools.JndiMailSessionFactory] (http-/0.0.0.0:8888-1) Property com.rapidanalytics.mail.jndi_name is undefined. Assuming 'java:/Mail'.
21:32:11,887 SEVERE [com.rapidminer] (http-/0.0.0.0:8888-1) Cannot send mail to xxxxxx@gmail.com: javax.mail.MessagingException: Could not connect to SMTP host: mail.intelexus.com.br, port: 25;
nested exception is:
java.net.ConnectException: Operation timed out
I am quite sure that my server has this unsecure version to connect with
> username@intelexus.com.br
> smtp: mail.intelexus.com.br
> port: 25
There is also another option with (more secure) with SSL/TLS
> smtp: br704.hostgator.com.br
> port: 465
I also tried to ping my domain, use the IP instead the domain...
Can somebody give some tip to solve this issue? Or provide some config to use a gmail account.
Thanks!