diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2014-11-16 17:47:50 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-01-12 18:58:33 +0000 |
commit | 506900aff65e12440fdd36a71e9172fc7af5830a (patch) | |
tree | 0a273aba91fe4a72591314c8aa96781748cef8b5 /test/confs | |
parent | 9c695f6d10bd63bd44608bd01f0073fd4c7dd6e6 (diff) |
Make the multi_domain smtp transport option expanded
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0570 | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/confs/0570 b/test/confs/0570 new file mode 100644 index 000000000..4c5e5dc06 --- /dev/null +++ b/test/confs/0570 @@ -0,0 +1,45 @@ +# Exim test configuration 0570 +# multi_domain option on smtp transport + +OPTION = + +exim_path = EXIM_PATH +host_lookup_order = bydns +rfc1413_query_timeout = 0s +spool_directory = DIR/spool +log_file_path = DIR/spool/log/%slog +gecos_pattern = "" +gecos_name = CALLER_NAME + +# ----- Main settings ----- + +primary_hostname = primary.test.ex +qualify_domain = test.ex +queue_only +queue_run_in_order + + +# for server +acl_smtp_rcpt= discard + +# ----- Routers ----- + +begin routers + +all: + driver = manualroute +address_data = $domain + route_list = * 127.0.0.1 byname + self = send + transport = smtp + +# ----- Transports ----- + +begin transports + +smtp: + driver = smtp + port = PORT_D + OPTION + +# End |