标签:arch rom move contos 内容 大量 power enc 通过
通常,我们可能因为某些用户发送了一些非常规邮件,邮件出口地址被一些权威网站列入黑名单,导致大量业务邮件无法正常发送。
这时候,我们可以通过powershell写一些关于IP地址检测的脚本,并列入计划任务,最大程度上降低邮件出口地址被列入黑名单产生的业务影响,脚本内容如下:
#获取页面信息
$web=(Invoke-WebRequest "https://www.talosintelligence.com/reputation_center/lookup?search=xxx.xxx.xxx.xxx").content
#自定义邮件属性&内容
$msg1="xxx.xxx.xxx.xxx blacklist, Please check!"
$msg2="Mailaddress is not included in the blacklist!"
$smtp="smtp server"br/>$from="xxx@contoso.com"
$to="xxx@contoso.com"br/>$cc="xxx@contoso.com"
$body="Smtp address in the blacklist,Please access http://www.spamhaus.org Remove!"
$body1="Smtp address is OK!"
#判断IP地址是否被Black
if ($web -match ‘<span class="blacklisted">Listed</span>‘ )
{ Send-MailMessage -Subject $msg1 -SmtpServer $smtp -From $from -to $to -cc $cc -Body $body
}
else
{ Send-MailMessage -Subject $msg2 -SmtpServer $smtp -From $from -to $to -cc $cc -Body "$body1"
}
标签:arch rom move contos 内容 大量 power enc 通过
原文地址:http://blog.51cto.com/hrzhao/2171324