Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0390
CommitLineData
afda344b
PH
1# Exim test configuration 0390
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
10
11# ----- Main settings -----
12
13.ifdef AA
9cbad13b 14no_accept_8bitmime
afda344b
PH
15.endif
16
17.ifndef AA
18acl_not_smtp = xxx
19.endif
20
21.ifdef AA BB
22acl_smtp_auth = xxx
23.endif
24
25.ifdef AA
26acl_smtp_connect = xxx
27.elifdef BB
28acl_smtp_connect = yyy
29.endif
30
31.ifndef AA
32acl_smtp_data = xxx
33.elifndef BB
34acl_smtp_data = yyy
35.endif
36
37.ifdef AA
38acl_smtp_etrn = xxx
39.else
40acl_smtp_etrn = yyy
41.endif
42
43.ifdef AA
44 .ifdef BB
45 acl_smtp_expn = xxx
46 .endif
47acl_smtp_mail = xxx
48.else
49 .ifdef BB
50 acl_smtp_expn = yyy
51 .else
52 acl_smtp_expn = zzz
53 .endif
54acl_smtp_mail = yyy
55.endif
56
57# ----- Transports -----
58
59begin transports
60
61.ifdef AA
62t1:
63 driver = pipe
64 batch_max = 10
65 command = /x/y
66
67.else
68t1:
69 driver = pipe
70 batch_max = 20
71 command = /x/y
72.endif
73
74
75
76
77
78# End