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