ed48ce60c268e97c6541139c8acf6dfb4339b84e
[exim.git] / test / confs / 0473
1 # Exim test configuration 0473
2
3 USE_SENDER = ,use_sender
4 ACL_RCPT = acl_rcpt
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = ACL_RCPT
16 callout_random_local_part = $primary_hostname--testing
17 trusted_users = CALLER
18
19
20 # ----- ACL -----
21
22 begin acl
23
24 acl_rcpt:
25   accept   verify  = recipient/callout=1sUSE_SENDER
26
27 acl_rcpt_sender:
28   accept   verify  = sender/callout=1s,connect=2s
29
30
31 # ----- Routers -----
32
33 begin routers
34
35 callout:
36   driver = manualroute
37   transport = smtp
38   route_data = 127.0.0.1
39   self = send
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 smtp:
47   driver = smtp
48   port = PORT_S
49
50 # End