Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cipp",
"version": "10.0.0",
"version": "10.0.1",
"author": "CIPP Contributors",
"homepage": "https://cipp.app/",
"bugs": {
Expand Down
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.0"
}
"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
2 changes: 1 addition & 1 deletion src/components/CippComponents/CippTablePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const CippTablePage = (props) => {
tableFilter,
tenantInTitle = true,
filters,
sx = { flexGrow: 1, pb: 4 },
sx = {},
...other
} = props;
const tenant = useSettings().currentTenant;
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