Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 3405
1 # Exim test configuration 3405
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9
10 # ----- Authentication -----
11
12
13 begin authenticators
14
15 plain:
16   driver = plaintext
17   public_name = PLAIN
18   client_send = ^userx^secret
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 all:
26   driver = manualroute
27   headers_add = X-AID: >$authenticated_id<
28   route_list = * 127.0.0.1 byname
29   self = send
30   transport = smtp
31   no_more
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 smtp:
39   driver = smtp
40   port = PORT_S
41   hosts_try_fastopen =  :
42   headers_add = X-TAID: >$authenticated_id<
43   hosts_try_auth = *
44
45 # End