A robust email, calendaring, and collaboration platform developed by Microsoft, designed for enterprise-level communication and data management.Miscellaneous topics that do not fit into specific categories.
Please note that Q&A forum is a public platform, and moderators will modify the question to hide personal information in the description. Kindly ensure that you hide any personal or organizational information the next time you post an error or other details to protect personal data.
Thanks for reaching out to the Microsoft Q&A forum.
Based on my research, I would like to share the insights gathered so far.
In-place Archive in Exchange Server does not support Exchange ActiveSync. This means that native mobile mail applications do not support the In-place Archive feature. In addition, according to the documentation In-Place Archiving in Exchange Server | Microsoft Learn, support is listed only for Outlook on the web and the Outlook desktop client. Outlook for mobile is not mentioned, which indicates that In-place Archive is not expected to be available through Outlook mobile.
Regarding the Outlook desktop client not displaying the In-place Archive folder, this may relate to the MAPI/HTTP protocol. The following scenarios can affect visibility:
- The MAPI/HTTP protocol is disabled on the Exchange Server.
- The MAPI/HTTP protocol is enabled or disabled at the mailbox level for specific users.
To verify the MAPI/HTTP setting for the affected mailbox, you may run:
Get-CASMailbox -Identity <AliasOrSMTP> | Format-List DisplayName, MapiHttpEnabled
If the value is True, you can disable it with:
Set-CASMailbox <Alias> -MapiHttpEnabled $False
Next, please check the tenant-wide MAPI/HTTP setting:
Get-OrganizationConfig | Format-List MapiHttpEnabled
If the value is set to False, you can enable it with:
Set-OrganizationConfig -MapiHttpEnabled $True
Reference: Cannot access archive mailbox in Outlook - Exchange | Microsoft Learn
Additionally, it is important to confirm that the Outlook version in use supports In-place Archive. You can review this information here: Outlook license requirements for Exchange features - Microsoft Support
I hope these insights are helpful. If you have any updates or need further clarification, please feel free to share.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.