debian experimental exim-daemon-heavy config
[exim.git] / test / confs / 3412
1 # Exim test configuration 3412
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 bounce_sender_authentication = mailer-daemon@test.ex
10 trusted_users = CALLER
11
12
13 # ----- Authentication -----
14
15 begin authenticators
16
17 plain:
18 driver = plaintext
19 public_name = PLAIN
20 client_send = ^userx^secret
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 local:
28 driver = redirect
29 domains = test.ex
30 allow_fail
31 data = :fail: no deliveries made locally
32
33 remote:
34 driver = accept
35 transport = smtp
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 smtp:
43 driver = smtp
44 allow_localhost
45 hosts = 127.0.0.1
46 port = PORT_S
47 hosts_try_fastopen = :
48 hosts_try_auth = *
49
50 # End