diff options
Diffstat (limited to 'test/confs/0575')
-rw-r--r-- | test/confs/0575 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/test/confs/0575 b/test/confs/0575 new file mode 100644 index 000000000..89bc77fb2 --- /dev/null +++ b/test/confs/0575 @@ -0,0 +1,46 @@ +# Exim test configuration 0575 + +SERVER = + +exim_path = EXIM_PATH +keep_environment = +host_lookup_order = bydns +spool_directory = DIR/spool +log_file_path = DIR/spool/log/SERVER%slog +gecos_pattern = "" +gecos_name = CALLER_NAME +tls_advertise_hosts = + +log_selector = +received_recipients +sender_on_delivery + +acl_smtp_rcpt = rcpt +queue_only +queue_run_in_order + +#--------------- + +begin acl + +rcpt: + accept + queue = ${if eq {normal}{$local_part} {} {$local_part}} + logwrite = using queue '$queue_name' + +#--------------- + +begin routers + +all: + driver = accept + transport = dump + +#--------------- + +begin transports + +dump: + driver = pipe + command = true + +# End + |