DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 3405
CommitLineData
afda344b
PH
1# Exim test configuration 3405
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
9
10# ----- Authentication -----
11
12
13begin authenticators
14
15plain:
16 driver = plaintext
17 public_name = PLAIN
18 client_send = ^userx^secret
19
20
21# ----- Routers -----
22
23begin routers
24
25all:
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
36begin transports
37
38smtp:
39 driver = smtp
40 headers_add = X-TAID: >$authenticated_id<
41 hosts_try_auth = *
42 port = PORT_S
43
44# End