标签:使用 文件 sp on log bs 服务器 as 安装
bin/mail(bin/mailx)默认使用本地sendmail发送邮件,本地的机器必须安装并启动Sendmail服务,配置比较麻烦,不稳定。
下文通过修改配置文件可以使用外部SMTP服务器来发送邮件。
以网易邮箱为例。
1、vim /etc/mail.rc #( /etc/nail.rc),追加如下文字
set from=from@163.com
set smtp=smtp.163.com
set smtp-auth-user=from@163.com
set smtp-auth-password=aaaa
set smtp-auth=login
说明:
from是发送的邮件地址
smtp是发生的外部smtp服务器的地址
smtp-auth-user是外部smtp服务器认证的用户名
smtp-auth-password是外部smtp服务器认证的用户密码
smtp-auth是邮件认证的方式
配置后执行如下命令:
cat context.txt| mail -s "tes the smtp mail" toooo@163.com
userfasdf@163com是收件人地址,content.txt里面是邮件正文.
标签:使用 文件 sp on log bs 服务器 as 安装
原文地址:http://my.oschina.net/u/225373/blog/330406