Skip to content

Commit 6521921

Browse files
Merge pull request KelvinTegelaar#5211 from KelvinTegelaar/dev
Dev to hf
2 parents cd60536 + dbbf88d commit 6521921

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

src/components/CippComponents/AuthMethodCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const AuthMethodCard = ({ data, isLoading }) => {
2626
let whfbCount = 0;
2727

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

src/data/standards.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1792,6 +1792,39 @@
17921792
"powershellEquivalent": "Set-OrganizationConfig -AutoArchivingThresholdPercentage 80-100",
17931793
"recommendedBy": []
17941794
},
1795+
{
1796+
"name": "standards.AutoArchiveMailbox",
1797+
"cat": "Exchange Standards",
1798+
"tag": [],
1799+
"helpText": "Enables or disables the tenant policy that automatically provisions an archive mailbox when a user's primary mailbox reaches 90% of its quota.",
1800+
"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.",
1801+
"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.",
1802+
"addedComponent": [
1803+
{
1804+
"type": "autoComplete",
1805+
"multiple": false,
1806+
"creatable": false,
1807+
"label": "Select value",
1808+
"name": "standards.AutoArchiveMailbox.state",
1809+
"options": [
1810+
{
1811+
"label": "Enabled",
1812+
"value": "enabled"
1813+
},
1814+
{
1815+
"label": "Disabled",
1816+
"value": "disabled"
1817+
}
1818+
]
1819+
}
1820+
],
1821+
"label": "Set auto enable archive mailbox state",
1822+
"impact": "Low Impact",
1823+
"impactColour": "info",
1824+
"addedDate": "2026-01-16",
1825+
"powershellEquivalent": "Set-OrganizationConfig -AutoEnableArchiveMailbox $true|$false",
1826+
"recommendedBy": []
1827+
},
17951828
{
17961829
"name": "standards.SendReceiveLimitTenant",
17971830
"cat": "Exchange Standards",

0 commit comments

Comments
 (0)