summaryrefslogtreecommitdiff
path: root/test/confs/0553
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2007-02-06 12:19:27 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2007-02-06 12:19:27 +0000
commit4c590bd11647b7440bd982a8c72ebcf5c66564b0 (patch)
tree98c5d7e87d60defe5bf522c023a453919303eb98 /test/confs/0553
parent14f4a80da26686a979d4ac4c7040cb3e6350a746 (diff)
Flush SMTP before callout (unless control=no_callout_flush).
Diffstat (limited to 'test/confs/0553')
-rw-r--r--test/confs/055363
1 files changed, 63 insertions, 0 deletions
diff --git a/test/confs/0553 b/test/confs/0553
new file mode 100644
index 000000000..bdbc8df48
--- /dev/null
+++ b/test/confs/0553
@@ -0,0 +1,63 @@
+# Exim test configuration 0553
+
+DCF =
+SERVER =
+
+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/SERVER%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = check_recipient
+
+queue_only
+
+# ----- ACL -----
+
+begin acl
+
+check_recipient:
+ # Callouts accepted with a delay
+ accept senders = :
+ delay = 1s
+
+ # Non-callouts do the callout
+ accept verify = recipient/callout
+ DCF
+
+
+# ----- Routers -----
+
+begin routers
+
+t1:
+ driver = manualroute
+ route_list = * 127.0.0.1 byname
+ self = send
+ transport = smtp
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+ port = PORT_D
+ command_timeout = 2s
+
+
+# ----- Retry -----
+
+begin retry
+
+* * F,5d,10s
+
+
+# End