Package com.cubusmail.server.mail

Examples of com.cubusmail.server.mail.IMailbox.logout()


    try {
      log.debug( "Session expired. Execute logout." );
      if ( SessionManager.get( event.getSession() ) != null ) {
        IMailbox mailbox = SessionManager.get( event.getSession() ).getMailbox();
        if ( mailbox != null && mailbox.isLoggedIn() ) {
          mailbox.logout();
        }
      }
    }
    catch (Throwable ex) {
      // nothing to do
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.