Package org.apache.james.protocols.smtp

Examples of org.apache.james.protocols.smtp.TemporaryResolutionException


     */
    public Collection<String> findMXRecords(String hostname) throws TemporaryResolutionException {
        try {
            return dns.findMXRecords(hostname);
        } catch (org.apache.james.dnsservice.api.TemporaryResolutionException e) {
            throw new TemporaryResolutionException(e.getMessage());
        }
    }
View Full Code Here


     */
    public Iterator<HostAddress> getSMTPHostAddresses(String domainName) throws TemporaryResolutionException {
        try {
            return dns.getSMTPHostAddresses(domainName);
        } catch (org.apache.james.dnsservice.api.TemporaryResolutionException e) {
            throw new TemporaryResolutionException(e.getMessage());
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.james.protocols.smtp.TemporaryResolutionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.