Fix CVE-2016-1531
[exim.git] / test / confs / 3412
1 # Exim test configuration 3412
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 bounce_sender_authentication = mailer-daemon@test.ex
15 trusted_users = CALLER
16
17
18 # ----- Authentication -----
19
20 begin authenticators
21
22 plain:
23   driver = plaintext
24   public_name = PLAIN
25   client_send = ^userx^secret
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 local:
33   driver = redirect
34   domains = test.ex
35   allow_fail
36   data = :fail: no deliveries made locally
37
38 remote:
39   driver = accept
40   transport = smtp
41
42
43 # ----- Transports -----
44
45 begin transports
46
47 smtp:
48   driver = smtp
49   allow_localhost
50   hosts = 127.0.0.1
51   port = PORT_S
52   hosts_try_auth = *
53
54 # End