Another small test tweak.
[exim.git] / test / confs / 9001
1 # Exim test configuration 9001
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
15 # ----- Routers -----
16
17 begin routers
18
19 r0:
20 driver = accept
21 senders = :
22 transport = t1
23
24 r1:
25 driver = redirect
26 data = ${lookup ldap user="cn=xxx,o=yyy,c=UK" pass="secret" \
27 ldap:///o=zzz,c=UK,?sn?sub?(cn=foo)}}
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 t1:
35 driver = appendfile
36 file = DIR/test-mail/$local_part
37 user = CALLER
38
39
40 # End