Linux伺服器---郵件服務postfix安裝

一生有你llx發表於2019-02-09

安裝postfix

postfix 是一個快速、易於管理、安全性高的郵件傳送服務,可以配合dovecot實現一個完美的郵箱伺服器。

1 、安裝postfix 

[root@localhost ~]#  rpm -qa | grep postfix

[root@localhost ]#  yum install -y postfix

Loaded plugins: fastestmirror, refresh-packagekit, security                                                 

Complete!

[root@localhost]#

 

2 、配置postfix,編輯配置檔案“/etc/postfix/main.cf”

[root@localhost ~]#  gedit /etc/postfix/main.cf

mydomain = david.cn      //dns 中的域名

myhostname = mailsrv.david.cn  //dns 中的域名

mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain

inet_interfaces = all   // 允許處理所有網路資訊

inet_protocols = all    // 允許 ipv4 ipv6

mynetworks = 192.168.0.0/24, 127.0.0.0/8     // 允許接入的 ip

 

3 、設定防火牆,postfix使用25埠 

[root@localhost ~]#  gedit /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT

 

[root@localhost ~]#  service iptables restart

iptables :將鏈設定為政策  ACCEPT filter nat                [ 確定 ]

iptables :清除防火牆規則:                                  [ 確定 ]

iptables :正在解除安裝模組:                                    [ 確定 ]

iptables :應用防火牆規則:                                  [ 確定 ]

iptables :載入額外模組: nf_conntrack_ftp                   [ 確定 ]

 

4 、啟動服務

[root@localhost ~]#  service postfix start

啟動 postfix                                              [ 確定 ]

[root@localhost ~]#

 

5 、連線測試

[root@localhost ~]#  telnet 192.168.0.113 25    //ip 是本機地址, 25 是埠號

Trying 192.168.0.113...

Connected to 192.168.0.113.

Escape character is '^]'.

220 mailsrv.david.cn ESMTP Postfix

 

6 、發信

[root@localhost ~]#  mail david     // david 發信,確保此使用者存在 Linux 系統中。發信人是當前登入的使用者 root

Subject: test04       // 標題

hello david           // 內容

.                       // 結束

EOT

[root@localhost ~]#  mail -u david      // 檢視使用者 david 的信件

Heirloom Mail version 12.4 7/29/08.  Type ? for help.

"/var/mail/david": 5 messages 1 new

    1 root                  Thu Aug 16 17:07  21/692   "test"

    2 root                  Thu Aug 16 17:08  20/631   "test"

    3 root                  Thu Aug 16 17:10  20/602   "test"

    4 root                  Fri Aug 17 08:15  20/570   "test3"

>N  5 root                  Fri Aug 17 09:46  18/539   "test04"    // 此信件是剛才收到的,由 root 使用者發出

&

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29270124/viewspace-2286340/,如需轉載,請註明出處,否則將追究法律責任。

相關文章