1. <var id="fe6gj"></var>

    <rp id="fe6gj"><nav id="fe6gj"></nav></rp>

    <noframes id="fe6gj"><cite id="fe6gj"></cite>

    <ins id="fe6gj"><button id="fe6gj"><p id="fe6gj"></p></button></ins>
    1. <tt id="fe6gj"><i id="fe6gj"><sub id="fe6gj"></sub></i></tt>
        始創于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊有禮 登錄
        • 掛牌上市企業
        • 60秒人工響應
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補償
        您的位置: 網站首頁 > 幫助中心>文章內容

        在Fedora上建立自己的郵件服務器(4)

        發布時間:  2012/8/14 13:43:47
         D.配置postfix.

        1.主要是main.cf的配置。

        以下為引用的內容:
        virtual_alias_maps=mysql:/etc/postfix/mysql_virtual_alias_maps.cf
        virtual_gid_maps=static:12345
        virtual_mailbox_base=/usr/local/virtual
        virtual_mailbox_domains=mysql:/etc/postfix/mysql_virtual_domains_maps.cf
        virtual_mailbox_maps=mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
        virtual_mailbox_limit=51200000
        virtual_minimum_uid=12345
        virtual_transport=virtual
        virtual_uid_maps=static:12345

        smtpd_sasl_auth_enable=yes
        #smtpd_sasl_local_domain=$myhostname
        smtpd_recipient_restrictions=permit_mynetworkspermit_sasl_authenticatedpermit_aut-h_destinationreject
        smtpd_sasl_security_options=noanonymous
        smtpd_client_restrictions=permit_sasl_authenticated
        broken_sasl_auth_clients=yes

          
        2.mysql_virtual_alias_maps.cf如下

        以下為引用的內容:
        user=postfix
        password=postfix
        hosts=localhost
        dbname=postfix
        table=alias
        select_field=goto
        where_field=username

          
        3.mysql_virtual_domains_maps.cf如下

        以下為引用的內容:
        user=postfix
        password=postfix
        hosts=localhost
        dbname=postfix
        table=domain
        select_field=description
        where_field=domain

          
        4.mysql_virtual_mailbox_maps.cf如下

        以下為引用的內容:
        user=postfix
        password=postfix
        hosts=localhost
        dbname=postfix
        table=mailbox
        select_field=maildir
        where_field=username 

        E.建立

        以下為引用的內容:
        [root@localhostroot]#mkdir/usr/local/virtual
        [root@localhostroot]#chown-Rpostfix:postfix/usr/local/virtual
        [root@localhostroot]#chmod-R751/usr/local/virtual

          
        七、測試端口25

        以下為引用的內容:
        A.mysql>usepostfix
        Readingtableinformationforcompletionoftableandcolumnnames
        Youcanturnoffthisfeaturetogetaquickerstartupwith-A

        Databasechanged
        mysql>showtables;
        +----------+
        |Tables_in_postfix|
        +----------+
        |alias|
        |domain|
        |mailbox|
        +----------+
        3rowsinset(0.00sec)

        mysql>INSERTINTOalias(username,goto)VALUES('postmaster@lansemail.com','tester@lansemail.com');
        QueryOK,1rowaffected(0.08sec)

        mysql>INSERTINTOdomain(domain,description)VALUES('lansemail.com','local:');QueryOK,1rowaffected(0.00sec)

        mysql>INSERTINTOmailbox(username,password,home,maildir,name,domain,create_date,create_time)VALUES('tester','$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/','/usr/local/virtual/','tester@lansemail.com/','tes-ter','lansemail.com','2003-11-19','21:24:00');QueryOK,1rowaffected(0.03sec)-

        mysql>select*frommailbox
        ->;
        +----+-----+---+----+-----+----+----+--+----+--+-+-+----+------+-------+----------+----+
        |userid|username|password|home|maildir|name|uid|gid|quota|domain|create_date|cre-ate_time|change_date|change_time|last_access|passwd_lastchanged|status|
        +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+
        ||tester|$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/|/usr/local/virtual/|tester@lansemail.com/|tester-|12345|12345||lansemail.com|2003-11-19|21:24:00|0000-00-00|00:00:00|0|0|1|
        +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+
        1rowinset(0.11sec)

        mysql>

          
        這里用的username為tester,只是用來測試端口用的,正式使用一定要用全名tester@lansemail.com.否則信件收不到,信息如下

        無法到達以下收件人:

        以下為引用的內容:

          
        'tester@lansemail.com',時間為21/11/200313:05
        450<tester@lansemail.com>:Userunknowninlocalrecipienttable

        B.[root@localhostpostfix]#telnetlocalhost25


        Trying127.0.0.1...
        Connectedtolocalhost.
        Escapecharacteris'^]'.
        220localhost.localdomainESMTPPostfix
        ehlolocalhost
        250-localhost.localdomain
        250-PIPELINING
        250-SIZE10240000
        250-VRFY
        250-ETRN
        250-AUTHLOGINPLAINOTP
        250-AUTH=LOGINPLAINOTP
        250-XVERP
        2508BITMIME
        authplaindGVzdGVyAHRlc3RlcgB0ZXN0cHc=
        235Authenticationsuccessful
        quit
        221Bye
        Connectionclosedbyforeignhost.
        [root@localhostpostfix]#telnetlocalhost25
        Trying127.0.0.1...
        Connectedtolocalhost.
        Escapecharacteris'^]'.
        220localhost.localdomainESMTPPostfix
        ehlolocalhost
        250-localhost.localdomain
        250-PIPELINING
        250-SIZE10240000
        250-VRFY
        250-ETRN
        250-AUTHLOGINPLAINOTP
        250-AUTH=LOGINPLAINOTP
        250-XVERP
        2508BITMIME
        authlogin
        334VXNlcm5hbWU6
        dGVzdGVy-->username:tester(用printf'tester'|mmencode取得。)
        334UGFzc3dvcmQ6
        dGVzdHB3-->password:testpw
        235Authenticationsuccessful
        quit
        221Bye
        Connectionclosedbyforeignhost.
        [root@localhostpostfix]#


        本文出自:億恩科技【www.endtimedelusion.com】

        服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]

      1. 您可能在找
      2. 億恩北京公司:
      3. 經營性ICP/ISP證:京B2-20150015
      4. 億恩鄭州公司:
      5. 經營性ICP/ISP/IDC證:豫B1.B2-20060070
      6. 億恩南昌公司:
      7. 經營性ICP/ISP證:贛B2-20080012
      8. 服務器/云主機 24小時售后服務電話:0371-60135900
      9. 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
      10. 專注服務器托管17年
        掃掃關注-微信公眾號
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權所有  地址:鄭州市高新區翠竹街1號總部企業基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網安備41019702002023號
          0
         
         
         
         

        0371-60135900
        7*24小時客服服務熱線

         
         
        av不卡不卡在线观看_最近2018年中文字幕_亚洲欧美一区二区三区_一级A爱做片免费观看国产_日韩在线中文天天更新_伊人中文无码在线