I just stumbled onto something called Notifo, and thought I'd try and make it send me a notification on my Iphone once a download finishes in Sabnzbd. To my surprise it was very easy to get working.
Here's what I dd:
-Create an account at the Notifo website (http://notifo.com/)
-Install this: https://github.com/mrtazz/notifo.py (Needs python installed)
-Create a post processing script for SABnzbd with the following content
Code: Select all
#!/bin/bash
/share/MD0_DATA/.qpkg/Python/bin/notifo_cli.py -u [username goes here] -s [API key here] -n SabNZBD SABnzbd finished download of $3
echo "0"
exit
-Put your script in the SABnzbd scripts folder and select it as post processing script.
-install Notifo for Iphone from the appstore
-Start notifo on your Iphone and log in to the service.
-Done, that is all!
Hope this is usefull to someone.