Updated FAQ

This commit is contained in:
M66B 2023-01-26 21:45:19 +01:00
parent 6d7d402681
commit 1937dfcd72
1 changed files with 6 additions and 0 deletions

6
FAQ.md
View File

@ -1808,6 +1808,12 @@ If you want to match a catch-all email address, this regex is usually fine, prov
.*
```
If you want to *not* match specific addresses, you can use something like this:
```
^(?!marcel$|johanna$).*
```
If you like to match the special purpose email addresses abc@example.com and xyx@example.com
and like to have a fallback email address main@example.com as well, you could do something like this: