web-dev-qa-db-ja.com

メールサーバーが機能していませんか?

私は長い間メールサーバーをセットアップしようとしていましたが、Linuxが初めてなので、できる限りベストに設定できませんでしたが、今は支援が必要です。

  1. 以下のリンクを使用してインストールしました。

  2. 私はこれもウェブコンソールを持っている

  3. Webコンソールの場合はmail.risheetech.comとしてドメイン名を使用する必要があります。メールアドレスは[email protected]のようにする必要があります
  4. メールサーバーをセットアップするのは大きなプロセスであることは誰もが知っているように、私は非常に少量の情報以外のすべてを含めていませんが、分析して解決するために必要な情報をお気軽にお問い合わせください。
  5. 以下はnmapの結果です。

    # nmap -sS -O 127.0.0.1
    
    Starting Nmap 5.21 ( //nmap.org ) at 2012-06-09 17:33 IST
    Nmap scan report for localhost (127.0.0.1)
    Host is up (0.000026s latency).
    Not shown: 990 closed ports
    
    PORT     STATE SERVICE
    23/tcp   open  telnet
    53/tcp   open  domain
    80/tcp   open  http
    110/tcp  open  pop3
    143/tcp  open  imap
    631/tcp  open  ipp
    993/tcp  open  imaps
    995/tcp  open  pop3s
    2000/tcp open  Cisco-sccp
    3306/tcp open  mysql
    
    Device type: general purpose
    Running: Linux 2.6.X
    OS details: Linux 2.6.19 - 2.6.31
    Network Distance: 0 Hops
    OS detection performed. Please report any incorrect results at //nmap.org/submit/ .
    Nmap done: 1 IP address (1 Host up) scanned in 1.67 seconds
    
  6. 以下はmail.logファイルのエントリです。

    tail -f /var/log/mail.log
    
    May 13 13:30:53 risheetech postfix/master[9018]: warning: /etc/postfix/main.cf: logical line must not start with whitespace: " smtpd_banner = $myhostname ES..."
    May 13 13:30:53 risheetech postfix/master[9018]: fatal: /etc/postfix/master.cf: line 120: bad transport type: -e
    May 13 13:32:05 risheetech postfix/master[9151]: fatal: /etc/postfix/master.cf: line 120: bad transport type: -e
    May 14 09:54:09 risheetech postfix/master[11284]: fatal: /etc/postfix/master.cf: line 120: bad transport type: -e
    Jun  9 17:08:50 risheetech postfix/postfix-script[13856]: starting the Postfix mail system
    Jun  9 17:08:51 risheetech postfix/master[13857]: fatal: /etc/postfix/master.cf: line 120: bad transport type: -e
    Jun  9 17:09:01 risheetech postfix/postfix-script[13863]: error: unknown command: 'restart'
    Jun  9 17:09:01 risheetech postfix/postfix-script[13864]: fatal: usage: postfix start (or stop, reload, abort, flush, check, status, set-permissions, upgrade-configuration)
    Jun  9 17:09:08 risheetech postfix/postfix-script[13977]: starting the Postfix mail system
    Jun  9 17:09:08 risheetech postfix/master[13978]: fatal: /etc/postfix/master.cf: line 120: bad transport type: -e
    

何が問題なのかを理解するために他に何が必要か教えてください。私はそれが非常に複雑であり、他の多くのサブ質問が含まれていることを知っています。

1
Hrish

main.cfのフォーマットが間違っているようです。ログファイルは次を書き込みます:

May 13 13:30:53 risheetech postfix/master[9018]: warning: 
   /etc/postfix/main.cf: logical line must not start with 
   whitespace: " smtpd_banner = $myhostname ES..."

postconf(5) の3番目のリスト項目を見てください。

論理行は非空白テキストで始まります。空白で始まる行は、論理行に続きます。

したがって、smtpd_bannerで始まる行の空白を削除し、Postfixを再起動すると機能します。

2
qbi