You can quickly check which mailbox has e-mail forwarding settings enabled through the EMS:
Get-Mailbox -Filter {ForwardingAddress -ne $null} | FT Name,ForwardingAddress,DeliverToMailboxAndForward -Autosize
You can use the cmdlet above and process its output or export it to a CSV (using Export-CSV).
Send a link to this post to yourself or a friend.