diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-02-20 15:58:02 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-02-20 15:58:02 +0000 |
commit | a14e56367e5ef12d43aee57e3f8565be8d468845 (patch) | |
tree | 710fe75066b5479f036ac005cb77f14fa46c17e1 /test/confs | |
parent | ca86f471bf30f4630e96e24f6c13de269f380f41 (diff) |
Add extra sync checks after ACLs that might delay.
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0556 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/confs/0556 b/test/confs/0556 new file mode 100644 index 000000000..7ed0105ed --- /dev/null +++ b/test/confs/0556 @@ -0,0 +1,39 @@ +# Exim test configuration 0556 + +ACL_MAIL=accept +ACL_RCPT=accept +ACL_PREDATA=accept +PAH=127.0.0.1 + +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 ----- + +acl_smtp_predata = ACL_PREDATA +acl_smtp_mail = ACL_MAIL +acl_smtp_rcpt = ACL_RCPT +pipelining_advertise_hosts = PAH + +queue_only + +# ----- ACL ----- + +begin ACL + +check_predata: + accept delay = 2s + +check_mail: + accept delay = 2s + +check_rcpt: + accept delay = 2s + +# End |