Ah - now that's an important clarification. Yes, shared mailboxes normally don't need a license to receive mail from external senders, up to 50GB, and without an associated user account. So why is yours broken? Let's dissect the difference.
Here's what's likely happening in your case:
Original admin mailbox scenario:
- You had a user mailbox that was also the global admin login.
- You converted it to shared, but the original user account still exists.
- Microsoft 365 sees this as a shared mailbox with a conflicting user account, and sometimes this blocks mail delivery, especially if the user account still has a primary SMTP address that matches the mailbox.
Other shared mailboxes work because:
- They are pure shared mailboxes, not "converted from a user account" that still exists.
- There is no conflicting user login with the same primary SMTP address.
Potential catch:
- When you converted the admin mailbox to shared but left the user account intact, the user account may still be "owning" the SMTP address internally, preventing mail routing to the shared mailbox.
- If the user account was disabled or unlicensed, the mailbox may appear "orphaned" in terms of delivery routing.
How to fix it
Option 1: Remove the primary SMTP from the original user account
- Go to Microsoft 365 admin center Users select the original user account.
- Edit email addresses and remove the primary SMTP (or change it temporarily to something else).
- Ensure the shared mailbox has the correct primary SMTP.
Option 2: Make sure the shared mailbox is set to receive external mail
- In Exchange admin center Mailboxes select shared mailbox Mail Flow Settings Delivery Management.
- Ensure it is enabled to receive mail from all senders (internal + external).
Option 3: Check mail routing in PowerShell
You can quickly check the mailbox type and email addresses with:
Connect-ExchangeOnline
Get-Mailbox -Identity "adminshared"
- Look for RecipientTypeDetails (should be
SharedMailbox)
- Look for PrimarySmtpAddress
- Look for EmailAddresses
- Check if the mailbox is hidden from address lists (hidden mailboxes sometimes reject external mail).
The core issue: Shared mailboxes converted from a user who still exists sometimes have SMTP ownership conflicts, unlike "pure" shared mailboxes. That's why your other shared mailboxes work fine.
If you want, I can give you the exact sequence of PowerShell commands to fix this mailbox so it receives mail immediately, without touching your admin user login.