summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2006-04-18 11:13:19 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2006-04-18 11:13:19 +0000
commit1cce3af8c29cfa691a3e28c79227f358e5a7b3b9 (patch)
tree1170b58efc2fdbc629d872b9df439ca772976d19 /test/confs
parent94ebd6cb6496a79172a608928cbaf88b473e59c8 (diff)
Extend ${readsocket to TCP sockets (modified John Jetmore's patch).
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/101027
1 files changed, 27 insertions, 0 deletions
diff --git a/test/confs/1010 b/test/confs/1010
new file mode 100644
index 000000000..4a4929bcf
--- /dev/null
+++ b/test/confs/1010
@@ -0,0 +1,27 @@
+# Exim test configuration 1010
+
+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
+acl_smtp_connect = connect
+trusted_users = CALLER
+
+
+# ----- ACL -----
+
+begin acl
+
+connect:
+ deny condition = ${readsocket{DIR/test-socket}{QUERY-ACL\n}{2s}{*EOL*}}
+ accept
+
+# End