PRDR: Introduce $prdr_requested flag variable. Bug 1712
[exim.git] / test / confs / 0544
CommitLineData
1bf43b78
PH
1# Exim test configuration 0544
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
1bf43b78
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
3cf91d6d 12domainlist dlist = $domain
1bf43b78
PH
13
14acl_smtp_helo = check_helo
15acl_smtp_mail = check_mail
16acl_smtp_rcpt = check_rcpt
3cf91d6d 17queue_smtp_domains = $domain
1bf43b78
PH
18qualify_domain = test.ex
19
20
21# ----- ACLs -----
22
23begin acl
24
25check_helo:
26 warn
27 condition = ${if match_domain {$sender_helo_name}{+dlist}}
28 accept
29
30
31check_mail:
32 warn hosts = domain=$domain/sender_domain=$sender_address_domain
33 accept
34
35check_rcpt:
36 warn domains = domain=$domain/sender_domain=$sender_address_domain
37 warn sender_domains = domain=$domain/sender_domain=$sender_address_domain
38 accept
39
40
41# ----- Routers -----
42
43begin routers
44
45smarthost:
46 driver = accept
47 transport = smtp
48
49
50# ----- Transports -----
51
52begin transports
53
54smtp:
55 driver = smtp
56 hosts = 127.0.0.1
57 allow_localhost
58 port = PORT_S
59
60
61# ----- Retry -----
62
63
64begin retry
65
66* * F,5d,15m
67
68
69# End