🅾

Blacklist

You can set a list of words or regex patterns which tells the bot that if the message received from source channel has any of the blacklisted words or regex pattern match the bot should ignore that message and do not process it even if it passes all other conditions.
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

⛳️ Create new blacklist

Commands
Example basic
Example Use Regex

Basic Command

/blacklist [ACTION] [LABEL] [WORD_LIST]

Advanced Command

/blacklist [ACTION] [LABEL]_regex [WORD_LIST]
Check arguments atCommands Arguments
➡️ 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

✅ Apply/Deactivate Blacklist for a Task

Please disable Blacklist All Task before apply for a task
Use Command /setting after select Task want apply next select blacklist

✅ Apply/Disable Blacklist for All Task

When Apply All Blacklist for Task will won't activate for each single task
Use Command /blacklist after select Show All Blacklist
Create new blacklist