CRL addition returns count of CRLs added
[exim.git] / test / confs / 3405
1 # Exim test configuration 3405
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14
15 # ----- Authentication -----
16
17
18 begin authenticators
19
20 plain:
21 driver = plaintext
22 public_name = PLAIN
23 client_send = ^userx^secret
24
25
26 # ----- Routers -----
27
28 begin routers
29
30 all:
31 driver = manualroute
32 headers_add = X-AID: >$authenticated_id<
33 route_list = * 127.0.0.1 byname
34 self = send
35 transport = smtp
36 no_more
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 smtp:
44 driver = smtp
45 headers_add = X-TAID: >$authenticated_id<
46 hosts_try_auth = *
47 port = PORT_S
48
49 # End