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