欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

CentOS 7.2部署郵件服務(wù)器(Postfix)

 更新時間:2016年11月16日 09:19:26   作者:shaonbean  
這篇文章主要為大家詳細介紹了CentOS 7.2如何部署郵件服務(wù)器Postfix,具有一定的參考價值,感興趣的小伙伴們可以參考一下

一、Postfix簡介

Postfix 是一種電子郵件服務(wù)器,它是由任職于IBM華生研究中心(T.J. Watson Research Center)的荷蘭籍研究員Wietse Venema為了改良sendmail郵件服務(wù)器而產(chǎn)生的。最早在1990年代晚期出現(xiàn),是一個開放源代碼的軟件。
Postfix 官方網(wǎng)站:http://www.postfix.org/
Postfix 下載地址:http://www.postfix.org/download.html

二、Postfix安裝

安裝Postfix以配置SMTP服務(wù)器
[1] 即使CentOS系統(tǒng)安裝了[最小安裝],也會安裝Postfix,但如果Postfix不安裝,請先安裝它,如下所示。
[root@linuxprobe ~]# yum -y install postfix

[2] 此示例顯示配置SMTP-Auth以使用Dovecot的SASL函數(shù)。

[root@linuxprobe ~]# vi /etc/postfix/main.cf
# line 75: uncomment and specify hostname

myhostname = linuxprobe.srv.world
# line 83: uncomment and specify domain name

mydomain = srv.world
# line 99: uncomment

myorigin = $mydomain
# line 116: change

inet_interfaces = all
# line 164: add

mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
# line 264: uncomment and specify your local network

mynetworks = 127.0.0.0/8, 10.0.0.0/24
# line 419: uncomment (use mailboxdir)

home_mailbox = mailbox/
# line 574: add

smtpd_banner = $myhostname ESMTP
# add follows to the end

# limit an email size for 10M

message_size_limit = 10485760

# limit a mailbox for 1G

mailbox_size_limit = 1073741824
# for SMTP-Auth

smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
smtpd_recipient_restrictions = permit_mynetworks,permit_auth_destination,permit_sasl_authenticated,reject

[root@linuxprobe ~]# systemctl restart postfix
[root@linuxprobe ~]# systemctl enable postfix

[3]如果Firewalld正在運行,請允許SMTP服務(wù)。 SMTP使用25 / TCP。

[root@dlp ~]# firewall-cmd --add-service=smtp --permanent
success
[root@dlp ~]# firewall-cmd --reload
success 

三、Dovecot 安裝

安裝Dovecot以配置POP / IMAP服務(wù)器
[1] 安裝Dovecot.
[root@linuxprobe ~]# yum -y install dovecot

[2] 此示例顯示配置為向Postfix提供SASL功能 .

[root@linuxprobe ~]# vi /etc/dovecot/dovecot.conf
# line 24: uncomment
protocols = imap pop3 lmtp
# line 30: uncomment and change ( if not use IPv6 )
listen = *
[root@linuxprobe ~]# vi /etc/dovecot/conf.d/10-auth.conf
# line 10: uncomment and change ( allow plain text auth )
disable_plaintext_auth = no
# line 100: add
auth_mechanisms = plain login
[root@linuxprobe ~]# vi /etc/dovecot/conf.d/10-mail.conf
# line 30: uncomment and add
mail_location = maildir:~/Maildir
[root@linuxprobe ~]# vi /etc/dovecot/conf.d/10-master.conf
# line 96-98: uncomment and add like follows
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
 mode = 0666
 user = postfix
 group = postfix
}
[root@linuxprobe ~]# vi /etc/dovecot/conf.d/10-ssl.conf
# line 8: change (not require SSL)
ssl = no

[root@linuxprobe ~]# systemctl start dovecot
[root@linuxprobe ~]# systemctl enable dovecot

[3] 如果Firewalld正在運行,請允許POP / IMAP服務(wù)。 POP使用110 / TCP,IMAP使用143 / TCP.

[root@vdevops ~]# firewall-cmd --add-port={110/tcp,143/tcp} --permanent
success
[root@vdevops ~]# firewall-cmd --reload
success 

