Hi @Keith Hampshire ,
The only other way I can see this working is if I remove the two nested distributions groups (GroupA & GroupB) from allusers and just add everybody one by one to the allusers group.
Agree with you that this might be the only alternative if GroupA & GroupB have to be set to not allow external emails.
Based on my understanding, when the approver approves the external sender's email to the allusers group, it only means the email is allowed to be sent to the members inside the allusers group. Since GroupA & GroupB themselves don't allow outside messages, it's expected that the mail cannot arrive neither GroupA nor GroupB and the external sender still gets the undeliverable notification.
Given this, as you mentioned, you can remove the two groups via EAC or the script below (assuming the allusers group only contains the two groups):
$list = Get-DistributionGroupMember -Identity allusers
$list | % {
Remove-DistributionGroupMember -Identity allusers -Member $_.Name -Confirm:$false
}
Then copy the members in GroupA and GroupB to the allusers group:
Get-DistributionGroupMember -Identity "GroupA" | % {Add-DistributionGroupMember -Identity "allusers" -Member $_.Name}
Get-DistributionGroupMember -Identity "GroupB" | % {Add-DistributionGroupMember -Identity "allusers" -Member $_.Name}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. 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.