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