Fix CVE-2016-1531
[exim.git] / test / confs / 3401
1 # Exim test configuration 3401
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
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 = accept
16
17
18 # ----- Authentication -----
19
20 begin authenticators
21
22 login:
23   driver = plaintext
24   public_name = LOGIN
25   client_send = : userx : secret
26
27 plain:
28   driver = plaintext
29   public_name = PLAIN
30   client_send = ^userx^secret
31
32 xlogin:
33   driver = plaintext
34   public_name = XLOGIN
35   client_send = : $auth1 : $auth1+$auth2
36
37
38 # ----- Routers -----
39
40 begin routers
41
42 try:
43   driver = manualroute
44   route_list = domain.com 127.0.0.1 byname
45   self = send
46   transport = smtp_try
47
48 force:
49   driver = manualroute
50   route_list = authdomain.com 127.0.0.1 byname
51   self = send
52   transport = smtp_force
53
54
55 # ----- Transports -----
56
57 begin transports
58
59 smtp_try:
60   driver = smtp
61   hosts_try_auth = *
62   port = PORT_S
63   authenticated_sender = ${if eq{$local_part}{forcesender}{force@x.y.z}fail}
64
65 smtp_force:
66   driver = smtp
67   hosts_require_auth = *
68   port = PORT_S
69
70
71 # ----- Retry -----
72
73
74 begin retry
75
76 *  auth_failed
77 *  *  F,1h,10m
78
79 # End