Forum Discussion
mlaminedouba
Mar 25, 2023Copper Contributor
Distribution Group External Senders Restriction
I have a distribution group under Exchange Server 2016 which should not receive mail from external users. I checked the option "Only senders internal to my organization"(see screenshot attached). But...
Deleted
Mar 27, 2023
Thank you for your prompt response. What you have done is to specify who can message the Distribution Group. This is not actually a fix though but rather a work around. Just like I mentioned in my previous email that by default, when you have the settings "only senders inside your organization" checked, external senders should not and cannot be able to send message to a distribution group. But I think there are some additional settings we nee to take a look at which might be taking precedence over the settings we have there. I have not been able to reproduce the issue after making the changes. Yours might still be different though.
Please proceed to check the value of RequireSenderAuthenticationEnabled
In the Exchange Server 2016, run the below PowerShell
Get-DistributionGroup -identity "email address removed for privacy reasons" | fl RequireSenderAuthenticationEnabled
The function of this value
Spoiler
-RequireSenderAuthenticationEnabled
The RequireSenderAuthenticationEnabled parameter specifies to accept messages only from authenticated (internal) senders. Valid values are:
- $true: Messages are accepted only from authenticated (internal) senders. Messages from authenticated (external) senders are rejected
- $false: Messages are accepted from authenticated (internal) and unauthenticated (external) senders.
So if for the affected group, the value for the requiredsenderauthenticationenabled is $false, then we would be considering setting it to $true using the PowerShell command below.
Get-DistributionGroup -identity "email address removed for privacy reasons" | Set-DistributionGroup -RequireSenderAuthenticationEnabled $true
One more last thing I would need to confirm, is it only receiving emails from GMAILs or from every other external emails.
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! 🙂 |
mlaminedouba
Mar 28, 2023Copper Contributor
The email Deleted
Thank you again,
The email is delivered to all users if sent by any GMAIL user.
The value of -RequireSenderAuthenticationEnabled is true.
We have created a new Distribution group but this distribution group has the same problem.
Cordialement.
- DeletedMar 28, 2023
If you have the RequireSenderAuthenticationEnabled set to true, meanwhile, emails that delivers to the Distribution Group are only GMAIL and do you mean that after creating a new Distribution Group, issue still persists?
Then you might be looking at analyzing the message header to see what is making the email past the server.
Before then, you can confirm if there are any transport rules set to allow emails from domain Gmail to deliver.
If I have answered your question, please mark your post as Solved
If you like my response, please give it a Like
Appreciate your Kudos! Proud to contribute! 🙂
- mlaminedoubaApr 25, 2023Copper Contributor
Deleted
Hello, we have constated that are now receving email from alls external users event if the parameter requireSenderAuthenticationEnabled is set to True,
We really need a help.