Skip to main content

Domains

Often, the filter is used to block posts with links 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"

Note that the \. in URLs is optional.

Without the backslash, the regex will consider the . to mean "match any character".

For instance, goats.com would match goatsAcom or goats8com, whereas goats\.com will only match goats.com.