Multiple headers_add/remove options per router/transport - fixes bug 337
[exim.git] / test / confs / 3414
CommitLineData
afda344b
PH
1# Exim test configuration 3414
2
3ACL=
4S=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_mail = mail
18S acl_smtp_mailauth=ACL
19
20
21# ----- ACLs -----
22
23begin acl
24
25acl1:
26 accept condition = ${if eq{$authenticated_sender}{ok@ok}{1}{0}}
27
28mail:
29 warn log_message = \$authenticated_sender=$authenticated_sender
30 accept
31
32
33# ----- Authenticators -----
34
35begin authenticators
36
37ok:
38 driver = plaintext
39 public_name = PLAIN
40 server_prompts = :
41 server_condition = true
42
43
44# End