Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-07-23
This topic explains how to use the Exchange Management Console (EMC) or the Exchange Management Shell to configure mail forwarding for a mailbox.
Looking for other management tasks related to user mailboxes? Check out Managing User Mailboxes.
Use the EMC to configure mail forwarding for a mailbox
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Recipient Provisioning Permissions" section in the Mailbox Permissions topic.
- In the console tree, navigate to Recipient Configuration
> Mailbox.
- In the result pane, right-click the mailbox for which you want
to configure mail forwarding, and then click Properties.
- In <Mailbox> Properties, on the Mail Flow
Settings tab, click Delivery Options, and then click
Properties.
- Select the Forward to check box, and then click
Browse.
- In Select Recipient, select the recipient to whom you
want to forward messages, and then click OK.
Note: By default, the dialog box displays all recipients that are in the current recipient scope specified in the Recipient Configuration node. To learn more about the recipient scope and its impact on the recipient work center, see Understanding Recipient Scope. - If you want incoming messages to be delivered to the mailbox as
well as to the forwarding address you specified, select the
Deliver message to both forwarding address and mailbox check
box. Clear this check box to forward all incoming messages without
retaining copies in the mailbox.
- Click OK to return to <Mailbox>
Properties.
Use the Shell to configure mail forwarding for a mailbox
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Recipient Provisioning Permissions" section in the Mailbox Permissions topic.
This example forwards all mail for John Smith's mailbox to sara@contoso.com.
Copy Code | |
---|---|
Set-Mailbox -Identity "John Smith" -ForwardingAddress "sara@contoso.com" |
This example delivers mail to John Smith's mailbox and at the same time forwards all mail for John Smith's mailbox to sara@contoso.com.
Copy Code | |
---|---|
Set-Mailbox -Identity "John Smith" -ForwardingAddress "sara@contoso.com" -DeliverToMailboxAndForward $true |
For detailed syntax and parameter information, see Set-Mailbox.