Run the following Powershell command to find out who forwards to who in Exchange 2007 or 2010
Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name, ForwardingAddress, DeliverToMailboxAndForward
Source : Here
Run the following Powershell command to find out who forwards to who in Exchange 2007 or 2010
Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name, ForwardingAddress, DeliverToMailboxAndForward
Source : Here