i have decided to have a separate mail server for my app. When i use php to send email, postfix sends successfully to other domains(gmail.com etc), but uses local relay for the addresses hosted on my mail server. The MX record works fine. All i need is to get the local addresses out. I dont know where to start. Please, help.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

I believe you're looking for the relayhost configuration option. In your /etc/postfix/main.cf file, enter a line containing relayhost = mail.foo.com. This should make all outgoing mail go through mail.foo.com.


--Christopher Karel

link|improve this answer
feedback
postconf -e "local_transport = error:No local mail delivery"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.