複数メールアドレスを使用していて複数のメールアカウントへ振り分けたい場合、Postfix では、/etc/postfix/virtual を編集する。
hoge.tld と hoge2.tld というドメインを使用していて、hoge.tld を mailaccount1 へ、hoge2.tld を mailaccount2 へ振り分けたいとする。
/etc/postfix/virtual を
vi /etc/postfix/virtual
で開き、下の項目を追加する。
hoge.tld anything info@hoge.tld mailaccount1 webmaster@hoge.tld mailaccount1 hogemaster@hoge.tld mailaccount1 hoge2.tld anything info@hoge2.tld mailaccount2 webmaster@hoge2.tld mailaccount2
mailaccount1 mailaccount2 は、Outlookなどでメールを受信するときに使うメールアカウント名。
/etc/postfix/virtual を変更したら、
postmap /etc/postfix/virtual
のコマンドを実行。
メールアカウント名は、Linuxにユーザー登録しておく必要がある。
useradd -p 'パスワード' mailaccount1 useradd -p 'パスワード' mailaccount2