7a1296c7ed4b57c9ddf0c004b4ae1929a99541f3
[exim.git] / test / confs / 0900
1 # Exim test configuration 0900
2 SERVER=
3 SRV=
4 LIST=
5 ALLOW=
6
7 exim_path = EXIM_PATH
8 keep_environment =
9 host_lookup_order = bydns
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14 chunking_advertise_hosts = *
15 tls_advertise_hosts = ${if eq {SRV}{tls} {*}}
16
17
18 # ----- Main settings -----
19
20 primary_hostname = testhost.test.ex
21 domainlist local_domains = @ : test.ex
22
23 acl_smtp_rcpt = check_recipient
24 acl_smtp_data_prdr = check_prdr
25 acl_smtp_data = check_data
26 trusted_users = CALLER
27 queue_only
28 smtp_receive_timeout = 2s
29 log_selector = +received_recipients
30
31 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
32 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
33
34 ALLOW
35
36 # ----- ACL -----
37
38 begin acl
39
40 check_recipient:
41   accept hosts = :
42   accept domains = +local_domains
43   deny   message = relay not permitted
44
45 check_prdr:
46   accept local_parts = good
47   deny
48
49 check_data:
50   warn   message = X-acl-message-linecount: $message_linecount
51   accept
52
53
54 # ----- Routers -----
55
56 begin routers
57
58 to_server:
59   driver = accept
60   condition =   ${if !eq {SERVER}{server}}
61   transport =   remote_smtp${if eq {OPT}{dkim} {_dkim}}
62   errors_to =   ""
63
64 fail_remote_domains:
65   driver = redirect
66   domains = ! +local_domains
67   data = :fail: unrouteable mail domain "$domain"
68
69 localuser:
70   driver = accept
71   check_local_user
72   transport = local_delivery
73   headers_add = X-local-user: uid=$local_user_uid gid=$local_user_gid
74
75
76 # ----- Transports -----
77
78 begin transports
79
80 local_delivery:
81   driver = appendfile
82   delivery_date_add
83   envelope_to_add
84   file = DIR/test-mail/$local_part
85   headers_add = "X-body-linecount: $body_linecount\n\
86                  X-message-linecount: $message_linecount\n\
87                  X-received-count: $received_count"
88   return_path_add
89
90 remote_smtp:
91   driver = smtp
92   hosts =       127.0.0.1
93   port =        PORT_S
94   allow_localhost
95   command_timeout = 2s
96   final_timeout = 2s
97   headers_rewrite = *@* CALLER_NAME@$domain fs
98
99 remote_smtp_dkim:
100   driver = smtp
101   hosts =       127.0.0.1
102   port =        PORT_S
103   allow_localhost
104   command_timeout = 2s
105   final_timeout = 2s
106   headers_rewrite = *@* CALLER_NAME@$domain fs
107
108 .ifdef OPT
109   dkim_domain =         test.ex
110   dkim_selector =       sel
111   dkim_private_key =    DIR/aux-fixed/dkim/dkim.private
112 .ifndef HEADERS_MAXSIZE
113   dkim_sign_headers =   LIST
114 .endif
115 .endif
116
117 # ----- Retry -----
118
119 begin retry
120 * * F,30m,5m;
121 # End