Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0390
1 # Exim test configuration 0390
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 .ifdef AA
14 no_accept_8bitmime
15 .endif
16
17 .ifndef AA
18 acl_not_smtp = xxx
19 .endif
20
21 .ifdef AA BB
22 acl_smtp_auth = xxx
23 .endif
24
25 .ifdef AA
26 acl_smtp_connect = xxx
27 .elifdef BB
28 acl_smtp_connect = yyy
29 .endif
30
31 .ifndef AA
32 acl_smtp_data = xxx
33 .elifndef BB
34 acl_smtp_data = yyy
35 .endif
36
37 .ifdef AA
38 acl_smtp_etrn = xxx
39 .else
40 acl_smtp_etrn = yyy
41 .endif
42
43 .ifdef AA
44   .ifdef BB
45   acl_smtp_expn = xxx
46   .endif
47 acl_smtp_mail = xxx
48 .else
49   .ifdef BB
50   acl_smtp_expn = yyy
51   .else
52   acl_smtp_expn = zzz
53   .endif
54 acl_smtp_mail = yyy
55 .endif
56
57 # ----- Transports -----
58
59 begin transports
60
61 .ifdef AA
62 t1:
63   driver = pipe
64   batch_max = 10
65   command = /x/y
66
67 .else
68 t1:
69   driver = pipe
70   batch_max = 20
71   command = /x/y
72 .endif
73
74
75
76
77
78 # End