Connectiong SMTP server
I am writing e-mails from a java application connected to the net via a dial up PPP connection to my ISP. I am using JSE 5.0, javamail 1.4 and jaf 1.1. I am getting the following error message:
javax.mail.MessagingException: Could not connect to SMTP host: smtp.juno.com, port: 25;
nested exception is:
java.net.ConnectException: Connection timed out: connect
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1282)
at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:370)
at javax.mail.Service.connect(Service.java:275)
at javax.mail.Service.connect(Service.java:156)
at javax.mail.Service.connect(Service.java:105)
Two theories-- I should install the smpt software from sun, or
perhaps I am entering user or password incorrectly. I appreciate your attention.

