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