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