Mike Cardwell wrote: > Is it possible to get a single instance of exim listening on two
> different ports on two different ips? Eg:
>
> 111.111.111.111 port 25
> 222.222.222.222 port 465
>
> I can get both ip's listening on both ports using the config below, but
> that's not what I want:
>
> local_interfaces = 111.111.111.111 : 222.222.222.222
> daemon_smtp_ports = 25 : 465
>
> Also, is it possible to have TLS on connect on 111.111.111.111:2000 but
> not 222.222.222.222:2000 ? If I use tls_on_connect_ports I can only
> specify port 2000, so all IPs have to use it.