Examples of ipAuthenticated()


Examples of com.ericdaugherty.mail.server.services.general.DeliveryService.ipAuthenticated()

        }

        User user = configurationManager.getUser( address );
        if( user != null && user.isPasswordValid( password ) )
        {
            deliveryService.ipAuthenticated( clientIp );
            deliveryService.lockMailbox( address );
            write( MESSAGE_LOGIN_SUCCESSFUL );
            if( log.isInfoEnabled() ) log.info( "User: " + address.getAddress() + " logged in successfully.");
            return user;
        }
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.