Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My site is based on JSP pages and servlets. I run Tomcat 6 on my vps.

I'm using JavaMail version 1.4 to send emails on my site.

I can send off a few emails during my session, but today I got a blank page on the submission page of my site. So I looked at the Tomcat logs and here's what happened -

INFO   | jvm 1    | 2010/12/15 10:29:13 | DEBUG: setDebug: JavaMail version 1.4.1
INFO   | jvm 1    | 2010/12/15 10:29:13 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
INFO   | jvm 1    | 2010/12/15 10:29:13 | DEBUG SMTP: useEhlo true, useAuth true
INFO   | jvm 1    | 2010/12/15 10:29:13 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false
INFO   | jvm 1    | 2010/12/15 10:29:14 | 421 4.7.1 - Connection Refused -  -  Too many connections
INFO   | jvm 1    | 2010/12/15 10:29:14 | DEBUG SMTP: could not connect to host "smtp.myisprovider.net", port: 25, response: 421
INFO   | jvm 1    | 2010/12/15 10:29:14 | 
INFO   | jvm 1    | 2010/12/15 10:29:14 | javax.mail.MessagingException: Could not connect to SMTP host: smtp.myisprovider.net, port: 25, response: 421
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1379)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at javax.mail.Service.connect(Service.java:288)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at javax.mail.Service.connect(Service.java:169)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at spyder.servlets.email.MessageCenterServlet.cancelService(MessageCenterServlet.java:836)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at spyder.servlets.email.MessageCenterServlet.doPost(MessageCenterServlet.java:172)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at spyder.servlets.email.MessageCenterServlet.doGet(MessageCenterServlet.java:39)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:774)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:703)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:896)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
INFO   | jvm 1    | 2010/12/15 10:29:14 |   at java.lang.Thread.run(Thread.java:595)

I send my emails through MY ISP provider. The one I use for internet at home. This is not the same provider that my VPS runs on.

So is this problem a result of my ISP provider and whatever is set on their end, or does this have to do with my code in my servlet?

The log said "too many connections", so initially I'm wondering if this is something on my end, and if there is something I should be closing (in the servlet, call close() method on something?) after the email is sent?

Edited post to include snippet from servlet...


Transport t = null;
            try {                   

                    //get email address to send
                    //this email to
                    rs = stmt.executeQuery("Select Tech_Support_Email,POP3,SMTP from sitewide_info");                   

                    String toName = "mywebsite.com";
                    String host_email_address = "";
                    String POP3 = ""; 
                    String SMTP = ""; 

                    if(rs.next()) {
                       host_email_address = rs.getString(1);
                       POP3 = rs.getString(2);
                       SMTP = rs.getString(3);
                     }                  

                    // Specify the SMTP Host
                        Properties props = new Properties();                                        

                    //props.put(POP3, SMTP);
                    props.setProperty("mail.smtp.auth", "true");                                
                    props.put("mail.pop3.host", POP3);
                props.put("mail.smtp.host", SMTP);

                // Create a mail session
                    Session ssn = Session.getInstance(props, null);
                    ssn.setDebug(true);                     

                //...
                //query db for some information, that will be appended to email             
                //...

                // set the from information
                InternetAddress from = new InternetAddress(fromEmail, fromName);
                // set the to information
                InternetAddress to = new InternetAddress(host_email_address, toName);                   

                // Create the message
                    Message msg = new MimeMessage(ssn);
                    msg.setFrom(from);
                    msg.addRecipient(Message.RecipientType.TO, to);
                    msg.addHeader("X-Priority", "1");
                    msg.setSubject(Subject);
                    msg.setContent(HtmlMessage, "text/html");

                String protocol = "smtp";

                t = ssn.getTransport(protocol);
                    t.connect(SMTP,username,password);
                t.sendMessage(msg, msg.getAllRecipients());                 

                res.sendRedirect(res.encodeRedirectURL("MyAccount.jsp?message=Email%20successfully%20sent."));
                return;                                                                     

                }//try
                 catch (MessagingException mex) {               
                        mex.printStackTrace(); 
                        } 
                 catch(Exception e) {}                  
                  finally { 
                       try { 
                           t.close(); 
                           }
                           catch(Exception e) {}
                       }//finally
share|improve this question

2 Answers

up vote 2 down vote accepted

I assume that you have a block of code like this somewhere:

Transport transport = session.getTransport("smtp");
transport.connect();
transport.sendMessage(message, message.getAllRecipients());
transport.close();

Are you calling the close method?

