SLES 11 SP4
Sponsored Link

Postfix インストール/設定2015/12/06

 
Postfix をインストールして SMTPサーバーを構築します。 SMTP は 25/TCP を使用します。
[1] Postfix をインストールします。
mail:~ #
zypper -n install postfix
[2] メール不正中継防止に SASL機能を利用し、送信にも認証を要求するように Postfix を設定します。
# 不要ファイルはリネームして無効化

mail:~ #
mv /etc/sysconfig/postfix /etc/sysconfig/postfix.org
mail:~ #
vi /etc/postfix/main.cf
# 91行目:コメント解除しドメイン名指定

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

myorigin = $mydomain
# 268行目:コメント解除し自ネットワーク追記

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

home_mailbox = Maildir/
# 678行目:ホスト名指定

myhostname =
mail.srv.world
# 681行目:変更

inet_interfaces =
all
# 683行目:追記

mydestination = $myhostname, localhost.$mydomain
, localhost, $mydomain
# 697行目:変更

smtpd_recipient_restrictions =
permit_mynetworks, permit_auth_destination, permit_sasl_authenticated, reject

# 699行目:変更 & 追記

smtpd_sasl_auth_enable =
yes

smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
# 704,705行目

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

mailbox_size_limit =
1073741824

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

message_size_limit =
10485760
mail:~ #
vi /etc/sasl2/smtpd.conf
# 以下のように設定されていることを確認

pwcheck_method: saslauthd
mech_list: plain login
mail:~ #
/etc/init.d/postfix start

mail:~ #
/etc/init.d/saslauthd start

mail:~ #
chkconfig postfix on

mail:~ #
chkconfig saslauthd on

関連コンテンツ