AcceptMessagesOnlyFrom
Hey does anyone know how to add a Distribution List to the AcceptMessagesOnlyFrom property of a different Distribution List
July 11th, 2011 5:44am
Version of Exchange would be helpful.
In Exchange 2010, I can just select the group in the usual way. What are you seeing when you attempt to do it? Are you using distribution groups or mail enabled security groups?
Simon.
Simon Butler, Exchange MVP
Blog |
Exchange Resources | In the UK?
Hire Me.
Free Windows Admin Tool Kit Click here and download it now
July 11th, 2011 7:33am
I'm using exchange 2007... i'm using distribution groups. i want to add different Dls and individual users to the list which should be listed in the AcceptMessagesOnlyFrom property. i can add users fine but i don't know how to add DLs through the
use of the powershell
July 11th, 2011 9:47am
On Mon, 11 Jul 2011 13:39:21 +0000, Kinulus wrote:
>I'm using exchange 2007... i'm using distribution groups. i want to add different Dls and individual users to the list which should be listed in the AcceptMessagesOnlyFrom property. i can add users fine but i don't know how to add DLs through the use
of the powershell
set-distributiongroup <name> -AcceptMessagesOnlyFromDLMembers <dlname>
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
July 11th, 2011 5:42pm
Hi,
Both AcceptMessagesOnlyFromDLMembers and AcceptMessagesOnlyFromSendersOrMembers
should work.
Set-DistributionGroup -Identity "DL name" -AcceptMessagesOnlyFromDLMembers "DL NAME"
Set-DistributionGroup -Identity "DL name" -AcceptMessagesOnlyFromSendersOrMembers "DL NAME"
Reference:
http://technet.microsoft.com/en-us/library/bb124955.aspxPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
July 12th, 2011 3:42am
This works Thanks.. but i can't add multiple DLs using this it only allows 1.. is there a way to add multiple DLs
Free Windows Admin Tool Kit Click here and download it now
July 12th, 2011 5:44am
Hi,
>This works Thanks.. but i can't add multiple DLs using this it only allows 1.. is there a way to add multiple DLs
Set-DistributionGroup -Identity "DL name" -AcceptMessagesOnlyFromDLMembers
"DL NAME1","DL NAME2"Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
July 12th, 2011 9:16pm