Skip to main content

General Settings

These settings control the general behavior of the Content Blocker functionality.

These environment variables are needed to enable the Content Blocker functionality:

CONTENTBLOCKER__ENABLED

Enables or disables the Content Blocker functionality.
When enabled, processes all items in the *arr queue and marks unwanted files.
Required: No
Type: boolean
Default value: false
Examples:
  • true
  • false

TRIGGERS__CONTENTBLOCKER

Cron schedule for the Content Blocker job.
Required: Only required if CONTENTBLOCKER__ENABLED is true
Type: text
Default value: 0 0/5 * * * ? (every 5 minutes)
Reference: Quartz.NET
Examples:
  • 0 0/5 * * * ?
  • 0 0 * * * ?
  • 0 0 0/1 * * ?
Note
  • Maximum interval is 6 hours.

CONTENTBLOCKER__IGNORED_DOWNLOADS_PATH

Local path to the file containing downloads to be ignored from being processed by Cleanuperr.
If the contents of the file are changed, they will be reloaded on the next job run.
This file is not automatically created, so you need to create it manually.
Accepted values inside the file (each value needs to be on a new line):
  • torrent hash
  • qBitTorrent tag or category
  • Deluge label
  • Transmission category (last directory from the save location)
  • torrent tracker domain
Example of file contents:
fa800a7d7c443a2c3561d1f8f393c089036dade1
tv-sonarr
qbit-tag
mytracker.com
...
Required: No
Type: text
Default value: Empty
Examples:
  • /ignored.txt
  • /config/ignored.txt
Warning
  • Some people have experienced problems using Docker where the mounted file would not update inside the container if it was modified on the host. This is a Docker configuration problem and can not be solved by cleanuperr.

CONTENTBLOCKER__IGNORE_PRIVATE

Controls whether to ignore downloads from private trackers from being processed by Cleanuperr.
Required: No
Type: boolean
Default value: false
Accepted values:
  • true
  • false

CONTENTBLOCKER__DELETE_PRIVATE

Controls whether to delete private downloads that have all files blocked from the download client.
Has no effect if CONTENTBLOCKER__IGNORE_PRIVATE is true.
Required: No
Type: boolean
Default value: false
Accepted values:
  • true
  • false
Important
  • Setting CONTENTBLOCKER__DELETE_PRIVATE=true means you don't care about seeding, ratio, H&R and potentially losing your private tracker account.