0

I have to relay mail to a certain host that advertises TLS but the remote host falls over. How can I add something to my router that forces the router not to use TLS. This is my route

send_to_gateway:
    driver = manualroute
    domains = ! +relay_to_domains
    transport = remote_smtp
    route_list = * smtp.example.com
    no_more
John Oxley
  • 278
  • 1
  • 6
  • 19

1 Answers1

4

That can be done at the transport level, add this to your remote_smtp

hosts_avoid_tls = ip_of_smtp_example_com
topdog
  • 3,520
  • 17
  • 13