From 5ed1eea0555727dd40db9bcb7036dcb813a37e9a Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 9 Aug 2020 15:00:48 +0200 Subject: [PATCH] Updated FAQ --- FAQ.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index bd5c544998..4bc4cf4074 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1843,7 +1843,13 @@ The following rule conditions are available: All the conditions of a rule need to be true for the rule action to be executed. All conditions are optional, but there needs to be at least one condition, to prevent matching all messages. -If you want to match all senders or all recipients, you can just use the @ character as condition because all email address will contain this character. +If you want to match all senders or all recipients, you can just use the @ character as condition because all email addresses will contain this character. + +Note that email addresses are formatted like this: + +`` +"Somebody" +`` You can use multiple rules, possibly with a *stop processing*, for an *or* or a *not* condition. @@ -1854,7 +1860,7 @@ You can test a regex [here](https://regexr.com/). Note that a regular expression supports an *or* operator, so if you want to match multiple senders, you can do this: `` -alice@example.org|bob@example.org|carol@example.org +.*alice@example\.org.*|.*bob@example\.org.*|.*carol@example\.org.* `` Note that [dot all mode](https://developer.android.com/reference/java/util/regex/Pattern#DOTALL) is enabled