在centos最小安装系统上实现邮件的发送
首先下载mailx,postfix软件包: yum -y install mailx postfix ` 下载完成后,启动postfix服务: systemctl start --now postfix #centos7/8上使用此命令启动postfix服务 service postfix start #在centos6上使用此命令启动postfix服务 验证mail是否可以发送邮件: 若想实现给网络邮箱发邮件: 则需要修改/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 来源: oschina 链接: https://my.oschina.net/u/4410124/blog/4471448