IMetabasePolicy.MaxFailedLogons

Syntax

MaxFailedLogons: Integer;

Description

The MaxFailedLogons property determines the number of failed logons or failed attempts to enter old password during password change.

Comments

When logging in to the repository, the user will be locked if he exceeds the specified number of login attempts.

When resetting the connected user password, the user session will be aborted if the user exceeds the number failed atempts to enter old password.

Example

To execute the example, add a link to the Metabase system assembly.

Sub UserProc;
Var
    MB: IMetabase;
    MS: IMetabaseSecurity;
    Policy: IMetabasePolicy;
    Lic: Object;
Begin
    MB := MetabaseClass.Active;
    
// Check out license to work with security manager
    Lic := MB.RequestLicense(UiLicenseFeatureType.Adm);
    MS := MB.Security;
    Policy := MS.Policy;
    
// Set the number of failed attempts
    Policy.MaxFailedLogons := 6;
    
// Save changes
    MS.Apply;
    
// Check in license
    Lic := Null;
End Sub UserProc;

After executing the example the number of failed logons or failed attempts to enter old password during password change.

See also:

IMetabasePolicy