diff options
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0160 | 2 | ||||
-rw-r--r-- | test/confs/0561 | 42 |
2 files changed, 43 insertions, 1 deletions
diff --git a/test/confs/0160 b/test/confs/0160 index 637e642a9..48d493c76 100644 --- a/test/confs/0160 +++ b/test/confs/0160 @@ -43,7 +43,7 @@ smtp: begin retry -* * F,1s,1s +* * F,2s,1s # End diff --git a/test/confs/0561 b/test/confs/0561 new file mode 100644 index 000000000..ecdbf9504 --- /dev/null +++ b/test/confs/0561 @@ -0,0 +1,42 @@ +# Exim test configuration 0561 + +QOLL=true + +exim_path = EXIM_PATH +host_lookup_order = bydns +primary_hostname = myhost.test.ex +rfc1413_query_timeout = 0s +spool_directory = DIR/spool +log_file_path = DIR/spool/log/%slog +gecos_pattern = "" +gecos_name = CALLER_NAME + +# ----- Main settings ----- + +acl_smtp_rcpt = accept + +queue_only_load = 0.001 +queue_only_load_latch = QOLL +queue_run_in_order + + +# ----- Routers ----- + +begin routers + +r1: + driver = manualroute + route_data = 127.0.0.1 + self = send + transport = t1 + + +# ----- Transports ----- + +begin transports + +t1: + driver = smtp + port = PORT_D + +# End |