0

I am running Exchange 2010. Within AD I have the following:

  • BranchManager <- this is an OU
    • Branch1 <- this is a universal security group containing a name
    • Branch2 <- this is a universal security group containing a name
    • AllBranch <- this is a universal security group containing Branch1 & Branch2

In Exchange I want to create a distribution group for AllBranch that sends emails to Branch1 and Branch2

Has anyone done something like this before? So far I've been unable to get this to work.

Thanks

Mike Fiedler
  • 2,162
  • 1
  • 17
  • 34
SamA
  • 3
  • 2

1 Answers1

2

Have you mail-enabled the security groups yet via Exchange PowerShell?

Enable-DistributionGroup -Identity “groupname”

Security groups are not mail enabled by default.

  • Skyler I did mail enable all Branch and AllBranch groups, still doesn't work – SamA Jun 06 '16 at 16:07
  • What do you have set for the group restrictions set here: Properties>Mail Flow Settings>Message Delivery Restrictions. – Skyler Kincaid Jun 06 '16 at 16:14
  • Interesting, it seemed to take a few minutes to propagate but now I have a mail group called AllBranch and it contains the groups Branch1 and Branch2. In other words it works the way I want it to. Thank you for your help. – SamA Jun 06 '16 at 16:40