···5656<br />
5757<br />
58585959-For every service, you can take advantage of a regex to blacklist posts:
6060-- `^\[live\]` will not post anything starting with `[live]`.
6161-- `insult|badword` will not post anything that includes either `insult` or `badword`.
6262-- `^(?!support$).+$` will only post that are `support`. (useful for Reddit flairs)
6363-<br />
5959+For **every service**, you can take advantage of a regex to whitelist and blacklist posts.
6460<br />
65616662You can use [regexr.com](https://regexr.com/) or [ChatGPT](https://chatgpt.com/) to create (JavaScript-like) regexs.
6767-Keep in mind that the regex is inverted, meaning, everything that matches the regex will be ignored.
6868-You can use a negative lookahead to negate the condition, in order to create a whitelist filter.
6969-The flags used for string matching are `gi`, only the YouTube and Twitch titles, Bluesky post bodies, and Reddit flairs are checked.
6363+<br />
6464+<br />
6565+6666+The following values are matched against:
6767+- YouTube titles
6868+- Twitch titles and game name*
6969+- Bluesky post bodies
7070+- Reddit post title and flair*
7171+7272+*In case of a Whitelist, it's enough for one of the values to match. In case of a Blacklist, no value must match the regex.
7373+<br />
7474+<br />
7575+7676+**Whitelist examples**
7777+- `^\[live\]` will only post anything starting with `[live]`.
7878+- `Grand Theft Auto` will only post anything that includes `Grand Theft Auto`. (useful for Twitch games)
7979+<br />
8080+<br />
8181+8282+**Blacklist examples**
8383+- `^\[live\]` will not post anything starting with `[live]`.
8484+- `insult|badword` will not post anything that includes either `insult` or `badword`.
8585+- `^(?!support$).+$` will only post that are `support`. (useful for Reddit flairs)
70867187### 🕵️♀️ Styles (whitelabel / webhook)
7288Notification styles allow you to customize (or whitelabel) the username and avatar of the author (i.e. the sender of the message) separately for each notification. Wamellow will automatically manage the webhooks for you.