Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 3454
1 # Exim test configuration 3454
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 domainlist local_domains = test.ex
14
15 log_selector = +smtp_no_mail
16
17 tls_advertise_hosts = *
18 tls_certificate = DIR/aux-fixed/cert1
19 tls_privatekey = DIR/aux-fixed/cert1
20
21
22 # ----- Authenticators -----
23
24 begin authenticators
25
26 plain:
27 driver = plaintext
28 public_name = PLAIN
29 server_condition = "\
30 ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
31 server_set_id = $2
32
33 # End