summaryrefslogtreecommitdiff
path: root/test/confs/0531
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2006-03-01 16:07:16 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2006-03-01 16:07:16 +0000
commit75def545d117dbbceecc720827c6042144512aa0 (patch)
tree36292842b59a65fbd30d252134c3cecf4f7cf496 /test/confs/0531
parentf90d018c03bbf7d8ac2cd50d33b47bdd7a4bcdf1 (diff)
Bugs in temporary error message handling for smtp in lmtp mode.
Diffstat (limited to 'test/confs/0531')
-rw-r--r--test/confs/053158
1 files changed, 58 insertions, 0 deletions
diff --git a/test/confs/0531 b/test/confs/0531
new file mode 100644
index 000000000..56f679ed8
--- /dev/null
+++ b/test/confs/0531
@@ -0,0 +1,58 @@
+# Exim test configuration 0531
+
+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 -----
+
+domainlist local_domains = test.ex : *.test.ex
+log_selector = +sender_on_delivery
+
+
+# ----- Routers -----
+
+begin routers
+
+bounces:
+ driver = accept
+ senders = :
+ transport = t1
+
+smartuser:
+ driver = accept
+ retry_use_local_part
+ transport = lmtp
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = appendfile
+ file = DIR/test-mail/$local_part
+ user = CALLER
+
+lmtp:
+ driver = smtp
+ allow_localhost
+ hosts = 127.0.0.1
+ port = PORT_S
+ protocol = LMTP
+
+
+# ----- Retry -----
+
+
+begin retry
+
+retry.test.ex * F,1s,1s
+
+
+# End