続いてPostfixの設定
CentOSに入っているPostfix(mail_version = 2.3.3)を利用
- MTAの切替え
- Postfix設定ファイル main.cf編集
- main.cfの再読み込み
通常はsendmailを使用するように設定されているので、Postfixに設定変更
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[root@centos mailman]# update-alternatives --config mta 2 プログラムがあり 'mta' を提供します。 選択 コマンド ----------------------------------------------- *+ 1 /usr/sbin/sendmail.sendmail 2 /usr/sbin/sendmail.postfix Enter を押して現在の選択 [+] を保持するか、選択番号を入力します:2 [root@centos mailman]# update-alternatives --config mta 2 プログラムがあり 'mta' を提供します。 選択 コマンド ----------------------------------------------- * 1 /usr/sbin/sendmail.sendmail + 2 /usr/sbin/sendmail.postfix Enter を押して現在の選択 [+] を保持するか、選択番号を入力します: |
1 |
[root@centos src]# vi /etc/postfix/main.cf |
1 2 3 4 5 6 7 8 9 10 |
myhostname = centos.rootlinks.net mydomain = rootlinks.net inet_interfaces = all mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain unknown_local_recipient_reject_code = 550 mynetworks = IP/subnet, 127.0.0.0/8 alias_maps = hash:/etc/aliases, hash:/usr/local/mailman/data/aliases owner_request_special = no recipient_delimiter = + home_mailbox = Maildir/ |
1 2 3 |
[root@centos mailman]# /etc/init.d/postfix check [root@centos mailman]# /etc/init.d/postfix reload [ OK ] postfix を再読み込み中: [ OK ] |