四、SSL設(shè)置

配置SSL以加密連接
[1] 首先創(chuàng)建證書,傳送門:http://www.dbjr.com.cn/article/97434.htm

[2] 為SSL配置Postfix和Dovecot。

# add to the end
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/pki/tls/certs/server.crt
smtpd_tls_key_file = /etc/pki/tls/certs/server.key
smtpd_tls_session_cache_database = btree:/etc/postfix/smtpd_scache
[root@linuxprobe ~]# vi /etc/postfix/master.cf
# line 26-28: uncomment
smtps  inet n  -  n  -  -  smtpd
 -o syslog_name=postfix/smtps
 -o smtpd_tls_wrappermode=yes
[root@linuxprobe ~]# vi /etc/dovecot/conf.d/10-ssl.conf
# line 8: change
ssl = yes
# line 14,15: specify certificates
ssl_cert = </etc/pki/tls/certs/server.crt
ssl_key = </etc/pki/tls/certs/server.key
[root@linuxprobe ~]# systemctl restart postfix dovecot

[3] 如果Firewalld正在運行,請允許SMTPS / POP3S / IMAPS服務(wù)。 SMTPS使用465 /
TCP,POP3S使用995 / TCP,IMAPS使用993 / TCP。

[root@vdevops ~]# firewall-cmd --add-service={pop3s,imaps} --permanent
success
[root@vdevops ~]# firewall-cmd --add-port=465/tcp --permanent
success
[root@vdevops ~]# firewall-cmd --reload
success 

郵件日志報告:pflogsumm

安裝pflogsumm這是Postfix日志報告工具
[1] 安裝postfix-perl-scripts包 .

[root@linuxprobe ~]# yum -y install postfix-perl-scripts
# generate log summary for yesterday
[root@linuxprobe ~]# perl /usr/sbin/pflogsumm -d yesterday /var/log/maillog
Postfix log summaries for Jul 14
Grand Totals
------------
messages
  2 received
  5 delivered
  0 forwarded
  0 deferred
  0 bounced
  0 rejected (0%)
  0 reject warnings
  0 held
  0 discarded (0%)

 2879 bytes received
 6572 bytes delivered
  1 senders
  1 sending hosts/domains
  2 recipients
  2 recipient hosts/domains
Per-Hour Traffic Summary
------------------------
 time   received delivered deferred bounced  rejected
 --------------------------------------------------------------------
 0000-0100   0   0   0   0   0
 0100-0200   0   0   0   0   0
 0200-0300   0   0   0   0   0
 0300-0400   0   0   0   0   0
 0400-0500   0   0   0   0   0
 0500-0600   0   0   0   0   0
 0600-0700   0   0   0   0   0
 0700-0800   0   0   0   0   0
 0800-0900   0   0   0   0   0
 0900-1000   0   0   0   0   0
 1000-1100   2   5   0   0   0
 1100-1200   0   0   0   0   0
 1200-1300   0   0   0   0   0
 1300-1400   0   0   0   0   0
 1400-1500   0   0   0   0   0
 1500-1600   0   0   0   0   0
 1600-1700   0   0   0   0   0
 1700-1800   0   0   0   0   0
 1800-1900   0   0   0   0   0
 1900-2000   0   0   0   0   0
 2000-2100   0   0   0   0   0
 2100-2200   0   0   0   0   0
 2200-2300   0   0   0   0   0
 2300-2400   0   0   0   0   0

Host/Domain Summary: Message Delivery
--------------------------------------
 sent cnt bytes defers avg dly max dly host/domain
 -------- ------- ------- ------- ------- -----------
  3  4119  0  0.4 s 0.8 s srv.world
  2  2453  0  0.1 s 0.1 s mail.srv.world

Host/Domain Summary: Messages Received
---------------------------------------
 msg cnt bytes host/domain
 -------- ------- -----------
  2  2879 mail.srv.world

Senders by message count
------------------------
  2 cent@mail.srv.world

Recipients by message count
---------------------------
  3 redhat@srv.world
  2 cent@mail.srv.world

Senders by message size
-----------------------
 2879 cent@mail.srv.world

