com.sun.mail.util.DNS.save Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.mail.util;
import java.net.*;
import java.io.*;
import java.util.*;
import java.util.logging.Level;
import javax.naming.*;
import javax.naming.directory.*;
/**
* DNS support utility methods.
*
* See also http://www.rgagnon.com/javadetails/java-0452.html.
*
* @author Bill Shannon
*/
public class DNS {
private static MailLogger logger = new MailLogger(
DNS.class,
"DNS",
"DEBUG DNS",
PropUtil.getBooleanSystemProperty("mail.dns.debug", false),
System.out);
// No one should instantiate this class.
private DNS() {
}
/**
* Return a list of mail servers for the domain from DNS MX records.
*/
public static List getMailServers(String domainName)
throws NamingException {
Hashtable env = new Hashtable();
env.put("java.naming.factory.initial",
"com.sun.jndi.dns.DnsContextFactory");
DirContext idc = new InitialDirContext(env);
Attributes attrs = idc.getAttributes(domainName, new String[] { "MX" });
Attribute attr = attrs.get("MX");
List res = new ArrayList();
if (attr != null && attr.size() > 0) {
NamingEnumeration> en = attr.getAll();
// XXX - should sort by priority/weight
while (en.hasMore()) {
String x = (String)en.next();
System.out.println("GOT MX: " + x);
String f[] = x.split(" ");
if (f.length > 1 && f[1].endsWith("."))
f[1] = f[1].substring(0, (f[1].length() - 1));
res.add(f[1]);
}
} else {
// if we don't have an MX record, try the machine itself
// XXX - why should we do this?
attrs = idc.getAttributes(domainName, new String[] { "A" });
attr = attrs.get("A");
if (attr == null)
throw new NamingException("No match for name '" + domainName + "'");
NamingEnumeration> en = attr.getAll();
while (en.hasMore()) {
String x = (String)en.next();
System.out.println("GOT A: " + x);
if (x.endsWith("."))
x = x.substring(0, (x.length() - 1));
res.add(x);
}
}
return res;
}
// Can also look for NS records to see if domain exists:
/**
* Return a list of name services for the domain from DNS NS records.
*/
public static List getNameServers(String domainName)
throws NamingException {
Hashtable env = new Hashtable();
env.put("java.naming.factory.initial",
"com.sun.jndi.dns.DnsContextFactory");
DirContext idc = new InitialDirContext(env);
Attributes attrs = idc.getAttributes(domainName, new String[] { "NS" });
Attribute attr = attrs.get("NS");
List res = new ArrayList();
NamingEnumeration> en = attr.getAll();
while (en.hasMore()) {
String x = (String)en.next();
System.out.println("GOT NS: " + x);
if (x.endsWith("."))
x = x.substring(0, (x.length() - 1));
res.add(x);
}
return res;
}
public static void main(String[] argv) throws Exception {
List res;
System.out.println("MX");
res = DNS.getMailServers(argv[0]);
for (String s : res)
System.out.println(s);
System.out.println("NS");
res = DNS.getNameServers(argv[0]);
for (String s : res)
System.out.println(s);
}
}