cbc77885f697fb4de07345bd98b0eb2d471cc851
[exim.git] / test / confs / 0432
1 # Exim test configuration 0432
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_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
16 acl_smtp_mail = mail
17
18
19 # ----- ACLs -----
20
21 begin acl
22
23 mail:
24   accept verify = sender/callout=1s,maxwait=1s
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32   driver = accept
33   transport = t1
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 t1:
41   driver = smtp
42   hosts = <; 127.0.0.1 ;
43   port = PORT_S
44   allow_localhost
45
46 # End