Copilot in Outlook Cannot Summarize Shared Mailbox Thread: Fix
🔍 WiseChecker

Copilot in Outlook Cannot Summarize Shared Mailbox Thread: Fix

When you try to use Copilot to summarize a long email thread in a shared mailbox, the feature may fail silently or return an error message. This problem occurs because Copilot requires direct access to the mailbox data through Microsoft Graph, and shared mailboxes often lack the necessary permissions or indexing. This article explains why the summarize feature fails in shared mailboxes and provides a step-by-step fix to restore the functionality.

Key Takeaways: Fixing Copilot Summarize in Shared Mailboxes

  • Exchange Online PowerShell > Set-Mailbox -MessageCopyForSentAsEnabled: Enables Copilot to see sent items in the shared mailbox.
  • Microsoft 365 admin center > Roles > Exchange Administrator: Assign this role to the user who needs to fix mailbox permissions.
  • Outlook > Shared mailbox > Folder permissions: Grant the user at least Reviewer permission on the mailbox root folder.

ADVERTISEMENT

Why Copilot Cannot Summarize Shared Mailbox Threads

Copilot in Outlook relies on Microsoft Graph to index and retrieve email content. When you open a shared mailbox, Outlook loads the folder structure, but Copilot may not have the required Graph permissions to read the items. The root cause is that shared mailboxes are not automatically indexed by Microsoft 365 for Copilot unless explicit permissions are set. Additionally, the message copy feature for sent items is often disabled by default in shared mailboxes. Without these two configurations, Copilot cannot find the thread data and therefore cannot generate a summary.

How Shared Mailbox Permissions Affect Copilot

A shared mailbox is a mailbox that multiple users can access. By default, only users with Full Access or Send-As permissions can view the contents. Copilot requires at least FolderVisible and ReadItems permissions on the mailbox root folder. If a user has only been granted access via the Outlook client but not through Exchange admin, the Graph API may still block Copilot from reading the data.

The Role of Message Copy for Sent Items

When a user sends an email from a shared mailbox, the sent message is stored in the user’s own Sent Items folder by default, not in the shared mailbox. This means Copilot cannot locate the sent messages when trying to summarize a thread. The Exchange Online parameter MessageCopyForSentAsEnabled must be set to $true to copy sent items into the shared mailbox.

Steps to Restore Copilot Summarize in a Shared Mailbox

Follow these steps in order. You need Exchange Administrator permissions or higher.

  1. Open Exchange Online PowerShell
    Launch Windows PowerShell as an administrator. Run Connect-ExchangeOnline and sign in with an account that has Exchange Administrator or Global Administrator role.
  2. Enable message copy for sent items
    Run the command: Set-Mailbox -Identity "SharedMailboxName" -MessageCopyForSentAsEnabled $true -MessageCopyForSendOnBehalfEnabled $true. Replace SharedMailboxName with the alias or email address of your shared mailbox.
  3. Grant the user FolderVisible permission
    Run: Add-MailboxFolderPermission -Identity "SharedMailboxName:\" -User user@domain.com -AccessRights Reviewer. This gives the user read access to the mailbox root folder, which Copilot requires.
  4. Verify the permission in Outlook
    Open Outlook, right-click the shared mailbox name in the folder pane, select Folder Permissions. Confirm the user appears with Reviewer or higher access. If missing, repeat step 3.
  5. Restart Outlook
    Close and reopen Outlook. Copilot re-authenticates with Graph on startup. After restart, open a thread in the shared mailbox and click the Copilot Summarize button.

ADVERTISEMENT

If Copilot Still Has Issues After the Main Fix

Copilot Returns an Error: “We couldn’t summarize this thread”

This error can appear even after permissions are set correctly. The cause is often a delay in Graph indexing. Wait 15 to 30 minutes after changing permissions. Then, have the user sign out of Outlook and sign back in. If the error persists, check that the shared mailbox is licensed. Copilot requires an active Microsoft 365 Copilot license assigned to the user, not the mailbox.

Copilot Summarizes Only Part of the Thread

If the thread contains more than 100 messages, Copilot may stop reading after the first 100. This is a known limitation in the current version. To work around this, break the thread into smaller conversations or use the search feature to locate specific messages before summarizing.

Shared Mailbox Not Appearing in Copilot Suggestions

Copilot can only suggest actions on mailboxes that are fully visible in the Outlook folder pane. If the shared mailbox is added as an account rather than a shared folder, remove it and re-add it through File > Account Settings > Change > More Settings > Advanced > Open these additional mailboxes.

Copilot Summarize in Shared Mailbox vs Personal Mailbox: Key Differences

Item Shared Mailbox Personal Mailbox
Default Copilot access No — requires explicit permission Yes — automatically indexed
Message copy for sent items Disabled by default Enabled by default
FolderVisible permission needed Yes No
Graph indexing delay Up to 30 minutes Near real-time
Thread size limit 100 messages 100 messages

After applying the fixes above, Copilot should be able to summarize threads in the shared mailbox. Test with a short thread first. If the problem continues, verify that the user has the Microsoft 365 Copilot license assigned in the Microsoft 365 admin center. Also confirm that the shared mailbox is not hidden from address lists, as hidden mailboxes may not be indexed by Graph.

ADVERTISEMENT