Hello,
I am currently doing a summer job as Java programmer. We have an application where people can enter their tasks, agenda, etc. The program is a client-server program, so all data is stored on a server.
My boss asked me to make a mail notification system. For example, when a deadline of a task is near, it sends an email to the person assigned to that task.
I implemented this system in the server (which runs 24/24) using JavaMail and it works very well. But after a while (not sure how long) JavaMail stops sending mails. This is the exception I get:
...
[Mailer] enqueuing mail
[Mailer] enqueuing mail
[Mailer] enqueuing mail
[Mailer] enqueuing mail
[Mailer] enqueuing mail
[Mailer] enqueuing mail
[Mailer] enqueuing mail
...
[Mailer] flushing mail queue (10 mails)
[Mailer] exception
javax.mail.SendFailedException: Invalid Addresses;
nested exception is:
com.sun.mail.smtp.SMTPAddressFailedException: 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1446)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:736)
at javax.mail.Transport.send0(Transport.java:191)
at javax.mail.Transport.send(Transport.java:120)
at Server.Mailer.send(Mailer.java:119)
at Server.Mailer.flush(Mailer.java:84)
at Server.Mailer.run(Mailer.java:103)
at java.util.TimerThread.mainLoop(Unknown Source)
at java.util.TimerThread.run(Unknown Source)
Caused by: com.sun.mail.smtp.SMTPAddressFailedException: 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1297)
... 8 more
When running longer than X hours, it keeps giving these exceptions. So I thought it was because the connection with the SMTP server timed-out. So I changed this code:
Session session = Session.getDefaultInstance(properties, authenticator);
to:
Session session = Session.getInstance(properties, authenticator);
so it would create a new session every time. I thought this would force JavaMail to reconnect to the SMTP server and then the problem would be solved. But that didn't solve it, I still get these exceptions...
Does anyone know how to fix this?
PS: This is the code of my send function
Session session = Session.getInstance(properties, authenticator);
MimeMessage message = new MimeMessage(session);
message.setSubject(mail.getSubject());
message.setContent(mail.getHTML().toString(), "text/html");
message.setFrom(mail.getSender());
message.setRecipients(javax.mail.Message.RecipientType.TO, mail.getRecipients());
Transport.send(message);