0a11110b3dbe7a6f89b5193145c3cc7d06485c44
[exim.git] / test / confs / 5203
1 # Exim test configuration 5203
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 domainlist local_domains = test.ex
13 qualify_domain = test.ex
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 query:
21   driver = queryprogram
22   command = DIR/bin/fd -q
23   command_user = nobody
24   domains = ! +local_domains
25   transport = userx_delivery
26   no_more
27
28 # ----- Transports -----
29
30 begin transports
31
32 userx_delivery:
33   driver = appendfile
34   file = DIR/test-mail/$local_part
35   message_suffix = "$address_data\n"
36   user = CALLER
37
38
39 # End