Package org.subethamail.smtp.server

Examples of org.subethamail.smtp.server.Session.reset()


  @Override
  public void execute(String commandString, ConnectionContext context) throws IOException
  {
    Session session = context.getSession();
    session.reset(true);

    context.sendResponse("250 Ok");
  }
}
View Full Code Here


    catch (RejectException ex)
    {
      context.sendResponse(ex.getMessage());
    }

    session.reset(true); // reset session, but don't require new HELO/EHLO
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.