summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2007-02-06 14:19:00 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2007-02-06 14:19:00 +0000
commit09945f1e758a9c9268423e53d2cee2c6c631f465 (patch)
tree950b9254a7d472d52a84ff3fb938ac78a15056c2 /test/confs
parent4c590bd11647b7440bd982a8c72ebcf5c66564b0 (diff)
Retry items for address errors that included the sender address (a
feature added to Exim 4.64) were not being deleted if an address was subsequently successfully delivered.
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/055440
1 files changed, 40 insertions, 0 deletions
diff --git a/test/confs/0554 b/test/confs/0554
new file mode 100644
index 000000000..edeb977fa
--- /dev/null
+++ b/test/confs/0554
@@ -0,0 +1,40 @@
+# Exim test configuration 0554
+
+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 = * 127.0.0.1
+ transport = smtp
+ self = send
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+ port = PORT_S
+
+# ----- Retry -----
+
+begin retry
+
+* * F,10s,1s
+
+# End