X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/4bb69ec417e3c679b85641d232cb29a64f6a77ee..b217e871882835c14d7bda8e35c0d7e888a40349:/test/confs/0639 diff --git a/test/confs/0639 b/test/confs/0639 index fb3219734..7d061dd0d 100644 --- a/test/confs/0639 +++ b/test/confs/0639 @@ -48,19 +48,37 @@ plain: ${if and {{eq{$auth2}{userx}}{eq{$auth3}{secret}}}{yes}{no}}" server_set_id = $auth2 + client_send = ^userx^secret + # -------- routers --- begin routers -client: +to_customer: driver = manualroute + condition = ${if eq {$atrn_mode}{P}} route_data = <;$atrn_host self = send - transport = client_smtp + transport = call_customer + +to_provider: + driver = manualroute + condition = ${if eq {$atrn_mode}{C}} + route_data = <;$domain + self = send + transport = call_provider + +# -------- transports --- begin transports -client_smtp: +call_customer: driver = smtp +call_provider: + driver = smtp + port = PORT_D2 + hosts_require_auth = * + command_timeout = 10m + # End