Elastix 接收外部電子郵件問題

Elastix 接收外部電子郵件問題

我已經安裝了 elastix 3 穩定版本(postfix、cyrus sasl2)。我在本地網路中用作電子郵件伺服器。這裡一切工作如下:

  • 從本地發送電子郵件到本地 =好的!
  • 從本地端向外部發送電子郵件=好的!
  • 接收電子郵件(從本地發送的)=好的!
  • 接收電子郵件(即傳送外部)=不! ***

事實上,唯一的問題是我無法在收件匣中收到從外部發送的電子郵件,但是我已經可以在收件匣中收到從本地網路發送的郵件。恐怕是出了什麼問題。但如果有人能在這個問題上幫助我,我將不勝感激。 master.cf和main.cf檔案也如下,我不知道是否應該進行任何其他設定。另請注意看來我的 ISP 封鎖了 25,所以我使用另一個連接埠作為 smtp。

等/後綴/主程式.cf(幾乎沒有評論)

    queue_directory = /var/spool/postfix
    command_directory = /usr/sbin
    daemon_directory = /usr/libexec/postfix
    data_directory = /var/lib/postfix
    mail_owner = postfix
    myhostname = mail.cqnordica.com
    mydomain = cqnordica.com
    myorigin = $mydomain
    inet_interfaces = all
    mydestination = $myhostname, localhost.$mydomain, localhost
    unknown_local_recipient_reject_code = 550
    mynetworks_style = class
    mynetworks = 192.168.0.0/24, 127.0.0.0/8
    debug_peer_level = 2
    debugger_command =
     PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
     ddd $daemon_directory/$process_name $process_id & sleep 5
    sendmail_path = /usr/sbin/sendmail.postfix
    newaliases_path = /usr/bin/newaliases.postfix
    mailq_path = /usr/bin/mailq.postfix
    setgid_group = postdrop
    html_directory = no
    manpage_directory = /usr/share/man
    sample_directory = /usr/share/doc/postfix-2.5.6/samples
    readme_directory = /usr/share/doc/postfix-2.5.6/README_FILES
    virtual_transport = lmtp:unix:/var/lib/imap/socket/lmtp
    virtual_mailbox_domains = cqnordica.com
    # added by myself 
    smtpd_sasl_path = smtpd
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_local_domain = $myhostname
    broken_sasl_auth_clients = yes
    #smtpd_sasl_tls_security_options = $smtpd_sasl_security_options
    smtpd_recipient_restrictions =
            permit_mynetworks,
            permit_sasl_authenticated,
            reject_unauth_destination

等/後綴/大師.cf(幾乎沒有評論)

    # Postfix master process configuration file.  For details on the format
    # of the file, see the master(5) manual page (command: "man 5 master").
    #
    # Do not forget to execute "postfix reload" after editing this file.
    #
    # ==========================================================================
    # service type  private unpriv  chroot  wakeup  maxproc command + args
    #               (yes)   (yes)   (yes)   (never) (100)
    # ==========================================================================
    2599      inet  n       -       n       -       -       smtpd
    submission inet n       -       n       -       -       smtpd
      -o smtpd_tls_security_level=encrypt
      -o smtpd_sasl_auth_enable=yes
      -o smtpd_client_restrictions=permit_sasl_authenticated,reject
    #  -o milter_macro_daemon_name=ORIGINATING
    smtps     inet  n       -       n       -       -       smtpd
    #  -o smtpd_tls_wrappermode=yes
      -o smtpd_sasl_auth_enable=yes
      -o smtpd_client_restrictions=permit_sasl_authenticated,reject
    #  -o milter_macro_daemon_name=ORIGINATING
    #628      inet  n       -       n       -       -       qmqpd
    pickup    fifo  n       -       n       60      1       pickup
    cleanup   unix  n       -       n       -       0       cleanup
    qmgr      fifo  n       -       n       300     1       qmgr
    #qmgr     fifo  n       -       n       300     1       oqmgr
    tlsmgr    unix  -       -       n       1000?   1       tlsmgr
    rewrite   unix  -       -       n       -       -       trivial-rewrite
    bounce    unix  -       -       n       -       0       bounce
    defer     unix  -       -       n       -       0       bounce
    trace     unix  -       -       n       -       0       bounce
    verify    unix  -       -       n       -       1       verify
    flush     unix  n       -       n       1000?   0       flush
    proxymap  unix  -       -       n       -       -       proxymap
    proxywrite unix -       -       n       -       1       proxymap
    smtp      unix  -       -       n       -       -       smtp
    # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
    relay     unix  -       -       n       -       -       smtp
        -o smtp_fallback_relay=
    #       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
    showq     unix  n       -       n       -       -       showq
    error     unix  -       -       n       -       -       error
    retry     unix  -       -       n       -       -       error
    discard   unix  -       -       n       -       -       discard
    local     unix  -       n       n       -       -       local
    virtual   unix  -       n       n       -       -       virtual
    lmtp      unix  -       -       n       -       -       lmtp
    anvil     unix  -       -       n       -       1       anvil
    scache    unix  -       -       n       -       1       scache

非常感謝。

答案1

我找到了答案。事實上,問題不在於郵件伺服器。好像是25埠 應該是開放的為了接收來自外部的郵件沒有這個,它不起作用。我已經在其他論壇上看到過一些關於它的內容,但我無法表達它的重要性。解封後,外部郵件收到良好。我只是想分享我的解決方案和我得到的答案。 :)

相關內容