Package org.apache.james.smtpserver

Examples of org.apache.james.smtpserver.SMTPServerDNSServiceAdapter


public class ResolvableEhloHeloHandler extends org.apache.james.protocols.smtp.core.fastfail.ResolvableEhloHeloHandler {

    @Resource(name="dnsservice")
    public void setDNSService(DNSService dns) {
        super.setDNSService(new SMTPServerDNSServiceAdapter(dns));
    }
View Full Code Here


public class ReverseEqualsEhloHeloHandler extends org.apache.james.protocols.smtp.core.fastfail.ReverseEqualsEhloHeloHandler{

    @Resource(name="dnsservice")
    public void setDNSService(DNSService dns) {
        super.setDNSService(new SMTPServerDNSServiceAdapter(dns));
    }
View Full Code Here

public class ValidSenderDomainHandler extends org.apache.james.protocols.smtp.core.fastfail.ValidSenderDomainHandler{

    @Resource(name="dnsservice")
    public void setDNSService(DNSService dns) {
        super.setDNSService(new SMTPServerDNSServiceAdapter(dns));
    }
View Full Code Here

        setGetDetail(handlerConfiguration.getBoolean("getDetail",false));
    }
   
    @Resource(name="dnsservice")
    public void setDNSService(DNSService dns) {
        super.setDNSService(new SMTPServerDNSServiceAdapter(dns));
    }
View Full Code Here

TOP

Related Classes of org.apache.james.smtpserver.SMTPServerDNSServiceAdapter

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.