お品書き
書き直し中…
とりあえず、中へどうぞ
↓↓↓
スポンサーリンク

【覚書】postfix・dovecotの設定【Linux/debian】

PC/ネット

インストール

apt install postfix apt install dovecot-common dovecot-pop3d dovecot-imapd
※apt install dovecot ではインストールできない

※dovecot-pop3d をインストールしないとpop3受信できない

※dovecot-common は dovecot-core かも?

postfix・dovecotの設定

※wheezy以降設定ファイルの場所が以下に変更になっている

/etc/dovecot/conf.d/

■Maildir方式にする

/etc/dovecot/conf.d/10-mail.conf

↑を編集

mail_location = mbox:~/mail:INBOX=/var/mail/%u

を

mail_location = maildir:~/Maildir

に修正

■プレインテキストの認証を許可

disable_plaintext_auth = no

を追記

■ポートの変更

/etc/dovecot/conf.d/10-master.conf
↑を修正
service pop3-login { inet_listener pop3 { #port = 110 port = 8110 ←追記 }

■postfixのポート変更

/etc/postfix/master.cf

メールのポート番号の変更

master.cfを書き換える

↓をコメントアウト(頭#)

#smtp      inet  n       -       n       -       -       smtpd

↓を追記

8025      inet  n       -       n       -       -       smtpd

■postfixのポート変更

# vi /etc/postfix/main.cf

以下のパラメータはコメントアウトする
#mailbox_command = ....
#mail_spool_directory = .....

以下を編集または追記
home_mailbox = Maildir/

以下古い情報

■dovecotの設定

/etc/dovecot.conf

メールのポート番号の変更

protocol pop3 {
  listen = *:8110
}

を追記

プレインテキストの認証を許可

disable_plaintext_auth = no

を追記

コメント