'Auto managed' off automatically on magnet uris

General support for problems installing or using Deluge
Post Reply
progo

'Auto managed' off automatically on magnet uris

Post by progo »

Hi everyone,
Now that magnet uris have gained popularity I noticed there's no (obvious) way to make new torrents nonmanaged. It's easy with .torrent files with AutoAdd, but magnet uris are different.

Maybe it's time to make a global setting to disable auto managed functionality if preferred? Or is there a plugin for this. I couldn't find one, though.

TIA
Cas
Top Bloke
Top Bloke
Posts: 3681
Joined: Mon Dec 07, 2009 6:04 am
Location: Scotland

Re: 'Auto managed' off automatically on magnet uris

Post by Cas »

Autoadd supports magnet uris in a '.magnet' text file so it is still possible to do.

I do not think that libtorrent has a global option to turn it off so it would be on a per torrent basis as the auto add plugin currently implements.
progo

Re: 'Auto managed' off automatically on magnet uris

Post by progo »

That was news to me, and it seems to work alright. So, thanks :)

I wrote this kind of helper script to make browser handle the uris properly:

Code: Select all

% cat handle_magnets.sh
#!/bin/bash
mf=`tempfile -d /path/to/watchdir/ -s ".magnet"`
echo "$1" > "$mf"
Post Reply