Applies to: Exchange Server 2013, Exchange Online
Topic Last Modified: 2012-10-26
You can use the EAC or the Shell to enable or disable MAPI for a user mailbox. When MAPI is enabled, a user's mailbox can be accessed by Microsoft Outlook or other MAPI email clients. When MAPI is disabled, it can't be accessed by Outlook or other MAPI clients. But the mailbox will continue to receive email messages, and a user can access it to send and receive email by using Outlook Web App, a POP email client, or an IMAP client, assuming that the mailbox is enabled to support access by those clients.
Note: |
---|
Support for Outlook Web App and MAPI, POP3, and IMAP4 email clients is enabled by default when a user mailbox is created. |
For additional management tasks related to managing email client access to a mailbox, see the following topics:
- Enable or
Disable Outlook Web App for a Mailbox
- Enable or
Disable IMAP4 Access for a User
- Enable or
Disable POP3 Access for a User
What do you need to know before you begin?
- Estimated time to complete: 2 minutes.
- You need to be assigned permissions before you can perform this
procedure or procedures. To see what permissions you need, see the
"Client Access user settings" entry in the Clients and Mobile
Devices Permissions topic.
- For information about keyboard shortcuts that may apply to the
procedures in this topic, see Keyboard Shortcuts in
the Exchange Admin Center.
Tip: |
---|
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection. |
What do you want to do?
Use the EAC to enable or disable MAPI
- In the EAC, navigate to Recipients
> Mailboxes.
- In the list of user mailboxes, click the mailbox that you want
to enable or disable MAPI, and then click Edit .
- On the mailbox properties page, click Mailbox
Features.
- Under Email Connectivity, do one of the following.
- To disable MAPI, under MAPI: Enabled, click
Disable.
A warning appears asking if you're sure you want to disable MAPI. Click Yes.
- To enable MAPI, under MAPI: Disabled, click
Enable.
- To disable MAPI, under MAPI: Enabled, click
Disable.
- Click Save to save your change.
Use the Shell to enable or disable MAPI
This example disables MAPI for the mailbox of Ken Sanchez.
Copy Code | |
---|---|
Set-CASMailbox -Identity "Ken Sanchez" -MAPIEnabled $false |
This example enables MAPI for the mailbox of Esther Valle.
Copy Code | |
---|---|
Set-CASMailbox -Identity "Esther Valle" -MAPIEnabled $true |
For detailed syntax and parameter information, see Set-CASMailbox.
How do you know this worked?
To verify that you’ve successfully enabled or disabled MAPI for a user mailbox, do one of the following:
- In the EAC, navigate to Recipients
> Mailboxes, click the mailbox, and then click
Edit .
- On the mailbox properties page, click Mailbox
Features.
- Under Email Connectivity, verify whether MAPI is enabled
or disabled.
Or
- Run the following command in the Shell.
Copy Code Get-CASMailbox <identity>
True
. If MAPI is disabled, the value isFalse
.