適用於:Exchange Server 2013
如果您有使用 POP3 或 IMAP4 連線到其 Microsoft Exchange Server 2013 信箱的使用者,他們必須知道要連線的正確伺服器設定。 完成預設的 Exchange 2013 安裝之後,您的使用者就無法查詢他們自己的傳入 POP3 或 IMAP4 伺服器設定或傳出 SMTP 伺服器設定。 不過,您可以設定 Exchange,讓使用者可以使用 Microsoft Outlook Web App 來查詢自己的設定。
執行這些程序後,您的使用者便可在 Outlook Web App 中查詢其伺服器設定,如下所示:
在 [Outlook Web App] 中,按兩下 [設定>選項]。
在 [選項] 中,按兩下 [ 我的>帳戶設定>] 以進行 POP 或 IMAP 存取。
如需 POP3 和 IMAP4 的其他相關信息,請參閱 2013 Exchange Server 中的 POP3 和 IMAP4。
預估完成時間:5 分鐘。
本主題中的程序需要特定權限。 請查看每個程序以取得權限資訊。
如需適用於此主題中程序的快速鍵相關資訊,請參閱 Exchange 系統管理中心的鍵盤快速鍵。
提示
有問題嗎? 在 Exchange 論壇中尋求協助。 瀏覽 Exchange Server 的論壇。
您必須已獲指派權限,才能執行此程序或這些程序。 To see what permissions you need, see the "POP3 settings" and "IMAP4 settings" entries in the Clients and mobile devices permissions topic.
此範例可允許使用者檢視外部 POP3 伺服器設定。
Set-PopSettings -ExternalConnectionSettings {Dublin01.Contoso.com:995:SSL}
如需詳細的語法及參數資訊,請參閱 Set-PopSettings。
此範例可允許使用者檢視外部 IMAP4 伺服器設定。
Set-ImapSettings -ExternalConnectionSettings {Dublin01.Contoso.com:993:SSL}
如需詳細的語法及參數資訊,請參閱 Set-ImapSettings。
若要套用這些變更,您必須重新啟動 IIS。 您不需要重新啟動 POP3 服務。 若要重新啟動 IIS,請在命令提示字元中輸入下列命令:
iisreset
若要驗證您是否已設定好 Exchange 以允許使用者檢視其 POP3 伺服器設定:
在命令介面中執行下列命令。
Get-PopSettings | format-list
確認已設定 ExternalConnectionSettings 屬性。
若要驗證您是否已設定好 Exchange 以允許使用者檢視其 IMAP4 伺服器設定:
在命令介面中執行下列命令。
Get-ImapSettings | format-list
確認已設定 ExternalConnectionSettings 屬性。
您必須已獲指派權限,才能執行此程序或這些程序。 若要查看您需要的權限,請參閱 郵件流程權限 主題中的「接收連接器」項目。
此範例可允許使用者利用 Outlook Web App 檢視內部和外部 SMTP 伺服器設定。
Get-ReceiveConnector "*Client Frontend*" | Set-ReceiveConnector -Fqdn Server.Contoso.com -AdvertiseClientSettings $true
如需詳細的語法及參數資訊,請參閱 Set-ReceiveConnector。
若要驗證您是否已設定好 Exchange 以允許使用者檢視其 SMTP 伺服器設定:
在命令介面中執行下列命令。
Get-ReceiveConnector | format-list
如果 AdvertiseClientSettings 屬性設定為
true
,則使用者可以在 Outlook Web App 中檢視其 SMTP 伺服器設定。 如果 AdvertiseClientSettings 設定為false
,使用者就無法在 Outlook Web App 中檢視其 SMTP 伺服器設定。
讓使用者可以檢視其 POP3、IMAP4 和 SMTP 設定之後,您還可以: