know who approve a message to distribution list

APTOS 221 Reputation points
2022-02-18T08:34:40.353+00:00

Hello ,

i need to know how find out who approved a message going to a specific distribution list
i tried this command for all moderators for this distribution list but without result
Get-MessageTrace -SenderAddress x@b.com | Where{$_.Subject -like "Approve:*"}

any idea ?

we have an exchange online

thanks

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,531 questions
0 comments No comments
{count} votes

Accepted answer
  1. Kael Yao-MSFT 37,646 Reputation points Microsoft Vendor
    2022-02-21T02:01:55.453+00:00

    Hi @APTOS

    Once a moderator approved a quarantined email, a message with the subject in a form like "Approve: <quarantined message subject>" would be sent to the system.

    Thus you may either search via message trace for the message subject in Exchange Admin Center, or use the following command to search via EXO powershell:

    Get-MessageTrace | Where{$_.Subject -like "Approve*"} | fl  
    

    The Sender Address part would show the moderator who sent the approval email.


    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.


2 additional answers

Sort by: Most helpful
  1. APTOS 221 Reputation points
    2022-02-28T08:45:31.077+00:00

    Hello ,

    i didn't get any output for this command
    Get-MessageTrace | Where{$_.Subject -like "Approve*"} | fl

    Could help ?


  2. APTOS 221 Reputation points
    2022-03-07T10:43:51.703+00:00

    Hi ,

    i didnt' get any output !!

    Regards,

    0 comments No comments

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.