Testsuite: fakens/inet_pton on solaris again
[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
23f3dc67 11tls_advertise_hosts =
fcc8e047
JH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = check_rcpt
16
17queue_only
18
19
20# ----- Authentication -----
21
22begin authenticators
23
24plain:
25 driver = plaintext
26 public_name = PLAIN
27 client_send = ^userx^secret
28 server_advertise_condition = yes
29 server_prompts = :
30 server_condition = yes
31 server_set_id = $auth2
32
33
34# ----- ACLs -----
35
36begin acl
37
38check_rcpt:
39 accept verify = recipient/callout
40
41
42# ----- Routers -----
43
44begin routers
45
46r1:
47 driver = accept
48 transport = ${if eq{force}{$domain} {t2}{t1}}
49
50
51# ----- Transports -----
52
53begin transports
54
55t1:
56 driver = smtp
57 hosts = 127.0.0.1
58 port = PORT_S
59 allow_localhost
60 hosts_try_auth = *
61
62t2:
63 driver = smtp
64 hosts = 127.0.0.1
65 port = PORT_S
66 allow_localhost
67 hosts_try_auth = *
68 authenticated_sender= brian
69
70# End