New $queue_name variable
[exim.git] / test / confs / 0029
CommitLineData
afda344b
PH
1# Exim test configuration 0029
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = check_rcpt
16
17
18# ------ ACL ------
19
20begin acl
21
22check_rcpt:
23 require verify = sender
24 verify = sender=\
25 ${if eq {${domain:$sender_address}}{test.ex}\
26 {${local_part:$sender_address}@abc.test.ex}\
27 {$sender_address}}
28 accept
29
30
31# ------ Routers ------
32
33begin routers
34
35r1:
36 driver = accept
37 domains = test.ex : xyz.test.ex
38 transport = t1
39
40r2:
41 driver = accept
42 domains = abc.test.ex
43 local_parts = ok
44 transport = t1
45
46
47# ------ Transports ------
48
49begin transports
50
51t1:
52 driver = appendfile
53 file = /dev/null
54
55# End