summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2007-06-27 11:01:51 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2007-06-27 11:01:51 +0000
commit8669f003e82e39e578787d9ebc1b40f36c024332 (patch)
treebcd91f47d13080c262f73ae9da0f2f86ea212dea /test/confs
parent4d9c3e57c7decda537f4dab71b4d0880514334f6 (diff)
Add queue_only_load_latch.
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/01602
-rw-r--r--test/confs/056142
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