More new test committing.
[exim.git] / test / confs / 0372
CommitLineData
afda344b
PH
1# Exim test configuration 0372
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = a1
16acl_smtp_connect = a2
17
18system_filter = DIR/aux-var/TESTNUM.F
19trusted_users = CALLER
20
21
22# ----- ACL -----
23
24begin acl
25
26a1:
27 accept local_parts = x
28 set acl_m0 = value for m0 is local_part: $local_part
29 set acl_m5 = value for m5 contains newline\nthere!
30 set acl_m9 = value for m9 is domain: $domain
31
32 accept local_parts = a
33 set acl_m0 = value for m0 is local_part: $local_part
34 set acl_m9 = value for m9 is domain: $domain
35
36a2:
37 accept set acl_c0 = value for c0 is ip: $sender_host_address
38 set acl_c5 = c5 has a newline\nthere!
39 set acl_c9 = value for c9 is name: $sender_host_name
40
41
42# ----- Routers -----
43
44begin routers
45
46r1:
47 driver = accept
48 debug_print = acl_c0="$acl_c0"\nacl_c1="$acl_c1"\nacl_c2="$acl_c2"\n\
49 acl_c3="$acl_c3"\nacl_c4="$acl_c4"\nacl_c5="$acl_c5"\n\
50 acl_c6="$acl_c6"\nacl_c7="$acl_c7"\nacl_c8="$acl_c8"\n\
51 acl_c9="$acl_c9"\nacl_m0="$acl_m0"\nacl_m1="$acl_m1"\n\
52 acl_m2="$acl_m2"\nacl_m3="$acl_m3"\nacl_m4="$acl_m4"\n\
53 acl_m5="$acl_m5"\nacl_m6="$acl_m6"\nacl_m7="$acl_m7"\n\
54 acl_m8="$acl_m8"\nacl_m9="$acl_m9"
55 transport = t1
56
57
58# ----- Transports -----
59
60begin transports
61
62t1:
63 driver = appendfile
64 file = /dev/null
65 user = CALLER
66
67
68# End