• <td id="ae6ms"><li id="ae6ms"></li></td>
  • <xmp id="ae6ms"><td id="ae6ms"></td><table id="ae6ms"></table>
  • <table id="ae6ms"></table>
  • <td id="ae6ms"></td>
    <td id="ae6ms"></td>
  • <table id="ae6ms"></table><table id="ae6ms"><td id="ae6ms"></td></table>
  • <td id="ae6ms"></td>
  • <table id="ae6ms"><li id="ae6ms"></li></table>
  • <table id="ae6ms"></table>
    西西軟件園多重安全檢測下載網站、值得信賴的軟件下載站!
    西西首頁 常用軟件 軟件下載 安卓軟件 游戲下載 安卓游戲 MAC應用 驅動下載 安卓電視
    系統工具網絡工具媒體工具圖形圖像聊天工具應用軟件編程開發手機軟件安卓應用電腦安全字體素材

    Postfix For Linux

    V3.0.3官方免費版
    • Postfix For LinuxV3.0.3官方免費版
    • 軟件大小:4.0M
    • 更新時間:2015-10-14 13:46
    • 軟件語言:英文
    • 軟件廠商:
    • 軟件類別:國外軟件 / 免費軟件 / 郵箱工具
    • 軟件等級:4級
    • 應用平臺:linux
    • 官方網站:http://www.postfix.org/
    好評:50%
    壞評:50%

    軟件介紹

    Postfix For Linux是一款該公司的wietse郵件服務器, 開始生活IBM 研究另一種廣泛使用的Sendmail程序 現在谷歌,wietse繼續支持。Postfix試圖快速,易于管理,安全 。外面有一個明確的sendmail ISH的味道,但里面是 完全。

    軟件說明

    postfix是Wietse Venema想要為使用最廣泛的sendmail提供替代品的一個嘗試。在Internet世界中,大部分的電子郵件都是通過sendmail來投遞的,大約有100萬用戶使用sendmail,每天投遞上億封郵件。這真實一個讓人吃驚的數字。Postfix試圖更快、更容易管理、更安全,同時還與sendmail保持足夠的兼容性。

    關于Postfix

    postfix的產生是為了替代傳統的sendmail.相較于sendmail,postfix在速度,性能和穩定性上都更勝一籌?,F在目前非常多的主流郵件服務其實都在采用postfix. 當我們需要一個輕量級的的郵件服務器是,postfix不失為一種選擇。

    1. postfix是免費的:
    postfix想要作用的范圍是廣大的Internet用戶,試圖影響大多數的Internet上的電子郵件系統,因此它是免費的。
    2. 更快:
    postfix在性能上大約比sendmail快三倍。一部運行postfix的臺式PC每天可以收發上百萬封郵件。
    3. 兼容性好:
    postfix是sendmail兼容的,從而使sendmail用戶可以很方便地遷移到postfix。Postfix支持/var[/spool]/mail、/etc/aliases、 NIS、和 ~/.forward 文件。
    4. 更健壯:
    postfix被設計成在重負荷之下仍然可以正常工作。當系統運行超出了可用的內存或磁盤空間時,postfix會自動減少運行進程的數目。當處理的郵件數目增長時,postfix運行的進程不會跟著增加。
    5. 更靈活:
    postfix是由超過一打的小程序組成的,每個程序完成特定的功能。你可以
    通過配置文件設置每個程序的運行參數。
    6. 安全性
    postfix具有多層防御結構,可以有效地抵御惡意入侵者。如大多數的postfix程序可以運行在較低的權限之下,不可以通過網絡訪問安全性相關的本地投遞程序等等。


    下面來介紹linux上如何搭建和配置postfix服務

    1.關掉sendmail相關的所有服務,最好是直接卸載sendmail.

    # service sendmail stop
    # chkconfig sendmail off

    #rpm -qa | grep sendmail | xargs rpm -e

    2.安裝postfix.

    redhat6.0以上版本應該是默認集成了postfix服務的,假如沒有安裝的話,可以手動安裝。

    rpm -qa | grep postifx (查看是否安裝)

    yum install postfix

    3.安裝完成后,修改配置文件:/etc/postfix/main.cfg

    vi /etc/postfix/main.cf
    myhostname = sample.test.com  ← 設置系統的主機名
    mydomain = test.com  ← 設置域名(我們將讓此處設置將成為E-mail地址“@”后面的部分)
    myorigin = $mydomain  ← 將發信地址“@”后面的部分設置為域名(非系統主機名)
    inet_interfaces = all  ← 接受來自所有網絡的請求
    mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain  ← 指定發給本地郵件的域名
    home_mailbox = Maildir/  ← 指定用戶郵箱目錄

    <保存退出!>

    4.為本機添加DNS server.

    為什DNS Server?因為在郵件發送過程中,需要把郵件地址的domain地址轉化成IP地址,再去發送給對應的收件人,這里涉及到DNS中的A記錄和MX記錄相關的知識,不熟悉的同學可以google或者百度 腦補一下 :-)

    如何添加DNS server呢,DNS server去哪里尋找?

    vim /etc/resolv.conf 

    添加如下行:

    nameserver 8.8.8.8

    nameserver 8.8.4.4

    上面用的8.8.8.8/8.8.4.4是Google Free DNS server,當然還有很多免費的DNS server供大家使用,可以google一下:-)

    5.測試一下郵件是否能夠發送成功:

    命令行輸入$: > echo "Mail Content" | mail -s "Mail Subject" xxxx@xxx.com

    Note:if you see below warings after you run above command.

    send-mail: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol send-mail: warning: inet_protocols: configuring for IPv4 support only postdrop: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol postdrop: warning: inet_protocols: configuring for IPv4 support only

    that means you don't have IPv6 configured in your OS's network stack, but your mailer (presumably postfix) is configured to use IPv6. Since there is no IPv6 for your mailer to use, it's warning you that it's only going to use IPv4.

    To disable the waring messsage, go to /etc/postfix/main.cf and change from:

    inet_protocols = all

    to:

    inet_protocols = ipv4

    This will only use ipv4 and the warning message will go away.

    You will have to issue a stop and start for postfix to register the change. 

    service postfix restart

    6.查看log,確認郵件發送狀態:

    Postfix郵件的log位置是:/var/log/maillog

    發送成功的話,會返回250和OK,也可以去自己的郵件客戶端查收。

    一切OK的話,那Postfix mail service應該就搭建成功了。

    &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

    另外一些有用的postfix維護命令,一遍日常的檢測和維護:

    mailq :會列出當前在postfix發送隊列中的所有郵件

    postsuper -d ALL:刪除當前等待發送隊列的所有郵件,包括發送失敗的退信

    當然還有很多,就不一一列舉了,大家可以網上搜索擴展,Good Luck!

    7.Update Mail From sender

    echo "do-not-reply@example.com   root@example.com" >> /etc/postfix/generic echo "smtp_generic_maps = hash:/etc/postfix/generic" >>/etc/postfix/main.cf postmap /etc/postfix/generic service postfix restart

    軟件截圖

    Postfix For Linux V3.0.3官方免費版
      郵件收發系統
      (71)郵件收發系統關鍵詞
      郵件收發系統是捷易用的郵件管理收發服務的一系列的電子郵件客戶端軟件工具,對于經常和電子郵件打交道的人來說,一個好的收發軟件是必不可少的,這里的郵件收發系統軟件包含有:郵件收發章、msn郵件收發軟件、手機郵更多>>

      其他版本下載

      熱門評論

      最新評論

      發表評論 查看所有評論(0)

      昵稱:
      表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
      字數: 0/500 (您的評論需要經過審核才能顯示)

      下載幫助下載幫助西西破解版軟件均來自互聯網, 如有侵犯您的版權, 請與我們聯系。

      TOP
      軟件下載
      女人让男人桶30分钟免费视频,女人张开腿让男人桶个爽,一进一出又大又粗爽视频
    • <td id="ae6ms"><li id="ae6ms"></li></td>
    • <xmp id="ae6ms"><td id="ae6ms"></td><table id="ae6ms"></table>
    • <table id="ae6ms"></table>
    • <td id="ae6ms"></td>
      <td id="ae6ms"></td>
    • <table id="ae6ms"></table><table id="ae6ms"><td id="ae6ms"></td></table>
    • <td id="ae6ms"></td>
    • <table id="ae6ms"><li id="ae6ms"></li></table>
    • <table id="ae6ms"></table>