diff options
Diffstat (limited to 'test/confs/0110')
-rw-r--r-- | test/confs/0110 | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/test/confs/0110 b/test/confs/0110 new file mode 100644 index 000000000..c6ff8c3ed --- /dev/null +++ b/test/confs/0110 @@ -0,0 +1,64 @@ +# Exim test configuration 0110 + +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 +acl_smtp_data = check_message + +domainlist local_domains = test.ex +qualify_domain = test.ex + + +# ----- Routers ----- + +begin routers + +deliver: + driver = accept + condition = ${if eq{$original_local_part}{second}{yes}{no}} + retry_use_local_part + transport = appendfile + +first: + driver = redirect + allow_defer + data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}} + forbid_file + forbid_pipe + one_time + retry_use_local_part + +second: + driver = redirect + allow_defer + data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}} + retry_use_local_part + + +# ----- Transports ----- + +begin transports + +appendfile: + driver = appendfile + file = DIR/test-mail/$local_part + user = CALLER + + +# ----- Retry ----- + + +begin retry + +* * F,5d,1d + + +# End |