Postfix 配置邮件中继
A 邮件发送服务器
B 邮件中继服务器
A. 配置发件服务器
# 开启转发规则 [[email protected] ~]# vi /etc/postfix/main.cf transport_maps = hash:/etc/postfix/transport # 配置转发域名 [[email protected] ~]# vi /etc/postfix/transport 126.com smtp:119.81.103.126:25 # 生成数据库 [[email protected] ~]# postmap /etc/postfix/transport # 重启服务 [[email protected] ~]# /etc/init.d/postfix restart
B. 配置中继服务器
inet_interfaces = 11.x.10.16 mydestination = $myhostname, localhost.$mydomain, localhost relay_domains = $mydestination mynetworks = 168.100.189.0/28, 127.0.0.0/8, 14.x.9.0/24
测试:
1.从发件服务器发送邮件
2.查看发件服务器日志
3.查看中转服务器日志
4.查收邮件
时间: 2024-10-07 20:47:18