Testsuite: ensure logging path is set
[exim.git] / test / confs / 3454
1 # Exim test configuration 3454
2
3 .include DIR/aux-var/tls_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex
10
11 log_selector = +smtp_no_mail
12
13 tls_advertise_hosts = *
14 tls_certificate = DIR/aux-fixed/cert1
15 tls_privatekey = DIR/aux-fixed/cert1
16
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