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