Marcelo Machado: > Hi everybody. > > Is possible with postfix send messages to multiple smart hosts randomly > from a single domain?
This requires Postfix 3.0 and later: /etc/postfix/main.cf: default_transport = randmap:{smtp:[relayhost1], smtp:[relayhost2]} The {} and [] are required. This chooses randomly between relayhost1 and relayhost2. Wietse