SOCKS: as a client, talk SMTP via a socks5 proxy. Bug 1590
[exim.git] / test / confs / 0306
CommitLineData
afda344b
PH
1# Exim test configuration 0306
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = rcpt
14trusted_users = CALLER
15
16
17# ------ ACLs ------
18
19begin acl
20
21rcpt:
22 accept endpass
23 verify = recipient
24
25
26# ------ Routers ------
27
28begin routers
29
30r1:
31 driver = redirect
32 domains = lists.test.ex
33 local_part_suffix = -request
34 file = DIR/aux-fixed/TESTNUM/$local_part$local_part_suffix
35
36r2:
37 driver = redirect
38 domains = lists.test.ex
39 senders = ${if exists {DIR/aux-fixed/TESTNUM/$local_part}\
40 {lsearch;DIR/aux-fixed/TESTNUM/$local_part}{*}}
41 file = DIR/aux-fixed/TESTNUM/$local_part
42 forbid_pipe
43 forbid_file
44 one_time
45 skip_syntax_errors
46 errors_to = $local_part-request@lists.test.ex
47 syntax_errors_to = $local_part-request@lists.test.ex
48
49r3:
50 driver = redirect
51 domains = lists.test.ex
52 allow_fail
53 data = :fail: $local_part@lists.test.ex is a closed mailing list
54
55r4:
56 driver = accept
57 senders = :
58 transport = t1
59
60r5:
61 driver = accept
62 transport = t2
63
64
65# ------ Transports ------
66
67begin transports
68
69t1:
70 driver = appendfile
71 file = DIR/test-mail/$local_part
72 user = CALLER
73
74t2:
75 driver = appendfile
76 file = /dev/null
77 user = CALLER
78
79# End