diff options
author | Phil Pennock <pdp@exim.org> | 2012-05-13 04:09:25 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2012-05-13 04:09:25 -0400 |
commit | 12dd53c7a900b323936790a9e6fc4ae617920968 (patch) | |
tree | d32e304abf66e3151c3e1e6e31ad950684759a67 /test/confs | |
parent | 6a6084f8fd44dc65dce40536198ec5d282deb126 (diff) |
Fixed headers_only on smtp transports.
Was not sending trailing dot.
Added test case to catch this.
fixes bug 1246.
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0565 | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/confs/0565 b/test/confs/0565 new file mode 100644 index 000000000..c51fd6354 --- /dev/null +++ b/test/confs/0565 @@ -0,0 +1,50 @@ +# Exim test configuration 0565 + +exim_path = EXIM_PATH +host_lookup_order = bydns +primary_hostname = myhost.test.ex +rfc1413_query_timeout = 0s +spool_directory = DIR/spool +log_file_path = DIR/spool/log/%slog +gecos_pattern = "" +gecos_name = CALLER_NAME + +# ----- Main settings ----- + +acl_smtp_rcpt = accept + + +# ----- Routers ----- + +begin routers + +hdronly_dnslookup: + domains = test.ex + driver = manualroute + route_data = 127.0.0.1 + self = send + transport = remote_smtp_hdrs + +dnslookup: + driver = manualroute + route_data = 127.0.0.1 + self = send + transport = remote_smtp + + +# ----- Transports ----- + +begin transports + +remote_smtp: + driver = smtp + port = PORT_S + allow_localhost + +remote_smtp_hdrs: + driver = smtp + port = PORT_S + allow_localhost + headers_only + +# End |