<quote who="DaZZa"> > I need to be able to configure it to deliver mail for a specific domain to > one mail server without doing a MX record lookup - send all mail > @foo.bar.au to 10.1.1.1 and everything else to 12.2.2.2, for example.
You need to use a transport map, and square brackets around the IP address (to indicate that you want it delivered directly to that IP without any MX lookups). For example: foo.bar.au smtp:[10.1.1.1] That will often go in /etc/postfix/transport (which you need to postmap(1) afterward), but that depends on how customised your configuration is. - Jeff -- linux.conf.au 2007: Sydney, Australia http://lca2007.linux.org.au/ "Women are too irrational to be crazed killers anyway." - Angus Lees -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
