sender verify callout
[exim.git] / test / confs / 0540
CommitLineData
26da7e20
PH
1# Exim test configuration 0540
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
26da7e20
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_rcpt
14
15queue_only
16
17
18# ----- ACLs -----
19
20begin acl
21
22check_rcpt:
23 accept verify = recipient/callout
24
25
26# ----- Routers -----
27
28begin routers
29
30r1:
31 driver = accept
32 transport = ${if match {$domain}{^yes}{t1}{t2}}
33
34
35# ----- Transports -----
36
37begin transports
38
39t1:
40 driver = smtp
41 hosts = 127.0.0.1
42 port = PORT_S
43 allow_localhost
44 helo_data = ${if eq{$domain}{yes1}{localhost}{aname}}
45
46t2:
47 driver = smtp
48 hosts = 127.0.0.1
49 port = PORT_S
50 allow_localhost
51
52# End