Hi all,
I know this is an old thread but I also see this problem in 10.0.11. But this only happens if the user login name does not contain the domain ("john" instead of "john@doman.com"). In this case the login.jsp file in /opt/zimbra/jetty/webapps/zimbra/public is unable to determine the password details for this account as it only uses the "username" parameter of this account and not the full username (including the domain):
I think "username" must be exchanged by "fullUserName" or extended by "customerDomain" but I don't know how....
Regards
Thomas
I know this is an old thread but I also see this problem in 10.0.11. But this only happens if the user login name does not contain the domain ("john" instead of "john@doman.com"). In this case the login.jsp file in /opt/zimbra/jetty/webapps/zimbra/public is unable to determine the password details for this account as it only uses the "username" parameter of this account and not the full username (including the domain):
Code:
String userName = (String) request.getParameter("username");...AccountSelector as = new AccountSelector(AccountBy.name, userName);Account acct = Provisioning.getInstance().get(as);...zimbraPasswordMinLength = acct.getPasswordMinLength(); ...
Regards
Thomas
Statistics: Posted by thomas.klaube — Tue Dec 10, 2024 12:57 pm