Testsuite: Explicit disabling of identd no longer needed
[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
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
c8e2fc1e 10log_selector = +smtp_mailauth
afda344b
PH
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
6f123593 25 client_set_id = userx
afda344b
PH
26
27plain:
28 driver = plaintext
29 public_name = PLAIN
30 client_send = ^userx^secret
31
4730f942
PH
32xlogin:
33 driver = plaintext
34 public_name = XLOGIN
35 client_send = : $auth1 : $auth1+$auth2
6f123593 36 client_set_id = $auth1
4730f942 37
afda344b
PH
38
39# ----- Routers -----
40
41begin routers
42
43try:
44 driver = manualroute
45 route_list = domain.com 127.0.0.1 byname
46 self = send
47 transport = smtp_try
48
49force:
50 driver = manualroute
51 route_list = authdomain.com 127.0.0.1 byname
52 self = send
53 transport = smtp_force
54
55
56# ----- Transports -----
57
58begin transports
59
60smtp_try:
61 driver = smtp
62 hosts_try_auth = *
63 port = PORT_S
64 authenticated_sender = ${if eq{$local_part}{forcesender}{force@x.y.z}fail}
65
66smtp_force:
67 driver = smtp
68 hosts_require_auth = *
69 port = PORT_S
70
71
72# ----- Retry -----
73
74
75begin retry
76
77* auth_failed
78* * F,1h,10m
79
80# End