How to allow external email to send email to distribution list (NEW EAC)

Yu, Jia (Yoga) [MEDCN] 0 Reputation points
2024-12-02T10:41:07.5066667+00:00

I am owner of this email group, I login to the EAC and then navigate to groups > groups I own > Edit delivery management. Select Senders inside and outside my organization and click save. Here is the error I see on the interface.
allow external senders

Outlook | Windows | Classic Outlook for Windows | For business
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Marti Peig 970 Reputation points Microsoft Employee
    2024-12-02T10:50:10.1333333+00:00

    Hi Yu,

    You may want to try via Powershell...

    Set-DistributionGroup -Identity "your distro name here" -RequireSenderAuthenticationEnabled $False
    

    The RequireSenderAuthenticationEnabled parameter specifies whether to accept messages only from authenticated (internal) senders. Valid values are:

    • $true: Messages are accepted only from authenticated (internal) senders. Messages from unauthenticated (external) senders are rejected.
    • $false: Messages are accepted from authenticated (internal) and unauthenticated (external) senders.

    From https://learn.microsoft.com/en-us/powershell/module/exchange/set-distributiongroup?view=exchange-ps

    I hope it helps.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.