Hello, I seem to have this base system functional, along with plexwwwatch front end.
I ultimately want this to work with growl for windows to shoot it to my phone, or boxcar2 directly to my phone.
I configured both of these things in the config.pl (gntp +boxcar2) file, but neither is receiving anything.
my growl for windows is setup and receiving alerts from my pfsense2, sabnzbd, couchpotato, and sonarr properly, and sending them on to boxcar2 for me...
am I missing something?
gntp relevent config.pl section:
It looks like you've got all your notification actions set to "0", as in "off". Change the actions you want notifications for to "1" if you want to turn them on. Also, you only need to configure the first section; the second is if you want to push different stats to a separate growl account. This is my setup:
## GNTP (GROWL) -- multiple destinations are supported
'GNTP' => {
'1' => {
'enabled' => 1, ## set to 1 to enable local growl
'push_recentlyadded' => 1,
'push_watched' => 1,
'push_watching' => 1,
'push_paused' => 0,
'push_resumed' => 0,
'application' => $appname,
'title' => '{user}',
'server' => '192.168.1.4', # destination ip/host
'port' => '23053', # default 23053
'password' => '', # '' for no pass
'icon_url' => 'https://rarforge.com/images/plexWatch.57x57.png',
'sticky' => 1,
'watched' => '{user} watched {title} [{streamtype}] [{length}] on {platform} for {duration} [{percent_complete}%] {ip_address}',
'watching' => '{user} {state} {title} [{streamtype}] [{length}] on {platform} for {duration} [{percent_complete}%] {ip_address}'
},
'2' => {
'enabled' => 0, ## set to 1 to enable local growl
'push_recentlyadded' => 0,
'push_watched' => 0,
'push_watching' => 0,
'push_paused' => 0,
'push_resumed' => 0,
'application' => '{user}',
'server' => '192.168.10.100', # destination ip/host
'port' => '23053', # default 23053
'password' => '', # '' for no pass
'icon_url' => 'https://rarforge.com/images/plexWatch.57x57.png',
'sticky' => 0,
},
},