Postfix main.cf 坏了

hyp*_*ean -1 linux ubuntu postfix

我有以下main.cfhttp : //pastebin.com/m55f6a90并且我无法从另一台机器 telnet 到安装了这个 Postfix 的机器。在 /var/log/mail.info 中,我收到以下错误/警告:

Aug 27 19:38:57 realshit postfix/smtpd[3960]: initializing the server-side TLS engine
Aug 27 19:38:57 realshit postfix/smtpd[3960]: warning: unknown SASL security options value "noanonymus" in "noanonymus"
Aug 27 19:38:57 realshit postfix/smtpd[3960]: warning: bad per-session SASL security properties
Aug 27 19:38:57 realshit postfix/smtpd[3960]: fatal: SASL per-connection initialization failed
Aug 27 19:38:58 realshit postfix/master[3285]: warning: process /usr/lib/postfix/smtpd pid 3960 exit status 1
Aug 27 19:38:58 realshit postfix/master[3285]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
Run Code Online (Sandbox Code Playgroud)

我认为这与打字错误有关,但我是初学者,很难说。

djh*_*ell 6

第 47 行的错别字

smtpd_sasl_security_options = noanonymus
Run Code Online (Sandbox Code Playgroud)

应该:

smtpd_sasl_security_options = noanonymous
Run Code Online (Sandbox Code Playgroud)

你少了一个“o”。