I'm trying to send an email to myself using the javamail api. I've followed the code correctly that I found online but I can't seem to get it to work. The error I'm getting is:

Exception in thread "main" javax.mail.AuthenticationFailedException: No authentication mechansims supported by both server and client

Does that mean my computer doesn't support authentication?

public class Emails 
{
    public static void main(String[] args) throws MessagingException
    {
        Emails e = new Emails();
        e.sendMail();
    }

    public void sendMail() throws MessagingException
    {
        boolean debug = false;
        String subject = "Testing";
        String message = "Testing Message";
        String from = "myemail@email.com";
        String[] recipients = {"myemail@email.com"};

        // create some properties and get the default Session
        Session session = getSession();
        session.setDebug(debug);

        // create a message
        Message msg = new MimeMessage(session);

        // set the from and to address
        InternetAddress addressFrom = new InternetAddress(from);
        msg.setFrom(addressFrom);

        InternetAddress[] addressTo = new InternetAddress[recipients.length]; 
        for (int i = 0; i < recipients.length; i++)
        {
            addressTo[i] = new InternetAddress(recipients[i]);
        }
        msg.setRecipients(Message.RecipientType.TO, addressTo);

        // Optional : You can also set your custom headers in the Email if you Want
        msg.addHeader("MyHeaderName", "myHeaderValue");

        // Setting the Subject and Content Type
        msg.setSubject(subject);
        msg.setContent(message, "text/plain");
        Transport.send(msg);
    }

    private Session getSession() 
    {
        Authenticator authenticator = new Authenticator();

        Properties properties = new Properties();
        properties.setProperty("mail.smtp.submitter", authenticator.getPasswordAuthentication().getUserName());
        properties.setProperty("mail.smtp.auth", "true");

        properties.setProperty("mail.smtp.host", "smtp.examplehost.com");
        properties.setProperty("mail.smtp.port", "25");

        return Session.getInstance(properties, authenticator);
    }

    private class Authenticator extends javax.mail.Authenticator 
    {
        private PasswordAuthentication authentication;

        public Authenticator() 
        {
            String username = "myusername";
            String password = "mypassword";
            authentication = new PasswordAuthentication(username, password);
        }

        protected PasswordAuthentication getPasswordAuthentication() 
        {
            return authentication;
        }
    }
}

When I send emails from this server, what I have to do is, login via ssh to the server (login.server.com etc.) then I can send emails from the mail server (smtp.server.com etc.). I need to mimic this in java

RESOLVED: Use the SMTPSSLTransport class

link|improve this question

feedback

3 Answers

Make sure you have an smtp server (smtp.examplehost.com) to actually send the email. Make sure your smtp server allows "myemail@email.com" to send out emails.

These are some of the security checks put in place by standard smtp servers.

link|improve this answer
1  
So usually when I want to send an email from this server, I have to login via SSH (login.server.com). Once I'm logged in, the outgoing server is some smtp.server.com. I think I need to mimic that in java – JPC Apr 12 '11 at 18:33
feedback

This is probably you knock to wrong port. I suppose you're using IMAP protocol: For IMAP over SSL you have to connect to Port 993

link|improve this answer
In order to send an email from the server, I have to login via SSH (login.server.com). Once I'm logged in, the outgoing server is some smtp.server.com on port 25. How can I mimic that in java? – JPC Apr 12 '11 at 18:46
feedback
up vote -1 down vote accepted

SMTPSSLTransport solved the problem

link|improve this answer
Could you show your code for the resolution? – Ballpark Feb 20 at 22:42
I am not sure what "SMTPSSLTransport solved the problem" means. How do you specify this class (as opposed to other classes)? We have the same problem, and it works when we connect to gmail with SSL; but connecting to MS Exchange server, it does not. – fool4jesus Feb 21 at 15:52
@JPC Just found this through a Google search for the same error you were originally getting. You should really provide more details than this when you find a solution. If you can ask for help you should be prepared to provide help as well. – Greg Mar 6 at 19:38
feedback

Your Answer

 
or
required, but never shown

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