Applies to: Exchange Server 2007 SP3, Exchange Server 2007 SP2, Exchange Server 2007 SP1, Exchange Server 2007
Topic Last Modified: 2007-08-23

This topic explains how to add, remove, or modify E.164 addresses for a recipient who is enabled for Microsoft Exchange Server 2007 Unified Messaging (UM). If you have the release to manufacturing (RTM) version of Exchange Server 2007 installed, use the Exchange Management Shell to perform this procedure. If you have Exchange Server 2007 Service Pack 1 (SP1) installed, you can make these changes by using either the Exchange Management Shell or the Exchange Management Console.

Note:
In the RTM version, you must use the Set-Mailbox cmdlet to add, remove, or modify extension numbers.

When you enable a user for Unified Messaging, you must define at least one extension number that will be used by Unified Messaging when voice mail is submitted to the user's Exchange 2007 mailbox. However, you will have the option to add an E.164 address for a user if the user is associated with an E.164 dial plan. After you have enabled the user for Unified Messaging, you can add E.164 addresses to the user's mailbox, or modify or remove them by configuring the Exchange Unified Messaging proxy address (EUM proxy address) on the user's mailbox.

The mailbox of a UM-enabled user can be associated with only one UM dial plan. However, the mailbox of a UM-enabled user can be assigned the following:

For example, a UM-enabled user travels frequently from New York to Tokyo. The user's mailbox is associated with the New York dial plan and a single E.164 address is configured on the user's mailbox. A second E.164 address is configured on the user's mailbox for the Tokyo dial plan. When callers dial either extension number and leave a voice message for the user, the voice message will be delivered to the same UM-enabled mailbox.

You can also add, remove, and modify extension numbers and SIP addresses. For more information about how to add, remove, and modify extension numbers and SIP addresses, see the following topics:

Before You Begin

To perform the following procedures, the account you use must be delegated the Exchange Recipient Administrator role.

For more information about permissions, delegating roles, and the rights that are required to administer Exchange 2007, see Permission Considerations.

Also, before you perform these procedures, confirm the following:

  • The existing Exchange recipient has an Exchange 2007 mailbox.

  • The existing Exchange 2007 recipient is enabled for Unified Messaging.

  • A UM mailbox policy has been created.

  • An E.164 dial plan has been created.

  • The E.164 address that will be assigned to the UM user is valid.

Procedure

Exchange 2007 SP1

To use the Exchange Management Console to add, remove, or modify an E.164 address for a UM-enabled user

  1. In the console tree, expand Recipient Configuration, and then click Mailbox.

  2. In the result pane, select the mailbox for which you want to add a new e-mail address.

  3. In the action pane, under the mailbox name, click Properties.

  4. In <Mailbox User> Properties, click the E-Mail Addresses tab.

  5. To create a new e-mail address, under E-mail Addresses, perform one of the following tasks:

    • To add a new EUM proxy address, click the drop-down arrow next to Add, and then click EUM Address. In UM Address (Extension), in the Address/Extension box, type the E.164 address. In the Dial plan (Phone context) box, click Browse to locate the dial plan for the user.

    • To modify an existing EUM proxy address, select the appropriate EUM proxy address, and then click Edit. In UM Address (Extension), in the Address/Extension box, type the new E.164 address. In the Dial plan (Phone context) box, click Browse to locate a new dial plan for the user.

    • To remove an existing EUM proxy address, click Remove icon.

  6. Click Apply, and then click OK.

To use the Exchange Management Shell to add, remove, or modify an E.164 address for a UM-enabled user

  • To add an E.164 address for a user, run the following command:

    Copy Code
    $mbx = Get-Mailbox tony.smith
    $mbx.EmailAddresses +="eum:+14255550105;MyDialPlan.contoso.com"
    $mbx | set-mailbox
    
  • To modify an E.164 address for a user, run the following command:

    Copy Code
    $mbx = Get-Mailbox tony.smith
    $mbx.EmailAddresses.Item(0) ="eum: +14255551234;phone-context=MyDialPlan.contoso.com"
    $mbx | set-mailbox
    
    Note:
    You must determine the position of the EUM proxy address that you want to modify. To determine the position of the EUM proxy address, use the $mbx.EmailAddresses command. The first proxy address in the list will be 0.
  • To remove an E.164 address for a user, run the following command:

    Copy Code
    $mbx = Get-Mailbox tony.smith
    $mbx.EmailAddresses -="eum:+14255550105; MyDialPlan.contoso.com"
    $mbx | set-mailbox
    

For more information about syntax and parameters, see Set-Mailbox or Get-Mailbox.

Exchange 2007 RTM

To use the Exchange Management Shell to add an E.164 address for a UM-enabled user

  • Run the following command:

    Copy Code
    Enable-UMMailbox -Identity tonysmith@contoso.com -UMMailboxPolicy MyDomainUMPolicy -SIPResourceIdentifier:+14255550105
    
    Note:
    In the release to manufacturing (RTM) version of Exchange 2007, you must use the Enable-UMMailbox cmdlet to configure an E.164 address for a user. You cannot use the Set-Mailbox cmdlet to add, remove, or modify E.164 addresses.

For more information about syntax and parameters, see Enable-UMMailbox (RTM).

For More Information