Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 3413
1 # Exim test configuration 3413
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 smtp_accept_max_nonmail = 3
14
15 # Set this large to avoid it biting first
16 smtp_max_synprot_errors = 20
17
18 # ----- Authenticators -----
19
20 begin authenticators
21
22 plain:
23 driver = plaintext
24 public_name = PLAIN
25 server_condition = "\
26 ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
27 server_set_id = $2
28
29 # End