Merge branch 'master'
[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 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 bounce_sender_authentication = mailer-daemon@test.ex
16 trusted_users = CALLER
17
18
19 # ----- Authentication -----
20
21 begin authenticators
22
23 plain:
24 driver = plaintext
25 public_name = PLAIN
26 client_send = ^userx^secret
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 local:
34 driver = redirect
35 domains = test.ex
36 allow_fail
37 data = :fail: no deliveries made locally
38
39 remote:
40 driver = accept
41 transport = smtp
42
43
44 # ----- Transports -----
45
46 begin transports
47
48 smtp:
49 driver = smtp
50 allow_localhost
51 hosts = 127.0.0.1
52 port = PORT_S
53 hosts_try_auth = *
54
55 # End