Exchange, Forwarding Mail

Redireccionar Mensajes de correo a otro buzón

Set-Mailbox -Identity "<DisplayName>" -DeliverToMailboxAndForward $true -ForwardingSMTPAddress "User@domain"

Para quitar el redireccionamiento:

Set-Mailbox -Identity "<DisplayName>" -DeliverToMailboxandforward $False -ForwardingSMTPAddress $Null -ForwardingAddress $Null

Para verificar los redireccionamientos:

get-mailbox -ResultSize unlimited | where {$_.delivertomailboxandforward -eq $true}|select Name, Samaccountname

 

 

También te podría gustar...