码迷,mamicode.com
首页 > 编程语言 > 详细

linux 系统调用python脚本发送自定义系统邮件

时间:2017-07-11 01:00:56      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:mime   disk   str   cee   val   ipa   mit   tmp   use   

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import sys
import smtplib
import email.mime.multipart
import email.mime.text

server = ‘smtp.163.com‘
port = ‘25‘

def sendmail(server,port,user,pwd,msg):
    smtp = smtplib.SMTP()
    smtp.connect(server,port)
    smtp.login(user, pwd)
    smtp.sendmail(msg[‘from‘], msg[‘to‘], msg.as_string())
    smtp.quit()
    print(‘邮件发送成功email has send out !‘)


if __name__ == ‘__main__‘:
    msg = email.mime.multipart.MIMEMultipart()
    msg[‘Subject‘] = ‘你是风儿我是沙,缠缠绵绵回我家‘
    msg[‘From‘] = ‘1856565020@163.com‘
    msg[‘To‘] = ‘1829477883@qq.com‘
    user = ‘1856565020‘
    pwd = ‘xxx123456‘
    content=‘%s\n%s‘ %(‘\n‘.join(sys.argv[1:4]),‘ ‘.join(sys.argv[4:])) #格式处理,专门针对我们的邮件格式

    txt = email.mime.text.MIMEText(content, _charset=‘utf-8‘)
    msg.attach(txt)

    sendmail(server,port,user,pwd,msg)

以上为邮件脚本其中的登陆密码为客户端授权码

把此代码复制到/usr/bin/mail_test 加个执行权限,让以下的脚本来调用

 

 

#!/bin/bash
mem_limit=90 #内存使用超过90%则报警,同上
disk=‘/dev/sda1‘ #需要监控的磁盘名
disk_space_limit=90 #磁盘空间使用超过90%则报警,同上

function monitor_mem(){
    mem_total=`free |awk ‘NR==2{print $2}‘`
    mem_use=`free |awk ‘NR==2{print $3}‘`
    mem_per=`echo "scale=2;$mem_use/$mem_total" |bc -l|cut -d. -f2`
    if [ $mem_per -gt $mem_limit ]
        then
            msg="TIME:$(date +%F_%T)
                 HOSTNAME:$(hostname)
                 IPADDR:$(ifconfig |awk ‘NR==2{print $2}‘)
                 MSG:Memory usage exceeds the limit,current value is ${mem_per}%"
            echo $msg
            /usr/bin/mail_test $msg
    fi
}

function monitor_disk_space(){
    space_use=`df $disk |awk ‘NR==2{print $5}‘|cut -d% -f1`
    if [ $space_use -gt $disk_space_limit ]
        then
            msg="TIME:$(date +%F_%T)
                 HOSTNAME:$(hostname)
                 IPADDR:$(ifconfig |awk ‘NR==2{print $2}‘)
                 MSG:Disk space usage exceeds the limit,current value is ${space_use}%"
            echo $msg
            /usr/bin/mail_test $msg
    fi
}

monitor_mem &>> /tmp/monitor.log
monitor_disk_space &>> /tmp/monitor.log

  

  

 

linux 系统调用python脚本发送自定义系统邮件

标签:mime   disk   str   cee   val   ipa   mit   tmp   use   

原文地址:http://www.cnblogs.com/wanchenxi/p/7148262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!