CentOS上のpostfixにおける転送設定がどのファイルに記載されているか知りたいです
解決したいこと
メールの転送設定がどのファイルに記載されているか知りたいです。
CentOS6.5でpostfixを使っています。
メールが転送されたログの記載
[root@mail1 ~]# grep "hogenews@" /var/log/maillog
Jul 8 06:00:57 mail1 postfix/smtp[4365]: 3E095F5C00A7: to=<hogenews@hoge.fuga.jp>, relay=localhost[127.0.0.1]:10025, delay=0.15, delays=0.01/0/0.04/0.09, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 4BFBEF5C00AA)
Jul 8 06:00:57 mail1 postfix/smtp[4373]: 4BFBEF5C00AA: to=<hogenews@ml.hoge.fuga.jp>, orig_to=<hogenews@hoge.fuga.jp>, relay=ml.hoge.fuga.jp[134.160.144.30]:25, delay=0.13, delays=0.09/0/0.01/0.03, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 6828590880)
[root@mail1 ~]#
このログを見て、
hogenews@hoge.fuga.jp宛のメールがhogenews@ml.hoge.fuga.jp宛に転送されていると考え、どのファイルで転送設定がなされているかを知りたいです。
自分で試したこと
grep コマンドと postmap -q コマンドで関係ありそうなファイルを確認しましたが、何れもヒットしませんでした。
[root@mail1 ~]# grep "hogenews" /etc/alias
[root@mail1 ~]# grep "hogenews" /etc/postfix/main.cf
[root@mail1 ~]# grep "hogenews" /etc/postfix/master.cf
[root@mail1 ~]# grep "hogenews" /etc/postfix/mlaliases
[root@mail1 ~]# grep "hogenews" /etc/postfix/transport
[root@mail1 ~]# grep "hogenews" /etc/postfix/virtual
[root@mail1 ~]# grep "hogenews" /etc/postfix/virtual_alias
[root@mail1 ~]# grep "hogenews" /etc/postfix/virtual_mailbox_maps.cf
[root@mail1 ~]# grep "hogenews" /etc/postfix/virtual_ml
[root@mail1 ~]# grep "hogenews" /etc/postfix/virtual_ml.cf
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/virtual_alias
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/virtual_ml
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/mlaliases
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/pop-before-smtp-mail1
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/pop-before-smtp-mail2
[root@mail1 ~]# postmap -q hogenews@hoge.fuga.jp hash:/etc/postfix/pop-before-smtp
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/virtual_alias
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/virtual_ml
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/mlaliases
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/pop-before-smtp
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/pop-before-smtp-mail1
[root@mail1 ~]# postmap -q hogenews@ml.hoge.fuga.jp hash:/etc/postfix/pop-before-smtp-mail2
[root@mail1 ~]#
0