Recipients by message size
--------------------------
 4119 redhat@srv.world
 2453 cent@mail.srv.world

message deferral detail: none
message bounce detail (by relay): none
message reject detail: none
message reject warning detail: none
message hold detail: none
message discard detail: none
smtp delivery failures: none
Warnings
--------
 tlsmgr (total: 6)
   3 redirecting the request to postfix-owned data_directory /var/li...
   3 request to update table btree:/etc/postfix/smtpd_scache in non-...

Fatal Errors: none
Panics: none
Master daemon messages
----------------------
  4 daemon started -- version 2.10.1, configuration /etc/postfix
  3 terminating on signal 15
  1 reload -- version 2.10.1, configuration /etc/postfix

[root@linuxprobe ~]# crontab -e
# 發(fā)送郵件日志摘要在AM每天1:00到根
00 01 * * * perl /usr/sbin/pflogsumm -e -d yesterday /var/log/maillog | mail -s 'Logwatch for Postfix' root

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • apache禁止遍歷目錄的實現(xiàn)步驟

    apache禁止遍歷目錄的實現(xiàn)步驟

    本文主要介紹了apache禁止遍歷目錄的實現(xiàn)步驟,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-12-12
  • Linux使用suid vim.basic文件實現(xiàn)提權(quán)

    Linux使用suid vim.basic文件實現(xiàn)提權(quán)

    這篇文章主要介紹了Linux使用suid vim.basic文件實現(xiàn)提權(quán),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-07-07
  • linux啟動和重啟nginx方法

    linux啟動和重啟nginx方法

    在本篇文章里小編給大家整理了關(guān)于linux如何啟動nginx并重啟哦的小技巧,有需要的朋友們參考下。
    2019-06-06
  • Linux下nginx生成日志自動切割的實現(xiàn)方法

    Linux下nginx生成日志自動切割的實現(xiàn)方法

    這篇文章主要介紹了 Linux下nginx生成日志自動切割的實現(xiàn)方法的相關(guān)資料,希望通過本文能幫助到大家,讓大家實現(xiàn)這樣的功能看,需要的朋友可以參考下
    2017-10-10
  • Windows10使用Linux子系統(tǒng)實現(xiàn)輕松安裝多個linux

    Windows10使用Linux子系統(tǒng)實現(xiàn)輕松安裝多個linux

    這篇文章主要為大家學(xué)習(xí)介紹了Windows10如何使用Linux子系統(tǒng)實現(xiàn)輕輕松松安裝多個linux,本文通過圖文為大家進行了詳細介紹,需要的可以收藏一下
    2023-08-08
  • linux服務(wù)器磁盤擴容的方法(圖)

    linux服務(wù)器磁盤擴容的方法(圖)

    如果你的linux服務(wù)器磁盤不夠用了,那就需要給磁盤擴容了,下面我們介紹一下linux服務(wù)器磁盤擴容的方法,大家參考使用吧
    2014-01-01
  • 詳解 Linux 常用目錄的作用

    詳解 Linux 常用目錄的作用

    這篇文章主要介紹了詳解 Linux 常用目錄的作用的相關(guān)資料,這里列舉常用目錄并附實例幫助大家理解這部分內(nèi)容,需要的朋友可以參考下
    2017-08-08
  • 詳解在LINUX上部署帶有JAR包的JAVA項目

    詳解在LINUX上部署帶有JAR包的JAVA項目

    這篇文章主要介紹了詳解在LINUX上部署帶有JAR包的JAVA項目,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-03-03
  • Linux下實現(xiàn)UTF-8和GB2312互相轉(zhuǎn)換的方法

    Linux下實現(xiàn)UTF-8和GB2312互相轉(zhuǎn)換的方法

    下面小編就為大家?guī)硪黄狶inux下實現(xiàn)UTF-8和GB2312互相轉(zhuǎn)換的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,祝大家游戲愉快哦
    2016-12-12
  • Apache 添加虛擬目錄注意事項

    Apache 添加虛擬目錄注意事項

    Apache 添加虛擬目錄注意事項,使用apache的朋友可以參考下。
    2011-08-08

最新評論