Hack in testing code for checking long long formatting.
[exim.git] / test / confs / 3404
CommitLineData
afda344b
PH
1# Exim test configuration 3404
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
14trusted_users = CALLER
15
16
17# ----- Authentication -----
18
19begin authenticators
20
21plain:
22 driver = plaintext
23 public_name = PLAIN
24 client_send = ^userx^secret
25
26login:
27 driver = plaintext
28 public_name = LOGIN
29 client_send = :userx:secret
30
31
32# ----- Routers -----
33
34begin routers
35
36all:
37 driver = manualroute
38 domains = domain.com : myhost.test.ex
39 headers_add = X-AID: >$authenticated_id<
40 route_list = * 127.0.0.1 byname
41 self = send
42 transport = smtp
43
44# ----- Transports -----
45
46begin transports
47
48smtp:
49 driver = smtp
50 hosts_try_auth = *
51 port = PORT_S
52
53
54# ----- Retry -----
55
56begin retry
57
58* * F,1h,10m
59
60
61# End