private int handlerCount;
private final boolean plainAuthDisallowed;
public NettyImapSession(Channel channel, Logger log, SSLContext sslContext, String[] enabledCipherSuites, boolean compress, boolean plainAuthDisallowed) {
this.channel = channel;
this.log = new ProtocolSessionLogger(channel.getId() + "", new ProtocolLoggerAdapter(log));
this.sslContext = sslContext;
this.enabledCipherSuites = enabledCipherSuites;
this.compress = compress;
this.plainAuthDisallowed = plainAuthDisallowed;
}