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
Improve this logic in patches/001_email-verified.patch
from
/* Mozilla LDAP specific aliases handling */
var all_emails = [];
if (raw_data.mail) {
all_emails = all_emails.concat(raw_data.mail);
}
if (raw_data['zimbraAlias']) {
all_emails = all_emails.concat(raw_data['zimbraAlias']);
}
Improve this logic in
patches/001_email-verified.patch
from
to something like
The text was updated successfully, but these errors were encountered: