postconf -n results please
along with your log, you need to post postconf -n results please.
My best guess is that your machine is a mail server for its entire domain but you have not listed $mydomain in /etc/postfix/main.cf.
You probably have the default setting.
/etc/postfix/main.cf:
mydestination = $myhostname localhost.$mydomain localhost
but you need your setting to be fore a domain-wide mail server.
/etc/postfix/main.cf:
mydestination = $myhostname localhost.$mydomain localhost $mydomain
|