AI智能
改变未来

在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.comset smtp=smtp.qq.comset smtp-auth-user=1653213432@qq.comset smtp-auth-password=rikznelgouxkdfbgset smtp-auth=login

然后重启postfix服务即可:

systemctl restart postfix
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 在centos最小安装系统上实现邮件的发送