diff options
author | Matthias Kurz <m.kurz@irregular.at> | 2018-09-16 21:20:44 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-09-16 21:33:40 +0100 |
commit | 25beaee4c28ed29a37078e6c68fa3d18ced6ec8c (patch) | |
tree | ef6468a2df430a87f7c7fce028fb593fee44a9fb /test/confs | |
parent | 13c7874e0a41d696ecf55774d62ea7d11778414f (diff) |
Fix filter noerror command. Bug 2318
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0616 | 40 | ||||
-rw-r--r-- | test/confs/0617 | 40 |
2 files changed, 80 insertions, 0 deletions
diff --git a/test/confs/0616 b/test/confs/0616 new file mode 100644 index 000000000..e710a4bc5 --- /dev/null +++ b/test/confs/0616 @@ -0,0 +1,40 @@ +# Exim test configuration 0616 + +.include DIR/aux-var/std_conf_prefix + +# ----- Routers ----- + +begin routers + +route_userx: + driver = redirect + local_parts = userx + errors_to = dump@domain1 + allow_filter + file = DIR/aux-fixed/TESTNUM.filter + user = EXIMUSER + no_more + +dump_bounces: + driver = redirect + local_parts = dump + data = :blackhole: + no_more + +route_smtp: + driver = manualroute + route_list = * 127.0.0.1 byname + errors_to = dump@domain1 + self = send + transport = smtp + no_more + +# ----- Transports ----- + +begin transports + +smtp: + driver = smtp + port = PORT_S + +# End diff --git a/test/confs/0617 b/test/confs/0617 new file mode 100644 index 000000000..cf5251774 --- /dev/null +++ b/test/confs/0617 @@ -0,0 +1,40 @@ +# Exim test configuration 0617 + +.include DIR/aux-var/std_conf_prefix + +# ----- Routers ----- + +begin routers + +route_userx: + driver = redirect + local_parts = userx + errors_to = dump@domain1 + allow_filter + file = DIR/aux-fixed/TESTNUM.filter + user = EXIMUSER + no_more + +dump_bounces: + driver = redirect + local_parts = dump + data = :blackhole: + no_more + +route_smtp: + driver = manualroute + route_list = * 127.0.0.1 byname + errors_to = dump@domain1 + self = send + transport = smtp + no_more + +# ----- Transports ----- + +begin transports + +smtp: + driver = smtp + port = PORT_S + +# End |