Pull strict-aliasing fix for sockaddr_46.
[exim.git] / test / confs / 0218
CommitLineData
afda344b
PH
1# Exim test configuration 0218
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
14log_selector = \
15 +sender_on_delivery
16ignore_bounce_errors_after = 0s
17qualify_domain = test.ex
18queue_run_in_order
19queue_only
20
21
22# ----- Routers -----
23
24begin routers
25
26bounce:
27 driver = redirect
28 allow_defer
29 allow_fail
30 data = :fail: just discard
31 retry_use_local_part
32 senders = :
33
34client:
35 driver = accept
36 retry_use_local_part
37 transport = send_to_server
38
39
40# ----- Transports -----
41
42begin transports
43
44send_to_server:
45 driver = smtp
46 allow_localhost
47 command_timeout = 1s
48 hosts = 127.0.0.1
49 port = PORT_S
50
51
52# ----- Retry -----
53
54
55begin retry
56
57* * F,5d,10s
58
59
60# End