Add $router_name and $transport_name variables. Bug 308.
[exim.git] / test / confs / 0143
index c853c80723a388e04ac7240f1aa3aafde3f7ea54..08eb3f66a556dccaa58cf91c263b92fc0f9fd702 100644 (file)
@@ -18,12 +18,12 @@ domainlist local_domains = test.ex : *.test.ex
 
 begin routers
 
-all:
+my_main_router:
   driver = manualroute
   domains = ! +local_domains
   route_list = * 127.0.0.1
   self = send
-  transport = smtp
+  transport = my_smtp
   no_more
 
 
@@ -31,10 +31,11 @@ all:
 
 begin transports
 
-smtp:
+my_smtp:
   driver = smtp
   interface = HOSTIPV4
   port = PORT_S
+  debug_print = transport_name <$transport_name> from router <$router_name>
 
 
 # End