FAQ

Use these patterns and logic conditions to block messages that match specific keywords, links, or combinations.

Regex Pattern:

(http|https|www)\S+

Example Message:

Visit https://example.com for more info.

❌ Result: Blocked


⚠️ Q: How do I block messages with words like β€œscam” or β€œfraud”?

Regex Pattern:

(scam|fraud)

Example Message:

This is a fraud alert.

❌ Result: Blocked


🧠 Q: How do I block messages that contain both β€œbuy” and β€œcheap”?

Regex Pattern:

Example Message:

Buy this product for a cheap price!

❌ Result: Blocked


βœ… Q: How to block messages that contain both β€œbuy” AND β€œcheap”?

Setup:

  • Condition 1: buy

  • Add AND β†’ cheap

Example Message:

Buy this product for a cheap price!

❌ Result: Blocked


πŸ” Q: How to block messages that contain either β€œspam”OR β€œad”?

Setup:

  • Condition 1: spam

  • Add OR β†’ ad

Example Message:

This is a spam message with an ad.

❌ Result: Blocked


🧩 Q: How to combine multiple AND/OR conditions?

Setup:

  • Condition 1: buy

  • AND β†’ cheap

  • OR β†’ scam

Example Messages:

Message

Result

Buy this product for a cheap price!

❌ Blocked

This is a scam message

❌ Blocked

Buy now

βœ… Not blocked

Last updated

Was this helpful?