diff options
Diffstat (limited to 'test/confs/0130')
-rw-r--r-- | test/confs/0130 | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/test/confs/0130 b/test/confs/0130 new file mode 100644 index 000000000..3a81fe2dc --- /dev/null +++ b/test/confs/0130 @@ -0,0 +1,61 @@ +# Exim test configuration 0130 + +exim_path = EXIM_PATH +host_lookup_order = bydns +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_rcpt = check_recipient + +domainlist local_domains = test.ex +hostlist relay_hosts = V4NET.0.0.0 +qualify_domain = test.ex + + +# ----- ACL ----- + +begin acl + +check_recipient: + deny message = unrouteable address + !verify = recipient + accept domains = +local_domains + accept hosts = +relay_hosts + deny message = relay not permitted + + +# ----- Routers ----- + +begin routers + +islocal: + driver = manualroute + domains = ! +local_domains + route_list = "* localhost byname" + transport = smtp + no_more + + +# ----- Transports ----- + +begin transports + +smtp: + driver = smtp + + +# ----- Retry ----- + + +begin retry + +* * F,1d,15m + + +# End |