搜尋此網誌

2016年5月19日 星期四

CENTOS 安裝 Postfix Server

yum -y install postfix

vi /etc/postfix/main.cf

1.設定Hostname
#myhostname = host.domain.tld
#myhostname = virtual.domain.tld
myhostname = 你的主機名稱

2.設定網域名稱(Domain Name)
#mydomain =domain.tld
mydomain = 你的網域名稱

3.設定Origin Name
myorigin = $mydomain

4.設定 postfix 的監聽介面
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, locatlhost
#inet_interfaces = localhost
inet_interfaces = all

5.修改Postfix的通訊協定
inet_protocols = ipv4 or inet_protocols = all

6.設定能收收信件的主機名稱
mydestination = $myhostname, localhost.$mydomain, localhost, mydomain

7.設定信任的用戶端
mynetworks = 127.0.0.0/8, 192.168.1.0/24, hash:/etc/postfix/access

8.規範可以 relay 的 MTA 主機位址
relay_domains = $mydestination

9.設定郵件別名的路徑
alias_maps = hash:/etc/aliases

10.設定指定郵件別名表資料庫路徑
alias_database = hash:/etc/aliases

11.設定完成後,請在終端機下輸入以下二行指令
postmap hash:/etc/postfix/access
postalias hash:/etc/aliases

12.重啟postfix就可以利用smtp的服務收發信件
service postfix restart  or  systemctl  restart  postfix

13.檢查SMTP服務是否開啟
netstat -tlunp | grep ':25'

沒有留言:

張貼留言

搜尋此網誌