4

Eclipse IDE で Java サーブレットを使用して電子メールを送信しようとしています。これは私のコードです。

    final String username = "******@gmail.com";
    final String password = "******";

    Properties props = new Properties();
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable", "true");
    props.put("mail.smtp.host", "smtp.gmail.com");
    props.put("mail.smtp.port", "587");
    props.put("mail.smtp.ssl.trust", "smtpserver");

    Session session1 = Session.getInstance(props, new javax.mail.Authenticator() {
        protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(username, password);
        }
      });

    try 
    {
        if(result)
        {

            Message message = new MimeMessage(session1);
            message.setFrom(new InternetAddress("******60@gmail.com"));
            message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email));

            message.setSubject("Welcome To Our Bank");
            message.setText("Dear "+custname+","
                    +"\n\n Your Account has been Created Successfully."
                    +"\n\n Your Account Details Are:"
                    +"\n   User Id : "+userid+""
                    +"\n   Account Number : "+accno+""
                    +"\n   Login Password : "+passwd+""
                    +"\n   Transaction Password : "+t_passwd+"");

            Transport.send(message);
            out.println("mail sent");
        }
    } 
    catch(MessagingException e) 
    {
        out.println("Exception Caught : "+e);
}

実行後に発生する例外です。

キャッチされた例外: javax.mail.MessagingException: ソケットを TLS に変換できませんでした。ネストされた例外は次のとおりです: java.io.IOException: サーバーは信頼されていません: smtp.gmail.com

4

2 に答える 2

5

By setting "mail.smtp.ssl.trust" to "smtpserver" you've said you only trust the server named "smtpserver". "smtp.gmail.com" is not named "smtpserver".

于 2013-05-20T19:33:45.357 に答える