Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 3453
1 # Exim test configuration 3453
2
3 REMEMBER=false
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 domainlist local_domains = test.ex
12
13 tls_advertise_hosts = *
14 tls_certificate = DIR/aux-fixed/cert1
15 tls_privatekey = DIR/aux-fixed/cert1
16 tls_remember_esmtp = REMEMBER
17 hosts_require_helo =
18
19
20 # ----- Authenticators -----
21
22 begin authenticators
23
24 plain:
25   driver = plaintext
26   public_name = PLAIN
27   server_condition = "\
28     ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
29   server_set_id = $2
30
31 # End