inf.map(_failedLoginAttempts);
}
inf.addFailedAttempt();
if (inf.isBlocked()) {
WGAMailNotification mail = new WGAMailNotification(WGAMailNotification.TYPE_LOGIN_BLOCKED);
mail.setSubject("Login for user '" + domainConfig.getName() + "/" + username + "' has been blocked bc. of '" + inf.getFailedAttempts() + "' failed login attemps.");
mail.append("Login for user <b>'" + domainConfig.getName() + "/" + username + "'</b> has been blocked bc. of <b>'" + inf.getFailedAttempts() + "'</b> failed login attemps.");
_core.send(mail);
}
return null;