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