Exchange Online error: “The proxy address is already being used by another recipient” during mailbox creation

Deborthia Azbill 100 Reputation points
2026-01-24T13:44:26.7366667+00:00

When creating or modifying mailboxes in Exchange Online, I receive the error “The proxy address is already being used by another recipient”, even though the email address does not appear to be assigned to any active mailbox.

The address is not returned by standard Get-Mailbox queries, and the issue persists after directory sync and waiting for propagation.

Exchange Online
Exchange Online
A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
0 comments No comments
{count} votes

Answer accepted by question author
  1. Steven-N 20,525 Reputation points Microsoft External Staff Moderator
    2026-01-24T14:30:26.9+00:00

    Hi Deborthia Azbill

    Thank you for reaching out to Microsoft Q&A forum

    Based on my research, the error “The proxy address is already being used by another recipient” typically indicates that the email address you're trying to assign is already associated with another mail-enabled object. This conflict can occur even if the address is not returned by standard Get-Mailbox queries.

    Given this, to resolve this problem, you can follow these steps below:

    After connecting to Exchange Online module, run the following command to search all recipient types for the conflicting address:

    Get-EXORecipient -ResultSize Unlimited | Where-Object { $_.EmailAddresses -match "SMTP:<conflicting address>" } | Format-List Name, RecipientType, EmailAddresses
    

    If the address is found, remove or change it on the conflicting object using the appropriate cmdlet:

    For mailboxes:

    Set-Mailbox -Identity "<Name>" -EmailAddresses @{Remove="smtp:<conflicting address>"}
    

    For mail users or contacts:

    Set-MailUser -Identity "<Name>" -EmailAddresses @{Remove="smtp:<conflicting address>"}
    

    For distribution groups:

    
    Set-DistributionGroup -Identity "<GroupName>" -EmailAddresses @{Remove="smtp:<conflicting address>"}
    

    For public folders:

    Set-MailPublicFolder -Identity "<FolderName>" -EmailAddresses @{Remove="smtp:<conflicting address>"}
    

    Finally, after the conflict is resolved, retry assigning the proxy address to the intended mailbox.

    For more information:

    https://learn.microsoft.com/en-us/troubleshoot/exchange/email-alias/proxy-address-being-used

    https://www.exchangemvp.org/fix-non-unique-proxy-address-in-exchange-online/

    Note: Microsoft is providing this information as a convenience to you. These sites are not controlled by Microsoft, and Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please ensure that you fully understand the risks before using any suggestions from the above link.

    You can try the above approach, if the problem still persists, kindly let me know in the comments for further support


    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.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.