diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-04-20 14:11:29 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-04-20 14:11:29 +0000 |
commit | f7fd3850601c141d3a8d5b9cc6e6403f623923ae (patch) | |
tree | 692317e12f7df5ef5b00e2bf3d45c8bf08d3c659 /test/confs | |
parent | dd16e114db70592df34e8b9ee4a05dae69aaba43 (diff) |
Make batch delivery work for files and pipes set up by redirection.
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0534 | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/confs/0534 b/test/confs/0534 new file mode 100644 index 000000000..5e83476fb --- /dev/null +++ b/test/confs/0534 @@ -0,0 +1,50 @@ +# Exim test configuration 0534 + +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 ----- + + + +# ----- Routers ----- + +begin routers + +r1: + driver = redirect + local_part_prefix = file- + local_part_suffix = =* + data = DIR/test-mail/${substr_1:$local_part_suffix} + file_transport = t1 + +r2: + driver = redirect + local_part_prefix = pipe- + local_part_suffix = =* + data = |${substr_1:$local_part_suffix} + pipe_transport = t2 + + +# ----- Transports ----- + +begin transports + +t1: + driver = appendfile + envelope_to_add + user = CALLER + batch_max = 10 + +t2: + driver = pipe + user = CALLER + batch_max = 10 + +# End |