diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-05-12 23:10:08 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-05-13 12:11:02 +0100 |
commit | 0de9945258c2e7910c35f715caf07c5e9270aa1b (patch) | |
tree | 73b3a89d44569ab1352739d49864086989c89eee /test/confs/0588 | |
parent | 64dfd5e0cec10edded40f4669a706e6564aa8e07 (diff) |
smtp transport: message_linelength_limit option. Bug 1684
Diffstat (limited to 'test/confs/0588')
-rw-r--r-- | test/confs/0588 | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/confs/0588 b/test/confs/0588 new file mode 100644 index 000000000..9a88c9c52 --- /dev/null +++ b/test/confs/0588 @@ -0,0 +1,42 @@ +# Exim test configuration 0588 + +.include DIR/aux-var/std_conf_prefix + +log_selector = +received_recipients +sender_on_delivery +millisec + +# ----- Main settings ----- + +acl_smtp_rcpt = accept + +# ----- Routers ----- + +begin routers + +rx_dump: + driver = redirect + condition = ${if !eq {$received_ip_address}{127.0.0.1}} + data = :blackhole: + +smtp_try: + driver = accept + transport = send_to_server + +# ----- Transports ----- + +begin transports + +send_to_server: + driver = smtp + hosts = HOSTIPV4 + allow_localhost + port = PORT_D + hosts_try_fastopen = : + +# ----- Retry ----- + +begin retry + +* * F,5d,10s + +# End + |