Skip to content
4 changes: 2 additions & 2 deletions public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "10.0.1"
}
"version": "10.0.2"
}
2 changes: 1 addition & 1 deletion src/components/CippComponents/AuthMethodCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const AuthMethodCard = ({ data, isLoading }) => {
let whfbCount = 0;

enabledUsers.forEach((user) => {
const methods = user.MFAMethods || [];
const methods = Array.isArray(user.MFAMethods) ? user.MFAMethods : [];
const perUser = user.PerUser === "enforced" || user.PerUser === "enabled";
const hasRegistered = user.MFARegistration === true;

Expand Down
33 changes: 33 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -1792,6 +1792,39 @@
"powershellEquivalent": "Set-OrganizationConfig -AutoArchivingThresholdPercentage 80-100",
"recommendedBy": []
},
{
"name": "standards.AutoArchiveMailbox",
"cat": "Exchange Standards",
"tag": [],
"helpText": "Enables or disables the tenant policy that automatically provisions an archive mailbox when a user's primary mailbox reaches 90% of its quota.",
"docsDescription": "Enables or disables the tenant policy that automatically provisions an archive mailbox when a user's primary mailbox reaches 90% of its quota. This is separate from auto-archiving thresholds and does not enable archives for all users immediately.",
"executiveText": "Automatically provisions archive mailboxes only when users reach 90% of their mailbox capacity, reducing manual intervention and preventing mailbox quota issues without enabling archives for everyone.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.AutoArchiveMailbox.state",
"options": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Set auto enable archive mailbox state",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2026-01-16",
"powershellEquivalent": "Set-OrganizationConfig -AutoEnableArchiveMailbox $true|$false",
"recommendedBy": []
},
{
"name": "standards.SendReceiveLimitTenant",
"cat": "Exchange Standards",
Expand Down