Skip to main content

General Settings

These settings control the general behavior of the Queue Cleaner functionality.

QUEUECLEANER__ENABLED

Enables or disables the queue cleaning functionality. When enabled, processes all items in the *arr queue.
Required: No
Type: boolean
Default value: false
Accepted values:
  • true
  • false

TRIGGERS__QUEUECLEANER

Cron schedule for the Queue Cleaner job.
Required: Only required if QUEUECLEANER__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.
  • Is ignored if QUEUECLEANER__RUNSEQUENTIALLY=true and CONTENTBLOCKER__ENABLED=true.

QUEUECLEANER__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.

QUEUECLEANER__RUNSEQUENTIALLY

Controls whether Queue Cleaner runs after Content Blocker instead of in parallel. When true, streamlines the cleaning process by running immediately after Content Blocker.
Required: No
Type: boolean
Default value: true
Accepted values:
  • true
  • false