Office365 migration-Cannot remove remote user mailbox message size restriction

Dave Bryan 96 Reputation points
2020-11-13T14:45:37.15+00:00

We are migrating from Exchange 2010 to Office365. We migrated a mailbox that is now in the cloud, but we cannot send him a larger attachment because his remote mail user contact shows a 5GB limit. The setting is greyed-out and not seeing a way to change it. The O365 mailbox does not show that restriction, but does anyone have any ideas on how to remove a greyed-out message size restriction on a remote user mailbox?

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,369 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Andy David - MVP 142.3K Reputation points MVP
    2020-11-13T15:17:27.293+00:00

    You can view with on-prem Exchange Powershell get-remotemailbox to confirm:

    Get-RemoteMailbox <user>  |FL *max*  
    

    If there is a value there, clear via adsiedit.msc

    MaxReceiveSize in Exchange = delivContLength in AD

    39699-image.png

    MaxSendSize in Exchange = submissionContLength in AD

    39743-image.png

    1 person found this answer helpful.

  2. Joyce Shen - MSFT 16,646 Reputation points
    2020-11-16T06:00:09.563+00:00

    Hi @Dave Bryan ,

    Agree with the suggestion from Andy, you could also use the command below to clear the values

    set-ADUser -Identity user -clear submissionContLength  
    set-ADUser -Identity user -clear delivContLength  
    

    If an Answer is helpful, please click "Accept Answer" and upvote it.

    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.

    1 person found this answer helpful.
    0 comments No comments