Log deferred deliveries for transport max_parallel
[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
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_mail = mail
17S acl_smtp_mailauth=ACL
18
19
20# ----- ACLs -----
21
22begin acl
23
24acl1:
25 accept condition = ${if eq{$authenticated_sender}{ok@ok}{1}{0}}
26
27mail:
28 warn log_message = \$authenticated_sender=$authenticated_sender
29 accept
30
31
32# ----- Authenticators -----
33
34begin authenticators
35
36ok:
37 driver = plaintext
38 public_name = PLAIN
39 server_prompts = :
40 server_condition = true
41
42
43# End