差分

提供: fukudat.net
ナビゲーションに移動検索に移動
1,392 バイト追加 、 2020年6月3日 (水) 17:10
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
</pre>
 
/etc/dovecot/conf.d ディレクトリの 10-master.conf を編集して、以下の変更を加える。
<pre>
service auth {
...
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}
...
}
</pre>
 
同じディレクトリの 10-ssl.conf を編集して、以下の変更を加える。
<pre>
ssl = yes
ssl_cert = </etc/ssl/certs/fukudat.net.crt
ssl_key = </etc/ssl/private/fukudat.net.key
</pre>
 
同じディレクトリの 10-auth.conf を編集して、以下の変更を加える。
<pre>
disable_plaintext_auth = no
auth_mechanisms = plain
!include auth-passwdfile.conf.ext
</pre>
 
同じディレクトリの auth-passwdfile.conf.ext を編集して、以下の変更を加える。
<pre>
passdb {
driver = passwd-file
args = /etc/dovecot/passwd
}
 
userdb {
driver = passwd-file
args = /etc/dovecot/passwd
}
</pre>
 
doveadm
/etc/dovecot/passwd ファイルは以下のようにして作る。
<pre>
$ doveadm pw -s SHA512-CRYPT
Enter new password: <パスワードをタイプ>
Retype ew password: <もう一度パスワードをタイプ>
{SHA512-CRYPT}$6$xxxxxxxxxxxxxxxxxxx
</pre>
と出るのでそれをコピーして、
 
<pre>
fukudat:{SHA512-CRYPT}$6$xxxxxxxxxxxxxxxxxxx:1000:::/home/fukudat
</pre>
ただしfukudatはユーザ名、1000はUID、/home/fukudatはホームアドレス。
== 参考文献 ==

案内メニュー