Jenkins 之郵件配置

 

 Jenkins 之郵件配置其實仍是有些麻煩的,坑比較多,一不當心就。。。我是走了不少彎路的。java

這裏記錄下來,但願你們之後不要重蹈覆轍:服務器

 

 

我測試過,這裏的 Extended E-mail Notification 好像沒什麼用, 隨便寫都不會報錯,也不影響結果。 不知道幹嗎的。測試

 

 

 

選中上面的「經過發送測試郵件測試配置」:ui

 

 填寫相關信息, 注意, 用戶密碼是發送方郵件地址的用戶密碼, 用戶名必須和 系統管理員郵件地址一致。spa

 用戶默認郵件後綴, 寫錯了好像也不影響結果。 我猜 它的做用是, 發郵件時候, 郵件接收方 若是沒有 @qq.com ,@sina.com 這樣的後綴, 那麼就會補上這個。 它是這個做用。不過,試了下,發現不行, sina 的stmp:.net

com.sun.mail.smtp.SMTPAddressFailedException: 501 Syntax error
at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:
1686) Caused: javax.mail.SendFailedException: Invalid Addresses; nested exception is: com.sun.mail.smtp.SMTPAddressFailedException: 501 Syntax error at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1835) at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:1098) at javax.mail.Transport.send0(Transport.java:195)

或者163 的stmp 出現:3d

com.sun.mail.smtp.SMTPAddressFailedException: 550 Invalid User: robert


    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1686)

Caused: javax.mail.SendFailedException: Invalid Addresses;
  nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 550 Invalid User: robert


    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1835)

    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:1098)

    at javax.mail.Transport.send0(Transport.java:195)

 

SSL 是能夠選的。我試過 sina, 163 郵箱, 選擇或不選 SSL , 發送郵件都是沒問題的。 可是對於,qq 郵箱,SSL 是必須選的, 不然:code

Failed to send out e-mail

javax.mail.AuthenticationFailedException: 530 Error: A secure connection is requiered(such as ssl). More information at http://service.mail.qq.com/cgi-bin/help?id=28
    at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:809)
    at com.sun.mail.smtp.SMTPTransport.authenticate(SMTPTransport.java:752)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:669)
    at javax.mail.Service.connect(Service.java:317)
    at javax.mail.Service.connect(Service.java:176)

另外,默認狀況下,QQ郵箱 的STMP 功能是關閉的,若有須要手動啓動。 開啓的時候須要發送短信驗證,比較麻煩。參考: http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=166 orm

 

STMP服務器是不能寫錯的,須要和發送方郵件地址對應上,不然:blog

Failed to send out e-mail
java.net.UnknownHostException: smtp.siaana.com  // 這裏故意寫錯成了
smtp.siaana
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:589)

 

 

通常郵件發送方是須要認證的,這裏咱們選擇用戶密碼方式,用戶密碼必定要正確,不然出現錯誤:

javax.mail.AuthenticationFailedException: 535 5.7.8 authentication failed
    at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:809)
    at com.sun.mail.smtp.SMTPTransport.authenticate(SMTPTransport.java:752)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:669)
    at javax.mail.Service.connect(Service.java:317)
    at javax.mail.Service.connect(Service.java:176)
    at javax.mail.Service.connect(Service.java:125)

 用戶不存在也是這個錯誤。總之 535 5.7.8 authentication failed 是認證錯誤

 

另外, 

  Jenkins Location -> 系統管理員郵件地址 須要和 郵件通知-> 用戶名 這裏的配置一致, 不然出現:

Failed to send out e-mail

com.sun.mail.smtp.SMTPSenderFailedException: 553 Envolope sender mismatch with login user..
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1587)
Caused: com.sun.mail.smtp.SMTPSendFailedException: 553 Envolope sender mismatch with login user..
;
  nested exception is:
    com.sun.mail.smtp.SMTPSenderFailedException: 553 Envolope sender mismatch with login user..
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:2057)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1580)
相關文章
相關標籤/搜索