查看完整版本: 解決退信問題

danny 2007-1-31 10:20

解決退信問題

用途:讓主機不再產生退信訊息(治標不治本的做法)

A主機 192.168.1.1
B主機 192.168.1.2
讓A主機[color=red]寄出[/color]的信relay到B主機,由B主機寄出
[code]vi  /etc/postfix/main.cf
新增
relayhost = [192.168.1.2][/code]
重啟A主機 postfix
service postfix restart


設定B主機
將B主機
[code]vi  /etc/postfix/access
新增
192.168.1.1  relay[/code]
postmap access

[code]vi /etc/postfix/main.cf
修改
mynetworks =  168.100.189.0/28, 127.0.0.0/8, hash:/etc/postfix/access
header_checks = regexp:/etc/postfix/header_checks
[/code]

[code]vi /etc/postfix/header_checks
新增
/^From:.MAILER-DAEMON*/          DISCARD[/code]

重啟B主機 postfix
service postfix restart
完成
要注意的是往後寄信主機是 192.168.1.2
而不是原先的192.168.1.1
頁: [1]
查看完整版本: 解決退信問題