久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

在 ColdFusion 中以編程方式驗(yàn)證郵件服務(wù)器連接

Verify mail server connection programmatically in ColdFusion(在 ColdFusion 中以編程方式驗(yàn)證郵件服務(wù)器連接)
本文介紹了在 ColdFusion 中以編程方式驗(yàn)證郵件服務(wù)器連接的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

問題描述

我正在使用自定義 SMTP 服務(wù)器,并希望在用戶輸入自己的服務(wù)器憑據(jù)時(shí)驗(yàn)證連接.

I'm using custom SMTP servers and would like to verify the connection when user enters his own server credentials.

與 Adob??e CF 和 Railo 在添加郵件服務(wù)器時(shí)允許執(zhí)行的檢查類型完全相同.

Exactly the same type of check as Adobe CF and Railo allow to do when adding mail server.

當(dāng)然,這并不能保證 delivery 會(huì)正常工作,但至少要檢查輸入的服務(wù)器/用戶名/密碼是否有效.

Sure, this does not guarantee that delivery will be working, but at least to check that entered server/username/pass are valid.

我可以看到一種棘手的方法:嘗試使用 cfmail 發(fā)送電子郵件并檢查郵件日志.但我相信它可以做得更優(yōu)雅.

I can see one tricky way: try to send the email with cfmail and check the mail log. But I believe that it can be done with more elegant.

標(biāo)準(zhǔn) ACF/Railo 發(fā)行版中是否有任何 Java 庫(kù)可以幫助我?我將如何使用它們?非常感謝示例.

Is there any Java library available with standard ACF/Railo distro to help me? How would I use them? Examples are highly appreciated.

提前致謝.

請(qǐng)不要與存在的 Java 標(biāo)記相混淆.CFML 中需要解決方案.雖然它可以使用一些 Java 庫(kù)(如果適用).

Please don't be confused with Java tag present. Solution needed in CFML. Though it can use some Java libraries, if applicable.

推薦答案

我認(rèn)為 sfussenegger 的想法是對(duì)的.但是不是使用自定義身份驗(yàn)證器,而是通過 connect(..) 進(jìn)行身份驗(yàn)證呢?只用gmail測(cè)試過.但它似乎工作.

I think sfussenegger has the right idea. But instead of using a custom authenticator, what about authenticating via connect(..)? Only tested with gmail. But it seems to work.

我用 CF9 &OBD成功.不幸的是,我在 Railo 上沒有運(yùn)氣……真可惜.

I tested this with CF9 & OBD successfully. Unfortunately, I had no luck with Railo ... bummer.

已更新以添加缺少的mail.smtp.auth"屬性.它現(xiàn)在應(yīng)該也可以與 Railo 一起正常工作了.

Updated to add the missing "mail.smtp.auth" property. It should now work correctly with Railo as well.

    //Java Version
    int port = 587;
    String host = "smtp.gmail.com";
    String user = "username@gmail.com";
    String pwd = "email password";

    try {
        Properties props = new Properties();
        // required for gmail 
        props.put("mail.smtp.starttls.enable","true");
        props.put("mail.smtp.auth", "true");
        // or use getDefaultInstance instance if desired...
        Session session = Session.getInstance(props, null);
        Transport transport = session.getTransport("smtp");
        transport.connect(host, port, user, pwd);
        transport.close();
        System.out.println("success");
     } 
     catch(AuthenticationFailedException e) {
           System.out.println("AuthenticationFailedException - for authentication failures");
           e.printStackTrace();
     }
     catch(MessagingException e) {
           System.out.println("for other failures");
           e.printStackTrace();
     }



<cfscript>
    //CF Version
    port = 587;
    host = "smtp.gmail.com";
    user = "username@gmail.com";
    pwd = "email password";

    try {
        props = createObject("java", "java.util.Properties").init();
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.auth", "true");
        // or use getDefaultInstance instance if desired...
        mailSession = createObject("java", "javax.mail.Session").getInstance(props, javacast("null", ""));
        transport = mailSession.getTransport("smtp");
        transport.connect(host, port, user, pwd);
        transport.close();
        WriteOutput("success");
     } 
     //for authentication failures
     catch(javax.mail.AuthenticationFailedException e) {
           WriteOutput("Error: "& e.type &" ** "& e.message);
     }
     // for other failures
     catch(javax.mail.MessagingException e) {
           WriteOutput("Error: "& e.type &" ** "& e.message);
     }
</cfscript>

這篇關(guān)于在 ColdFusion 中以編程方式驗(yàn)證郵件服務(wù)器連接的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

相關(guān)文檔推薦

How to wrap text around components in a JTextPane?(如何在 JTextPane 中的組件周圍環(huán)繞文本?)
MyBatis, how to get the auto generated key of an insert? [MySql](MyBatis,如何獲取插入的自動(dòng)生成密鑰?[MySql])
Inserting to Oracle Nested Table in Java(在 Java 中插入 Oracle 嵌套表)
Java: How to insert CLOB into oracle database(Java:如何將 CLOB 插入 oracle 數(shù)據(jù)庫(kù))
Why does Spring-data-jdbc not save my Car object?(為什么 Spring-data-jdbc 不保存我的 Car 對(duì)象?)
Use threading to process file chunk by chunk(使用線程逐塊處理文件)
主站蜘蛛池模板: 99精品一区二区 | 久久黄色网 | 国产精品精品久久久 | 久热精品免费 | 免费观看av网站 | 久久久久国产精品一区二区 | 草久久免费视频 | 日韩一区不卡 | 国产在线高清 | 国产精品久久久av | 欧美一级视频在线观看 | 欧美日韩在线视频观看 | 日韩影音 | www.免费看片.com| 久精品久久 | 污视频免费在线观看 | 国产精品久久久久无码av | 国产免费福利在线 | 久久国产欧美日韩精品 | 色吊丝2| 欧美日韩在线一区二区三区 | 日本91av视频 | 国产精品免费视频一区 | 久久成人一区 | 国产探花在线精品一区二区 | 亚洲国产一区二区三区在线观看 | 精品国产不卡一区二区三区 | 日韩欧美精品在线 | 国内精品久久久久久影视8 最新黄色在线观看 | 91精品国产综合久久久久久丝袜 | 精品区| 国产91成人| 91精品国产综合久久久密闭 | 亚洲一区二区三区四区在线观看 | 成人1区| 中文字幕在线观看 | 欧美精品一区二区三区在线 | 一级黄片一级毛片 | 日韩小视频 | 自拍视频网站 | 久草视频观看 |