Chinaunix首页 | 论坛 | 博客
  • 博客访问: 622670
  • 博文数量: 142
  • 博客积分: 116
  • 博客等级: 入伍新兵
  • 技术积分: 1445
  • 用 户 组: 普通用户
  • 注册时间: 2010-09-28 08:37
文章分类

全部博文(142)

文章存档

2017年(7)

2016年(57)

2015年(48)

2014年(30)

我的朋友

分类: 系统运维

2014-09-22 15:27:02

发邮件只需要MUA即可。
centOS,redhat系列有mailx,/bin/mail,Debian系列有sendemail,bsd-mailx,msmtp

  • centOS  mailx

~/.mailrc
  1. set smtp=smtp.sina.com
  2. set smtp-auth-user=user@sina.com
  3. set smtp-auth-password=password
  4. set smtp-auth=login
  5. set from=user@sina.com
发邮件
  1. mail -s 'subject' a@b.c <
  2. test
  3. EOF


(Debian的bsd-mailx不支持远程smtp服务器。)
  • Debian  msmtp

~/.msmtprc


  1. defaults
  2. logfile ~/.msmtp.log

  3. account account1
  4. host mail.example.com
  5. from user1@example.com
  6. auth plain
  7. user user1@example.com
  8. password 123456

发送命令
  1. msmtp --account=account1 user2@example.com <
  2. Subject: hello
  3. To: user2@example.com
  4. hello
  5. EOF

  • Debian sendEmail

这是一个perl脚本。
man page比较少,但其实功能挺强大,详细的例如-o就要看代码了。
  1. sendemail -v \
  2.    -s mail.example.com \
  3.    -xu user1@example.com \
  4.    -xp 123456 \
  5.    -o message-charset=utf-8 \
  6.    -f user1@example.com \
  7.    -t user2@example.com \
  8.    -u subject <<EOF
  9. hello

  10. 测试
  11. newline
  12. EOF


阅读(1336) | 评论(0) | 转发(0) |
0

上一篇:ntp

下一篇:WOL(网络唤醒)

给主人留下些什么吧!~~