Discuss this help topic in SecureBlackbox Forum

Configure user authentication

There are two ways of authentication server users available:

  1. Use internal users storage maintained by TElSimpleFTPSServer in its Users property:
    	Server.Users.AddFTPSUser("UserName", "Password");
    	Server.Users.DeleteUser("UserName");
    
    TElSimpleFTPSServer will check the user password during authentication.
  2. Use the event based authentication using OnAuthAttempt event, the same as in TElFTPSServer.
Also it is possible to combine both ways. In this case the event result will override results of the internal check.

Discuss this help topic in SecureBlackbox Forum