Skip to content

Commit 840e4ea

Browse files
Merge pull request #4158 from Jr7468/dev
Add Mailbox Recipient Limits standard to standards.json
2 parents 5b80306 + d1d0ff9 commit 840e4ea

File tree

2 files changed

+61
-1
lines changed

2 files changed

+61
-1
lines changed

src/data/standards.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,45 @@
3838
"powershellEquivalent": "Set-MsolCompanyContactInformation",
3939
"recommendedBy": []
4040
},
41+
{
42+
"name": "standards.DeployMailContact",
43+
"cat": "Exchange Standards",
44+
"tag": [],
45+
"helpText": "Creates a new mail contact in Exchange Online across all selected tenants. The contact will be visible in the Global Address List.",
46+
"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.",
47+
"addedComponent": [
48+
{
49+
"type": "textField",
50+
"name": "standards.DeployMailContact.ExternalEmailAddress",
51+
"label": "External Email Address",
52+
"required": true
53+
},
54+
{
55+
"type": "textField",
56+
"name": "standards.DeployMailContact.DisplayName",
57+
"label": "Display Name",
58+
"required": true
59+
},
60+
{
61+
"type": "textField",
62+
"name": "standards.DeployMailContact.FirstName",
63+
"label": "First Name",
64+
"required": false
65+
},
66+
{
67+
"type": "textField",
68+
"name": "standards.DeployMailContact.LastName",
69+
"label": "Last Name",
70+
"required": false
71+
}
72+
],
73+
"label": "Deploy Mail Contact",
74+
"impact": "Low Impact",
75+
"impactColour": "info",
76+
"addedDate": "2024-03-19",
77+
"powershellEquivalent": "New-MailContact",
78+
"recommendedBy": ["CIPP"]
79+
},
4180
{
4281
"name": "standards.AuditLog",
4382
"cat": "Global Standards",
@@ -4142,5 +4181,26 @@
41424181
}
41434182
}
41444183
]
4184+
},
4185+
{
4186+
"name": "standards.MailboxRecipientLimits",
4187+
"cat": "Exchange Standards",
4188+
"tag": [],
4189+
"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.",
4190+
"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.",
4191+
"addedComponent": [
4192+
{
4193+
"type": "number",
4194+
"name": "standards.MailboxRecipientLimits.RecipientLimit",
4195+
"label": "Recipient Limit",
4196+
"defaultValue": 500
4197+
}
4198+
],
4199+
"label": "Set Mailbox Recipient Limits",
4200+
"impact": "Low Impact",
4201+
"impactColour": "info",
4202+
"addedDate": "2025-05-28",
4203+
"powershellEquivalent": "Set-Mailbox -RecipientLimits",
4204+
"recommendedBy": ["CIPP"]
41454205
}
41464206
]

src/pages/identity/administration/users/user/exchange.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ const Page = () => {
325325
relatedQueryKeys: `ListUsers-${userId}`,
326326
},
327327
];
328-
328+
329329
const handleAddAliases = () => {
330330
const aliases = newAliases
331331
.split('\n')

0 commit comments

Comments
 (0)