Postfix : インストール/設定2019/01/24 |
Postfix をインストールして SMTPサーバーを構築します。
|
|
[1] | Postfix をインストールします。 |
mail:~ # zypper -n install postfix
|
[2] | メール不正中継防止に、後述の Dovecot の SASL機能を利用し、送信にも認証を要求するように Postfix を設定します。 |
mail:~ #
vi /etc/postfix/main.cf # 110行目:コメント解除しドメイン名指定 mydomain = srv.world
# 126行目:コメント解除 myorigin = $mydomain # 287行目:コメント解除し自ネットワーク追記 mynetworks = 127.0.0.0/8, 10.0.0.0/24
# 442行目:コメント解除しMaildir形式へ移行 home_mailbox = Maildir/ # 705行目:変更 inet_interfaces = all
# 710行目:追記 mydestination = $myhostname, localhost.$mydomain , localhost, $mydomain
# 711行目:ホスト名指定 myhostname = mail.srv.world
# 725,726行目 # 必要に応じて送受信メールサイズを制限 (下例は 10M) message_size_limit = 10485760
# 738行目:変更 smtpd_recipient_restrictions = permit_mynetworks, permit_auth_destination, permit_sasl_authenticated, reject # 744行目:変更 & 追記 smtpd_sasl_auth_enable = yes
smtpd_sasl_path = private/auth
smtpd_sasl_type = dovecot smtpd_sasl_security_options = noanonymous smtpd_sasl_local_domain = $myhostname systemctl start postfix mail:~ # systemctl enable postfix |
[3] | Firewalld を有効にしている場合は SMTP サービスの許可が必要です。SMTP は 25/TCP を使用します。 |
mail:~ # firewall-cmd --add-service=smtp --permanent success mail:~ # firewall-cmd --reload success |
Sponsored Link |
|