Posts: 49
Threads: 13
Joined: Apr 2015
Reputation:
0
Deleting dead trackers lead me to adding live trackers. Then I realized I should not add public trackers to my torrents from my private trackers. so my current setup is a tag 'foo' with this constraint: !hasTag( "private1.com" ) && !hasTag( "private2.org" ) && !hasTag( "private3.net" ) && !isComplete()
to which I merge a tracker template, called 'added trackers'.
Unfortunately at least some (looks like maybe all) new private tracker torrents get the public tracker list added.
So I set my 3 private tracker tags to remove the tracker template called "added trackers". The first tracker on the list does NOT get removed.
This is very strange because I have a template called 'bar' with the same constraint as 'foo' which removes the tracker template called 'dead trackers' and as far as I can tell the first on the list does get removed.
Posts: 49
Threads: 13
Joined: Apr 2015
Reputation:
0
The the tracker in question is
udp://9.rarbg.me:2710/announce
I moved it to the bottom of the list with the same result that it does not get removed. It seems the :2710 is the problem as when I go to remove it manually is is always something else of the form :27n0 where n=2..9
Other trackers that end with :80, :1337 and :6969 seem to stay fixed. I'm not sure what is so special about :2710?
Posts: 1,418
Threads: 2
Joined: Jul 2014
Reputation:
67
There shouldn't be anything special about a given port number, they're all treated the same.
Could it just be an ordering issue? There is no deterministic order that auto-tags are applied in, so if the 'remove-trackers' was applied before the 'add-trackers' you'd end up with them being added and not subsequently removed.
Posts: 49
Threads: 13
Joined: Apr 2015
Reputation:
0
There is something about udp://9.rarbg.me:2710/announce that is causing the problem.
-I add a torrent from a private tracker
-the tag 'foo' gets applied to the torrent. The constraint of 'foo' is that there should be no private tracker id tag but it appears that 'foo' gets applied first
-'foo' has the action of merging/adding a list of trackers > 7 trackers get added
-the private tracker id tag gets applied.
-I have added the action of removing the same list of trackers to the private tracker id tags > 6 trackers get removed
I have tried having udp://9.rarbg.me:2710/announce first, last and in the middle of the list. It is added but never removed. When I go to the sources tab the port number is changed to one of 2720/2730/.../2790/2800
Many public torrents already have the rarbg tracker so I have removed it from the list to get rid of the problem.
udp://9.rarbg.me:2710/announce
the '9' and '0' are the only things that look different to the other trackers so I am guessing they might be the source of the aberrant behaviour.
Posts: 1,418
Threads: 2
Joined: Jul 2014
Reputation:
67
Actually, no change is required
Matching is done by prefix, so if you just enter
udp://9.rarbg.me
in your removal template then this will remove any URL that starts with that string.
Posts: 49
Threads: 13
Joined: Apr 2015
Reputation:
0
That actually all made sense to me. Thanks.