Emails going to proxy addresses

Michael Jaszczur 0 Reputation points
2023-12-31T21:16:11.67+00:00

When one of our team members on the Outlook application would email a person.

They have a guest account on the tenant with two email addresses or proxy address

SMTP: ******@sms.domain.com

smtp: ******@freedomains.com

The email does not reach the smtp address, it gets changed to the SMTP address.

Is it possible to turn off the feature? It suddenly started to do this on our tenant when everything was working perfectly before.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,181 questions
Outlook | Windows | Classic Outlook for Windows | For business
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Kael Yao 37,746 Reputation points Moderator
    2024-01-01T01:56:40.3133333+00:00

    Hi @Michael Jaszczur,

    As this is the expected behavior that emails sent to proxy addresses will be delivered to the primary email address, 01

    if the purpose is to have emails be delivered to both email addresses of this guest user, to me we may need to remove the additional email address from this guest user.

    You can remove the additional ******@freedomains.com email address from this guest via Exchange Online Powershell.

    The general steps are:

    1.connect to Exchange Online Powershell with an account which has Exchange admin permission

    2.run the following cmdlet to check the current email addresses of this guest

    Get-mailuser guest | fl Displayname,PrimarySmtpAddress,EmailAddresses
    

    3.run the following cmdlet to remove the proxy address from this guest

    Set-Mailuser guest -EmailAddresses @{Remove="smtp:******@freedomains.com"}
    

    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.


Your answer

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