|
「No server certs available. TLS can't be enabled」エラー対策 |
|
|
|
|
作者: mune
|
|
2010年 11月 07日(日曜日) 18:46 |
|
CentOS5.5 / postfix-2.3.3-2.1.el5_2
/var/log/maillogに下記エラーログが出ている時の対策。
Oct 30 00:11:06 host postfix/smtpd[29305]: fatal: No server certs available. TLS can't be enabled
postfix設定ファイル修正 # vi /etc/postfix/master.cf # ================================================ # service type private unpriv chroot wakeup maxproc command + args # (yes) (yes) (yes) (never) (100) # ================================================ smtp inet n - n - - smtpd submission inet n - n - - smtpd # -o smtpd_enforce_tls=yes ###コメントアウトする -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticated,reject #smtps inet n - n - - smtpd # -o smtpd_tls_wrappermode=yes # -o smtpd_sasl_auth_enable=yes # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
|