相信买了小鸡的朋友,要么建站,要么有一些特殊的需求,比如发送邮件,那么怎么判断一个小鸡支持发送邮件呢?
#环境CENTOS7:
#安装postfix和mailx软件并关闭防火墙
yum install postfix mailx -y
systemctl stop firewalld
#修改postfix的配置文件/etc/postfix/main.cf
vi /etc/postfix/main.cf
recipient_delimiter = +
inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, $mydomain
#重启postfix
systemctl restart postfix
#邮件发送测试,如果在你的邮箱收到了测试邮件,说明你的小鸡,支持发送邮件,可以建立邮件服务器。
echo "This is the body of the email" | mail -s "This is the subject line" your email address
还没有任何评论,你来说两句吧