Also, what is the frequency of calls to this? It may just be your provider practicing spam prevention.

share|improve this answer
I call close() on the Transport object, I just checked my code. In fact, I'm going to post a snippet of a method I use in one of my servlets for sending the email. Maybe there is something you will catch that I'm not seeing. I will append the code to my original question... – katura Dec 15 '10 at 16:32
I wondered about that too, if the provider is limiting me. For this particular process that I was testing on my site, 2 emails will be sent. 1 to myself, 1 to the customer. The first time I tried it, it was successful. Both emails were sent. The second time, only the 1st went, then it erred. 7 mins later I sent an email via different jsp/servlet page, and the email went through. – katura Dec 15 '10 at 16:48
I think the problem has been solved. There is a method in my servlet that sends out 2 emails. Problem with this is that I had made 2 connections to the Transport, one after the other, because I had 2 emails to send. The Transport object needed to be closed after each request to connect. I did some testing, and emails are being sent successfully. So for now the problem has been fixed:) Thank you for your help. – katura Dec 15 '10 at 18:47

Couldn't append this to my original post -

Tomcat log file - messaging section only



Does anyone notice anything odd in this log? Something that might answer why it is I'm having the problem I'm having?

INFO   | jvm 1    | 2010/12/15 10:27:32 | DEBUG: setDebug: JavaMail version 1.4.1
INFO   | jvm 1    | 2010/12/15 10:27:32 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
INFO   | jvm 1    | 2010/12/15 10:27:32 | DEBUG SMTP: useEhlo true, useAuth true
INFO   | jvm 1    | 2010/12/15 10:27:32 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false
INFO   | jvm 1    | 2010/12/15 10:27:34 | 220 pacmmta52 ESMTP ecelerity 2.2.2.45 r() Wed, 15 Dec 2010 10:27:00 -0500
INFO   | jvm 1    | 2010/12/15 10:27:34 | DEBUG SMTP: connected to host "smtp.myisprovider.net", port: 25
INFO   | jvm 1    | 2010/12/15 10:27:34 | 
INFO   | jvm 1    | 2010/12/15 10:27:34 | EHLO mywebsite.com
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250-pacmmta52 says EHLO to 216.154.212.71:40581
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250-ENHANCEDSTATUSCODES
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250-AUTH=LOGIN PLAIN
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250-AUTH LOGIN PLAIN
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250-8BITMIME
INFO   | jvm 1    | 2010/12/15 10:27:35 | 250 PIPELINING
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Found extension "AUTH=LOGIN", arg "PLAIN"
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN"
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Found extension "8BITMIME", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Found extension "PIPELINING", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: Attempt to authenticate
INFO   | jvm 1    | 2010/12/15 10:27:35 | AUTH LOGIN
INFO   | jvm 1    | 2010/12/15 10:27:35 | 334 VXNlcm5hbWU6
INFO   | jvm 1    | 2010/12/15 10:27:35 | ZHppbmVyMDI=
INFO   | jvm 1    | 2010/12/15 10:27:35 | 334 UGFzc3dvcmQ6
INFO   | jvm 1    | 2010/12/15 10:27:35 | TmV0aG5nNA==
INFO   | jvm 1    | 2010/12/15 10:27:35 | 235 Authed. Go on.
INFO   | jvm 1    | 2010/12/15 10:27:35 | DEBUG SMTP: use8bit false
INFO   | jvm 1    | 2010/12/15 10:27:35 | MAIL FROM:
INFO   | jvm 1    | 2010/12/15 10:27:37 | 250 MAIL FROM accepted
INFO   | jvm 1    | 2010/12/15 10:27:37 | RCPT TO:
INFO   | jvm 1    | 2010/12/15 10:27:39 | 250 RCPT TO accepted
INFO   | jvm 1    | 2010/12/15 10:27:39 | DEBUG SMTP: Verified Addresses
INFO   | jvm 1    | 2010/12/15 10:27:39 | DEBUG SMTP:   "Mywebsite.com" 
INFO   | jvm 1    | 2010/12/15 10:27:39 | DATA
INFO   | jvm 1    | 2010/12/15 10:27:39 | 354 continue.  finished with "\r\n.\r\n"
INFO   | jvm 1    | 2010/12/15 10:27:39 | From: Bob Smith 
INFO   | jvm 1    | 2010/12/15 10:27:39 | To: "Mywebsite.com" 
INFO   | jvm 1    | 2010/12/15 10:27:39 | Message-ID: 
INFO   | jvm 1    | 2010/12/15 10:27:39 | Subject: Cancel Service Request from Bob Smith (Customer # : 1234)
INFO   | jvm 1    | 2010/12/15 10:27:39 | MIME-Version: 1.0
INFO   | jvm 1    | 2010/12/15 10:27:39 | Content-Type: text/html; charset=us-ascii
INFO   | jvm 1    | 2010/12/15 10:27:39 | Content-Transfer-Encoding: 7bit
INFO   | jvm 1    | 2010/12/15 10:27:39 | X-Priority: 1
INFO   | jvm 1    | 2010/12/15 10:27:39 | 
INFO   | jvm 1    | 2010/12/15 10:27:39 | Cancellation request has been initiated by Bob Smith (Customer #1234)
INFO   | jvm 1    | 2010/12/15 10:27:39 | .
INFO   | jvm 1    | 2010/12/15 10:27:41 | 250 OK 49/7A-03865-64ED80D4
INFO   | jvm 1    | 2010/12/15 10:27:41 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
INFO   | jvm 1    | 2010/12/15 10:27:41 | DEBUG SMTP: useEhlo true, useAuth true
INFO   | jvm 1    | 2010/12/15 10:27:41 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false
INFO   | jvm 1    | 2010/12/15 10:27:43 | 220 pacmmta52 ESMTP ecelerity 2.2.2.45 r() Wed, 15 Dec 2010 10:27:09 -0500
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: connected to host "smtp.myisprovider.net", port: 25
INFO   | jvm 1    | 2010/12/15 10:27:43 | 
INFO   | jvm 1    | 2010/12/15 10:27:43 | EHLO mywebsite.com
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250-pacmmta52 says EHLO to 216.154.212.71:40613
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250-8BITMIME
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250-PIPELINING
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250-ENHANCEDSTATUSCODES
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250-AUTH=LOGIN PLAIN
INFO   | jvm 1    | 2010/12/15 10:27:43 | 250 AUTH LOGIN PLAIN
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Found extension "8BITMIME", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Found extension "PIPELINING", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Found extension "AUTH=LOGIN", arg "PLAIN"
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN"
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: Attempt to authenticate
INFO   | jvm 1    | 2010/12/15 10:27:43 | AUTH LOGIN
INFO   | jvm 1    | 2010/12/15 10:27:43 | 334 VXNlcm5hbWU6
INFO   | jvm 1    | 2010/12/15 10:27:43 | ZHppbmVyMDI=
INFO   | jvm 1    | 2010/12/15 10:27:43 | 334 UGFzc3dvcmQ6
INFO   | jvm 1    | 2010/12/15 10:27:43 | TmV0aG5nNA==
INFO   | jvm 1    | 2010/12/15 10:27:43 | 235 Authed. Go on.
INFO   | jvm 1    | 2010/12/15 10:27:43 | DEBUG SMTP: use8bit false
INFO   | jvm 1    | 2010/12/15 10:27:43 | MAIL FROM:
INFO   | jvm 1    | 2010/12/15 10:27:45 | 250 MAIL FROM accepted
INFO   | jvm 1    | 2010/12/15 10:27:45 | RCPT TO:
INFO   | jvm 1    | 2010/12/15 10:27:48 | 250 RCPT TO accepted
INFO   | jvm 1    | 2010/12/15 10:27:48 | DEBUG SMTP: Verified Addresses
INFO   | jvm 1    | 2010/12/15 10:27:48 | DEBUG SMTP:   Bob Smith 
INFO   | jvm 1    | 2010/12/15 10:27:48 | DATA
INFO   | jvm 1    | 2010/12/15 10:27:48 | 354 continue.  finished with "\r\n.\r\n"
INFO   | jvm 1    | 2010/12/15 10:27:48 | From: "Mywebsite.com" 
INFO   | jvm 1    | 2010/12/15 10:27:48 | To: Bob Smith 
INFO   | jvm 1    | 2010/12/15 10:27:48 | Message-ID: 
INFO   | jvm 1    | 2010/12/15 10:27:48 | Subject: Cancel Service Request Received
INFO   | jvm 1    | 2010/12/15 10:27:48 | MIME-Version: 1.0
INFO   | jvm 1    | 2010/12/15 10:27:48 | Content-Type: text/html; charset=us-ascii
INFO   | jvm 1    | 2010/12/15 10:27:48 | Content-Transfer-Encoding: 7bit
INFO   | jvm 1    | 2010/12/15 10:27:48 | X-Priority: 1
INFO   | jvm 1    | 2010/12/15 10:27:48 | 
INFO   | jvm 1    | 2010/12/15 10:27:48 | Bob Smith, your request to cancel service has been received and will be processed shortly.
You will receive a confirmation email once your service has been deactivated.
INFO | jvm 1 | 2010/12/15 10:27:48 | . INFO | jvm 1 | 2010/12/15 10:27:50 | 250 OK 0F/7A-03865-F4ED80D4 INFO | jvm 1 | 2010/12/15 10:28:33 | DEBUG: setDebug: JavaMail version 1.4.1 INFO | jvm 1 | 2010/12/15 10:28:33 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc] INFO | jvm 1 | 2010/12/15 10:28:33 | DEBUG SMTP: useEhlo true, useAuth true INFO | jvm 1 | 2010/12/15 10:28:33 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false INFO | jvm 1 | 2010/12/15 10:28:35 | 220 pacmmta51 ESMTP ecelerity 2.2.2.45 r() Wed, 15 Dec 2010 10:28:01 -0500 INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: connected to host "smtp.myisprovider.net", port: 25 INFO | jvm 1 | 2010/12/15 10:28:35 | INFO | jvm 1 | 2010/12/15 10:28:35 | EHLO mywebsite.com INFO | jvm 1 | 2010/12/15 10:28:35 | 250-pacmmta51 says EHLO to 216.154.212.71:40806 INFO | jvm 1 | 2010/12/15 10:28:35 | 250-PIPELINING INFO | jvm 1 | 2010/12/15 10:28:35 | 250-8BITMIME INFO | jvm 1 | 2010/12/15 10:28:35 | 250-AUTH=LOGIN PLAIN INFO | jvm 1 | 2010/12/15 10:28:35 | 250-AUTH LOGIN PLAIN INFO | jvm 1 | 2010/12/15 10:28:35 | 250 ENHANCEDSTATUSCODES INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Found extension "PIPELINING", arg "" INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Found extension "8BITMIME", arg "" INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Found extension "AUTH=LOGIN", arg "PLAIN" INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN" INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg "" INFO | jvm 1 | 2010/12/15 10:28:35 | DEBUG SMTP: Attempt to authenticate INFO | jvm 1 | 2010/12/15 10:28:35 | AUTH LOGIN INFO | jvm 1 | 2010/12/15 10:28:35 | 334 VXNlcm5hbWU6 INFO | jvm 1 | 2010/12/15 10:28:35 | ZHppbmVyMDI= INFO | jvm 1 | 2010/12/15 10:28:35 | 334 UGFzc3dvcmQ6 INFO | jvm 1 | 2010/12/15 10:28:35 | TmV0aG5nNA== INFO | jvm 1 | 2010/12/15 10:28:36 | 235 Authed. Go on. INFO | jvm 1 | 2010/12/15 10:28:36 | DEBUG SMTP: use8bit false INFO | jvm 1 | 2010/12/15 10:28:36 | MAIL FROM: INFO | jvm 1 | 2010/12/15 10:28:38 | 250 MAIL FROM accepted INFO | jvm 1 | 2010/12/15 10:28:38 | RCPT TO: INFO | jvm 1 | 2010/12/15 10:28:40 | 250 RCPT TO accepted INFO | jvm 1 | 2010/12/15 10:28:40 | DEBUG SMTP: Verified Addresses INFO | jvm 1 | 2010/12/15 10:28:40 | DEBUG SMTP: " mywebsite.com" INFO | jvm 1 | 2010/12/15 10:28:40 | DATA INFO | jvm 1 | 2010/12/15 10:28:40 | 354 continue. finished with "\r\n.\r\n" INFO | jvm 1 | 2010/12/15 10:28:40 | From: Bob Smith INFO | jvm 1 | 2010/12/15 10:28:40 | To: " mywebsite.com" INFO | jvm 1 | 2010/12/15 10:28:40 | Message-ID: INFO | jvm 1 | 2010/12/15 10:28:40 | Subject: Cancel Service Request from Bob Smith (Customer # : 1234) INFO | jvm 1 | 2010/12/15 10:28:40 | MIME-Version: 1.0 INFO | jvm 1 | 2010/12/15 10:28:40 | Content-Type: text/html; charset=us-ascii INFO | jvm 1 | 2010/12/15 10:28:40 | Content-Transfer-Encoding: 7bit INFO | jvm 1 | 2010/12/15 10:28:40 | X-Priority: 1 INFO | jvm 1 | 2010/12/15 10:28:40 | INFO | jvm 1 | 2010/12/15 10:28:40 | Cancellation request has been initiated by Bob Smith (Customer #1234) INFO | jvm 1 | 2010/12/15 10:28:40 | . INFO | jvm 1 | 2010/12/15 10:28:42 | 250 OK FB/AA-03396-38ED80D4 INFO | jvm 1 | 2010/12/15 10:28:42 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc] INFO | jvm 1 | 2010/12/15 10:28:42 | DEBUG SMTP: useEhlo true, useAuth true INFO | jvm 1 | 2010/12/15 10:28:42 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false INFO | jvm 1 | 2010/12/15 10:28:42 | 421 4.7.1 - Connection Refused - - Too many connections INFO | jvm 1 | 2010/12/15 10:28:42 | DEBUG SMTP: could not connect to host "smtp.myisprovider.net", port: 25, response: 421 INFO | jvm 1 | 2010/12/15 10:28:42 | INFO | jvm 1 | 2010/12/15 10:28:42 | javax.mail.MessagingException: Could not connect to SMTP host: smtp.myisprovider.net, port: 25, response: 421 INFO | jvm 1 | 2010/12/15 10:28:42 | at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1379) INFO | jvm 1 | 2010/12/15 10:28:42 | at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412) INFO | jvm 1 | 2010/12/15 10:28:42 | at javax.mail.Service.connect(Service.java:288) INFO | jvm 1 | 2010/12/15 10:28:42 | at javax.mail.Service.connect(Service.java:169) INFO | jvm 1 | 2010/12/15 10:28:42 | at spyder.servlets.email.MessageCenterServlet.cancelService(MessageCenterServlet.java:852) INFO | jvm 1 | 2010/12/15 10:28:42 | at spyder.servlets.email.MessageCenterServlet.doPost(MessageCenterServlet.java:172) INFO | jvm 1 | 2010/12/15 10:28:42 | at spyder.servlets.email.MessageCenterServlet.doGet(MessageCenterServlet.java:39) INFO | jvm 1 | 2010/12/15 10:28:42 | at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) INFO | jvm 1 | 2010/12/15 10:28:42 | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:774) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:703) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:896) INFO | jvm 1 | 2010/12/15 10:28:42 | at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690) INFO | jvm 1 | 2010/12/15 10:28:42 | at java.lang.Thread.run(Thread.java:595) INFO | jvm 1 | 2010/12/15 10:29:13 | DEBUG: setDebug: JavaMail version 1.4.1 INFO | jvm 1 | 2010/12/15 10:29:13 | DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc] INFO | jvm 1 | 2010/12/15 10:29:13 | DEBUG SMTP: useEhlo true, useAuth true INFO | jvm 1 | 2010/12/15 10:29:13 | DEBUG SMTP: trying to connect to host "smtp.myisprovider.net", port 25, isSSL false INFO | jvm 1 | 2010/12/15 10:29:14 | 421 4.7.1 - Connection Refused - - Too many connections INFO | jvm 1 | 2010/12/15 10:29:14 | DEBUG SMTP: could not connect to host "smtp.myisprovider.net", port: 25, response: 421 INFO | jvm 1 | 2010/12/15 10:29:14 | INFO | jvm 1 | 2010/12/15 10:29:14 | javax.mail.MessagingException: Could not connect to SMTP host: smtp.myisprovider.net, port: 25, response: 421 INFO | jvm 1 | 2010/12/15 10:29:14 | at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1379) INFO | jvm 1 | 2010/12/15 10:29:14 | at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412) INFO | jvm 1 | 2010/12/15 10:29:14 | at javax.mail.Service.connect(Service.java:288) INFO | jvm 1 | 2010/12/15 10:29:14 | at javax.mail.Service.connect(Service.java:169) INFO | jvm 1 | 2010/12/15 10:29:14 | at spyder.servlets.email.MessageCenterServlet.cancelService(MessageCenterServlet.java:836) INFO | jvm 1 | 2010/12/15 10:29:14 | at spyder.servlets.email.MessageCenterServlet.doPost(MessageCenterServlet.java:172) INFO | jvm 1 | 2010/12/15 10:29:14 | at spyder.servlets.email.MessageCenterServlet.doGet(MessageCenterServlet.java:39) INFO | jvm 1 | 2010/12/15 10:29:14 | at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) INFO | jvm 1 | 2010/12/15 10:29:14 | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:774) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:703) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:896) INFO | jvm 1 | 2010/12/15 10:29:14 | at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690) INFO | jvm 1 | 2010/12/15 10:29:14 | at java.lang.Thread.run(Thread.java:595)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.