Fedora 21
Sponsored Link

Postfix インストール/設定2014/12/31

 
Postfix をインストールして SMTPサーバーを構築します。 SMTP は 25/TCP を使用します。
[1] Postfix をインストールします。
[root@mail ~]#
yum -y install postfix
[2] メール不正中継防止に、後述の Dovecot の SASL機能を利用し、送信にも認証を要求するように Postfix を設定します。
[root@mail ~]#
vi /etc/postfix/main.cf
# 75行目:コメント解除しホスト名指定

myhostname =
mail.srv.world
# 83行目:コメント解除しドメイン名指定

mydomain =
srv.world
# 99行目:コメント解除

myorigin = $mydomain
# 116行目:変更

inet_interfaces =
all
# 119行目:IPv4しか使わないならば変更

inet_protocols =
ipv4
# 164行目:追記

mydestination = $myhostname, localhost.$mydomain, localhost
, $mydomain
# 264行目:コメント解除し自ネットワーク追記

mynetworks = 127.0.0.0/8,
10.0.0.0/24
# 419行目:コメント解除しMaildir形式へ移行

home_mailbox = Maildir/
# 574行目:追記

smtpd_banner = $myhostname ESMTP
# 最終行へ追記

# 送受信メールサイズを10Mに制限

message_size_limit = 10485760

# メールボックスサイズを1Gに制限

mailbox_size_limit = 1073741824
# 以下SMTP-Auth用

smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
smtpd_recipient_restrictions = permit_mynetworks, permit_auth_destination, permit_sasl_authenticated, reject
# デフォルトMTA変更

[root@mail ~]#
alternatives --config mta


There are 2 programs which provide 'mta'.

  Selection    Command
-----------------------------------------------
*+ 1           /usr/sbin/sendmail.sendmail
   2           /usr/sbin/sendmail.postfix
Enter to keep the current selection[+], or type selection number:
2
 
# postfixに切り替え
[root@mail ~]#
systemctl start postfix

[root@mail ~]#
systemctl enable postfix

関連コンテンツ