Created
September 20, 2012 04:58
-
-
Save superdaigo/3754055 to your computer and use it in GitHub Desktop.
Zabbix SMTP Alert script for gmail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
Zabbix SMTP Alert script for gmail. | |
""" | |
import sys | |
import smtplib | |
from email.MIMEText import MIMEText | |
from email.Header import Header | |
from email.Utils import formatdate | |
# Mail Account | |
MAIL_ACCOUNT = '[email protected]' | |
MAIL_PASSWORD = 'your mail password' | |
# Sender Name | |
SENDER_NAME = u'Zabbix Alert' | |
# Mail Server | |
SMTP_SERVER = 'smtp.gmail.com' | |
SMTP_PORT = 587 | |
# TLS | |
SMTP_TLS = True | |
def send_mail(recipient, subject, body, encoding='utf-8'): | |
session = None | |
msg = MIMEText(body, 'plain', encoding) | |
msg['Subject'] = Header(subject, encoding) | |
msg['From'] = Header(SENDER_NAME, encoding) | |
msg['To'] = recipient | |
msg['Date'] = formatdate() | |
try: | |
session = smtplib.SMTP(SMTP_SERVER, SMTP_PORT) | |
if SMTP_TLS: | |
session.ehlo() | |
session.starttls() | |
session.ehlo() | |
session.login(MAIL_ACCOUNT, MAIL_PASSWORD) | |
session.sendmail(MAIL_ACCOUNT, recipient, msg.as_string()) | |
except Exception as e: | |
raise e | |
finally: | |
# close session | |
if session: | |
session.quit() | |
if __name__ == '__main__': | |
""" | |
recipient = sys.argv[1] | |
subject = sys.argv[2] | |
body = sys.argv[3] | |
""" | |
if len(sys.argv) == 4: | |
send_mail( | |
recipient=sys.argv[1], | |
subject=sys.argv[2], | |
body=sys.argv[3]) | |
else: | |
print u"""requires 3 parameters (recipient, subject, body) | |
\t$ zabbix-gmail.sh recipient subject body | |
""" |
Great job. This script works fine with Zabbix 4.0.5 running on Centos 7.6.1810
Any solution form this problem:
https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/415786-not-being-aboe-to-use-smtp-gmail-com-within-zabbix ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK folks, my Zabbix server sharted, so I had to rebuild it. A little different this time with ODROID XU4, mainline kernel, Ubuntu 18.04, Zabbix Server 3.4.11 and Python 3 (Python 2 not installed by default). Hopefully my loss is your gain :) Since the original script doesn't work on Python 3 you'll need to edit that. I was too lazy to do a PR :)
The rest of the stuff in my previous post is still relevant.
Test with:
sudo -H -u zabbix python3 /usr/local/share/zabbix/alertscripts/zabbix-alert-smtp.py [email protected] test testbody