Remove confusing #ifndef environ
[exim.git] / test / confs / 3404
CommitLineData
afda344b
PH
1# Exim test configuration 3404
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
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
27login:
28 driver = plaintext
29 public_name = LOGIN
30 client_send = :userx:secret
4730f942 31 client_ignore_invalid_base64
afda344b
PH
32
33
34# ----- Routers -----
35
36begin routers
37
38all:
39 driver = manualroute
40 domains = domain.com : myhost.test.ex
41 headers_add = X-AID: >$authenticated_id<
42 route_list = * 127.0.0.1 byname
43 self = send
44 transport = smtp
45
46# ----- Transports -----
47
48begin transports
49
50smtp:
51 driver = smtp
52 hosts_try_auth = *
53 port = PORT_S
54
55
56# ----- Retry -----
57
58begin retry
59
60* * F,1h,10m
61
62
63# End