Applies to: Exchange Server 2013, Exchange Online
Topic Last Modified: 2012-11-28
If you have users who use POP3 or IMAP4 to connect to their Microsoft Exchange Server 2013 mailboxes, they need to know the correct server settings to connect. After a default Exchange 2013 installation, your users can’t look up their own incoming POP3 or IMAP4 server settings or outgoing SMTP server settings. However, you can configure Exchange so that your users can look up their own settings using Microsoft Outlook Web App.
After you perform these procedures, your users can look up their server settings in Outlook Web App as follows:
- In Outlook Web App, click Settings >
Options.
- In Options, click Account > My account
> Settings for POP or IMAP access.
For additional information related to POP3 and IMAP4, see POP3 and IMAP4.
What do you need to know before you begin?
- Estimated time to complete: 5 minutes.
- Procedures in this topic require specific permissions. See each
procedure for its permissions information.
- 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 Shell to allow POP3 and IMAP4 users to view their incoming POP3 and IMAP4 settings in Outlook Web App
You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "POP3 settings" and "IMAP4 settings" entries in the Clients and Mobile Devices Permissions topic.
This example allows external POP3 server settings to be viewed by end users.
Copy Code | |
---|---|
Set-PopSettings -ExternalConnectionSettings {Dublin01.Contoso.com:995:SSL} |
For detailed syntax and parameter information, see Set-PopSettings.
This example allows external IMAP4 server settings to be viewed by end users.
Copy Code | |
---|---|
Set-ImapSettings -ExternalConnectionSettings {Dublin01.Contoso.com:993:SSL} |
For detailed syntax and parameter information, see Set-ImapSettings.
To apply these changes, you must restart IIS. You don’t need to restart the POP3 services. To restart IIS, from a command prompt, enter the following:
Copy Code | |
---|---|
iisreset |
How do you know this worked?
To verify that you’ve configured Exchange to allow users to view their POP3 server settings:
- Run the following command in the Shell.
Copy Code Get-PopSettings | format-list
- Verify that the ExternalConnectionSettings property is
set.
To verify that you’ve configured Exchange to allow users to view their IMAP4 server settings:
- Run the following command in the Shell.
Copy Code Get-ImapSettings | format-list
- Verify that the ExternalConnectionSettings property is
set.
Use the Shell to allow POP3 and IMAP4 users to view their outgoing SMTP settings in Outlook Web App
You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "Receive connectors" entry in the Mail Flow Permissions topic.
This example allows internal and external SMTP server settings to be viewed by end users using Outlook Web App.
Copy Code | |
---|---|
Get-ReceiveConnector "*Client Frontend*" | Set-ReceiveConnector -Fqdn Server.Contoso.com -AdvertiseClientSettings $true |
For detailed syntax and parameter information, see Set-ReceiveConnector.
How do you know this worked?
To verify that you’ve configured Exchange to allow users to view their SMTP server settings:
- Run the following command in the Shell.
Copy Code Get-ReceiveConnector | format-list
- If the AdvertiseClientSettings property is set to
true
, users can view their SMTP server settings in Outlook Web App. If AdvertiseClientSettings is set tofalse
, users can’t view their SMTP sever settings in Outlook Web App.
For more information
After you make it possible for end users to view their POP3, IMAP4, and SMTP settings, you may also want to: