Testsuite: fakens/inet_pton on solaris again
[exim.git] / test / confs / 0501
CommitLineData
afda344b
PH
1# Exim test configuration 0501
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15
16acl_smtp_rcpt = check_rcpt
17
18trusted_users = CALLER
19
20# ------ ACLs ------
21
22begin acl
23
24check_rcpt:
25 warn logwrite = 1: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
26 control = caseful_local_part
27 logwrite = 2: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
28 control = caselower_local_part
29 logwrite = 3: $local_part ${if match{$local_part}{[A-Z]}{yes}{no}}
30 accept
31
32# End