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