git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
OpenSSL: Fix tls_eccurve on earlier versions than 3.0.0. Bug 2954
[exim.git]
/
test
/
confs
/
0390
1
# Exim test configuration 0390
2
3
.include DIR/aux-var/std_conf_prefix
4
5
primary_hostname = myhost.test.ex
6
7
# ----- Main settings -----
8
9
.ifdef AA
10
no_accept_8bitmime
11
.endif
12
13
.ifndef AA
14
acl_not_smtp = xxx
15
.endif
16
17
.ifdef AA BB
18
acl_smtp_auth = xxx
19
.endif
20
21
.ifdef AA
22
acl_smtp_connect = xxx
23
.elifdef BB
24
acl_smtp_connect = yyy
25
.endif
26
27
.ifndef AA
28
acl_smtp_data = xxx
29
.elifndef BB
30
acl_smtp_data = yyy
31
.endif
32
33
.ifdef AA
34
acl_smtp_etrn = xxx
35
.else
36
acl_smtp_etrn = yyy
37
.endif
38
39
.ifdef AA
40
.ifdef BB
41
acl_smtp_expn = xxx
42
.endif
43
acl_smtp_mail = xxx
44
.else
45
.ifdef BB
46
acl_smtp_expn = yyy
47
.else
48
acl_smtp_expn = zzz
49
.endif
50
acl_smtp_mail = yyy
51
.endif
52
53
# ----- Transports -----
54
55
begin transports
56
57
.ifdef AA
58
t1:
59
driver = pipe
60
batch_max = 10
61
command = /x/y
62
63
.else
64
t1:
65
driver = pipe
66
batch_max = 20
67
command = /x/y
68
.endif
69
70
71
72
73
74
# End