summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2007-03-13 15:32:47 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2007-03-13 15:32:47 +0000
commitc456d9bb38922c3e5ff511b934a1b7a282935f75 (patch)
tree1f9484eb4987a420ed0e8ca32df38faaab467ea0 /test/confs
parent79749a79c6e24778bcd27236a2846f39ccf18b2a (diff)
Add host_find_failed=ignore and host_all_ignored to manualroute.
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/055749
1 files changed, 49 insertions, 0 deletions
diff --git a/test/confs/0557 b/test/confs/0557
new file mode 100644
index 000000000..3b134db34
--- /dev/null
+++ b/test/confs/0557
@@ -0,0 +1,49 @@
+# Exim test configuration 0557
+
+X=
+Y=
+HOSTS=
+HAI=
+
+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 -----
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+ driver = manualroute
+ route_list = * HOSTS
+X host_find_failed = ignore
+Y host_all_ignored = HAI
+ no_more
+ self = send
+ transport = t1
+
+r2:
+ driver = accept
+ transport = t2
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = smtp
+
+t2:
+ driver = appendfile
+ file = /dev/null
+
+# End