send as permission

fsdg 1,026 Reputation points
2021-02-05T09:55:01.183+00:00

Hello,

one mailbox.Exchange 2016.
6 users have send as permissions for this mailbox.
One of this 6 users sent mail as this mailbox e-mail address.
How can I find who has sent mail?
Auditing is not enabled
https://practical365.com/exchange-server/using-exchange-server-mailbox-audit-logs-find-sender-email-shared-mailbox/

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,698 questions
0 comments No comments
{count} votes

Accepted answer
  1. Yuki Sun-MSFT 41,166 Reputation points Microsoft Vendor
    2021-02-08T08:11:17.217+00:00

    Hi @fsdg ,

    Based on my test, we can run the get-messagetrackinglog cmdlet and checking the Sender field.

    Get-TransportService|Get-MessageTrackingLog -MessageSubject <subject> -Start <starttime> -End <Endtime> |select timestamp,EventID,sender,recipients |sort-object Timestamp  
    

    For example, user1 and some other users have Send As permission for user2. Now user1 sends a test message "123 " using his Send As permission for User2. Running the cmdlet below, we can see that the user1 displays in the Sender field after the first Receive and Submit event:

    Get-TransportService| Get-MessageTrackingLog -MessageSubject 123  -Start "02/08/2021" |select timestamp,EventID,sender,recipients |sort-object Timestamp  
    

    65266-1.png


    If an Answer is helpful, please click "Accept Answer" and upvote it.
    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 comments No comments

0 additional answers

Sort by: Most helpful

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.