Blacklist
Important Information
Using Simple Syntax will match words partially. This means that when you blacklist the word "es", it will block every message containing best, rest, test because each of them have the word "es" within.
If you want to match words fully, please use the regex example
Make sure to use the Python Flavor with regex101.com otherwise your regex will not work on Auto Forward Telegram
➡️ This will not send all messages containing the word copyright
/blacklist add black1 copyright
➡️ This will not send all messages containing the word copyright or DMCA
/blacklist add black1 copyright,DMCA
➡️ Remove word list with label black1
/blacklist remove black1
➡️ Show all list Blacklist
/blacklist showall
🛑 Note: Blacklist takes precedence over whitelist if both are defined.
Use the syntax as shown below when you want to achive result that is not possible with the simple syntax. This syntax uses regex to search for words and its more powerful than Simple Syntax.
We do not support usage of regex, you are on your own if you decide to use regex. Only use it if you know what you are doing.
➡️ Block messages only if it has the any @mention word on it.
/blacklist add white1_regex @\S+
➡️ Block messages only if it has any "telegram links"
/blacklist add white2_regex (telegram.me|t.me)/\w+
➡️ Block messages only if it has the word black or white
/blacklist add white3_regex (black|white)
➡️ Block messages only if it has the word es fully ( refer to Important Information )
/blacklist add white3_regex \bes\b
Last updated
Was this helpful?