diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-15 20:24:01 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-15 22:12:03 +0100 |
commit | 87a97abbfb57cb6583c330e09446c3e8549fd32f (patch) | |
tree | fea66a9818b4f5f46061b865280d87243b50f074 /test/confs | |
parent | 280ea2d7ca4b9b1a3f5d34a243f48e652114a5f4 (diff) |
Testsuite: basic Sieve operations
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0950 | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/confs/0950 b/test/confs/0950 new file mode 100644 index 000000000..f75e2c4d4 --- /dev/null +++ b/test/confs/0950 @@ -0,0 +1,58 @@ +# Exim test configuration 0950 + +SERVER= + +.include DIR/aux-var/std_conf_prefix + +primary_hostname = myhost.test.ex +log_selector = +received_recipients +smtp_connection +millisec + + +# ----- Main settings ----- + +acl_smtp_rcpt = accept + +# ----- Routers ----- + +begin routers + +discard: + driver = redirect + domains = !test.ex + data = :blackhole: + +client: + driver = redirect + file = DIR/aux-fixed/TESTNUM.sieve + allow_filter + user = CALLER + file_transport = local_file + errors_to = "" + +# ----- Transports ----- + +begin transports + +local_file: + driver = appendfile + file = DIR/test-mail/${if eq{$address_file}{inbox} {$local_part} {$address_file}} + create_file = DIR/test-mail + delivery_date_add + envelope_to_add + return_path_add + +send_to_server: + driver = smtp + allow_localhost + hosts = 127.0.0.1 + port = PORT_D + +# ----- Retry ----- + + +begin retry + +* * F,5d,10s + + +# End |