You could do the following. First, you would need to create a file /etc/staticroutes and then input the domains with the IPs they would be routing to off the server:
Code:
domain.com1: IP#1
domain.com2: IP#2
Replace the domain name and the IP with the correct domain name and IP for each one.
Alternatively, you could put into that file:
Code:
domain.com1: mail.location1.com (the MX record pointing to the off site server)
domain.com2: mail.location2.com (the MX record pointing to the off site server)
Again, replace the domain name and the mail server's name with the correct domain name and mail server name for each one.
Next, you would need to go to WHM > Exim Configuration Editor > Advanced Editor and locate the routers area there, then put this into that routers box:
Code:
static_route:
driver = manualroute
transport = remote_smtp
route_data = ${lookup{$domain}lsearch{/etc/staticroutes}}
Thanks.