免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1015 | 回复: 0
打印 上一主题 下一主题

在Linux下,使用Perl发信邮件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-11-29 16:30 |只看该作者 |倒序浏览

最近一直很郁闷,要维护10所大学服务器,假如服务器的磁盘满了,或者其它原因,能不能早点发现呢?我就想到了,弄个脚本,监控服务器,有异常时,发封邮件给我,就OK了。我原来一直想使用系统自带的sendmail来实现我的想法,由于对sendmail不熟,一直弄不好。只到今天,嘿嘿,在看一个网站时,看到使用php发邮件的方法。记得装软件时,没有装php,但是有装perl啊,就这么办,使用perl来发邮件。过程如下:
1、登录系统
2、查询是否有安装perl
  [root@CentOS ~]# rpm -qa | grep perl
    perl-5.8.5-36.RHEL4
3、OK,来检查一下网络
  [root@CentOS ~]# ping act0r.bokee.com
  PING act0r.bokee.com (58.49.57.34) 56(84) bytes of data.
  64 bytes from 58.49.57.34: icmp_seq=0 ttl=54 time=128 ms
4、安装发邮件所需要的模块
  [root@CentOS ~]# perl -MCPAN -e shell
    基本上是一路回车,只有到最后面时,会让你选择你所在的区域,及国家。
  cpan>install Authen::SASL
  cpan>q
5、vi /etc/init.d/sendmail.sh
#!/usr/bin/perl
use Net::SMTP;
my $mailhost = "smtp.163.com"; # SMTP服务器
my $mailfrom = 'notfour@163.com'; # 你的EMAIL地址
my @mailto = ('fayland@gmail.com', 'not_four@hotmail.com'); # 收信人地址
my $subject = "此为标题";
my $text = "此为正文\n第二行位于此。";
$smtp = Net::SMTP->new($mailhost, Hello => 'localhost', Timeout => 120, Debug => 1); #为0时,不输出调试信息
# anth login, type your user name and password here
$smtp->auth('user','pass'); ###用户名和密码
foreach my $mailto (@mailto) {
# Send the From and Recipient for the mail servers that require it
$smtp->mail($mailfrom);
$smtp->to($mailto);
# Start the mail
$smtp->data();
# Send the header
$smtp->datasend("To: $mailto\n");
$smtp->datasend("From: $mailfrom\n");
$smtp->datasend("Subject: $subject\n");
$smtp->datasend("\n");
# Send the message
$smtp->datasend("$text\n\n");
# Send the termination string
$smtp->dataend();
}
$smtp->quit;
6、给sendmail执行权限
  [root@CentOS ~]# chmod 755 /etc/init.d/sendmail.sh
7、测试
  [root@CentOS ~]# /etc/init.d/sendmail.sh
8、嘿嘿,看看信发送了没有。


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/55457/showart_432879.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP