
🚀 Overview
System administrators may encounter reports where Outlook 2016 for Mac becomes unresponsive or experiences significant performance degradation. This specific issue is triggered when a user navigates into an email folder containing a high volume of encrypted messages. As the application attempts to process and display these messages within the list view, the UI often freezes, leading to a “spinning beachball” state. This behavior is documented under Microsoft Knowledge Base article 3172627 and is primarily related to how the client handles S/MIME previews.
⚙️ Key Technical Details
Resolving this stability issue requires a two-phased approach: ensuring the software is updated to a specific build and then applying a configuration change via the macOS Terminal to alter the application’s rendering behavior.
- Minimum Version Requirement: The fix is only supported on Outlook 2016 for Mac version 15.23 or any subsequent releases. Admins should verify that the security update released on June 14, 2016 (MS16-070), or a later patch has been successfully deployed to the workstation.
- Feature Modification: To prevent the application hang, the “Preview” feature for S/MIME encrypted messages must be programmatically disabled. This stops the client from attempting to decrypt or process the content specifically for the preview pane/list view.
- Verification Steps: To check the current build, users or admins should navigate to the Outlook menu and select About Outlook to confirm the version string.
🛠️ Implementation Procedure
Once the application is updated to at least version 15.23, follow these steps to apply the workaround:
- Fully exit the Outlook application.
- Launch the Terminal utility (located in
/Applications/Utilities/or accessible via Spotlight). - Execute the following command to modify the Outlook preference domain:
defaults write com.microsoft.Outlook DisablePreviewForSMIME 1 - Refresh the preferences daemon to ensure the changes are registered by the system:
killall cfprefsd - Relaunch Outlook to resume normal operations.
⚠️ Impact
For the End User, the primary impact is the loss of the message snippet/preview for encrypted emails in the message list. However, this is a necessary trade-off to restore application stability and prevent total software hangs. Users will still be able to read the full content of the emails by opening them normally.
For the IT Administrator, this issue often results in increased helpdesk tickets regarding “Outlook freezing.” Because this fix requires a Terminal command, it is recommended that admins deploy this setting via a configuration profile or a Mobile Device Management (MDM) script for large-scale environments to ensure consistent performance across the fleet.
Official Source: Read the full article on Microsoft.com
