To make an Exchange Distribution Group externally accessible:
Exchange Management Console → Recipient Configuration → Distribution Groups → Properties Mail Flow Settings → Delivery Restrictions → De-Select All Senders are Authenticated
Enable-DistributionGroup -Identity "Group Name"
When testing, pick the From address from the GAL.
This seems to require these steps:
SendOnBehalfOf
permission to usersSendAs
permission to the same usershttp://exchangeserverpro.com/exchange-2010-send-as-permissions-distribution-group/
Set-Group “Group Name” -Universal
net stop MSExchangeIS
net start MSExchangeIS
List Public Folder or Distribution Group:
Get-DistributionGroup "Group Name"
Optionally, you can further verify “Send As” target is a Distribution Group:
get-recipient -results unlimited | where {$_.emailaddresses -match "targetemailaddressg@yourdomain.tld"} | select name,emailaddresses,recipienttype
Show “Send As” permissions for a Distribution Group:
Get-ADPermission -Identity "Group Name" | where {($_.ExtendedRights -like "*Send-As*")} | FT -Wrap
Grant a user or group “send as” permission:
Add-ADPermission -Identity "Distribution Group Name" -User "User or Security Group" -ExtendedRights Send-As
Show “send on behalf of” permission:
Get-DistributionGroup -Identity "Distribution Group Name" | fl GrantSendOnBehalfTo
Grant a user or group “send on behalf of” permission:
Set-DistributionGroup -Identity "Distribution Group Name" -GrantSendOnBehalfTo "User or Group Name"