Domains

The filter is commonly used to block posts linking to specific domains.

# Bad Domains
priority: -100
type: any
domain+content+title (regex, includes): ['reddit\.com', 'redd\.it', '']
action: remove
action_reason: "Includes unacceptable domains"

The \. in URLs is optional.

Without the backslash, regex interprets . as "match any character".

For example, goats.com matches goatsAcom or goats8com, while goats\.com matches only goats.com.