Testtsuite: portability
[exim.git] / test / confs / 0572
... / ...
CommitLineData
1# Exim test configuration 0572
2
3OPT =
4
5.include DIR/aux-var/std_conf_prefix
6
7primary_hostname = myhost.test.ex
8
9# ----- Main settings -----
10
11log_selector = +outgoing_port
12
13domainlist local_domains = test.ex : *.test.ex
14hide domainlist hidden_domains = test.ex : *.test.ex
15acl_smtp_rcpt = accept
16
17
18# ----- Routers -----
19
20begin routers
21
22my_main_router:
23 driver = manualroute
24 route_list = * 127.0.0.1
25 self = send
26 transport = my_smtp
27 hide debug_print = router_name <$router_name>
28 no_more
29
30
31# ----- Transports -----
32
33begin transports
34
35my_smtp:
36 driver = smtp
37 interface = HOSTIPV4
38 port = PORT_S
39 hosts_try_fastopen = :
40 debug_print = transport_name <$transport_name>
41
42
43# End