SOLVED

Non-Member of Private Group able to email group - is this correct?

Brass Contributor

We have a private group, but recently received an email message from someone who is not a member of the group. I know that the private groups are listed in the

I thought private groups only allowed messages to be sent from other members.

Is this correct?

Thanks!

-kathy

10 Replies

Internal users can send emails to a Group, even if it is private.

You can hide the Group email address from the GAL by PowerShell.

See https://techcommunity.microsoft.com/t5/Office-365-Groups/Hide-Group-email-from-global-address-list/m...

 

best response confirmed by VI_Migration (Silver Contributor)
Solution

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.

So we hide an email address from the GAL. Once this is done, if I know the email address, but am not a group member, can I still send emails to it?  

I'm unsure if 'hidden' means 'not visible through' or 'not available to'. Thanks in advance.

No, hiding from GAL doesn’t prevent mails sent to group! You can easily prevent external users to the organization to send mail to the group though from outlook and also through the powershell command Vasil posted above

Adam
To clarify, the powershell can prevent mail from non-members overall

Non members of the group or the organisation? 


@adam deltinger wrote:
To clarify, the powershell can prevent mail from non-members overall

 


@adam deltinger wrote:
Sorry, the group :)

That's great! Thanks :)

@Vasil Michev @Kathleen Lynch  If you need to reverse the above command:

Set-UnifiedGroup groupname -AcceptMessagesOnlyFromSendersOrMembers $null

 

 

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

 


@Vasil Michev 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.


@Vasil Michev 

1 best response

Accepted Solutions
best response confirmed by VI_Migration (Silver Contributor)
Solution

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.

View solution in original post