diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-01-17 21:14:31 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-01-17 21:14:31 +0000 |
commit | 62b7cd086e8f69c7bb1334edd2e586ed6240b134 (patch) | |
tree | 2c32f14ef0430acc13e8bfa4ae2811244808fc21 /test/confs | |
parent | 4f6ae5c314e5c3e462313f3b53c917f36b131bf4 (diff) |
Restrict line lengths in bounces. Bug 1760
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0001 | 1 | ||||
-rw-r--r-- | test/confs/0573 | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/test/confs/0001 b/test/confs/0001 index 2b53c0942..4b7ea85f6 100644 --- a/test/confs/0001 +++ b/test/confs/0001 @@ -38,6 +38,7 @@ bounce_return_body = false no_bounce_return_message return_size_limit = 12K bounce_return_size_limit = 10K +bounce_return_line_limit = 997 callout_domain_negative_expire = 1h callout_domain_positive_expire = 1d callout_negative_expire = 5h diff --git a/test/confs/0573 b/test/confs/0573 new file mode 100644 index 000000000..c3c7a6bea --- /dev/null +++ b/test/confs/0573 @@ -0,0 +1,37 @@ +# Exim test configuration 0573 + +exim_path = EXIM_PATH +hide host_lookup_order = bydns +primary_hostname = myhost.test.ex +spool_directory = DIR/spool +log_file_path = DIR/spool/log/%slog +gecos_pattern = "" +gecos_name = CALLER_NAME +tls_advertise_hosts = + +# ----- Main settings ----- + +trusted_users = CALLER +bounce_return_linesize_limit = 20 +acl_smtp_rcpt = accept + + +# ----- Routers ----- + +begin routers + +my_main_router: + driver = accept + domains = myhost.test.ex + transport = t1 + +# ----- Transports ----- + +begin transports + +t1: + driver = appendfile + file = DIR/test-mail/$local_part + user = CALLER + +# End |