Search code examples
emailfiltergmail

Gmail filter undisclosed recipients


I'm trying to filter out emails from a specific user that BCC's everyone for group emails. I'd like to receive any emails that they sent directly to me, but the group emails are as good as junk. How can I filter for undisclosed recipients to keep these group emails in a folder?


Solution

  • According to this thread, you can try using the following filter:

    deliveredto:[email protected] AND -to:[email protected] AND -cc:[email protected]
    

    Even simpler, the following seems to work:

    from:([email protected]) to:(-me)