在centos最小安装系统上实现邮件的发送

与世无争的帅哥 提交于 2020-10-05 04:56:08

首先下载mailx,postfix软件包:

yum -y install mailx postfix `

下载完成后,启动postfix服务:

systemctl start --now postfix #centos7/8上使用此命令启动postfix服务

service postfix start #在centos6上使用此命令启动postfix服务

验证mail是否可以发送邮件:
在centos最小安装系统上实现邮件的发送

若想实现给网络邮箱发邮件:
则需要修改/etc/mail.rc文件,在行尾添加配置如下:

set from=1653213432@qq.com
set smtp=smtp.qq.com
set smtp-auth-user=1653213432@qq.com
set smtp-auth-password=rikznelgouxkdfbg
set smtp-auth=login

然后重启postfix服务即可:

systemctl restart postfix

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!