user never sent an email to colleague - phishing or Spam ?

Alex Rabbi 66 Reputation points
2024-12-17T13:26:14.03+00:00

Hi All,

User A received an email from user B, but user B never sent it, i even verified it in outlook. i do not see mail in sent folder of user B.

Both users are in same corporate domian

In Exchange online Admin centre when i do a message trace, i see a email from user B to user A there.

How can this happen? I do not see any trace in email filter( Barracuda) either.

What steps should i take to make sure it is not a hack, spam or phish. I have reset the password anyway.

Thanks in Advance

Alex

Microsoft Exchange Online
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,655 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Xintao Qiao-MSFT 5,085 Reputation points Microsoft Vendor
    2024-12-18T03:26:31.52+00:00

    Hi, @Alex Rabbi

    Based on your description, the issue may be due to "Send As" permission.

    As you said, if the other user has the send as permission of user B, then the other person can send an email to user A with the email address of user B and will not see the message in the sent folder of user B, and at the same time, user B will send an email to user A as expected in the message trace. The above is expected behaviour. More information can be found Manage permissions for recipients in Exchange Online | Microsoft Learn

    User's image

    Then you can verify it in two ways:

    1.In the Exchange admin centre, select the email address of user B to check whether there are other users with send as permissions. Click "Edit" to delete unwanted users.

    User's image

    2.Use PowerShell to query. You can use the following command to perform the query:

    Get-RecipientPermission -Identity userB@domain.com | Where-Object { $_.AccessRights -contains "SendAs" }
    

    User's image

    You can use the following command to remove unwanted users:

    Remove-RecipientPermission -Identity user1@example.com -Trustee user2@example.com -AccessRights SendAs
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".


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.