- 论坛徽章:
- 0
|
小弟最近在学习企业邮件服务器搭建,在使用sendmail做mta是可以成功,但是在改为使用postfox就出现了错误。
POSTFIX的时候遇到了终端可以发送成功也可以接受 ,但是使用雷鸟无法发送, 服务出现错误
有失败的截图。网络正常,本地服务器ip为172.16.0.1。网段为172.16.0.0/16 。。。
我将我所做的修改 让大家给看看 高手指教 !!!!
已经在把postfix设置成为默认的
[root@server postfix]# alternatives --display mta |head -2
mta - status is manual.
link currently points to /usr/sbin/sendmail.postfix
在main.cf中 修改
[root@server postfix]# vi main.cf
inet_interfaces = all
smtpd_client_restrictions = check_client_access hash:/etc/postfix/access
在access修改
[root@server postfix]# tail -1 access
172.16.0.0/16 OK
[root@server postfix]# postmap /etc/postfix/acces
为了测试 关闭了防火墙
[root@server postfix]# /etc/init.d/iptables status
Firewall is stopped.
终端可以成功
1.发送邮件
[root@server postfix]# mail root@help.com
Subject: just a test
.Cc:
Null message body; hope that's ok
2.接受邮件
[root@server postfix]# mail
Mail version 8.1 6/6/93. Type ? for help.
"/var/spool/mail/root": 1 message 1 new
>N 1 root@help.com Sat Dec 1 01:03 13/393 "just a test"
&
但是在雷鸟中测试 (本地服务器测试) 老是出现下图的提示
在win2000中outlook测试也不可以成功
我过滤了一下端口
[root@server postfix]# netstat -antl |grep 25
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN |
|