Hi @Glenn Maxwell ,
Welcome to the Microsoft Q&A platform!
Based on your description, you are dealing with a proxy address conflict. This can happen if the SMTP address is already in use by another mail-enabled object in your organization. Here are some steps you can take to track down and resolve this issue:
- Connect to Exchange Online PowerShell:
Connect-ExchangeOnline -UserPrincipalName <your UPN>
- Run the following command to list all mail recipients using the conflicting SMTP address:
Get-EXORecipient -ResultSize Unlimited | Where-Object {$_.EmailAddresses -match "SMTP:ug1@contoso.com"} | fl Name, RecipientType, EmailAddresses
- If you don't know the exact SMTP address, you can search for a partial match:
Get-EXORecipient -ResultSize Unlimited | Where-Object {$_.EmailAddresses -match "ug1@contoso.com"} | fl Name, RecipientType, EmailAddresses
- Once you identify the object causing the conflict, you can remove or change the conflicting proxy address. For example, if the object is a mail-enabled public folder, you can disable it using the following command:
Get-MailPublicFolder -ResultSize Unlimited | Where-Object {$_.EmailAddresses -match "SMTP:ug1@contoso.com"} | Disable-MailPublicFolder
Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.
Best,
Jake Zhang