Forum Discussion
Non-Member of Private Group able to email group - is this correct?
- May 26, 2017
If needed, you can impose delivery restrictions on the group (regardless if it's Private or Public) via PowerShell:
Set-UnifiedGroup groupname -AcceptMessagesOnlyFromSendersOrMembers groupname
You can designate a user, DG, another Group or whatever for the list of people allowed to send.
If needed, you can impose delivery restrictions on the group (regardless if it's Private or Public) via PowerShell:
Set-UnifiedGroup groupname -AcceptMessagesOnlyFromSendersOrMembers groupname
You can designate a user, DG, another Group or whatever for the list of people allowed to send.
This is good, I would just add you can also set a moderator or approver in addition to the setting below. Just in case it is something useful. You can set multiple moderators too.
Set-UnifiedGroup GroupNameHere -ModerationEnabled:$True -ModeratedBy UserMailbox
VasilMichev wrote:If needed, you can impose delivery restrictions on the group (regardless if it's Private or Public) via PowerShell:
Set-UnifiedGroup groupname -AcceptMessagesOnlyFromSendersOrMembers groupname
You can designate a user, DG, another Group or whatever for the list of people allowed to send.