Skip to content

Commit 3406b1d

Browse files
authored
Merge pull request #48 from KelvinTegelaar/main
[pull] main from KelvinTegelaar:main
2 parents aa74086 + e3d6e41 commit 3406b1d

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cipp",
3-
"version": "10.0.0",
3+
"version": "10.0.1",
44
"author": "CIPP Contributors",
55
"homepage": "https://cipp.app/",
66
"bugs": {

public/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "10.0.0"
3-
}
2+
"version": "10.0.2"
3+
}

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/components/CippComponents/CippTablePage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const CippTablePage = (props) => {
2424
tableFilter,
2525
tenantInTitle = true,
2626
filters,
27-
sx = { flexGrow: 1, pb: 4 },
27+
sx = {},
2828
...other
2929
} = props;
3030
const tenant = useSettings().currentTenant;

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)