Events: dns:fail Bug 3011
[exim.git] / test / confs / 3501
1 # Exim test configuration 3501
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = accept
10
11
12 # ----- Authentication -----
13
14 begin authenticators
15
16 cram_md5:
17   driver = cram_md5
18   public_name = CRAM-MD5
19   client_name = tim
20   client_secret = tanstaaftanstaaf
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 try:
28   driver = manualroute
29   route_list = domain.com 127.0.0.1 byname
30   self = send
31   transport = smtp_try
32
33 force:
34   driver = manualroute
35   route_list = authdomain.com 127.0.0.1 byname
36   self = send
37   transport = smtp_force
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 smtp_try:
45   driver = smtp
46   port = PORT_S
47   hosts_try_fastopen =  :
48   hosts_try_auth = *
49   authenticated_sender = ${if eq{$local_part}{forcesender}{force@x.y.z}fail}
50
51 smtp_force:
52   driver = smtp
53   port = PORT_S
54   hosts_try_fastopen =  :
55   hosts_require_auth = *
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 *  auth_failed
64 *  *  F,1h,10m
65
66 # End