Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings.
Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
I'm running xbmcbuntu, with Sabnzbd. I have openVPN configured through network-manager-openvpn.
Because i'm booting directly into XBMC I have no way to tell if my VPN is connected. To check I have to SSH in and run "curl ifconfig.me" and then go to whatsmyip.com and check the location. It's a pain, and defeats the purpose if my VPN drops.
I'm looking for a way to tell sabnzbd, via script, to pause if the Network Manager VPN is not connected.
The hard part is writing the script to determine the nextwork situation.
After that you can just use the "curl" tool to activate SABnzbd's API.
(See: http://wiki.sabnzbd.org/api )
"curl ifconfig.me" seems enough to me; probably the two first bytes of the IP address are enough to determine whether the VPN is on or off. So IMHO you don't need to find out the exact location.
create a script / one-line to pause SABnzbd
create a script / one-line to unpause SABnzbd
Run it all each 5 minutes from crontab
If this approach is OK with you, I can help. As I like python and I dislike shell script, I would prefer just one python script with the above functionality.