centos6.3下配置sendmail发送邮件

在阿里云买的服务器,选择的是centos6.3的系统,默认情况下并没有配置好sendmail,如果要通过sendmail发送邮件,就需要自己配置一下:

1,安装sendmail

#yum install -y sendmail

2,安装sendmail-cf

#yum install -y sendmail-cf

3,生成配置文件

#m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf

搞定,不需要更改任何配置文件。

测试一下:

#sendmail -t < mail.txt

mail.txt的内容如下:

From: yourname<[email protected]>
To: myname<[email protected]>
Subject: test sendmail
test sendmail
.

参考:

http://www.centoscn.com/CentosServer/lighttpd/2013/0726/650.html

你可能感兴趣的:(sendmail)