我正在使用带有邮件 aruba 帐户的 javax.mail。
在 Windows 和 centos7 机器上一切正常。但在另一台特定的 centos7 机器(在aruba服务器下)tomcat7 的控制台上说:
我看到了 google 和 stackoverflow 向我建议的所有帖子,但没有任何效果。
我认为这是一个机器环境问题。
邮件类
import java.io.IOException;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import org.springframework.mail.MailSender;
import org.springframework.stereotype.Service;
@Service("mailSender")
public class ApplicationMailer {
private static javax.mail.Session session=null;
private static Resource resource = new ClassPathResou
rce("resources/mail.properties");
static {
try {
final Properties props = PropertiesLoaderUtils.loadProperties(resource);
if (props!=null)
{
session = javax.mail.Session
.getInstance(props, new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(props.getProperty("email.username"),
props.getProperty("email.password"));
}
});
}
} catch (IOException e) {
session=null;
e.printStackTrace();
}
}
@Autowired
private MailSender mailSender;
public MailSender getMailSender() {
return mailSender;
}
public void setMailSender(MailSender mailSender) {
this.mailSender = mailSender;
}
/**
* This method will send compose and send the message
* @throws IOException
* @throws MessagingException
* @throws AddressException
* */
public void sendMail(String to, String subject, String body) throws IOException, AddressException, MessagingException{
Message mail = new MimeMessage(session);
final Properties props = PropertiesLoaderUtils.loadProperties(resource);
mail.setFrom(new InternetAddress(props.getProperty("mail.from")));
mail.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
mail.setSubject(subject);
mail.setContent(body, "text/html");
Transport.send(mail);
}
}
邮件属性
mail.debug=true
mail.from=*****
email.username=******
email.password=******
mail.smtp.host=smtps.aruba.it
mail.smtp.port=465
mail.smtp.localhost=localhost
mail.mime.charset=UTF-8
mail.smtp.auth=true
mail.smtp.ssl.enable=true
mail.transport.protocol=smtps
分隔小服务程序
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host" value="smtps.aruba.it" />
<property name="port" value="465" />
<property name="protocol" value="smtps" />
<property name="username" value="*****" />
<property name="password" value="*****" />
<property name="javaMailProperties">
<props>
<prop key="mail.transport.protocol">smtps</prop>
<prop key="mail.smtp.auth">true</prop>
<prop key="mail.smtp.starttls.enable">true</prop>
<prop key="mail.debug">true</prop>
<prop key="mail.smtp.localhost">localhost</prop>
<prop key="mail.mime.charset">UTF-8</prop>
<!-- <prop key="mail.smtps.socketFactory.class">javax.net.ssl.SSLSocketFactory</prop> -->
<prop key="mail.smtps.ssl.enable">false</prop>
</props>
</property>
</bean>