Hi all,
I successfully installed the 1.8.1 Zabbix version.
I use a little script to send my mail notification cause my SMTP server needs auth.
I configured a lot of action to test this script.
Now I just let one :
Even if I receive good notification like :
The problem is I receive a lot of notification like :
I tried to restart Zabbix-server, but nothing.
PS : Sorry for my english.
I successfully installed the 1.8.1 Zabbix version.
I use a little script to send my mail notification cause my SMTP server needs auth.
#!/bin/sh
zabbixemailto=$1
zabbixsubject=$2
zabbixbody="this is an automatic notification from zabbix "$3
export [email protected]
export zabbixemailto
export zabbixsubject
export zabbixbody
export smtpserver=SERVER ADDRESS
export smtplogin= USER
export smtppass= PASSWORD
/usr/bin/sendEmail -f $smtpemailfrom -t $zabbixemailto -u $zabbixsubject -m $zabbixbody -s $smtpserver -xu $smtplogin -xp $smtppass
zabbixemailto=$1
zabbixsubject=$2
zabbixbody="this is an automatic notification from zabbix "$3
export [email protected]
export zabbixemailto
export zabbixsubject
export zabbixbody
export smtpserver=SERVER ADDRESS
export smtplogin= USER
export smtppass= PASSWORD
/usr/bin/sendEmail -f $smtpemailfrom -t $zabbixemailto -u $zabbixsubject -m $zabbixbody -s $smtpserver -xu $smtplogin -xp $smtppass
Now I just let one :
Event source : Triggers
Default subject : {TRIGGER.NAME}: {STATUS}
Default message : {TRIGGER.NAME}: {STATUS}
Recovery message: yes
Recovery subject : {TRIGGER.NAME}: {STATUS}
Recovery message : {TRIGGER.NAME}: {STATUS}
Status : Enabled
Default subject : {TRIGGER.NAME}: {STATUS}
Default message : {TRIGGER.NAME}: {STATUS}
Recovery message: yes
Recovery subject : {TRIGGER.NAME}: {STATUS}
Recovery message : {TRIGGER.NAME}: {STATUS}
Status : Enabled
Tittle :
Zabbix Server has just been restarted: PROBLEM
Body :
this is an automatic notification from zabbix
Zabbix Server has just been restarted: PROBLEM
Zabbix Server has just been restarted: PROBLEM
Body :
this is an automatic notification from zabbix
Zabbix Server has just been restarted: PROBLEM
Tittle :
{TRIGGER.NAME}: {STATUS}
Body :
this is an automatic notification from zabbix
{TRIGGER.NAME}: {STATUS}
{TRIGGER.NAME}: {STATUS}
Body :
this is an automatic notification from zabbix
{TRIGGER.NAME}: {STATUS}
PS : Sorry for my english.
Comment