Expansions: new ${authresults {mch}} for an Authentication-Results header
[exim.git] / test / confs / 3404
CommitLineData
afda344b
PH
1# Exim test configuration 3404
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9trusted_users = CALLER
10
11
12# ----- Authentication -----
13
14begin authenticators
15
16plain:
17 driver = plaintext
18 public_name = PLAIN
19 client_send = ^userx^secret
20
21login:
22 driver = plaintext
23 public_name = LOGIN
24 client_send = :userx:secret
4730f942 25 client_ignore_invalid_base64
afda344b
PH
26
27
28# ----- Routers -----
29
30begin routers
31
32all:
33 driver = manualroute
34 domains = domain.com : myhost.test.ex
35 headers_add = X-AID: >$authenticated_id<
36 route_list = * 127.0.0.1 byname
37 self = send
38 transport = smtp
39
40# ----- Transports -----
41
42begin transports
43
44smtp:
45 driver = smtp
46 hosts_try_auth = *
47 port = PORT_S
48
49
50# ----- Retry -----
51
52begin retry
53
54* * F,1h,10m
55
56
57# End