testcase
[exim.git] / test / confs / 3405
1 # Exim test configuration 3405
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
16 # ----- Authentication -----
17
18
19 begin authenticators
20
21 plain:
22 driver = plaintext
23 public_name = PLAIN
24 client_send = ^userx^secret
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 all:
32 driver = manualroute
33 headers_add = X-AID: >$authenticated_id<
34 route_list = * 127.0.0.1 byname
35 self = send
36 transport = smtp
37 no_more
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 smtp:
45 driver = smtp
46 headers_add = X-TAID: >$authenticated_id<
47 hosts_try_auth = *
48 port = PORT_S
49
50 # End