I am trying to send email with Amazon's SES/SMTP and I am getting the following error:

javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, response: -1

Here is how I am trying to send the mail:

Spring mail sender config:

<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
        <property name="host" value="${mail.server}"/>
        <property name="port" value="${mail.port}"/>
        <property name="username" value="${aws.mail.smtp.user}"/>
        <property name="password" value="${aws.mail.smtp.password}"/>
        <property name="javaMailProperties">
            <props>
            <!-- Use SMTP-AUTH to authenticate to SMTP server -->
            <prop key="mail.smtp.auth">true</prop>
            <!-- Use TLS to encrypt communication with SMTP server -->
            <prop key="mail.smtp.starttls.enable">true</prop>  
            </props>    
        </property>
    </bean>

with:

mail.server =email-smtp.us-east-1.amazonaws.com
mail.port = 465
link|improve this question

80% accept rate
feedback

4 Answers

up vote 5 down vote accepted

With amazon SES, configuration needs to be as follows:

<prop key="mail.smtp.auth">true</prop>    
<prop key="mail.smtp.ssl.enable">true</prop>

instead of:

<prop key="mail.smtp.auth">true</prop>
<prop key="mail.smtp.starttls.enable">true</prop> 

as hinted by dave.

link|improve this answer
feedback

Amazon SES SMTP requires the SSL before the SMTP session. The StartTLS command is not suppored by SES.

hth, Dave

link|improve this answer
Thanks Dave, I have also tried to set the mail.smtp.starttls.enable to false to no avail. Do you have any other idea? – balteo Dec 23 '11 at 15:22
feedback

This employee from AWS states that SES does not support SSL at all. https://forums.aws.amazon.com/message.jspa?messageID=218303 .

Amazon SES will attempt to send email with Transport Layer Security enabled, but there is not a way to guarantee messages are sent with TLS. SES uses opportunistic TLS when sending emails, which means it will attempt to send emails over TLS first, and then will fall back to regular SMTP if TLS is unavailable.

Hence, I am thinking the issue you are seeing is not TLS or SSL related, rather something else.

link|improve this answer
feedback

Note that the AWS note at https://forums.aws.amazon.com/message.jspa?messageID=218303 refers to encrypting server-to-server communication to maintain confidentiality of the email message, is a shared characteristic of all SMTP services.

This question relates to using a secure connection to the AWS SMTP server to protect the passwords used to authenticate with the AWS server.

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.