I am attempting to do a content search through Exchange on O365 to return mail between user@domain.com and anyone at outsidedomain.com
I thought that this should work in the KQL:
(ParticipantDomains:outsidedomain.com) AND ((Sender:user@domain.com) OR (Recipients:user@domain.com))
However, this seems to include all mail to/from user@domain.com
- No matter who it is sent from/to
- Also if user@domain.com is in a group to whom it was sent.
What do I need to put, to only find direct email conversations between user@domain.com and anyone at outsidedomain.com?
Thanks