Postfix
1 前言
一个问题,一篇文章,一出故事。
笔者想要指定邮件的默认下一跳地址,以便邮件可以被送到特定的SMTP服务器,于是整理此章节。
2 最佳实践
2.1 修改主配置文件
cp /etc/postfix/main.cf /etc/postfix/main.cf.default vim /etc/postfix/main.cf
修改如下配置,
relayhost = smtp.cmdschool.org
2.2 重载服务使配置生效
systemctl reload postfix.service
2.3 测试邮件发送
echo 'it is only a test' | mail -s "test eamil" will@cmdschool.org
没有评论