Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 3403
CommitLineData
afda344b
PH
1# Exim test configuration 3403
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
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = accept
14
15
16# ----- Authentication -----
17
18begin authenticators
19
20plain1:
21 driver = plaintext
22 public_name = PLAIN
23 server_condition = \
24 ${if or {\
25 {and {{eq{$2}{userx}}{eq{$3}{secret}}}}\
26 {and {{eq{$2}{usery}}{eq{$3}{ab?}}}}\
27 }\
28 {yes}{no}}
29 server_set_id = $2
30 server_mail_auth_condition = ${if eq{$authenticated_id}{userx}{yes}}
31
32
33# ----- Routers -----
34
35begin routers
36
37d1:
38 driver = accept
39 headers_add = aid: $authenticated_id
40 retry_use_local_part
41 transport = t1
42
43
44# ----- Transports -----
45
46begin transports
47
48t1:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 user = CALLER
52
53# End