testcase
[exim.git] / test / confs / 3414
CommitLineData
afda344b
PH
1# Exim test configuration 3414
2
3ACL=
4S=
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
23f3dc67 14tls_advertise_hosts =
afda344b
PH
15
16# ----- Main settings -----
17
18acl_smtp_mail = mail
19S acl_smtp_mailauth=ACL
20
21
22# ----- ACLs -----
23
24begin acl
25
26acl1:
27 accept condition = ${if eq{$authenticated_sender}{ok@ok}{1}{0}}
28
29mail:
30 warn log_message = \$authenticated_sender=$authenticated_sender
31 accept
32
33
34# ----- Authenticators -----
35
36begin authenticators
37
38ok:
39 driver = plaintext
40 public_name = PLAIN
41 server_prompts = :
42 server_condition = true
43
44
45# End