fix verified email
All checks were successful
deploy / deploy (push) Successful in 14s

This commit is contained in:
Denys Konovalov 2023-12-22 18:43:06 +01:00
parent 5c603cd46f
commit ecb8d9bda7
Signed by: Denys Konovalov
GPG Key ID: 0037E1B0E33BD2C9

@ -65,7 +65,7 @@ class mailcowUser extends AbstractUserAdapter {
MultivaluedHashMap<String, String> attributes = new MultivaluedHashMap<>();
attributes.add(UserModel.USERNAME, getUsername());
attributes.add(UserModel.EMAIL, getEmail());
attributes.add(UserModel.EMAIL_VERIFIED, "true");
attributes.add(UserModel.EMAIL_VERIFIED, Boolean.toString(true));
attributes.add(UserModel.FIRST_NAME, getFirstName());
attributes.add(UserModel.LAST_NAME, getLastName());
attributes.add("domain", getDomain());