You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Intruder Notice email is never sent after an account is locked out because marking the username in the IntruderManager throws an error before the userid marking can occur in the SessionManager.postFailureSequence() method:
if (username != null) {
intruderManager.mark(RecordType.USERNAME, username, pwmSession.getLabel());
}
if (userIdentity != null) {
intruderManager.convenience().markUserIdentity(userIdentity, sessionLabel);
}
The text was updated successfully, but these errors were encountered:
The Intruder Notice email is never sent after an account is locked out because marking the username in the
IntruderManager
throws an error before the userid marking can occur in theSessionManager.postFailureSequence()
method:The text was updated successfully, but these errors were encountered: