I've been trying for days now to send mail from Grails application and unsuccessfully. I'm using:

  • grails 1.3.7
  • mail 1.0 plugin
  • spring-security-core 1.2.6 plugin
  • tomcat 7.0.23

Specifficaly I'm trying to send mail with Exchange from application deployed on Tomcat server trought port 25 with no authentication, no SSL.

I've tried to send message with telnet from the VMWare virtual machine on which the app is deployed and it got trough.

This is my class for sending mails:

public boolean sendMessage(String to, String msgSubject, String msgText) 
{
    String host = "mail.mydomain.com";
    String username = "myuser@mydomain.com"; // your authsmtp username
    String password = "mypassword" // your authsmtp password
    String from = "myuser@mydomain.com";

    Properties props = System.getProperties();
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.user", username);
    props.put("mail.smtp.password", password);
    props.put("mail.smtp.port", "25"); // thish is the port recommended by authsmtp
    props.put("mail.smtp.auth", "false");

    Session session = Session.getDefaultInstance(props, null);
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));

    InternetAddress to_address = new InternetAddress(to);
    message.addRecipient(Message.RecipientType.TO, to_address);

    message.setSubject(msgSubject);
    message.setText(msgText);
    Transport transport = session.getTransport("smtp");
    transport.connect(host, username, password);
    transport.sendMessage(message, message.getAllRecipients());
    transport.close();
    return true;
}

This is error stack trace:

javax.mail.AuthenticationFailedException: No authentication mechansims supported by both server and client

at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:590)

at javax.mail.Service.connect(Service.java:291)

at javax.mail.Service.connect(Service.java:172)

at javax.mail.Service$connect.call(Unknown Source)

at org.helpdesk.MymailService.sendMessage(MymailService.groovy:37)

at org.helpdesk.MymailService$sendMessage.call(Unknown Source)

at org.helpdesk.RequestController$_closure13.doCall(RequestController.groovy:247)

at org.helpdesk.RequestController$_closure13.doCall(RequestController.groovy)

at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)

I've read few dozen posts considering problems like this but I've still havent manage to solve the problem. Any help is appreciated.

*EDIT:*Is it possible that there are some problems sending mails using javaMail with Exchange server SMTP when there is no authentication?

link|improve this question

74% accept rate
You should configure all the properties like "mail.smtp.host" in Config.groovy – Don Dec 23 '11 at 11:51
@Don But how to tell my SendMessage method to take mail configuration options from Config.groovy? – drago Dec 23 '11 at 12:30
Should I do some configuring on Tomcat to enable emailing? – drago Dec 23 '11 at 14:14
The mail plugin automatically takes the settings from Config.groovy. You do not need to do any Tomcat configuration. Have you read the docs for the mail plugin? – Don Dec 23 '11 at 14:16
@Don Yes. I've read the documents but still I can't make it work. Maybe I've overlooked something considering Exchange server configuration. I've managed to send mail using Gmail with no trouble. But using company's Exchange server no luck at all. So I've been chasing my tail for some time now. – drago Dec 23 '11 at 14:25
show 6 more comments
feedback

2 Answers

up vote 1 down vote accepted

If you're trying to connect to your mail server without authentication, call the connect method that doesn't take a username and password. If you pass it a username and password, it thinks you really want to authenticate, and since it can't find an authentication mechanism that the server supports, it fails.

link|improve this answer
feedback

Well it looks that I had few problems. At first, Exchange wasn't setup correctly. And then it seems I've tried all possible configurations but the right one. This works:

class MymailService { boolean transactional = false

public sendMessage(String to, String cc, String msgSubject, String msgText) 
{
    String host = "mail.mailserver.com";
    String username = "myusername@mymailserver.com"; 
    String password = "xxx"; 
    String from = "myusername@mymailserver.com";
    String port = "25";


    Properties props = System.getProperties();
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.port", port); 
    props.put("mail.smtp.auth", "false");

    Transport transport = null;

    try{
        Session session = Session.getDefaultInstance(props, null);
            MimeMessage message = new MimeMessage(session);

        message.setFrom(new InternetAddress(from));

        InternetAddress to_address = new InternetAddress(to);
        message.addRecipient(Message.RecipientType.TO, to_address);

        InternetAddress cc_address = new InternetAddress(cc);
        message.addRecipient(Message.RecipientType.CC, cc_address);

        message.setSubject(msgSubject);
        message.setText(msgText);

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

    } finally {
        if (transport != null) try { transport.close(); } catch (MessagingException logOrIgnore){}
    }
}
}

The final clue was Bill Shannon's post. Thanks Bill!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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