Hi @Joshua Gogol,
Thank you for reaching out and for sharing an error message that was reported by your users.
I can totally understand the inconvenience of not being able to add domains or addresses to safe senders list. According your concern, the error message typically happens when user mailbox safe senders list is at its limit, which can also cause new entries not to save consistently.
To resolve the issue, I recommend trying these steps:
- Remove older or duplicate Safe Senders entries
- Remove old or duplicate entries
- Add domains (company.com) instead of individual addresses (******@company.com) where possible
This aligns with the error message itself, which suggests removing some senders. It also avoids the scalability problem called out for Safe Senders.
- Reset the mailbox junk email trusted lists
If removing and adding the addresses doesn’t resolve the issue, I recommend reseting mailbox safe senders and blocked senders list using the Exchange PowerShell module.
To do this, please follow these steps:
- Export the current lists:
$u = "******@company.com["](mailto:******@contoso.com"mailto:******@contoso.com")
$c = Get-MailboxJunkEmailConfiguration -Identity $u
$c.TrustedSendersAndDomains | Out-File ".${u}_TrustedSenders.txt"
$c.TrustedRecipientsAndDomains | Out-File ".${u}_TrustedRecipients.txt"
$c.BlockedSendersAndDomains | Out-File ".${u}_BlockedSenders.txt"
- Clear the lists:
Set-MailboxJunkEmailConfiguration -Identity $u `
-TrustedSendersAndDomains $null `
-TrustedRecipientsAndDomains $null `
-BlockedSendersAndDomains $null
- Re-add only the minimum needed domains:
Set-MailboxJunkEmailConfiguration -Identity $u `
-TrustedSendersAndDomains @{Add="company.com"}
I hope this information is helpful. Please follow the steps above and let me know if it works for you. If not, we can continue working together to resolve the issue.
Thank you for your patience and understanding. If you have any questions or need additional assistance, please don’t hesitate to reach out so I can continue to support you. If you found the response useful, please consider marking it as accepted, as this may help other community members who are looking for similar guidance.
I look forward to continuing the conversation.
If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.