Updated versions to 4.69, moved changebars appropriately, added everything target...
[exim.git] / test / confs / 3401
CommitLineData
afda344b
PH
1# Exim test configuration 3401
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
14acl_smtp_rcpt = accept
15
16
17# ----- Authentication -----
18
19begin authenticators
20
21login:
22 driver = plaintext
23 public_name = LOGIN
24 client_send = : userx : secret
25
26plain:
27 driver = plaintext
28 public_name = PLAIN
29 client_send = ^userx^secret
30
4730f942
PH
31xlogin:
32 driver = plaintext
33 public_name = XLOGIN
34 client_send = : $auth1 : $auth1+$auth2
35
afda344b
PH
36
37# ----- Routers -----
38
39begin routers
40
41try:
42 driver = manualroute
43 route_list = domain.com 127.0.0.1 byname
44 self = send
45 transport = smtp_try
46
47force:
48 driver = manualroute
49 route_list = authdomain.com 127.0.0.1 byname
50 self = send
51 transport = smtp_force
52
53
54# ----- Transports -----
55
56begin transports
57
58smtp_try:
59 driver = smtp
60 hosts_try_auth = *
61 port = PORT_S
62 authenticated_sender = ${if eq{$local_part}{forcesender}{force@x.y.z}fail}
63
64smtp_force:
65 driver = smtp
66 hosts_require_auth = *
67 port = PORT_S
68
69
70# ----- Retry -----
71
72
73begin retry
74
75* auth_failed
76* * F,1h,10m
77
78# End