Skip to content

Add Mailbox Recipient Limits standard to standards.json #4158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 30, 2025
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
60 changes: 60 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,45 @@
"powershellEquivalent": "Set-MsolCompanyContactInformation",
"recommendedBy": []
},
{
"name": "standards.DeployMailContact",
"cat": "Exchange Standards",
"tag": [],
"helpText": "Creates a new mail contact in Exchange Online across all selected tenants. The contact will be visible in the Global Address List.",
"docsDescription": "This standard creates a new mail contact in Exchange Online. Mail contacts are useful for adding external email addresses to your organization's address book. They can be used for distribution lists, shared mailboxes, and other collaboration scenarios.",
"addedComponent": [
{
"type": "textField",
"name": "standards.DeployMailContact.ExternalEmailAddress",
"label": "External Email Address",
"required": true
},
{
"type": "textField",
"name": "standards.DeployMailContact.DisplayName",
"label": "Display Name",
"required": true
},
{
"type": "textField",
"name": "standards.DeployMailContact.FirstName",
"label": "First Name",
"required": false
},
{
"type": "textField",
"name": "standards.DeployMailContact.LastName",
"label": "Last Name",
"required": false
}
],
"label": "Deploy Mail Contact",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-03-19",
"powershellEquivalent": "New-MailContact",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.AuditLog",
"cat": "Global Standards",
Expand Down Expand Up @@ -4142,5 +4181,26 @@
}
}
]
},
{
"name": "standards.MailboxRecipientLimits",
"cat": "Exchange Standards",
"tag": [],
"helpText": "Sets the maximum number of recipients that can be specified in the To, Cc, and Bcc fields of a message for all mailboxes in the tenant.",
"docsDescription": "This standard configures the recipient limits for all mailboxes in the tenant. The recipient limit determines the maximum number of recipients that can be specified in the To, Cc, and Bcc fields of a message. This helps prevent spam and manage email flow.",
"addedComponent": [
{
"type": "number",
"name": "standards.MailboxRecipientLimits.RecipientLimit",
"label": "Recipient Limit",
"defaultValue": 500
}
],
"label": "Set Mailbox Recipient Limits",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-05-28",
"powershellEquivalent": "Set-Mailbox -RecipientLimits",
"recommendedBy": ["CIPP"]
}
]
2 changes: 1 addition & 1 deletion src/pages/identity/administration/users/user/exchange.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ const Page = () => {
relatedQueryKeys: `ListUsers-${userId}`,
},
];

const handleAddAliases = () => {
const aliases = newAliases
.split('\n')
Expand Down
Loading