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