2c10380155a338ad9bd8d1a779f2b354bdcfa62b
[exim.git] / test / confs / 5402
1 # Exim test configuration 5402
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 domainlist local_domains = test.ex : *.test.ex
16
17 acl_smtp_rcpt = acl_rcpt
18
19 # ----- ACLs -------
20
21 begin acl
22
23 acl_rcpt:
24 .ifdef OPT
25     warn        control = cutthrough_delivery
26 .endif
27     accept      verify = recipient/callout=use_sender
28
29
30 # ----- Routers -----
31
32 begin routers
33
34 all:
35   driver = manualroute
36   domains = ! +local_domains
37   route_list = * 127.0.0.1
38   self = send
39   transport = smtp
40   no_more
41
42
43 # ----- Transports -----
44
45 begin transports
46
47 smtp:
48   driver = smtp
49   interface = HOSTIPV4
50   port = PORT_S
51
52
53 # End