basic & pipelined transmit testcases
[exim.git] / test / confs / 0900
index 4a014cee1139092464bd4ac765dd0aea4afbacf8..cdc6d84ebdba987fb2a3b02e279a2de581f8e698 100644 (file)
@@ -1,4 +1,5 @@
 # Exim test configuration 0900
+SERVER=
 
 exim_path = EXIM_PATH
 keep_environment =
@@ -17,8 +18,6 @@ domainlist local_domains = @
 
 acl_smtp_rcpt = check_recipient
 acl_smtp_data = check_data
-message_id_header_domain = ${if eq{0}{0}{some.domain}}
-message_id_header_text = ${if eq{0}{0}{a@b[c]}}
 trusted_users = CALLER
 queue_only
 smtp_receive_timeout = 2s
@@ -42,6 +41,12 @@ check_data:
 
 begin routers
 
+to_server:
+  driver = accept
+  condition =  ${if !eq {SERVER}{server}}
+  transport =  remote_smtp
+  errors_to =  ""
+
 fail_remote_domains:
   driver = redirect
   domains = ! +local_domains
@@ -68,4 +73,16 @@ local_delivery:
                  X-received-count: $received_count"
   return_path_add
 
+remote_smtp:
+  driver = smtp
+  hosts =      127.0.0.1
+  port =       PORT_S
+  allow_localhost
+  command_timeout = 2s
+  final_timeout = 2s
+
+# ----- Retry -----
+
+begin retry
+* * F,30m,5m;
 # End