Skip to content

Commit

Permalink
fix(zimbra): lowercase email address
Browse files Browse the repository at this point in the history
ref: MANAGER-16502

Signed-off-by: Tristan WAGNER <[email protected]>
  • Loading branch information
tristanwagner committed Dec 17, 2024
1 parent 0b0f33c commit 4602895
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default function EmailAccountSettings({
domain: { value: domain },
} = form;
let dataBody = {
email: `${account}@${domain}`,
email: `${account}@${domain}`.toLowerCase(),
};
Object.entries(form).forEach(([key, { value }]) => {
if (
Expand Down

0 comments on commit 4602895

Please sign in to comment.