SOCKS: as a client, talk SMTP via a socks5 proxy. Bug 1590
[exim.git] / test / confs / 0432
CommitLineData
afda344b
PH
1# Exim test configuration 0432
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
13# This isn't relevant - it's just here to test that -odi
14# can override it.
15
16acl_smtp_mail = mail
17
18
19# ----- ACLs -----
20
21begin acl
22
23mail:
24 accept verify = sender/callout=1s,maxwait=1s
25
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = accept
33 transport = t1
34
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = smtp
42 hosts = <; 127.0.0.1 ;
43 port = PORT_S
44 allow_localhost
45
46# End