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