testsuite: abstract out common conf settings
[exim.git] / test / confs / 0501
CommitLineData
afda344b
PH
1# Exim test configuration 0501
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex
10
11acl_smtp_rcpt = check_rcpt
12
13trusted_users = CALLER
14
15# ------ ACLs ------
16
17begin acl
18
19check_rcpt:
20 warn logwrite = 1: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
21 control = caseful_local_part
22 logwrite = 2: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
23 control = caselower_local_part
24 logwrite = 3: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
25 accept
26
27# End