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