Hello,
we have been using EFA for quite a while now, serving more than 5000 emails at the moment and we are very happy with it. However, i do feel there is either one feature missing or we simply missed it.
We have multiple servers with multiple outbound IP's which run mailservers. However, EFA only serves outgoing mail through one IP address. This is very bad since if one of our mailservers gets hacked and sends out large amounts of spam and EFA by some reason lets it through the only IP address gets blocked by spamlists.
We would like to set up EFA so we can specify which mailserver IP should be routed through which EFA IP so we can set one IP per mailserver and ofcourse set SPF records properly.
So lets say:
1.1.1.1 mailserver through 2.2.2.2 on EFA
3.3.3.3. mailserver throguh 4.4.4.4. on EFA
That way if mailserver 1.1.1.1. gets hacked and sends out spam through EFA 2.2.2.2. and 2.2.2.2. gets blacklisted, mail from 3.3.3.3. will still go through 4.4.4.4. unaffected.
Is this possibe with EFA and how?
Thanks
Setting multiple outbound IPs / specific
- shawniverson
- Posts: 3783
- Joined: 13 Jan 2014 23:30
- Location: Indianapolis, Indiana USA
- Contact:
Re: Setting multiple outbound IPs / specific
Very simple with multiple EFA appliances with different IPs.
With a single EFA, I think you would need to set up multiple interfaces and instances of postfix with mail transport rules that route the mail out of the correct interface. This takes some work to accomplish and involves editing transport maps and master configuration. Definitely an advanced postfix topic.
First option, easy, second option, more difficult but everything stays unified.

With a single EFA, I think you would need to set up multiple interfaces and instances of postfix with mail transport rules that route the mail out of the correct interface. This takes some work to accomplish and involves editing transport maps and master configuration. Definitely an advanced postfix topic.
First option, easy, second option, more difficult but everything stays unified.
Re: Setting multiple outbound IPs / specific
Would you (or anyone else) be interested in making these changes for us in EFA as a quick project? For a fee ofcourse.
-
- Posts: 1
- Joined: 18 Jan 2016 10:01
- Contact:
Re: Setting multiple outbound IPs / specific
We are able to configure outbound email to load balance on multiple ip's
Please contact us via https://eXtremeSHOK.com
Please contact us via https://eXtremeSHOK.com
Re: Setting multiple outbound IPs / specific
we do this now.. we simply use FQDN instead of IP address for outbound and then use either DNS round robinning or a load balancer..
Steve
Steve
Re: Setting multiple outbound IPs / specific
Would you mind sharing some more details about your solution please?Steve9R wrote:we do this now.. we simply use FQDN instead of IP address for outbound and then use either DNS round robinning or a load balancer..
Steve
Re: Setting multiple outbound IPs / specific
Sure..ovizii wrote:Would you mind sharing some more details about your solution please?Steve9R wrote:we do this now.. we simply use FQDN instead of IP address for outbound and then use either DNS round robinning or a load balancer..
Steve
DNS roundrobining- the poor mans loadbalancer.. .. https://en.wikipedia.org/wiki/Round-robin_DNS
mail IN A IP.of.1st.EFAserver
mail IN A IP.of.2nd.EFAserver
mail IN A IP.of.3rd.EFAserver
etc etc
Then each time a DNS request is made it goes to the next server in the list.. same goes with outbound..
outbound IN A IP of 1st outbound server
outbound IN A IP of 2nd outbound server .. etc etc..
Steve