Forum Discussion
Blake_May
May 05, 2021Copper Contributor
Microsoft 365 Group Mailboxes Can't Drag N Drop Both Ways
Microsoft never seems to amaze me in their quest to over complicate their products. I have been using M365 (Modern) Groups and creating via M365 admin portal. This creates Teams Channel, Outlook Ma...
Jon_Nesovic
Jan 31, 2024Copper Contributor
Our organization had the same issue with moving emails out of Group Inboxes. To resolve the issue I set my OrganizationConfig settings back to default per this site: https://learn.microsoft.com/en-us/microsoft-365/enterprise/manage-folders-and-rules-feature?view=o365-worldwide
So In powershell I connected to Exchange online then ran the following commands to view the current state of each setting:
Get-OrganizationConfig | select IsGroupMemberAllowedToEditContent
Get-OrganizationConfig | select IsGroupFoldersAndRulesEnabled
Get-OrganizationConfig | select BlockMoveMessagesForGroupFolders
Then I set them to default:
Set-OrganizationConfig -IsGroupMemberAllowedToEditContent $false
Set-OrganizationConfig -IsGroupFoldersAndRulesEnabled $true
Set-OrganizationConfig -BlockMoveMessagesForGroupFolders $false
20 minutes later, and restarting Outlook, boom everything worked.
So In powershell I connected to Exchange online then ran the following commands to view the current state of each setting:
Get-OrganizationConfig | select IsGroupMemberAllowedToEditContent
Get-OrganizationConfig | select IsGroupFoldersAndRulesEnabled
Get-OrganizationConfig | select BlockMoveMessagesForGroupFolders
Then I set them to default:
Set-OrganizationConfig -IsGroupMemberAllowedToEditContent $false
Set-OrganizationConfig -IsGroupFoldersAndRulesEnabled $true
Set-OrganizationConfig -BlockMoveMessagesForGroupFolders $false
20 minutes later, and restarting Outlook, boom everything worked.