zabbix msmtp(shell)

來源:互聯網
上載者:User

標籤:zabbix   shell   msmtp   

#! /bin/bash################################################################################# Zabbix extensions (C) 2011-* Joseph Bueno <[email protected]># Published under GNU General Public License version 2 or later.# See LICENSE.txt#-------------------------------------------------------------------------------# Usage:#   zext_msmtp.sh <recipient> <subject> <message>## Description:#  Uses msmtp to send an email. #  This script inserts headers:#    From:    see FROM variable#    To:      using <recipient>#    Date:    dynamically computed#    Subject: using <subject>##  <message> may start with headers, msmtp will seperate them from message body#  and put them in message headers section.## It uses an msmtp account as defined in MSMTP_ACCOUNT# Account is defined in /etc/msmtprc#  # simple account configuration# ----------------------------# account zabbix# host smtp.example.org# from [email protected]## advanced account setup (authentication + TLS on Gmail)# ------------------------------------------------------# account zabbix# tls on# tls_starttls on# tls_trust_file /etc/ssl/certs/ca-certificates.crt# host smtp.gmail.com# port 587# auth on# from [email protected]# user [email protected]# password ***********# # (from, user and password should be replaced with real values).## Dependencies#  It needs msmtp utility#  On Debian and Ubuntu:#    apt-get install msmtp#################################################################################DEBUG=0if [ $DEBUG -gt 0 ]thenexec 2>>/tmp/zext_msmtp.logset -xfi# Default parametersFROM=‘[email protected]‘MSMTP_ACCOUNT=‘zabbix‘# Parameters (as passed by Zabbix):#  $1 : Recipient #  $2 : Subject#  $3 : Messagerecipient=$1subject=$2message=$3date=`date --rfc-2822`# Replace linefeeds (LF) with CRLF and send messagesed ‘s/$/\r/‘ <<EOF | msmtp --account $MSMTP_ACCOUNT $recipientFrom: <$FROM>To: <$recipient>Subject: $subjectDate: $date$messageEOF


本文出自 “muzinan的技術部落格” 部落格,謝絕轉載!

zabbix msmtp(shell)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.