Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 3404
1 # Exim test configuration 3404
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 trusted_users = CALLER
16
17
18 # ----- Authentication -----
19
20 begin authenticators
21
22 plain:
23 driver = plaintext
24 public_name = PLAIN
25 client_send = ^userx^secret
26
27 login:
28 driver = plaintext
29 public_name = LOGIN
30 client_send = :userx:secret
31 client_ignore_invalid_base64
32
33
34 # ----- Routers -----
35
36 begin routers
37
38 all:
39 driver = manualroute
40 domains = domain.com : myhost.test.ex
41 headers_add = X-AID: >$authenticated_id<
42 route_list = * 127.0.0.1 byname
43 self = send
44 transport = smtp
45
46 # ----- Transports -----
47
48 begin transports
49
50 smtp:
51 driver = smtp
52 hosts_try_auth = *
53 port = PORT_S
54
55
56 # ----- Retry -----
57
58 begin retry
59
60 * * F,1h,10m
61
62
63 # End