Testsuite: Increase test delays and retry rule times
[exim.git] / test / confs / 3416
CommitLineData
ed65a028 1# Exim test configuration 3416
fcc8e047
JH
2# Recipient callout with AUTH
3
4exim_path = EXIM_PATH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
fcc8e047
JH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_rcpt
15
16queue_only
17
18
19# ----- Authentication -----
20
21begin authenticators
22
23plain:
24 driver = plaintext
25 public_name = PLAIN
26 client_send = ^userx^secret
27 server_advertise_condition = yes
28 server_prompts = :
29 server_condition = yes
30 server_set_id = $auth2
31
32
33# ----- ACLs -----
34
35begin acl
36
37check_rcpt:
38 accept verify = recipient/callout
39
40
41# ----- Routers -----
42
43begin routers
44
45r1:
46 driver = accept
47 transport = ${if eq{force}{$domain} {t2}{t1}}
48
49
50# ----- Transports -----
51
52begin transports
53
54t1:
55 driver = smtp
56 hosts = 127.0.0.1
57 port = PORT_S
58 allow_localhost
59 hosts_try_auth = *
60
61t2:
62 driver = smtp
63 hosts = 127.0.0.1
64 port = PORT_S
65 allow_localhost
66 hosts_try_auth = *
67 authenticated_sender= brian
68
69# End