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 authored and ghyenne committed Jan 2, 2025
1 parent 6b95bf6 commit 15059fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,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 15059fa

Please sign in to comment.