Email Address policies -- quick question
Hi
do EAP's remove email addresses that have been previously applied by another policy
so EAP_policy_1 applies @test.com, and it set to priority 2 (and set as reply)
you create another policy called EAP_policy_2 and apply @test1.com (and set as reply)
so users and DL's being updated with EAP's will have both test @ test1.com email addresses, and set as reply
and would it be the case that EAP_policy_2 would determine the reply address (primary SMTP)
CheersJames
March 26th, 2012 4:24am
Hi,
Only the policy with the highest priority will be applied to a user. All old email address will be deleted because it is not part of the applied policy. You could create one policy to set both the test.com and test1.com mail address and choose which one
to use as reply address.
Kind regards,
Bart Timmermans
Bart Timmermans | Technical Consultant at KPN Consulting
Follow me @
My Blog| Linkedin|
Twitter
Please mark as Answer, if my post answers your Question. Vote as Helpful, if it is helpful to you.
Free Windows Admin Tool Kit Click here and download it now
March 26th, 2012 5:20am
Hi Bart
so just to be clear the logic is that as soon as a policy matches a recipient the processing of policies stop
and policies remove existing smtp email addresses
March 26th, 2012 6:25am
Hi,
I think existing email address should be removed manually from the user's properties. Kottees : My Blog : Please mark it as an answer if it really helps you.
Free Windows Admin Tool Kit Click here and download it now
March 26th, 2012 7:45am
yes -- i am not convinced applying a new policy deletes smtp addresses applied by a
superseded
one
March 26th, 2012 7:47am
On Mon, 26 Mar 2012 09:20:35 +0000, Bart Timmermans - KPN Consulting
wrote:
>Only the policy with the highest priority will be applied to a user. All old email address will be deleted because it is not part of the applied policy.
Ummmm, no.
Any existing proxy addresses will be retained. The previous primary
proxy addresses will be demoted to secondary proxy addresses.
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
March 26th, 2012 10:31pm
On Mon, 26 Mar 2012 10:25:30 +0000, Hodgy0_2 wrote:
>so just to be clear the logic is that as soon as a policy matches a recipient the processing of policies stop
That's correct.
>and policies remove existing smtp email addresses
No, that doesn't happen.
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
March 26th, 2012 10:31pm
On Mon, 26 Mar 2012 11:45:03 +0000, imkottees wrote:
>I think existing email address should be removed manually from the user's properties.
That's correct, although "manual" may also include scripts and
ADModify.
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
March 26th, 2012 10:32pm
Thank you so much for clarification Rich.
Cheers!!!
Kottees : My Blog : Please mark it as an answer if it really helps you.
March 27th, 2012 1:30am
Yes, policy will not remove the existing smtp email addresses.
You can follow Rich's suggestion, use script or ADModify to remove that.
Maybe you can use this to help you remove the old address:
$users=get-mailbox -resultsize unlimited
foreach($user in $users){
$user.EmailAddresses | where{$_.AddressString -like '*@test.com'}| foreach{
Set-mailbox $user -EmailAddresses @{remove=$_}
}
}
Thanks,
Evan Liu
TechNet Subscriber Supportin forum
If you have any feedback on our support, please contact
tngfb@microsoft.com
Evan Liu
TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
March 27th, 2012 3:06am
Hello,
Any updates?
Thanks,
Evan Liu
TechNet Subscriber Supportin forum
If you have any feedback on our support, please contacttngfb@microsoft.comEvan Liu
TechNet Community Support
March 28th, 2012 2:49am