diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-01-22 15:17:04 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-01-22 15:17:04 +0000 |
commit | 8852dff2f3aa2b5a31505febb195d1c6fed620f1 (patch) | |
tree | 1b6160b3158e2f303e3e076f4ff550e040aaf9fb /test/confs/0548 | |
parent | e2f7a0d23192ebd03b783db210dd1ff4bf774bba (diff) |
Additional tests - didn't show any problems.
Diffstat (limited to 'test/confs/0548')
-rw-r--r-- | test/confs/0548 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/test/confs/0548 b/test/confs/0548 new file mode 100644 index 000000000..18ef2abdd --- /dev/null +++ b/test/confs/0548 @@ -0,0 +1,60 @@ +# Exim test configuration 0548 + +SERVER= + +exim_path = EXIM_PATH +host_lookup_order = bydns +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_connect = acl_connect +acl_smtp_rcpt = acl_rcpt +qualify_domain = test.ex + + +# ----- ACLs ----- + +begin acls + +acl_connect: + defer message = host deferred + hosts = thishost.test.ex + accept + +acl_rcpt: + defer message = Recipient deferred + + +# ----- Routers ----- + +begin routers + +smarthost: + driver = accept + transport = smtp + + +# ----- Transports ----- + +begin transports + +smtp: + driver = smtp + hosts = HOSTIPV4 : thishost.test.ex + allow_localhost + port = PORT_D + + +# ----- Retry ----- + +begin retry + +thishost.test.ex * F,15s,1s +* * F,1s,1s; F,1s,5s + +# End |