Java发送匿名邮件—DNS解析

 直连其它邮件服务器的方式,需要使用DNS解析邮件服务器的域名
/**
     * DNS解析域名
     * @return String 返回解析后的邮件服务器地址
     * @throws Exception 异常
     */
    public MialList<String> parseInetAddress(String domain) throws Exception
    {
        MialList<String> mailList = new MialList<String>();
        String dns = "dns:";
        String smtpHost = "";
        Hashtable env = new Hashtable();
        env.put(Context.INITIAL_CONTEXT_FACTORY,
                "com.sun.jndi.dns.DnsContextFactory");
        env.put(Context.PROVIDER_URL, dns);
        DirContext dir = new InitialDirContext(env);
       
        Attributes atts = dir.getAttributes(domain, new String[] {"MX"});
        if (null == atts || atts.size() <= 0)
        {
            RunLogger.debug("error:",
                    "Your dns server does not have a corresponding MX record!");
            throw new java.lang.IllegalStateException();
        }
        NamingEnumeration servers = atts.getAll();
        while (servers.hasMore())
        {
            Attribute att = (Attribute)servers.next();
            for (int i = 0; i < att.size(); i++)
            {
                smtpHost = (String)att.get(i);
               
                smtpHost = smtpHost.substring(smtpHost.indexOf(" ") + 1);
               
                RunLogger.debug("smtpHost:", smtpHost);
                mailList.add(smtpHost);
            }
        }
        return mailList;
    }
 
帖子73 精华1 积分204 威望33  金钱0  贡献25  激情63  休闲18  查看详细资料
 编辑 引用 TOP
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值