Hi guys. I've been searching all over the internet, but no luck so far.
Hopefully somebody here can help me.
We have always used Pushovers in Zabbix 2.4 with this script:
However, this script doesn't work anymore when using in Zabbix 3.2.
We use the exact same settings, and in the actions log I can see Zabbix sent the message, but I never receive them.
If I do it via the CLI the script works fine.
So it must be a change in Zabbix, but I am not sure what exactly.
Thanks in advance!
Hopefully somebody here can help me.
We have always used Pushovers in Zabbix 2.4 with this script:
#!/bin/bash
# Zabbix (PushOver)
PToken=(Our APP token)
PUser=$1
PSubject=$2
PMessage=$3
curl -s \
-F "token=$PToken" \
-F "user=$PUser" \
-F "subject=$PSubject" \
-F "message=$PMessage" \
https://api.pushover.net/1/messages.json >> /var/log/pushover/pushover.log
# Zabbix (PushOver)
PToken=(Our APP token)
PUser=$1
PSubject=$2
PMessage=$3
curl -s \
-F "token=$PToken" \
-F "user=$PUser" \
-F "subject=$PSubject" \
-F "message=$PMessage" \
https://api.pushover.net/1/messages.json >> /var/log/pushover/pushover.log
We use the exact same settings, and in the actions log I can see Zabbix sent the message, but I never receive them.
If I do it via the CLI the script works fine.
So it must be a change in Zabbix, but I am not sure what exactly.
Thanks in advance!
Comment