28293031323334
public class IMAPServer extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( SingleThreadedConnectionHandler.class ); }
22232425262728
public class POP3Server extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( POP3Handler.class ); }
25262728293031
public class SMTPServer extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( SMTPHandler.class ); }