DocFraggle
Yeah, nevermind the “Empfänger” line. It’s wrong. But the RE should match on From anyway.
Regarding the “[
” and “]
” — maybe not. In the meantime, I modified it to:
From
, match RE, @quaeldich\.de|feedback@bergportal\.ch|noreply@garmin\.com|@velocity\.ch|hikingbuddiesteam@gmail\.com|craig@wandrer\.earth|q@squadrats\.com|noreply@spontacts\.com|no-reply@strava\.com|@update\.strava\.com|@freezetag\.com|@munzee\.com|@geocaching\.com|@komoot\.de
That is, I dropped the brackets. No change — still no match.
Regarding the “why RE and not multiple lines”: Easier to maintain as far as I’m concerned. Way to cumbersome to keep on adding line after line. An RE is easier to read — especially if we’re considering easy RegExps like that one.
“Disclosure”: I’m trying to migrate away from Gmail and there I had a rule like that:

Übereinstimmung mit: (to:(hiking-buddies@domain1.rodeo OR carving.fleshed313@domain2.vip OR com+wandrer.earth@domain3.me OR squadrats.com@domain1.rodeo) OR from:(@quaeldich.de OR feedback@bergportal.ch OR noreply@garmin.com OR @velocity.ch OR hikingbuddiesteam@gmail.com OR craig@wandrer.earth OR q@squadrats.com OR noreply@spontacts.com OR no-reply@strava.com OR @update.strava.com OR @freezetag.com OR @munzee.com OR @geocaching.com OR @komoot.de))
Interestingly, in the Filter.json in a Takeout, they’ve got:
}, {
"query": "{to:hiking-buddies@domain1.rodeo to:carving.fleshed313@domain2.vip to:com+wandrer.earth@domain3.me to:squadrats.com@domain1.rodeo from:quaeldich.de from:feedback@bergportal.ch from:noreply@garmin.com from:velocity.ch from:hikingbuddiesteam@gmail.com from:craig@wandrer.earth from:q@squadrats.com from:noreply@spontacts.com from:no-reply@strava.com from:update.strava.com from:freezetag.com from:munzee.com from:geocaching.com from:komoot.de}",
"labelsToAdd": ["Kategorie \"Soziale Medien\"", "Social Networks/🏔️🚴 Draussen"]
}, {
Kinda also like multiple lines.
Are there maybe logs that would allow me to debug this?