Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.11 KB

content_size.md

File metadata and controls

26 lines (21 loc) · 1.11 KB
title description published date tags editor dateCreated
content_size
true
2023-07-29 17:16:50 UTC
markdown
2022-09-18 05:03:00 UTC

Content size

Allow specifying minimum and maximum sizes for contents such as torrents and nzbs. By default the plugin operates in "strict" mode where if the size of a download cannot be determined it will be rejected.

Note: content_size doesn't work with magnet links, as it works by analyzing the the .torrent file. You can include the magnets plugin to reject any magnet entries.

Example:

content_size:
  min: 12 MiB
  max: 1 GiB
  strict: no

Size can be given with a unit (B KB, MB, GB, PB.) To use binary units rather than decimal ones, use the appropriate abbeviation (B, KiB, MiB, GiB, TiB.) If size is given without a unit, it is assumed to be in Mebibytes.

This would reject all torrents below 12 MiB and above 1 GiB and over rides the strict behaviour. Same would work also for nzbs. As this plugin only rejects, you need to accept entries with some other filter (ie. accept_all, series etc.)